From owner-svn-ports-head@FreeBSD.ORG Fri Oct 25 19:35:58 2013 Return-Path: Delivered-To: svn-ports-head@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 8FC9B311; Fri, 25 Oct 2013 19:35:58 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 7B8312CA7; Fri, 25 Oct 2013 19:35:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9PJZwwx001179; Fri, 25 Oct 2013 19:35:58 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9PJZwAA001177; Fri, 25 Oct 2013 19:35:58 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201310251935.r9PJZwAA001177@svn.freebsd.org> From: Thomas Abthorpe Date: Fri, 25 Oct 2013 19:35:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331627 - head/textproc/libxdiff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Fri, 25 Oct 2013 19:35:58 -0000 Author: tabthorpe Date: Fri Oct 25 19:35:57 2013 New Revision: 331627 URL: http://svnweb.freebsd.org/changeset/ports/331627 Log: - Support STAGEDIR Added: head/textproc/libxdiff/pkg-plist (contents, props changed) Modified: head/textproc/libxdiff/Makefile Modified: head/textproc/libxdiff/Makefile ============================================================================== --- head/textproc/libxdiff/Makefile Fri Oct 25 19:07:34 2013 (r331626) +++ head/textproc/libxdiff/Makefile Fri Oct 25 19:35:57 2013 (r331627) @@ -18,8 +18,17 @@ USE_AUTOTOOLS= libtool USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-shared --enable-static -MAN3= xdiff.3 -PLIST_FILES= include/xdiff.h lib/libxdiff.a lib/libxdiff.so \ - lib/libxdiff.so.0 lib/libxdiff.la -NO_STAGE= yes +LIBFILES= libxdiff.a libxdiff.la libxdiff.so libxdiff.so.0 + +do-install: + ${INSTALL_DATA} ${WRKSRC}/xdiff/xdiff.h ${STAGEDIR}${PREFIX}/include +.for libs in ${LIBFILES} + ${INSTALL_DATA} ${WRKSRC}/xdiff/.libs/${libs} ${STAGEDIR}${PREFIX}/lib/ +.endfor + ${INSTALL_MAN} ${WRKSRC}/man/xdiff.3 ${STAGEDIR}${MAN1PREFIX}/man/man3 + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxdiff.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxdiff.so.0 + .include Added: head/textproc/libxdiff/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libxdiff/pkg-plist Fri Oct 25 19:35:57 2013 (r331627) @@ -0,0 +1,6 @@ +include/xdiff.h +lib/libxdiff.a +lib/libxdiff.la +lib/libxdiff.so +lib/libxdiff.so.0 +man/man3/xdiff.3.gz