blob: b75c207a4bc7376f0e548e050d89d9bf73c9b528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.34 2001/07/16 11:01:10 itojun 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
BUILD_USES_MSGFMT= yes
USE_BUILDLINK_ONLY= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LIBINTL= yes
MAKE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
INFO_FILES= wget.info
BUILD_DEFS+= USE_INET6
# to get USE_INET6
.include "../../mk/bsd.prefs.mk"
# IPv6 support
.if defined(USE_INET6) && ${USE_INET6} == YES
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
# Prevent us from running autoconf (needed due to order of
# files patched in the IPv6 patch):
post-patch:
${TOUCH} ${WRKSRC}/configure
.include "../../devel/gettext-lib/buildlink.mk"
.include "../../mk/bsd.pkg.mk"
|