Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Feb 2014 14:33:37 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r342300 - in head: lang/open-cobol lang/phc lang/rexx-wrapper mail/dkfilter mail/libdkim mail/libsieve mail/popa3d-before-sendmail mail/spamcup mail/xpbiff math/fann math/fftw-float mat...
Message-ID:  <201402021433.s12EXbJD079880@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sun Feb  2 14:33:37 2014
New Revision: 342300
URL: http://svnweb.freebsd.org/changeset/ports/342300
QAT: https://qat.redports.org/buildarchive/r342300/

Log:
  - Stage support
  - Convert few ports to USES

Modified:
  head/lang/open-cobol/Makefile
  head/lang/phc/Makefile
  head/lang/rexx-wrapper/Makefile
  head/mail/dkfilter/Makefile
  head/mail/libdkim/Makefile
  head/mail/libsieve/Makefile
  head/mail/popa3d-before-sendmail/Makefile
  head/mail/spamcup/Makefile
  head/mail/xpbiff/Makefile
  head/math/fann/Makefile
  head/math/fftw-float/Makefile
  head/math/minisat/Makefile
  head/math/qd/Makefile

Modified: head/lang/open-cobol/Makefile
==============================================================================
--- head/lang/open-cobol/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/lang/open-cobol/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -12,7 +12,7 @@ COMMENT=	An open-source COBOL compiler
 LIB_DEPENDS=	gmp.10:${PORTSDIR}/math/gmp
 
 USE_BDB=	yes
-USE_GMAKE=	yes
+USES=		gmake
 USE_AUTOTOOLS=	libtool
 USE_LDCONFIG=	yes
 
@@ -21,7 +21,6 @@ INFO=		open-cobol
 CPPFLAGS+=	-I${BDB_INCLUDE_DIR} -I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-NO_STAGE=	yes
 .include  <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MNLS}

Modified: head/lang/phc/Makefile
==============================================================================
--- head/lang/phc/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/lang/phc/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -9,7 +9,7 @@ MASTER_SITES=	http://www.phpcompiler.org
 MAINTAINER=	eg@fbsd.lt
 COMMENT=	A compiler for the PHP language
 
-USE_GMAKE=	yes
+USES=	gmake
 GNU_CONFIGURE=	yes
 CFLAGS+=	-fgnu89-inline
 
@@ -19,5 +19,4 @@ post-patch:	.SILENT
 	${REINPLACE_CMD} 's/insert/this->&/' \
 		${WRKSRC}/include/phc/lib/List.h
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/lang/rexx-wrapper/Makefile
==============================================================================
--- head/lang/rexx-wrapper/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/lang/rexx-wrapper/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -26,5 +26,4 @@ post-patch:	.SILENT
 		${WRKSRC}/rexxwrap.cmd
 	@${REINPLACE_CMD} 's/-compiler=$$(CC/&:T/' ${WRKSRC}/Makefile.in
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/dkfilter/Makefile
==============================================================================
--- head/mail/dkfilter/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/mail/dkfilter/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -26,5 +26,4 @@ GROUPS=		${DKFILTER_GROUPNAME}
 DKFILTER_USERNAME?=	dkfilter
 DKFILTER_GROUPNAME?=	${DKFILTER_USERNAME}
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/libdkim/Makefile
==============================================================================
--- head/mail/libdkim/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/mail/libdkim/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -20,19 +20,9 @@ USE_OPENSSL=	YES
 
 WRKSRC=		${WRKDIR}/${PORTNAME}/src
 
-NO_STAGE=	yes
-.include <bsd.port.options.mk>
-
-#Check for OPENSSL 0.9.8 in BASE:  If not present require PORT
-.if ${OSVERSION} < 700019
-WITH_OPENSSL_PORT=	yes
-.endif
-
-.include <bsd.port.pre.mk>
-
 post-patch:
 	${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.prev
 	@${SED} -e "s=%%SHLIB_MAJOR%%=${SHLIB_MAJOR}=g" \
 		${FILESDIR}/Makefile > ${WRKSRC}/Makefile
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: head/mail/libsieve/Makefile
==============================================================================
--- head/mail/libsieve/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/mail/libsieve/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -13,9 +13,7 @@ LICENSE=LGPL21
 
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=--prefix=${PREFIX}
-USE_GMAKE=	yes
-USES=		bison
+USES=		bison gmake
 USE_LDCONFIG=	yes
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/popa3d-before-sendmail/Makefile
==============================================================================
--- head/mail/popa3d-before-sendmail/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/mail/popa3d-before-sendmail/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -10,7 +10,6 @@ MASTERDIR?=	${.CURDIR}/../popa3d
 OPTIONS_DEFAULT=	SMTP_AFTER_POP3
 
 .if exists(${.CURDIR}/Makefile.local)
-NO_STAGE=	yes
 .include "${.CURDIR}/Makefile.local"
 .endif
 

Modified: head/mail/spamcup/Makefile
==============================================================================
--- head/mail/spamcup/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/mail/spamcup/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -24,5 +24,4 @@ PLIST_FILES=	bin/spamcup.pl ${SITE_PERL_
 
 PLIST_DIRS=	${SITE_PERL_REL}/${PERL_ARCH}/auto/Spamcup
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/mail/xpbiff/Makefile
==============================================================================
--- head/mail/xpbiff/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/mail/xpbiff/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -27,7 +27,6 @@ YOUBINBINDIR=	${PREFIX}
 YOUBINBINDIR=	${LOCALBASE}
 .endif
 
-NO_STAGE=	yes
 .include <bsd.port.pre.mk>
 
 do-extract:

Modified: head/math/fann/Makefile
==============================================================================
--- head/math/fann/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/math/fann/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -16,7 +16,6 @@ USES=		cmake
 USE_ZIP=	yes
 USE_LDCONFIG=	yes
 
-NO_STAGE=	yes
 post-patch:
 	${REINPLACE_CMD} -e 's|/lib/pkgconfig|/libdata/pkgconfig|g' ${WRKSRC}/CMakeLists.txt
 

Modified: head/math/fftw-float/Makefile
==============================================================================
--- head/math/fftw-float/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/math/fftw-float/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -8,5 +8,4 @@ COMMENT=	Fast C routines (Single Percisi
 FFTW_FLAVOR=	float
 MASTERDIR=	${.CURDIR}/../../math/fftw
 
-NO_STAGE=	yes
 .include "${MASTERDIR}/Makefile"

Modified: head/math/minisat/Makefile
==============================================================================
--- head/math/minisat/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/math/minisat/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -13,5 +13,4 @@ USES=	gmake
 USE_LDCONFIG=	yes
 MAKE_ENV=	prefix=${PREFIX}
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/math/qd/Makefile
==============================================================================
--- head/math/qd/Makefile	Sun Feb  2 14:29:02 2014	(r342299)
+++ head/math/qd/Makefile	Sun Feb  2 14:33:37 2014	(r342300)
@@ -11,11 +11,7 @@ MAINTAINER=	maho@FreeBSD.org
 COMMENT=	Double-Double and Quad-Double Arithmetic
 
 GNU_CONFIGURE=	yes
-
-NO_STAGE=	yes
-.include <bsd.port.pre.mk>
-
 USE_FORTRAN=	yes
 CONFIGURE_ARGS+=	--enable-shared=yes
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>



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