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 /net/openslp | |
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 'net/openslp')
-rw-r--r-- | net/openslp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/openslp/Makefile b/net/openslp/Makefile index 3ad4934f60b..9ac6b44242e 100644 --- a/net/openslp/Makefile +++ b/net/openslp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2008/01/18 05:08:47 tnn Exp $ +# $NetBSD: Makefile,v 1.34 2008/05/26 02:13:22 joerg Exp $ DISTNAME= openslp-1.2.1 PKGREVISION= 2 @@ -14,7 +14,7 @@ PKG_DESTDIR_SUPPORT= user-destdir # Needs pkgviews-enabled automake # PKG_INSTALLATION_TYPES= overwrite pkgviews -USE_TOOLS+= automake bison lex +USE_TOOLS+= automake bison lex pax USE_LIBTOOL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} @@ -45,7 +45,7 @@ pre-configure: ${LOCALBASE}/bin/libtoolize && automake --add-missing post-install: - @cd ${WRKSRC}/doc && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/doc/openslp + @cd ${WRKSRC}/doc && pax -rw . ${DESTDIR}${PREFIX}/share/doc/openslp @${FIND} ${DESTDIR}${PREFIX}/share/doc/openslp | ${XARGS} ${CHOWN} \ ${SHAREOWN}:${SHAREGRP} @${FIND} ${DESTDIR}${PREFIX}/share/doc/openslp -type f | ${XARGS} ${CHMOD} \ |