From owner-svn-ports-all@FreeBSD.ORG Fri May 23 07:12:08 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 8913EC10; Fri, 23 May 2014 07:12:08 +0000 (UTC) Received: from mailrelay003.isp.belgacom.be (mailrelay003.isp.belgacom.be [195.238.6.53]) by mx1.freebsd.org (Postfix) with ESMTP id AA6682AC2; Fri, 23 May 2014 07:12:07 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqYGAKHzflNbsJoN/2dsb2JhbABZgwdSS608lwIBgQcXdIIlAQEFOhweBRALFAQJJQ8qHgYTiEUBCNciF44fMweEQASZcYE+kWqDOjs Received: from 13.154-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.154.13]) by relay.skynet.be with ESMTP; 23 May 2014 09:11:59 +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 s4N7Bwk1000951; Fri, 23 May 2014 09:11:59 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Fri, 23 May 2014 09:11:58 +0200 From: Tijl Coosemans To: "Vanilla I. Shu" Subject: Re: svn commit: r354904 - in head/comms/rxtx: . files Message-ID: <20140523091158.600d9724@kalimero.tijl.coosemans.org> In-Reply-To: <201405230213.s4N2Dge2039229@svn.freebsd.org> References: <201405230213.s4N2Dge2039229@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: Fri, 23 May 2014 07:12:08 -0000 On Fri, 23 May 2014 02:13:42 +0000 (UTC) Vanilla I. Shu wrote: > Author: vanilla > Date: Fri May 23 02:13:42 2014 > New Revision: 354904 > URL: http://svnweb.freebsd.org/changeset/ports/354904 > QAT: https://qat.redports.org/buildarchive/r354904/ > > Log: > Stageify. > > Approved by: portmgr@ > > Deleted: > head/comms/rxtx/files/patch-Makefile.in-libtool > Modified: > head/comms/rxtx/Makefile > head/comms/rxtx/files/patch-Makefile.in (contents, props changed) > head/comms/rxtx/pkg-plist > > Modified: head/comms/rxtx/Makefile > ============================================================================== > --- head/comms/rxtx/Makefile Fri May 23 02:06:09 2014 (r354903) > +++ head/comms/rxtx/Makefile Fri May 23 02:13:42 2014 (r354904) > @@ -12,7 +12,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/p/ > MAINTAINER= mirror176@cox.net > COMMENT= Native interface to serial ports in Java > > -USES= gmake zip > +USES= gmake zip libtool > USE_JAVA= yes > JAVA_VERSION= 1.6+ > JAVA_OS= native > @@ -25,7 +25,6 @@ NO_MTREE= yes > > PLIST_SUB= ARCH=${ARCH} > > -NO_STAGE= yes > post-patch: > @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure ${WRKSRC}/ltconfig > > > Modified: head/comms/rxtx/files/patch-Makefile.in > ============================================================================== > --- head/comms/rxtx/files/patch-Makefile.in Fri May 23 02:06:09 2014 (r354903) > +++ head/comms/rxtx/files/patch-Makefile.in Fri May 23 02:13:42 2014 (r354904) > @@ -1,13 +1,21 @@ > -$FreeBSD$ > - > ---- Makefile.in.orig Fri Apr 9 23:57:20 2004 > -+++ Makefile.in Fri Apr 9 23:58:06 2004 > -@@ -451,7 +451,7 @@ > - echo $$i; \ > +--- Makefile.in.orig 2008-12-31 10:29:12.000000000 +0800 > ++++ Makefile.in 2014-05-23 10:05:55.350336425 +0800 > +@@ -619,13 +619,15 @@ $(CLASSES): $(javafiles) $(TOP)/Makefile > + # install librxtxSerial.so into the proper directory and copy $(JARTARGET) to its > + # proper location > + install: all > ++ @$(MKDIR_P) $(DESTDIR)$(RXTX_PATH) > + @$(LIBTOOL_INST) \ > + `for i in $(TARGETLIB);do \ > + if [ -f $$i ];then \ > +- echo $$i; \ > ++ echo $(TOP)/$$i; \ > fi; \ > - done` $(RXTX_PATH) > +- done` $(RXTX_PATH) > - $(INSTALL_PROGRAM) $(JARTARGET) $(JHOME)/ > -+ $(BSD_INSTALL_DATA) $(JARTARGET) $(JHOME)/ > ++ done` $(DESTDIR)$(RXTX_PATH) > ++ @$(MKDIR_P) $(DESTDIR)$(JHOME) > ++ $(BSD_INSTALL_DATA) $(JARTARGET) $(DESTDIR)$(JHOME)/ > > clean-generic: > rm -rf $(DEST) $(TOP)/$(CLASSTOP) > > Modified: head/comms/rxtx/pkg-plist > ============================================================================== > --- head/comms/rxtx/pkg-plist Fri May 23 02:06:09 2014 (r354903) > +++ head/comms/rxtx/pkg-plist Fri May 23 02:13:42 2014 (r354904) > @@ -1,7 +1,5 @@ > lib/ext/RXTXcomm.jar > -lib/%%ARCH%%/librxtxParallel-2.2pre1.so > -lib/%%ARCH%%/librxtxParallel.la > lib/%%ARCH%%/librxtxParallel.so > -lib/%%ARCH%%/librxtxSerial-2.2pre1.so > -lib/%%ARCH%%/librxtxSerial.la > +lib/%%ARCH%%/librxtxParallel-2.2pre1.so > lib/%%ARCH%%/librxtxSerial.so > +lib/%%ARCH%%/librxtxSerial-2.2pre1.so This requires a PORTREVISION bump. You can also remove post-patch because USES=libtool deals with the aout/elf problem.