Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 May 2013 08:01:46 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317580 - in head: . Mk
Message-ID:  <201305070801.r4781kID097967@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Tue May  7 08:01:46 2013
New Revision: 317580
URL: http://svnweb.freebsd.org/changeset/ports/317580

Log:
  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

Modified:
  head/CHANGES
  head/Mk/bsd.port.mk

Modified: head/CHANGES
==============================================================================
--- head/CHANGES	Tue May  7 07:18:48 2013	(r317579)
+++ head/CHANGES	Tue May  7 08:01:46 2013	(r317580)
@@ -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
 

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Tue May  7 07:18:48 2013	(r317579)
+++ head/Mk/bsd.port.mk	Tue May  7 08:01:46 2013	(r317580)
@@ -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/
 .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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305070801.r4781kID097967>