From owner-svn-ports-all@FreeBSD.ORG Mon Sep 8 12:10:25 2014 Return-Path: Delivered-To: svn-ports-all@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 08B26379; Mon, 8 Sep 2014 12:10:25 +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 E8B7D12E0; Mon, 8 Sep 2014 12:10:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s88CAOjm030629; Mon, 8 Sep 2014 12:10:24 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s88CAO1V030627; Mon, 8 Sep 2014 12:10:24 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201409081210.s88CAO1V030627@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Mon, 8 Sep 2014 12:10:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r367617 - head/palm/jpilot-picsnvideos X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Sep 2014 12:10:25 -0000 Author: tijl Date: Mon Sep 8 12:10:24 2014 New Revision: 367617 URL: http://svnweb.freebsd.org/changeset/ports/367617 QAT: https://qat.redports.org/buildarchive/r367617/ Log: - Add USES=libtool and INSTALL_TARGET=install-strip - Replace LDFLAGS with LIBS - Avoid including bsd.port.options.mk Modified: head/palm/jpilot-picsnvideos/Makefile Modified: head/palm/jpilot-picsnvideos/Makefile ============================================================================== --- head/palm/jpilot-picsnvideos/Makefile Mon Sep 8 11:45:50 2014 (r367616) +++ head/palm/jpilot-picsnvideos/Makefile Mon Sep 8 12:10:24 2014 (r367617) @@ -3,7 +3,7 @@ PORTNAME= picsnvideos PORTVERSION= 0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= palm comms graphics MASTER_SITES= SF/${PORTNAME}/source%20code/${PORTVERSION} PKGNAMEPREFIX= jpilot- @@ -18,26 +18,24 @@ BUILD_DEPENDS= jpilot:${PORTSDIR}/palm/j LIB_DEPENDS= libgdbm.so:${PORTSDIR}/databases/gdbm GNU_CONFIGURE= yes +LIBS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip +USES= libtool -LDFLAGS+= -L${PREFIX}/lib PORTDOCS= README AUTHORS -PLIST_FILES= lib/jpilot/plugins/libpicsnvideos.la \ - lib/jpilot/plugins/libpicsnvideos.so +PLIST_FILES= lib/jpilot/plugins/libpicsnvideos.so OPTIONS_DEFINE= DOCS -.include - post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ + -e '/LIBS=/s/$$libs/$$LIBS/' \ ${WRKSRC}/configure post-install: -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} -. for FILE in ${PORTDOCS} +.for FILE in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR} -. endfor -.endif +.endfor .include