From owner-svn-ports-head@freebsd.org Mon Oct 30 19:04:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F33BE63E83; Mon, 30 Oct 2017 19:04:03 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 3FCAC6E821; Mon, 30 Oct 2017 19:04:03 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9UJ42VL021088; Mon, 30 Oct 2017 19:04:02 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9UJ42wV021087; Mon, 30 Oct 2017 19:04:02 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201710301904.v9UJ42wV021087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 30 Oct 2017 19:04:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453206 - head/sysutils/e2fsprogs X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/sysutils/e2fsprogs X-SVN-Commit-Revision: 453206 X-SVN-Commit-Repository: ports 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.23 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: Mon, 30 Oct 2017 19:04:03 -0000 Author: mandree Date: Mon Oct 30 19:04:02 2017 New Revision: 453206 URL: https://svnweb.freebsd.org/changeset/ports/453206 Log: e2fsprogs, prepend new .so dir to RPATH/RUNPATH... ...so that the tools other than e2fsck find their libraries. Reported by: ehaupt@ Modified: head/sysutils/e2fsprogs/Makefile Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Mon Oct 30 18:36:39 2017 (r453205) +++ head/sysutils/e2fsprogs/Makefile Mon Oct 30 19:04:02 2017 (r453206) @@ -3,7 +3,7 @@ PORTNAME= e2fsprogs PORTVERSION= 1.43.7 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -37,7 +37,7 @@ CONFIGURE_ARGS?=--disable-fsck \ --includedir='${PREFIX}/include/e2fsprogs/' \ --with-root-prefix='${PREFIX}' \ --without-included-gettext \ - LDFLAGS='${LDFLAGS} -L${LOCALBASE}/lib' + LDFLAGS='${LDFLAGS} -L${LOCALBASE}/lib -Wl,--rpath -Wl,${LOCALBASE}/lib/e2fsprogs' CPPFLAGS+= -I${WRKSRC}/lib -I${LOCALBASE}/include # -D_EXT2_USE_C_VERSIONS MAKE_ARGS+= pkgconfigdir='${PREFIX}/libdata/pkgconfig' MAKE_ENV+= CHECK_CMD=@true