diff options
author | okazaki <okazaki@FreeBSD.org> | 2001-04-21 02:39:54 +0800 |
---|---|---|
committer | okazaki <okazaki@FreeBSD.org> | 2001-04-21 02:39:54 +0800 |
commit | a76c8a523d31f2e5c50343ce3d1b21ad53cbcca6 (patch) | |
tree | 755f2f163855d3d1c8cc7377c3b71dc8a8ef0716 /net/socks5 | |
parent | 7bf0500224ffb83e5776a2495bb245873885477d (diff) | |
download | freebsd-ports-gnome-a76c8a523d31f2e5c50343ce3d1b21ad53cbcca6.tar.gz freebsd-ports-gnome-a76c8a523d31f2e5c50343ce3d1b21ad53cbcca6.tar.zst freebsd-ports-gnome-a76c8a523d31f2e5c50343ce3d1b21ad53cbcca6.zip |
Include bsd.port.pre.mk before the `.if', and bsd.port.post.mk after it,
just as in other ports which require "manual" downloading of distfiles.
(also correcting the extranous '.')
PR: 26719
Submitted by: Dimitry Andric <dim@xs4all.nl>
Diffstat (limited to 'net/socks5')
-rw-r--r-- | net/socks5/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/socks5/Makefile b/net/socks5/Makefile index dcfcebb3a7eb..14d885752686 100644 --- a/net/socks5/Makefile +++ b/net/socks5/Makefile @@ -34,10 +34,12 @@ CONFIGURE_ARGS= --with-libconffile=${PREFIX}/etc/libsocks5.conf \ ${EXTRA_CONFIGURE_ARGS} MAN1= runsocks.1 socks5.1 stopsocks.1 socks5_clients.1 MAN5= libsocks5.conf.5 socks5.conf.5 -CONFIGURE_ENV= LIBS=-lcrypt +CONFIGURE_ENV= LIBS=-lcrypt + +.include <bsd.port.pre.mk> .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE="NEC requires that you grab the dist files from their web site at http://www.socks.nec.com/cgi-bin/download.pl . Please make sure you have ${DISTNAME}${EXTRACT_SUFX} in ${DISTDIR} and run make again." +IGNORE="NEC requires that you grab the dist files from their web site at http://www.socks.nec.com/cgi-bin/download.pl . Please make sure you have ${DISTNAME}${EXTRACT_SUFX} in ${DISTDIR} and run make again" .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |