diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-11-26 12:23:18 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-11-26 12:23:18 +0000 |
commit | 74e0d805c26d526ac949e3d469327c5b084f211e (patch) | |
tree | cefabf40a1a69294712bb4d7ef0a3e7348dbd750 /app-arch | |
parent | Stable for amd64, wrt bug #432754 (diff) | |
download | gentoo-2-74e0d805c26d526ac949e3d469327c5b084f211e.tar.gz gentoo-2-74e0d805c26d526ac949e3d469327c5b084f211e.tar.bz2 gentoo-2-74e0d805c26d526ac949e3d469327c5b084f211e.zip |
Set localstatedir by Lars Wendler (bug #444712 by Matthew Schultz).
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/dpkg/ChangeLog | 5 | ||||
-rw-r--r-- | app-arch/dpkg/dpkg-1.16.9.ebuild | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/app-arch/dpkg/ChangeLog b/app-arch/dpkg/ChangeLog index a6f2bd4258fe..72c3137a0c0b 100644 --- a/app-arch/dpkg/ChangeLog +++ b/app-arch/dpkg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/dpkg # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.204 2012/10/22 09:14:03 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/ChangeLog,v 1.205 2012/11/26 12:23:18 jer Exp $ + + 26 Nov 2012; Jeroen Roovers <jer@gentoo.org> dpkg-1.16.9.ebuild: + Set localstatedir by Lars Wendler (bug #444712 by Matthew Schultz). *dpkg-1.16.9 (22 Oct 2012) diff --git a/app-arch/dpkg/dpkg-1.16.9.ebuild b/app-arch/dpkg/dpkg-1.16.9.ebuild index f842336dab85..17c2c220e135 100644 --- a/app-arch/dpkg/dpkg-1.16.9.ebuild +++ b/app-arch/dpkg/dpkg-1.16.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.16.9.ebuild,v 1.1 2012/10/22 09:14:03 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.16.9.ebuild,v 1.2 2012/11/26 12:23:18 jer Exp $ EAPI=4 inherit eutils multilib autotools toolchain-funcs @@ -64,16 +64,17 @@ src_prepare() { src_configure() { tc-export CC econf \ - ${myconf} \ $(use_enable dselect) \ $(use_enable unicode) \ $(use_with bzip2 bz2) \ $(use_with zlib) \ - --disable-compiler-warnings \ + ${myconf} \ --disable-compiler-optimisations \ + --disable-compiler-warnings \ --disable-linker-optimisations \ - --without-selinux \ - --disable-start-stop-daemon + --disable-start-stop-daemon \ + --localstatedir=/var \ + --without-selinux } src_install() { |