diff options
author | tron <tron@pkgsrc.org> | 2001-07-22 15:19:16 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-07-22 15:19:16 +0000 |
commit | 56f6b2b040dd4232c840c49711d1306c0ee74876 (patch) | |
tree | daa9b00e8c7180c683528256471bc057b5ad797c /net/wget | |
parent | a4183640a2ce5e0d786f75393afd847e53b33927 (diff) | |
download | pkgsrc-56f6b2b040dd4232c840c49711d1306c0ee74876.tar.gz |
Don't apply KAME patch under Solaris because it causes build failures.
Diffstat (limited to 'net/wget')
-rw-r--r-- | net/wget/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/net/wget/Makefile b/net/wget/Makefile index 70cc7d0a15d..fafb173b82a 100644 --- a/net/wget/Makefile +++ b/net/wget/Makefile @@ -1,13 +1,9 @@ -# $NetBSD: Makefile,v 1.36 2001/07/17 12:04:16 tron Exp $ +# $NetBSD: Makefile,v 1.37 2001/07/22 15:19:16 tron Exp $ DISTNAME= wget-1.7 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GNU:=wget/} -PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ -PATCHFILES= wget-17-v6-20010716a.diff.gz -PATCH_DIST_STRIP=-p1 - MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.gnu.org/software/wget/wget.html COMMENT= Retrieve files from the 'net via HTTP and FTP @@ -28,6 +24,11 @@ BUILD_DEFS+= USE_INET6 # to get USE_INET6 .include "../../mk/bsd.prefs.mk" +.if (${OPSYS} != SunOS) +PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ +PATCHFILES= wget-17-v6-20010716a.diff.gz +PATCH_DIST_STRIP=-p1 + # IPv6 support .if defined(USE_INET6) && ${USE_INET6} == YES CONFIGURE_ARGS+= --enable-ipv6 @@ -39,6 +40,7 @@ CONFIGURE_ARGS+= --disable-ipv6 # files patched in the IPv6 patch): post-patch: ${TOUCH} ${WRKSRC}/configure +.endif .include "../../devel/gettext-lib/buildlink.mk" .include "../../mk/bsd.pkg.mk" |