From owner-svn-ports-head@FreeBSD.ORG Wed Oct 30 14:57:09 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 15890B31 for ; Wed, 30 Oct 2013 14:57:09 +0000 (UTC) (envelope-from bdrewery@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 E87342834 for ; Wed, 30 Oct 2013 14:57:08 +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 r9UEv8qm021812 for ; Wed, 30 Oct 2013 14:57:08 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9UEv85A021805 for svn-ports-head@freebsd.org; Wed, 30 Oct 2013 14:57:08 GMT (envelope-from bdrewery) Received: (qmail 32025 invoked from network); 30 Oct 2013 09:57:07 -0500 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 30 Oct 2013 09:57:07 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 30 Oct 2013 09:57:07 -0500 From: Bryan Drewery To: Matthias Andree Subject: Re: svn commit: r331435 - head/news/newsstar Organization: FreeBSD In-Reply-To: <201310232217.r9NMHonG071871@svn.freebsd.org> References: <201310232217.r9NMHonG071871@svn.freebsd.org> Message-ID: <49cc5ad931cc4f73c567e502c9601d63@shatow.net> X-Sender: bdrewery@FreeBSD.org User-Agent: Roundcube Webmail/0.9.3 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, owner-ports-committers@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 14:57:09 -0000 On 2013-10-23 17:17, Matthias Andree wrote: > Author: mandree > Date: Wed Oct 23 22:17:50 2013 > New Revision: 331435 > URL: http://svnweb.freebsd.org/changeset/ports/331435 > > Log: > Support staging. > Reorder Makefile targets (post-install after post-patch). > Update to new LIB_DEPENDS format. > Disable chown, and leave that to the package. > > Note that this apparently exposes issues with > poudriere testport/make check-orphans due to absolute /var paths. > > Modified: > head/news/newsstar/Makefile > head/news/newsstar/pkg-plist (contents, props changed) > > Modified: head/news/newsstar/Makefile > ============================================================================== > --- head/news/newsstar/Makefile Wed Oct 23 22:15:15 2013 (r331434) > +++ head/news/newsstar/Makefile Wed Oct 23 22:17:50 2013 (r331435) > @@ -11,7 +11,7 @@ COMMENT= Transfer news between a local N > > LICENSE= GPLv3 > > -LIB_DEPENDS= gdbm:${PORTSDIR}/databases/gdbm > +LIB_DEPENDS= libgdbm.so:${PORTSDIR}/databases/gdbm > BUILD_DEPENDS= xmlto:${PORTSDIR}/textproc/xmlto \ > > ${LOCALBASE}/share/xml/docbook/4.5/docbookx.dtd:${PORTSDIR}/textproc/docbook-xml > > @@ -22,6 +22,7 @@ OPTIONS_DEFINE= SSL > OPTIONS_DEFAULT= SSL > > CONFIGURE_ARGS+=--prefix=${PREFIX} \ > + --disable-chown \ > --with-conf-dir=${PREFIX}/etc/newsstar \ > --with-rc-dir=/var/spool/newsstar/lib \ > --with-incoming-dir=/var/spool/newsstar/incoming > @@ -29,7 +30,6 @@ CONFIGURE_ARGS+=--prefix=${PREFIX} \ > CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${ICONV_LIB}" > CPPFLAGS+= -I${LOCALBASE}/include > > -NO_STAGE= yes > .include > > .if ! ${PORT_OPTIONS:MDOCS} > @@ -69,29 +69,26 @@ DOCS= AUTHORS INSTALL NEWS README TODO > EX_CONFIGS= cf.server.sample curses.cf.sample filter.pl.sample > main.cf.sample \ > master.ignore.sample master.score.sample newsrc.sample > > -pre-install: > - ${MKDIR} ${PREFIX}/lib/${PORTNAME} You lost this line. The dir never gets created now. .. > Modified: head/news/newsstar/pkg-plist .. > +@dirrmtry lib/newsstar And now it fails to package with pkgng because the directory listed in plist doesn't really exist. pkg-static: lstat(/wrkdirs/usr/ports/news/newsstar/work/stage/usr/local/lib/newsstar/): No such file or directory pkg-static: DEVELOPER_MODE: Plist error: @dirrm lib/newsstar -- Regards, Bryan Drewery