From owner-svn-ports-head@FreeBSD.ORG Fri Dec 6 16:16:09 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 ESMTPS id E4E3210D; Fri, 6 Dec 2013 16:16:09 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1A0D1A86; Fri, 6 Dec 2013 16:16:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB6GG9fl029290; Fri, 6 Dec 2013 16:16:09 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB6GG9Wo029289; Fri, 6 Dec 2013 16:16:09 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201312061616.rB6GG9Wo029289@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 6 Dec 2013 16:16:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335771 - head/devel/libast 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.17 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, 06 Dec 2013 16:16:10 -0000 Author: sunpoet Date: Fri Dec 6 16:16:09 2013 New Revision: 335771 URL: http://svnweb.freebsd.org/changeset/ports/335771 Log: - Add LICENSE - Convert to new LIB_DEPENDS format - Support STAGEDIR - While I'm here: - Remove leading indefinite article from COMMENT - Strip shared library PR: ports/184541 Submitted by: Rodrigo Osorio (maintainer) Modified: head/devel/libast/Makefile (contents, props changed) Modified: head/devel/libast/Makefile ============================================================================== --- head/devel/libast/Makefile Fri Dec 6 16:14:27 2013 (r335770) +++ head/devel/libast/Makefile Fri Dec 6 16:16:09 2013 (r335771) @@ -9,23 +9,27 @@ MASTER_SITES= http://www.eterm.org/downl CRITICAL MAINTAINER= rodrigo@bebik.net -COMMENT= A library of assorted spiffy things +COMMENT= Library of assorted spiffy things -LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre +LICENSE= BSD + +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre USE_AUTOTOOLS= libtool -USES= pathfix USE_EFL= imlib2 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes +USES= pathfix -NO_STAGE= yes .include .if defined(WITH_MMX) && (${ARCH} == "i386") CONFIGURE_ARGS= --enable-mmx .endif +post-build: + @${STRIP_CMD} ${WRKSRC}/src/.libs/libast.so.2 + .include