diff options
author | jlam <jlam> | 2005-01-23 06:20:43 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-01-23 06:20:43 +0000 |
commit | 81646379bad4b605626bccd93fdbf03bbb52a86e (patch) | |
tree | 30309ef3f23f9c3c2fdf060a0fa96849c14bf158 /sysutils/webmin | |
parent | 21f614269ae4b748f3b16a6542b900f498062e35 (diff) | |
download | pkgsrc-81646379bad4b605626bccd93fdbf03bbb52a86e.tar.gz |
Use the openssl/buildlink3.mk file to properly handle a built-in OpenSSL
distribution for the location of the "openssl" binary (used to generate
the self-signed certificate).
Diffstat (limited to 'sysutils/webmin')
-rw-r--r-- | sysutils/webmin/Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/sysutils/webmin/Makefile b/sysutils/webmin/Makefile index 9cdb092bb5a..8e61d8dc214 100644 --- a/sysutils/webmin/Makefile +++ b/sysutils/webmin/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2005/01/23 04:36:27 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2005/01/23 06:20:43 jlam Exp $ DISTNAME= webmin-1.170-minimal PKGNAME= ${DISTNAME:S/-minimal$//} +PKGREVISION= 1 CATEGORIES= sysutils www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=webadmin/} @@ -10,11 +11,10 @@ HOMEPAGE= http://www.webmin.com/ COMMENT= Perl web server and CGI for Unix system administration DEPENDS+= p5-Net-SSLeay-[0-9]*:../../security/p5-Net-SSLeay -DEPENDS+= openssl-[0-9]*:../../security/openssl -USE_LANGUAGES= # empty WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} -NO_BUILDLINK= yes +USE_LANGUAGES= # empty +USE_BUILDLINK3= yes NO_BUILD= yes USE_PERL5= yes @@ -58,6 +58,15 @@ do-configure: fi; \ ${MV} -f $$file.new $$file; \ done + case "${USE_BUILTIN.openssl}" in \ + [nN][oO]) \ + for file in ${WRKSRC}/acl/config ${WRKSRC}/acl/config-*; do \ + ${SED} -e "s|^ssleay=.*|ssleay=${SSLBASE}/bin/openssl|" \ + $$file > $$file.new; \ + ${MV} -f $$file.new $$file; \ + done; \ + ;; \ + esac pre-install: ${FIND} ${WRKSRC} -name "*.orig" -print | ${XARGS} ${RM} -f @@ -66,4 +75,5 @@ do-install: ${INSTALL_DATA_DIR} ${WEBMIN_DIR} ${CP} -R ${WRKSRC}/* ${WEBMIN_DIR} +.include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |