pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/php-libawl Add php-libawl.
details: https://anonhg.NetBSD.org/pkgsrc/rev/e06b1eac1041
branches: trunk
changeset: 575816:e06b1eac1041
user: jym <jym%pkgsrc.org@localhost>
date: Sun May 23 21:16:17 2010 +0000
description:
Add php-libawl.
Andrew's Web Libraries are a set of hopefully lightweight libraries for
handling a variety of useful things for web programming, including:
- Session management
- User management
- DB Records
- Simple reporting
- DB Schema Updating
- iCalendar parsing
diffstat:
devel/php-libawl/DESCR | 9 +++++++++
devel/php-libawl/Makefile | 39 +++++++++++++++++++++++++++++++++++++++
devel/php-libawl/Makefile.common | 7 +++++++
devel/php-libawl/PLIST | 27 +++++++++++++++++++++++++++
devel/php-libawl/distinfo | 5 +++++
5 files changed, 87 insertions(+), 0 deletions(-)
diffs (107 lines):
diff -r 03c695d61cd5 -r e06b1eac1041 devel/php-libawl/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php-libawl/DESCR Sun May 23 21:16:17 2010 +0000
@@ -0,0 +1,9 @@
+Andrew's Web Libraries are a set of hopefully lightweight libraries for
+handling a variety of useful things for web programming, including:
+
+ - Session management
+ - User management
+ - DB Records
+ - Simple reporting
+ - DB Schema Updating
+ - iCalendar parsing
diff -r 03c695d61cd5 -r e06b1eac1041 devel/php-libawl/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php-libawl/Makefile Sun May 23 21:16:17 2010 +0000
@@ -0,0 +1,39 @@
+# $NetBSD: Makefile,v 1.1.1.1 2010/05/23 21:16:17 jym Exp $
+#
+
+DISTNAME= awl-${LIBAWL_VERSION}
+PKGNAME= ${PHP_PKG_PREFIX}-libawl-${LIBAWL_VERSION}
+LIBAWL_VERSION= 0.43
+CATEGORIES= devel
+MASTER_SITES= http://debian.mcmillan.net.nz/packages/awl/
+
+MAINTAINER= jym%NetBSD.org@localhost
+HOMEPAGE= http://andrew.mcmillan.net.nz/projects/awl/
+COMMENT= PHP Andrew's Web Libraries
+LICENSE= gnu-gpl-v2
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+.include "../../lang/php/phpversion.mk"
+
+DEPENDS+= php>=5.2.0:../../lang/php5
+DEPENDS+= ${PHP_PKG_PREFIX}-iconv-[0-9]*:../../converters/php-iconv
+DEPENDS+= ${PHP_PKG_PREFIX}-gettext-[0-9]*:../../devel/php-gettext
+
+INSTALLATION_DIRS= ${LIBAWLDIR} ${LIBAWLDIR}/inc ${LIBAWLDIR}/dba
+
+do-install:
+ cd ${WRKSRC}/dba; \
+ for f in *; do \
+ ${INSTALL_DATA} "$$f" \
+ ${DESTDIR}${PREFIX}/${LIBAWLDIR}/dba; \
+ done;
+
+ cd ${WRKSRC}/inc; \
+ for f in *; do \
+ ${INSTALL_DATA} "$$f" \
+ ${DESTDIR}${PREFIX}/${LIBAWLDIR}/inc; \
+ done;
+
+.include "../../devel/php-libawl/Makefile.common"
+.include "../../mk/bsd.pkg.mk"
diff -r 03c695d61cd5 -r e06b1eac1041 devel/php-libawl/Makefile.common
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php-libawl/Makefile.common Sun May 23 21:16:17 2010 +0000
@@ -0,0 +1,7 @@
+# $NetBSD: Makefile.common,v 1.1.1.1 2010/05/23 21:16:17 jym Exp $
+# used by devel/php-libawl/Makefile
+# used by www/davical/Makefile
+#
+
+# Include path of AWL
+LIBAWLDIR= lib/php/awl
diff -r 03c695d61cd5 -r e06b1eac1041 devel/php-libawl/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php-libawl/PLIST Sun May 23 21:16:17 2010 +0000
@@ -0,0 +1,27 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2010/05/23 21:16:17 jym Exp $
+lib/php/awl/dba/awl-tables.sql
+lib/php/awl/dba/grant-minimum-permissions.sh
+lib/php/awl/dba/grant-on-all-tables.sh
+lib/php/awl/dba/schema-management.sql
+lib/php/awl/inc/AWLUtilities.php
+lib/php/awl/inc/AuthPlugin.php
+lib/php/awl/inc/AuthPlugins.php
+lib/php/awl/inc/DataEntry.php
+lib/php/awl/inc/DataUpdate.php
+lib/php/awl/inc/EMail.php
+lib/php/awl/inc/MenuSet.php
+lib/php/awl/inc/PgQuery.php
+lib/php/awl/inc/Session.php
+lib/php/awl/inc/Translation.php
+lib/php/awl/inc/User.php
+lib/php/awl/inc/Validation.php
+lib/php/awl/inc/XMLDocument.php
+lib/php/awl/inc/XMLElement.php
+lib/php/awl/inc/classBrowser.php
+lib/php/awl/inc/classEditor.php
+lib/php/awl/inc/iCalendar.php
+lib/php/awl/inc/vEvent.php
+lib/php/awl/inc/AwlDBDialect.php
+lib/php/awl/inc/AwlDatabase.php
+lib/php/awl/inc/AwlQuery.php
+lib/php/awl/inc/AwlUpgrader.php
diff -r 03c695d61cd5 -r e06b1eac1041 devel/php-libawl/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/php-libawl/distinfo Sun May 23 21:16:17 2010 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2010/05/23 21:16:17 jym Exp $
+
+SHA1 (awl-0.43.tar.gz) = 5ed13be450e226f956f8b54735e2486527c29655
+RMD160 (awl-0.43.tar.gz) = 3a6c154c26e796361332d0a62b4dd1789fd18cca
+Size (awl-0.43.tar.gz) = 251912 bytes
Home |
Main Index |
Thread Index |
Old Index