From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Nov 1 18:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2BAEB24C for ; Fri, 1 Nov 2013 18:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 095B92FD0 for ; Fri, 1 Nov 2013 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rA1Ie06R027166 for ; Fri, 1 Nov 2013 18:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rA1Ie01p027164; Fri, 1 Nov 2013 18:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 1 Nov 2013 18:40:00 GMT Resent-Message-Id: <201311011840.rA1Ie01p027164@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ADBD4F05 for ; Fri, 1 Nov 2013 18:30:33 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from omta01.auone-net.jp (mail-or0-f67.auone-net.jp [106.187.230.67]) by mx1.freebsd.org (Postfix) with ESMTP id 707152F6A for ; Fri, 1 Nov 2013 18:30:33 +0000 (UTC) Received: from coppermine.my.domain (ZT034086.ppp.dion.ne.jp [59.128.34.86]) by omta01.auone-net.jp (au one net mail) with ESMTP id D9FB298001D for ; Sat, 2 Nov 2013 03:30:29 +0900 (JST) Message-Id: <20131102032026.706457b394fad031121afb86@yahoo.com> Date: Sat, 2 Nov 2013 03:20:26 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/183558: devel/rudiments: Update to version 0.44 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2013 18:40:01 -0000 >Number: 183558 >Category: ports >Synopsis: devel/rudiments: Update to version 0.44 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 01 18:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 0.44 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/rudiments/Makefile devel/rudiments/Makefile --- /usr/ports/devel/rudiments/Makefile 2013-10-29 19:46:27.000000000 +0900 +++ devel/rudiments/Makefile 2013-11-02 00:00:00.000000000 +0900 @@ -2,7 +2,7 @@ # $FreeBSD: head/devel/rudiments/Makefile 331904 2013-10-28 22:01:40Z pawel $ PORTNAME= rudiments -PORTVERSION= 0.43 +PORTVERSION= 0.44 CATEGORIES= devel MASTER_SITES= SF @@ -11,24 +11,40 @@ LICENSE= LGPL20 -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= PCRE SSL DOCS +OPTIONS_DEFAULT=SSL USES= pkgconfig shebangfix SHEBANG_FILES= doc/programming/insert.pl -USE_OPENSSL= yes USE_AUTOTOOLS= libtool -CONFIGURE_ARGS= --with-ssl-includes=-I${OPENSSLINC} \ - --with-ssl-libs=-L${OPENSSLLIB} \ - --disable-pcre USE_LDCONFIG= yes +PLIST_SUB= VERSION="${PORTVERSION}" + .include +.if ${PORT_OPTIONS:MPCRE} +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre +.else +CONFIGURE_ARGS+=--disable-pcre +.endif + +.if ${PORT_OPTIONS:MSSL} +USE_OPENSSL= yes +CONFIGURE_ARGS+=--with-ssl-includes=-I${OPENSSLINC} \ + --with-ssl-libs=-L${OPENSSLLIB} +.else +CONFIGURE_ARGS+=--disable-ssl +.endif + post-patch: - @${REINPLACE_CMD} -e \ - '/pkgconfig/s|$$(libdir)/|$$(prefix)/libdata/|' ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e 's| -release $$(RUDIMENTS_VERSION)||' \ - -e 's|-rpath $$(libdir)|-rpath ${PREFIX}/lib|' \ - ${WRKSRC}/src/Makefile.in + @${FIND} ${WRKSRC} -name "Makefile*" | ${XARGS} ${REINPLACE_CMD} -e \ + '/pkgconfig/s| $$(libdir)/| $${DESTDIR}$$(prefix)/libdata/| ; \ + /INSTALL/s| $$(bindir)| $${DESTDIR}$$(bindir)| ; \ + /INSTALL/s| $$(docdir)| $${DESTDIR}$$(docdir)| ; \ + /INSTALL/s| $$(includedir)| $${DESTDIR}$$(includedir)| ; \ + /INSTALL/s| $$(mandir)| $${DESTDIR}$$(mandir)| ; \ + /INSTALL/s| $$(libdir)| $${DESTDIR}$$(libdir)| ; \ + /finish/s| $$(libdir)| $${DESTDIR}$$(libdir)|' .include diff -urN /usr/ports/devel/rudiments/distinfo devel/rudiments/distinfo --- /usr/ports/devel/rudiments/distinfo 2013-10-29 19:46:27.000000000 +0900 +++ devel/rudiments/distinfo 2013-11-02 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (rudiments-0.43.tar.gz) = b4bfaf0af183ee5035e89898d2d5a23d20cd6df93514833ceec3abbf1738aaeb -SIZE (rudiments-0.43.tar.gz) = 1665491 +SHA256 (rudiments-0.44.tar.gz) = be262df2ac624306351ae58017069b452b6311afd1fc0b86f662153c165880a9 +SIZE (rudiments-0.44.tar.gz) = 1664741 diff -urN /usr/ports/devel/rudiments/files/patch-configure devel/rudiments/files/patch-configure --- /usr/ports/devel/rudiments/files/patch-configure 2013-09-05 01:46:22.000000000 +0900 +++ devel/rudiments/files/patch-configure 2013-11-02 00:00:00.000000000 +0900 @@ -1,7 +1,7 @@ --- configure.orig 2012-02-17 13:38:13.000000000 +0900 +++ configure 2012-04-13 00:56:01.000000000 +0900 -@@ -14781,6 +14781,9 @@ - *haiku* ) +@@ -15691,6 +15691,9 @@ + *minix* ) WERROR="" ;; + freebsd* ) @@ -10,7 +10,7 @@ *) ;; esac -@@ -16334,8 +16337,8 @@ +@@ -17476,8 +17479,8 @@ HAVE_PTHREAD="" @@ -21,7 +21,7 @@ if ( test "$cross_compiling" = "yes" ) then -@@ -16354,7 +16357,7 @@ +@@ -17496,7 +17499,7 @@ else @@ -30,7 +30,7 @@ do if ( test -n "$i" ) then -@@ -16388,9 +16391,6 @@ +@@ -17530,9 +17533,6 @@ STATIC="" HEADERSANDLIBSPATH="" @@ -40,7 +40,7 @@ eval "PTHREADSTATIC=\"\"" if ( test -n "" ) then -@@ -16605,9 +16605,6 @@ +@@ -17747,9 +17747,6 @@ LIBSTRING=`echo $LIBSTRING | sed -e "s|-L/usr/lib$||g" -e "s|-L/lib$||g" -e "s|-L/usr/lib ||g" -e "s|-L/lib ||g"` LIBSTRING=`echo $LIBSTRING | sed -e "s|-L/usr/lib64$||g" -e "s|-L/lib64$||g" -e "s|-L/usr/lib64 ||g" -e "s|-L/lib64 ||g"` @@ -50,3 +50,62 @@ eval "PTHREADSTATIC=\"$STATIC\"" if ( test -n "" ) then +@@ -29618,47 +29615,47 @@ + # prepend DESTDIR where appropriate + if ( test "`echo $ac_default_prefix | cut -c1`" = "/" ) + then +- ac_default_prefix='${DESTDIR}'"$ac_default_prefix" ++ ac_default_prefix="$ac_default_prefix" + fi + if ( test "`echo $prefix | cut -c1`" = "/" ) + then +- prefix='${DESTDIR}'"$prefix" ++ prefix="$prefix" + fi + if ( test "`echo $exec_prefix | cut -c1`" = "/" ) + then +- exec_prefix='${DESTDIR}'"$exec_prefix" ++ exec_prefix="$exec_prefix" + fi + if ( test "`echo $includedir | cut -c1`" = "/" ) + then +- includedir='${DESTDIR}'"$includedir" ++ includedir="$includedir" + fi + if ( test "`echo $libdir | cut -c1`" = "/" ) + then +- libdir='${DESTDIR}'"$libdir" ++ libdir="$libdir" + fi + if ( test "`echo $libexecdir | cut -c1`" = "/" ) + then +- libexecdir='${DESTDIR}'"$libexecdir" ++ libexecdir="$libexecdir" + fi + if ( test "`echo $bindir | cut -c1`" = "/" ) + then +- bindir='${DESTDIR}'"$bindir" ++ bindir="$bindir" + fi + if ( test "`echo $localstatedir | cut -c1`" = "/" ) + then +- localstatedir='${DESTDIR}'"$localstatedir" ++ localstatedir="$localstatedir" + fi + if ( test "`echo $sysconfdir | cut -c1`" = "/" ) + then +- sysconfdir='${DESTDIR}'"$sysconfdir" ++ sysconfdir="$sysconfdir" + fi + if ( test "`echo $mandir | cut -c1`" = "/" ) + then +- mandir='${DESTDIR}'"$mandir" ++ mandir="$mandir" + fi + if ( test "`echo $datadir | cut -c1`" = "/" ) + then +- datadir='${DESTDIR}'"$datadir" ++ datadir="$datadir" + fi + + diff -urN /usr/ports/devel/rudiments/pkg-plist devel/rudiments/pkg-plist --- /usr/ports/devel/rudiments/pkg-plist 2013-10-29 19:46:27.000000000 +0900 +++ devel/rudiments/pkg-plist 2013-11-02 00:00:00.000000000 +0900 @@ -3,7 +3,6 @@ include/rudiments/charstring.h include/rudiments/chat.h include/rudiments/client.h -include/rudiments/clientserverfactory.h include/rudiments/codetree.h include/rudiments/commandline.h include/rudiments/crypt.h @@ -41,7 +40,6 @@ include/rudiments/private/chatincludes.h include/rudiments/private/client.h include/rudiments/private/clientincludes.h -include/rudiments/private/clientserverfactoryincludes.h include/rudiments/private/codetree.h include/rudiments/private/codetreeincludes.h include/rudiments/private/commandline.h @@ -56,7 +54,6 @@ include/rudiments/private/dictionaryincludes.h include/rudiments/private/dictionaryinlines.h include/rudiments/private/dictionarynode.h -include/rudiments/private/dictionarynodeinlines.h include/rudiments/private/directory.h include/rudiments/private/directoryincludes.h include/rudiments/private/dll.h @@ -91,8 +88,6 @@ include/rudiments/private/linkedlistincludes.h include/rudiments/private/linkedlistinlines.h include/rudiments/private/linkedlistnode.h -include/rudiments/private/linkedlistnodeinlines.h -include/rudiments/private/linkedlistutil.h include/rudiments/private/linkedlistutilinlines.h include/rudiments/private/listener.h include/rudiments/private/listenerincludes.h @@ -202,10 +197,11 @@ include/rudiments/xmldom.h include/rudiments/xmldomnode.h include/rudiments/xmlsax.h +lib/librudiments-%%VERSION%%.so +lib/librudiments-%%VERSION%%.so.1 lib/librudiments.a lib/librudiments.la lib/librudiments.so -lib/librudiments.so.1 libdata/pkgconfig/rudiments.pc man/man1/rudiments-config.1.gz %%PORTDOCS%%%%DOCSDIR%%/classes/html/annotated.html >Release-Note: >Audit-Trail: >Unformatted: