summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2005-05-31 21:28:22 +0000
committerwiz <wiz@pkgsrc.org>2005-05-31 21:28:22 +0000
commitbc2ecb8cc16062858e2e1e7730d2db76e088b89d (patch)
treebbeb21175db3fe0b8211d23dd30ad0a99a1b5cb4 /devel
parentc338f5dab62be0c38e6ca4eb3d370cc77fd5584c (diff)
downloadpkgsrc-bc2ecb8cc16062858e2e1e7730d2db76e088b89d.tar.gz
Convert to options framework.
Diffstat (limited to 'devel')
-rw-r--r--devel/cvs/Makefile40
-rw-r--r--devel/cvs/options.mk36
2 files changed, 40 insertions, 36 deletions
diff --git a/devel/cvs/Makefile b/devel/cvs/Makefile
index aabd76530f0..3d9ef849442 100644
--- a/devel/cvs/Makefile
+++ b/devel/cvs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.84 2005/04/19 12:39:18 wiz Exp $
+# $NetBSD: Makefile,v 1.85 2005/05/31 21:28:22 wiz Exp $
#
DISTNAME= cvs-1.11.20
@@ -16,45 +16,13 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews
GNU_CONFIGURE= yes
-.include "../../mk/bsd.prefs.mk"
-
-BUILD_DEFS+= USE_INET6
-
-.if defined(USE_INET6) && !empty(USE_INET6:M[yY][eE][sS]) && \
- empty(MACHINE_PLATFORM:MSunOS-5.[89]-*) && \
- empty(MACHINE_PLATFORM:MSunOS-5.10-*) && \
- empty(MACHINE_PLATFORM:MLinux-*) && \
- defined(NOT_YET_AVAILABLE_FOR_CVS_1_11_20)
-CONFIGURE_ARGS+= --enable-ipv6
-PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/
-PATCHFILES= cvs-1.11.19-v6-20050205.diff.gz
-PATCH_DIST_STRIP= -p1
-.else
-CONFIGURE_ARGS+= --disable-ipv6
-.endif
-
-.if defined(KERBEROS)
-. include "../../mk/krb5.buildlink3.mk"
-CONFIGURE_ARGS+= --enable-encryption
-CONFIGURE_ARGS+= --with-gssapi=${KRB5BASE}
-CONFIGURE_ARGS+= --with-krb4=${KRB5BASE}
-. if ${OPSYS} == "Darwin"
-LDFLAGS+= -framework Kerberos
-. endif
-.else
-CONFIGURE_ARGS+= --without-gssapi
-.endif
-
-.if defined(RCS_LOCALID)
-pre-fetch:
- @${ECHO} RCS_LOCALID is now replaced by the tag variable in CVSROOT/config.
-.endif
+.include "options.mk"
CONFIGURE_ENV+= perl_path=${PERL5}
INFO_FILES= cvs.info cvsclient.info
-USE_MAKEINFO= yes
-TEXINFO_REQD?= 4.0
+USE_MAKEINFO= yes
+TEXINFO_REQD?= 4.0
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/cvs/options.mk b/devel/cvs/options.mk
new file mode 100644
index 00000000000..da066cb6423
--- /dev/null
+++ b/devel/cvs/options.mk
@@ -0,0 +1,36 @@
+# $NetBSD: options.mk,v 1.1 2005/05/31 21:28:22 wiz Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.cvs
+PKG_SUPPORTED_OPTIONS= kerberos
+
+.include "../../mk/bsd.prefs.mk"
+
+.if empty(MACHINE_PLATFORM:MSunOS-5.[89]-*) && \
+ empty(MACHINE_PLATFORM:MSunOS-5.10-*) && \
+ empty(MACHINE_PLATFORM:MLinux-*) && \
+ defined(NOT_YET_AVAILABLE_FOR_CVS_1_11_20)
+PKG_SUPPORTED_OPTIONS+= inet6
+.endif
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Minet6)
+CONFIGURE_ARGS+= --enable-ipv6
+PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/
+PATCHFILES= cvs-1.11.19-v6-20050205.diff.gz
+PATCH_DIST_STRIP= -p1
+.else
+CONFIGURE_ARGS+= --disable-ipv6
+.endif
+
+.if !empty(PKG_OPTIONS:Mkerberos)
+. include "../../mk/krb5.buildlink3.mk"
+CONFIGURE_ARGS+= --enable-encryption
+CONFIGURE_ARGS+= --with-gssapi=${KRB5BASE}
+CONFIGURE_ARGS+= --with-krb4=${KRB5BASE}
+. if ${OPSYS} == "Darwin"
+LDFLAGS+= -framework Kerberos
+. endif
+.else
+CONFIGURE_ARGS+= --without-gssapi
+.endif