mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
Convert cvsup and cvsup-without-gui to OptionsNG.
There is a little more cleanup work to be done with these ports. Reviewed by: kwm, ak
This commit is contained in:
parent
f1639637de
commit
b67f023edf
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=320020
2 changed files with 12 additions and 24 deletions
|
@ -1,12 +1,6 @@
|
|||
# New ports collection makefile for: cvsup-without-gui
|
||||
# Date created: 12 January 2002
|
||||
# Whom: jdp
|
||||
#
|
||||
# Created by: jdp
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../cvsup
|
||||
WITHOUT_X11= yes
|
||||
SLAVE_WITHOUT_GUI= yes
|
||||
|
||||
OPTIONS_EXCLUDE= X11
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
# New ports collection makefile for: cvsup
|
||||
# Date created: 7 August 1996
|
||||
# Whom: asami
|
||||
#
|
||||
# Created by: asami
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= cvsup
|
||||
PORTVERSION= 16.1h
|
||||
|
@ -18,20 +14,18 @@ COMMENT= File distribution system optimized for CVS
|
|||
|
||||
ONLY_FOR_ARCHS= amd64 i386 sparc64
|
||||
|
||||
.if !defined(SLAVE_WITHOUT_GUI)
|
||||
OPTIONS+= X11 "Build with X11 support" on
|
||||
OPTIONS_DEFINE= X11 STATIC
|
||||
OPTIONS_EXCLUDE_amd64= X11
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MSTATIC}
|
||||
WITH_STATIC= yes
|
||||
M3FLAGS+= -DSTATIC
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(STATIC)
|
||||
WITH_STATIC= yes
|
||||
.endif
|
||||
|
||||
.if defined(WITH_STATIC) && !defined(WITHOUT_STATIC)
|
||||
M3FLAGS+= -DSTATIC
|
||||
.endif
|
||||
|
||||
.if ${ARCH} == "amd64"
|
||||
TARGET= FBSD_AMD64
|
||||
AMD64_PATCHES= p-amd64-aa p-amd64-zlib
|
||||
|
@ -41,7 +35,7 @@ TARGET= FreeBSD4
|
|||
TARGET= FBSD_SPARC64
|
||||
.endif
|
||||
|
||||
.if defined(WITHOUT_X11)
|
||||
.if ! ${PORT_OPTIONS:MX11}
|
||||
M3FLAGS+= -DNOGUI
|
||||
BUILD_DEPENDS= ${PREFIX}/lib/m3/pkg/tcp/${TARGET}/libm3tcp.a:${PORTSDIR}/lang/ezm3
|
||||
PKGNAMESUFFIX= -without-gui
|
||||
|
|
Loading…
Add table
Reference in a new issue