From owner-svn-ports-head@FreeBSD.ORG Fri Jun 27 06:43:07 2014 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 ESMTPS id CC3E7E62; Fri, 27 Jun 2014 06:43:07 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA2F82841; Fri, 27 Jun 2014 06:43:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5R6h7Mi093185; Fri, 27 Jun 2014 06:43:07 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5R6h7LL093184; Fri, 27 Jun 2014 06:43:07 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201406270643.s5R6h7LL093184@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 27 Jun 2014 06:43:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359462 - head/devel/argp-standalone 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.18 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, 27 Jun 2014 06:43:07 -0000 Author: bapt Date: Fri Jun 27 06:43:07 2014 New Revision: 359462 URL: http://svnweb.freebsd.org/changeset/ports/359462 QAT: https://qat.redports.org/buildarchive/r359462/ Log: Convert to USES=libtool Strip binaries Modified: head/devel/argp-standalone/Makefile Modified: head/devel/argp-standalone/Makefile ============================================================================== --- head/devel/argp-standalone/Makefile Fri Jun 27 06:37:24 2014 (r359461) +++ head/devel/argp-standalone/Makefile Fri Jun 27 06:43:07 2014 (r359462) @@ -12,26 +12,20 @@ MASTER_SITE_SUBDIR= sem MAINTAINER= sem@FreeBSD.org COMMENT= Standalone version of arguments parsing functions from GLIBC +USES= libtool USE_CSTD= gnu89 GNU_CONFIGURE= yes -USE_AUTOTOOLS= aclocal autoconf automake libtool +USE_AUTOTOOLS= aclocal autoconf automake libtoolize AUTOMAKE_ARGS= -c -a ACLOCAL_ARGS= --automake-acdir=${ACLOCAL_DIR} -I ${LOCALBASE}/share/aclocal USE_LDCONFIG= yes +INSTALL_TARGET= install-strip -PLIST_FILES= lib/libargp.la lib/libargp.a \ - lib/libargp.so lib/libargp.so.0 \ +PLIST_FILES= lib/libargp.a \ + lib/libargp.so lib/libargp.so.0 lib/libargp.so.0.0.0 \ include/argp.h -pre-configure: - @cd ${WRKSRC}; ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE} --automake - -do-install: - @cd ${WRKSRC}; \ - ${INSTALL_DATA} argp.h ${STAGEDIR}${PREFIX}/include; \ - ${INSTALL_DATA} .libs/libargp.la ${STAGEDIR}${PREFIX}/lib; \ - ${INSTALL_DATA} .libs/libargp.a ${STAGEDIR}${PREFIX}/lib; \ - ${INSTALL_LIB} .libs/libargp.so.0 ${STAGEDIR}${PREFIX}/lib - @cd ${STAGEDIR}${PREFIX}/lib && ${LN} -sf libargp.so.0 libargp.so +post-install: + ${INSTALL_DATA} ${WRKSRC}/argp.h ${STAGEDIR}${PREFIX}/include .include