diff options
author | minskim <minskim> | 2005-11-02 04:00:23 +0000 |
---|---|---|
committer | minskim <minskim> | 2005-11-02 04:00:23 +0000 |
commit | cda826f53c9deb65beeeca811db04d5718c1ea94 (patch) | |
tree | 07ecd98f4ecc0c92bdb4c9ed8c1d58ef34f0e996 | |
parent | d89612c4b2aba9f95fd8cff535be1c983c50be74 (diff) | |
download | pkgsrc-cda826f53c9deb65beeeca811db04d5718c1ea94.tar.gz |
GNU tar is needed on NetBSD-1.6.x to extract distfile. Patches
provided by Yoshito Komatsu (maintainer) in PR pkg/31976.
-rw-r--r-- | www/zope3/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/www/zope3/Makefile b/www/zope3/Makefile index e63bb1f5be0..cb81f436ce6 100644 --- a/www/zope3/Makefile +++ b/www/zope3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2005/10/24 02:25:20 minskim Exp $ +# $NetBSD: Makefile,v 1.2 2005/11/02 04:00:23 minskim Exp $ # DISTNAME= Zope-3.1.0 @@ -17,6 +17,13 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS+= --with-python ${PYTHONBIN} \ --prefix ${PREFIX}/share/zope3 \ --force + +.include "../../mk/bsd.prefs.mk" + +.if !empty(MACHINE_PLATFORM:MNetBSD-1.6*) +EXTRACT_USING= gtar +.endif + BUILD_TARGET= build USE_PKGINSTALL= yes |