Date: Sat, 10 Jun 2017 14:05:40 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443090 - head/devel/libtrue Message-ID: <201706101405.v5AE5ebG003838@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Sat Jun 10 14:05:40 2017 New Revision: 443090 URL: https://svnweb.freebsd.org/changeset/ports/443090 Log: - Fix packaging of true.h [1] - Sort plist - Install libtrue.a with INSTALL_DATA Reported by: Michael Williams [1] Modified: head/devel/libtrue/Makefile head/devel/libtrue/pkg-plist Modified: head/devel/libtrue/Makefile ============================================================================== --- head/devel/libtrue/Makefile Sat Jun 10 13:49:24 2017 (r443089) +++ head/devel/libtrue/Makefile Sat Jun 10 14:05:40 2017 (r443090) @@ -2,6 +2,7 @@ PORTNAME= libtrue PORTVERSION= 20170609 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GH @@ -14,9 +15,10 @@ GH_TAGNAME= cc8c99f5d1406b5e7db7d712aff2b6b294560ace do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib ${STAGEDIR}/bin - ${INSTALL_LIB} ${WRKSRC}/libtrue/libtrue.a ${STAGEDIR}${PREFIX}/lib/ + ${INSTALL_DATA} ${WRKSRC}/libtrue/libtrue.a ${STAGEDIR}${PREFIX}/lib/ ${INSTALL_LIB} ${WRKSRC}/libtrue/libtrue.so ${STAGEDIR}${PREFIX}/lib/ ${INSTALL_LIB} ${WRKSRC}/libtrue/libtrue.so.0 ${STAGEDIR}${PREFIX}/lib/ ${INSTALL_PROGRAM} ${WRKSRC}/true/true ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_DATA} ${WRKSRC}/libtrue/true.h ${STAGEDIR}${PREFIX}/include/ .include <bsd.port.mk> Modified: head/devel/libtrue/pkg-plist ============================================================================== --- head/devel/libtrue/pkg-plist Sat Jun 10 13:49:24 2017 (r443089) +++ head/devel/libtrue/pkg-plist Sat Jun 10 14:05:40 2017 (r443090) @@ -1,4 +1,5 @@ +bin/true +include/true.h lib/libtrue.a lib/libtrue.so lib/libtrue.so.0 -bin/true
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706101405.v5AE5ebG003838>