diff options
author | Jonathan Callen <abcd@gentoo.org> | 2011-04-10 04:54:59 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2011-04-10 04:54:59 +0000 |
commit | 15313c374a5149fb749abe59d3be1f9ea73648e3 (patch) | |
tree | eeceb38c2a1d65ab4aed88212d97e1ed70a0d88c /app-admin/keepassx | |
parent | x86 stable per bug 361633 (diff) | |
download | gentoo-2-15313c374a5149fb749abe59d3be1f9ea73648e3.tar.gz gentoo-2-15313c374a5149fb749abe59d3be1f9ea73648e3.tar.bz2 gentoo-2-15313c374a5149fb749abe59d3be1f9ea73648e3.zip |
Add prefix support, bump EAPI to 3, add prefix keywords
(Portage version: 2.2.0_alpha29_p11/cvs/Linux i686)
Diffstat (limited to 'app-admin/keepassx')
-rw-r--r-- | app-admin/keepassx/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/keepassx/keepassx-0.4.3.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-admin/keepassx/ChangeLog b/app-admin/keepassx/ChangeLog index dd36b561627c..e2344e090efb 100644 --- a/app-admin/keepassx/ChangeLog +++ b/app-admin/keepassx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/keepassx -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v 1.55 2010/10/08 08:40:19 wired Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v 1.56 2011/04/10 04:54:59 abcd Exp $ + + 10 Apr 2011; Jonathan Callen <abcd@gentoo.org> keepassx-0.4.3.ebuild: + Add prefix support, bump EAPI to 3, add prefix keywords 08 Oct 2010; Alex Alexander <wired@gentoo.org> -files/keepassx-0.4.1-compile-with-qt-4.6.patch: diff --git a/app-admin/keepassx/keepassx-0.4.3.ebuild b/app-admin/keepassx/keepassx-0.4.3.ebuild index 68b609afd947..41db0dfe9a24 100644 --- a/app-admin/keepassx/keepassx-0.4.3.ebuild +++ b/app-admin/keepassx/keepassx-0.4.3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/keepassx-0.4.3.ebuild,v 1.4 2010/04/16 17:43:02 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/keepassx-0.4.3.ebuild,v 1.5 2011/04/10 04:54:59 abcd Exp $ -EAPI="2" +EAPI="3" inherit qt4-r2 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ppc x86" +KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" IUSE="debug pch" DEPEND="x11-libs/qt-core:4 @@ -26,7 +26,7 @@ src_configure() { use pch && conf_pch="PRECOMPILED=1" || conf_pch="PRECOMPILED=0" eqmake4 ${PN}.pro -recursive \ - PREFIX="${D}/usr" \ + PREFIX="${ED}/usr" \ "${conf_pch}" } |