From owner-svn-ports-head@FreeBSD.ORG Sat Sep 6 15:46:02 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 322C2129; Sat, 6 Sep 2014 15:46:02 +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 1D94414CA; Sat, 6 Sep 2014 15:46:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s86Fk1aU066099; Sat, 6 Sep 2014 15:46:01 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s86Fk1sB066098; Sat, 6 Sep 2014 15:46:01 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201409061546.s86Fk1sB066098@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 6 Sep 2014 15:46:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r367445 - head/devel/librelp 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-1 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: Sat, 06 Sep 2014 15:46:02 -0000 Author: antoine Date: Sat Sep 6 15:46:01 2014 New Revision: 367445 URL: http://svnweb.freebsd.org/changeset/ports/367445 QAT: https://qat.redports.org/buildarchive/r367445/ Log: - USE_AUTOTOOLS contains aclocal but not autoconf which leaves configure out of date and causes make (build phase) to run autoconf, erasing any configure patches. Then make reruns configure. Instead of adding autoconf to USE_AUTOTOOLS avoid USE_AUTOTOOLS altogether by patching Makefile.in instead of Makefile.am. - Use INSTALL_TARGET=install-strip and USES=pathfix Commit message taken from: tijl Modified: head/devel/librelp/Makefile Modified: head/devel/librelp/Makefile ============================================================================== --- head/devel/librelp/Makefile Sat Sep 6 15:44:09 2014 (r367444) +++ head/devel/librelp/Makefile Sat Sep 6 15:46:01 2014 (r367445) @@ -13,8 +13,9 @@ COMMENT= Reliable event logging protocol LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls USES= libtool pathfix pkgconfig -USE_AUTOTOOLS= automake aclocal USE_LDCONFIG= yes +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip PLIST_FILES= include/${PORTNAME}.h \ lib/${PORTNAME}.a \ @@ -27,10 +28,5 @@ PORT_VERBS= relp post-patch: @${REINPLACE_CMD} -e '/CFLAGS/s| -g||g' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.am - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librelp.so.0.1.0 .include