blob: bd286f1c4a6967e116fc6c60332f98cc20bf2b23 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# $NetBSD: Makefile,v 1.82 2012/10/03 21:58:30 wiz Exp $
DISTNAME= w3c-libwww-5.4.0
PKGNAME= libwww-5.4.0
PKGREVISION= 10
CATEGORIES= www devel
MASTER_SITES= http://www.w3.org/Library/Distribution/
EXTRACT_SUFX= .tgz
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} libwww-configure-5.4.0nb2.gz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.w3.org/Library/
COMMENT= The W3C Reference Library
PKG_INSTALLATION_TYPES= overwrite pkgviews
PKG_DESTDIR_SUPPORT= user-destdir
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
SITES.libwww-configure-5.4.0nb2.gz= ${MASTER_SITE_LOCAL}
USE_TOOLS+= automake14 gmake gzcat perl
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --with-zlib --without-x
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
.include "options.mk"
post-extract:
gzcat ${DISTDIR}/libwww-configure-5.4.0nb2.gz > ${WRKSRC}/configure
pre-configure:
chmod a+x ${WRKSRC}/configure
.for f in aclocal.m4 configure stamp-h.in
touch ${WRKSRC}/${f}
.endfor
cd ${WRKSRC} && automake
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MIRIX-5*)
# IRIX 5 does not have libregex
CONFIGURE_ARGS+= --with-regex
.endif
PLIST_VARS+= md5
.if ${OPSYS} == "SunOS"
# Solaris has a /usr/lib/libmd5 which seems to be enough, and
# /usr/local/lib/libmd5 breaks /usr/lib/librt
CONFIGURE_ARGS+= --without-md5
.else
PLIST.md5= yes
. if !exists(/usr/include/md5.h)
CONFIGURE_ARGS+= --with-md5=${SSLBASE:Q}
. endif
.endif
.include "../../devel/zlib/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|