diff options
author | hamajima <hamajima@pkgsrc.org> | 2005-02-21 14:36:52 +0000 |
---|---|---|
committer | hamajima <hamajima@pkgsrc.org> | 2005-02-21 14:36:52 +0000 |
commit | 443426bc3a250e3263357e7066e3b1a845c110c9 (patch) | |
tree | 7dd5a800a9d22070de37225b8ade2ec154334185 /net/dtcpclient | |
parent | cf07c8c522d1d8650b0114bd1f888564b54947a4 (diff) | |
download | pkgsrc-443426bc3a250e3263357e7066e3b1a845c110c9.tar.gz |
Added support for Darwin.
Diffstat (limited to 'net/dtcpclient')
-rw-r--r-- | net/dtcpclient/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net/dtcpclient/Makefile b/net/dtcpclient/Makefile index 1a62a4ac324..be29445ac74 100644 --- a/net/dtcpclient/Makefile +++ b/net/dtcpclient/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2005/02/20 04:43:26 hamajima Exp $ +# $NetBSD: Makefile,v 1.3 2005/02/21 14:36:52 hamajima Exp $ # DISTNAME= dtcpclient-20040923 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.imasy.or.jp/~ume/ipv6/ \ http://home.jp.FreeBSD.org/~ume/ipv6/ @@ -10,10 +11,11 @@ MAINTAINER= hamajima@NetBSD.org HOMEPAGE= http://www.imasy.or.jp/~ume/dtcp/ COMMENT= Dynamic Tunnel Configuration Protocol client -ONLY_FOR_PLATFORM= FreeBSD-*-* NetBSD-*-* OpenBSD-*-* +ONLY_FOR_PLATFORM= FreeBSD-*-* NetBSD-*-* OpenBSD-*-* Darwin-*-* RCD_SCRIPTS= dtcpclient USE_PKGINSTALL= YES +USE_BUILDLINK3= YES SUBST_CLASSES+= paths SUBST_MESSAGE.paths= "Fixing hardcoded paths." @@ -21,4 +23,8 @@ SUBST_STAGE.paths= post-patch SUBST_FILES.paths= dtcpclient.8 SUBST_SED.paths= 's|/usr/local|${PREFIX}|g' +.include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Darwin" +.include "../../security/openssl/buildlink3.mk" +.endif .include "../../mk/bsd.pkg.mk" |