Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Jul 2014 09:41:23 +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: r361044 - in head: . lang lang/see lang/see-devel lang/see/files
Message-ID:  <201407070941.s679fNnc073838@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Mon Jul  7 09:41:23 2014
New Revision: 361044
URL: http://svnweb.freebsd.org/changeset/ports/361044
QAT: https://qat.redports.org/buildarchive/r361044/

Log:
  Update to 3.1
  Support stage
  Convert to USES=libtool
  Remove the -devel version which is outdated an no more needed
  
  PR:		187954
  Submitted by:	numisemis@yahoo.com (maintainer)

Deleted:
  head/lang/see-devel/
  head/lang/see/files/
Modified:
  head/MOVED
  head/lang/Makefile
  head/lang/see/Makefile
  head/lang/see/distinfo
  head/lang/see/pkg-plist

Modified: head/MOVED
==============================================================================
--- head/MOVED	Mon Jul  7 09:23:06 2014	(r361043)
+++ head/MOVED	Mon Jul  7 09:41:23 2014	(r361044)
@@ -6240,3 +6240,4 @@ sysutil/psgconf||2014-07-06|Removed: aba
 print/texinfo-lite|print/indexinfo|2014-07-06|Replaced by indexinfo to handle info page index
 audio/linnya||2014-07-07|Deprecated upstream
 databases/slony1|databases/slony1v2|2014-07-07|Unsupported: consider using slony1 v2 instead
+lang/see-devel|lang/see|2014-07-07|lang/see is up to date no need for see-devel

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Mon Jul  7 09:23:06 2014	(r361043)
+++ head/lang/Makefile	Mon Jul  7 09:41:23 2014	(r361044)
@@ -296,7 +296,6 @@
     SUBDIR += sdcc
     SUBDIR += sdcc-devel
     SUBDIR += see
-    SUBDIR += see-devel
     SUBDIR += seed7
     SUBDIR += siod
     SUBDIR += sisc

Modified: head/lang/see/Makefile
==============================================================================
--- head/lang/see/Makefile	Mon Jul  7 09:23:06 2014	(r361043)
+++ head/lang/see/Makefile	Mon Jul  7 09:41:23 2014	(r361044)
@@ -2,68 +2,51 @@
 # $FreeBSD$
 
 PORTNAME=	see
-PORTVERSION=	2.0.1131
-PORTREVISION=	1
+PORTVERSION=	3.1.1424
 CATEGORIES=	lang devel
-MASTER_SITES=	http://www.powerband.net.au/~david.leonard/ \
-		http://freshmeat.net/redir/see/45974/url_tgz/
+MASTER_SITES=	http://download.openpkg.org/components/cache/see/ \
+		http://lil.fr.distfiles.macports.org/see/ \
+		ftp://ftp7.freebsd.org/sites/distfiles.macports.org/see/ \
+		ftp://ftp.mirrorservice.org/sites/distfiles.macports.org/see/ \
+		ftp://kuiper.mirrorservice.org/sites/distfiles.macports.org/see/ \
+		ftp://copernicus.mirrorservice.org/sites/distfiles.macports.org/see/ \
+		ftp://ftp2.uk.i-scream.org/sites/distfiles.macports.org/see/ \
+		ftp://mirror.csclub.uwaterloo.ca/MacPorts/mpdistfiles/see/
 
 MAINTAINER=	numisemis@yahoo.com
 COMMENT=	Simple ECMAScript Engine (SEE)
 
-OPTIONS_DEFINE=	GC OPTIMIZED_CFLAGS SEE_DEBUG THREADS DOCS
-OPTIONS_DEFAULT=	GC THREADS
+OPTIONS_DEFINE=	GC SEE_DEBUG DOCS
+OPTIONS_DEFAULT=	GC
 GC_DESC=	Use Boehm-Weiser garbage collection package
 SEE_DEBUG_DESC=	Internal SEE library debugging
 
 CONFLICTS=	see-devel-[0-9]*
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
-LATEST_LINK=	${PORTNAME}${PKGNAMESUFFIX}
 
 USE_LDCONFIG=	yes
-USES=		perl5
+USES=		libtool pathfix perl5
 USE_PERL5=	build
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
 
+CFLAGS+=	-O3 -fomit-frame-pointer
 CPPFLAGS+=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
 LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
 
-NO_STAGE=	yes
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MMULTIPLE_THREADS}
-CFLAGS+=	-DMULTIPLE_THREADS
-.endif
-
-.if ! ${PORT_OPTIONS:MSEE_DEBUG}
-CFLAGS+=	-DNDEBUG
-.endif
-
-.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
-CFLAGS+=	-O3 -fomit-frame-pointer
-.endif
-
-.if ${PORT_OPTIONS:MGC}
-LIB_DEPENDS+=	gc:${PORTSDIR}/devel/boehm-gc
-.else
-CONFIGURE_ARGS+=	--without-boehm-gc
-.if ! ${PORT_OPTIONS:MTHREADS}
-PTHREAD_CFLAGS=
-PTHREAD_LIBS=
-.endif
-.endif
+SEE_DEBUG_CFLAGS_OFF=	-DNDEBUG
+GC_LIB_DEPENDS=		libgc.so:${PORTSDIR}/devel/boehm-gc
+GC_CONFIGURE_WITH=	boehm-gc
 
 post-patch:
 	@${REINPLACE_CMD} -e "s|PACKAGE_BUGREPORT='leonard@users|PACKAGE_BUGREPORT='leonard\\\@users|" \
 		${WRKSRC}/configure
 
-.if ${PORT_OPTIONS:MDOCS}
 post-install:
-	${MKDIR} ${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for f in doc/USAGE.html AUTHORS NEWS README TODO COPYING
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
 .endfor
-.endif
 
 .include <bsd.port.mk>

Modified: head/lang/see/distinfo
==============================================================================
--- head/lang/see/distinfo	Mon Jul  7 09:23:06 2014	(r361043)
+++ head/lang/see/distinfo	Mon Jul  7 09:41:23 2014	(r361044)
@@ -1,2 +1,2 @@
-SHA256 (see-2.0.1131.tar.gz) = 0d398fd5f7a2e86ddbe361a80d9658bf0f0f6c11dad186953c3c064c56d12d93
-SIZE (see-2.0.1131.tar.gz) = 948647
+SHA256 (see-3.1.1424.tar.gz) = 04c58de4f56894f05ebb3b7c61b35e4090cd15710d42b3918f867eea50ab8f5c
+SIZE (see-3.1.1424.tar.gz) = 1015347

Modified: head/lang/see/pkg-plist
==============================================================================
--- head/lang/see/pkg-plist	Mon Jul  7 09:23:06 2014	(r361043)
+++ head/lang/see/pkg-plist	Mon Jul  7 09:41:23 2014	(r361044)
@@ -21,13 +21,14 @@ include/see/type.h
 include/see/value.h
 include/see/version.h
 lib/libsee.a
-lib/libsee.la
 lib/libsee.so
 lib/libsee.so.1
+lib/libsee.so.1.1.1
 lib/see/libFile.a
-lib/see/libFile.la
 lib/see/libFile.so
 lib/see/libFile.so.0
+lib/see/libFile.so.0.0.0
+libdata/pkgconfig/see.pc
 %%PORTDOCS%%%%DOCSDIR%%/AUTHORS
 %%PORTDOCS%%%%DOCSDIR%%/COPYING
 %%PORTDOCS%%%%DOCSDIR%%/NEWS



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