diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /databases | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/phpldapadmin/Makefile | 6 | ||||
-rw-r--r-- | databases/sqlitemanager/Makefile | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/databases/phpldapadmin/Makefile b/databases/phpldapadmin/Makefile index 8dc354dbc9b..1e1a8781404 100644 --- a/databases/phpldapadmin/Makefile +++ b/databases/phpldapadmin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2008/03/03 15:21:07 jlam Exp $ +# $NetBSD: Makefile,v 1.29 2008/05/26 02:13:16 joerg Exp $ DISTNAME= phpldapadmin-${VERSION} CATEGORIES= databases www @@ -19,6 +19,8 @@ REPLACE_SH= tools/po/make* DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.1.2:../../databases/php-ldap DEPENDS+= ${PHP_PKG_PREFIX}-gettext>=4.1.2:../../devel/php-gettext +USE_TOOLS+= pax + VERSION= 0.9.8.3 NO_BUILD= YES @@ -51,7 +53,7 @@ do-install: ${DESTDIR}${PREFIX}/share/phpldapadmin .for i in ${PAX_DIRS} - cd ${WRKSRC}/${i:Q} && ${PAX} \ + cd ${WRKSRC}/${i:Q} && pax \ -rwppm . ${DESTDIR}${PREFIX}/share/phpldapadmin/${i:Q} .endfor diff --git a/databases/sqlitemanager/Makefile b/databases/sqlitemanager/Makefile index bbef44bd63a..0ed72021d05 100644 --- a/databases/sqlitemanager/Makefile +++ b/databases/sqlitemanager/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2008/03/03 15:21:07 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2008/05/26 02:13:16 joerg Exp $ # DISTNAME= SQLiteManager-1.0.4 @@ -12,6 +12,8 @@ COMMENT= Web frontend for managing SQLite databases DEPENDS+= php>=5.0.3nb1:../../lang/php5 +USE_TOOLS+= pax + PKG_DESTDIR_SUPPORT= destdir NO_BUILD= yes @@ -22,7 +24,7 @@ do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/sqlitemanager cd ${WRKSRC} && \ - ${PAX} -rw include index.php lang left.php main.php test.sqlite theme \ + pax -rw include index.php lang left.php main.php test.sqlite theme \ ${DESTDIR}${PREFIX}/share/sqlitemanager ${CHOWN} -R ${APACHE_USER} ${DESTDIR}${PREFIX}/share/sqlitemanager |