aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-05-07 08:01:46 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-05-07 08:01:46 +0000
commit1e5ccf2bb94a91df8f746d52c7d5fe8ed1afef5d (patch)
treeba7ea109b7c8215dc22f7fff76ee9ad418bab064
parent784afb5487648dc5a9f221ed54df59ce248edf59 (diff)
downloadports-1e5ccf2bb94a91df8f746d52c7d5fe8ed1afef5d.tar.gz
ports-1e5ccf2bb94a91df8f746d52c7d5fe8ed1afef5d.zip
USE_GETTEXT has totally been replaced by USES=gettext thanks, jgh and ak
USE_NCURSES has totally been replaced by USES=ncurses USE_READLINE has totally been replaced by USES=readline
Notes
Notes: svn path=/head/; revision=317580
-rw-r--r--CHANGES2
-rw-r--r--Mk/bsd.port.mk37
2 files changed, 2 insertions, 37 deletions
diff --git a/CHANGES b/CHANGES
index 267ffca4c7c3..744293b0c91d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -20,6 +20,8 @@ AUTHOR: bapt@FreeBSD.org
Paths can be customized, and number of languages supported can be extended.
+ * USE_GETTEXT, USE_NCURSES, USE_READLINE are no longer recognized
+
20130506:
AUTHOR: bapt@FreeBSD.org
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 3d1cd286e4e9..a77befe7b451 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -324,11 +324,6 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
# GMAKE - Set to path of GNU make if not in $PATH.
# Default: gmake
##
-# USE_GETTEXT - The port uses GNU gettext (libintl).
-# 'build' as a build-time dependency
-# 'yes' as a library dependency
-# 'run' as a run-time dependency
-##
# USE_GHOSTSCRIPT
# - If set, this port needs ghostscript to both
# build and run. If a number is specified,
@@ -374,12 +369,6 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
# USE_SDL - If set, this port uses the sdl libraries.
# See bsd.sdl.mk for more information.
##
-# USE_READLINE - If set, this port uses libreadline.
-# Legal values are: yes, base, port
-# yes, base: use base system libreadline on FreeBSD 9 or earlier,
-# use ports/devel/readline on FreeBSD 10.0+
-# port: always use ports/devel/readline
-##
# USE_OPENAL - If set, this port relies on the OpenAL package.
# Legal values are: al, soft, si, alut.
# If set to an unknown value, the port is marked broken.
@@ -526,8 +515,6 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
##
# USE_APACHE - If set, this port relies on an apache webserver.
#
-# USE_NCURSES - If set, this port relies on the ncurses package.
-#
# Conflict checking. Use if your port cannot be installed at the same time as
# another package.
#
@@ -1506,10 +1493,6 @@ PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg
.include "${PORTSDIR}/Mk/bsd.kde4.mk"
.endif
-.if defined(USE_NCURSES)
-.include "${PORTSDIR}/Mk/bsd.ncurses.mk"
-.endif
-
.include "${PORTSDIR}/Mk/bsd.pbi.mk"
# Loading features
@@ -1717,14 +1700,6 @@ MAKE_ENV+= ${b}="${${b}}"
.include "${PORTSDIR}/Mk/bsd.ldap.mk"
.endif
-.if defined(USE_READLINE)
-.if ${USE_READLINE} == "port" || ${OSVERSION} > 1000000
-LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib -lreadline
-.endif
-.endif
-
.if defined(USE_OPENAL)
_OPENAL_ALL= al si soft alut
_OPENAL_LIBS= si soft
@@ -1857,18 +1832,6 @@ USE_LDCONFIG= ${PREFIX}/lib
IGNORE= has USE_LDCONFIG32 set to yes, which is not correct
.endif
-.if defined(USE_GETTEXT)
-. if ${USE_GETTEXT:L} == "build"
-BUILD_DEPENDS+= xgettext:${PORTSDIR}/devel/gettext
-. elif ${USE_GETTEXT:L} == "run"
-RUN_DEPENDS+= xgettext:${PORTSDIR}/devel/gettext
-. elif ${USE_GETTEXT:L} == "yes"
-LIB_DEPENDS+= intl:${PORTSDIR}/devel/gettext
-. else
-IGNORE= USE_GETTEXT can be only one of build, run, or yes
-. endif
-.endif
-
.if defined(USE_LINUX_PREFIX) && defined(USE_LDCONFIG)
# we need ${LINUXBASE}/sbin/ldconfig
USE_LINUX?= yes