From owner-svn-ports-all@FreeBSD.ORG Thu Jun 5 07:40:50 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 501E4C1; Thu, 5 Jun 2014 07:40:50 +0000 (UTC) Received: from mailrelay001.isp.belgacom.be (mailrelay001.isp.belgacom.be [195.238.6.51]) by mx1.freebsd.org (Postfix) with ESMTP id 751B02969; Thu, 5 Jun 2014 07:40:49 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlcGAOsdkFNbs4fn/2dsb2JhbABZgwdSS8MHAYELF3SCJQEBBTocHgUQCw4GBAklDyoeBhOIRgEI0zQXjh8zB4RABJoSgUCReoM6Ow Received: from 231.135-179-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.179.135.231]) by relay.skynet.be with ESMTP; 05 Jun 2014 09:40:41 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.8/8.14.8) with ESMTP id s557ee0C018341; Thu, 5 Jun 2014 09:40:40 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Thu, 5 Jun 2014 09:40:39 +0200 From: Tijl Coosemans To: Alexander Leidinger Subject: Re: svn commit: r356402 - head/textproc/modlogan Message-ID: <20140605094039.3b3de107@kalimero.tijl.coosemans.org> In-Reply-To: <201406032004.s53K41l6056454@svn.freebsd.org> References: <201406032004.s53K41l6056454@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 07:40:50 -0000 On Tue, 3 Jun 2014 20:04:01 +0000 (UTC) Alexander Leidinger wrote: > Author: netchild > Date: Tue Jun 3 20:04:00 2014 > New Revision: 356402 > URL: http://svnweb.freebsd.org/changeset/ports/356402 > QAT: https://qat.redports.org/buildarchive/r356402/ > > Log: > - stage-ify > - convert to USES-libtool > - convert to new lib depends > > Modified: > head/textproc/modlogan/Makefile > head/textproc/modlogan/pkg-plist > > Modified: head/textproc/modlogan/Makefile > ============================================================================== > --- head/textproc/modlogan/Makefile Tue Jun 3 19:59:52 2014 (r356401) > +++ head/textproc/modlogan/Makefile Tue Jun 3 20:04:00 2014 (r356402) > @@ -10,13 +10,12 @@ MASTER_SITES= http://www.mirrorservice.o > MAINTAINER= netchild@FreeBSD.org > COMMENT= A modular log file analysis program > > -LIB_DEPENDS= adns:${PORTSDIR}/dns/adns \ > - gd:${PORTSDIR}/graphics/gd \ > - pcre:${PORTSDIR}/devel/pcre \ > - expat:${PORTSDIR}/textproc/expat2 > +LIB_DEPENDS= libadns.so:${PORTSDIR}/dns/adns \ > + libgd.so:${PORTSDIR}/graphics/gd \ > + libpcre.so:${PORTSDIR}/devel/pcre \ > + libexpat.so:${PORTSDIR}/textproc/expat2 > > -USE_AUTOTOOLS= libtool > -USES= gettext > +USES= gettext libtool:keepla > > # Please don't remove the comments, as soon as autoconf/libtool get's > # updated in the ports collection the comments may be removed. > @@ -31,11 +30,9 @@ CONFIGURE_ARGS+=--with-mysql > CPPFLAGS+= -I${LOCALBASE}/include > LDFLAGS+= -L${LOCALBASE}/lib > > -MAN1= modlogan.1 > DOC1= faq.txt glosar manual.txt translations.txt \ > using-plugins.txt writing-plugins.txt > > -NO_STAGE= yes > post-patch: > @${REINPLACE_CMD} -e 's:\@config_path\@:${PREFIX}/etc/modlogan:g' ${WRKSRC}/doc/modlogan.conf-dist.in > > @@ -44,17 +41,14 @@ post-patch: > > post-install: > .if !defined(NOPORTDOCS) > - ${MKDIR} ${PREFIX}/share/doc/modlogan > + ${MKDIR} ${STAGEDIR}/${PREFIX}/share/doc/modlogan > .for i in ${DOC1} > - @${INSTALL_DATA} ${WRKSRC}/doc/${i} ${PREFIX}/share/doc/modlogan/${i} > + @${INSTALL_DATA} ${WRKSRC}/doc/${i} ${STAGEDIR}/${PREFIX}/share/doc/modlogan/${i} > .endfor > .endif > - ${MKDIR} ${PREFIX}/share/examples/modlogan > + ${MKDIR} ${STAGEDIR}/${PREFIX}/share/examples/modlogan > .for i in footer.ihtml header.ihtml output.tmpl convert_history_to_07x.pl convert_to_055.pl convert_to_060.pl > - @${INSTALL_DATA} ${WRKSRC}/doc/${i} ${PREFIX}/share/examples/modlogan/${i} > -.endfor > -.for i in css conf def.conf > - [ -f ${PREFIX}/etc/modlogan/modlogan.${i} ] || ${INSTALL_DATA} ${PREFIX}/etc/modlogan/modlogan.${i}-dist ${PREFIX}/etc/modlogan/modlogan.${i} > + @${INSTALL_DATA} ${WRKSRC}/doc/${i} ${STAGEDIR}/${PREFIX}/share/examples/modlogan/${i} > .endfor > > .include > > Modified: head/textproc/modlogan/pkg-plist > ============================================================================== > --- head/textproc/modlogan/pkg-plist Tue Jun 3 19:59:52 2014 (r356401) > +++ head/textproc/modlogan/pkg-plist Tue Jun 3 20:04:00 2014 (r356402) > @@ -134,6 +134,7 @@ lib/libmla_processor_telecom.so > lib/libmla_processor_web.a > lib/libmla_processor_web.la > lib/libmla_processor_web.so > +man/man1/modlogan.1.gz > %%PORTDOCS%%%%DOCSDIR%%/faq.txt > %%PORTDOCS%%%%DOCSDIR%%/glosar > %%PORTDOCS%%%%DOCSDIR%%/manual.txt This needs a PORTREVISION bump because USES=libtool changes the content of the .la file.