diff options
author | Jonathan Callen <abcd@gentoo.org> | 2011-03-08 20:15:19 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2011-03-08 20:15:19 +0000 |
commit | 3fc970ab70be87d34eb53be56efa64be519c5f89 (patch) | |
tree | 0df17a4ab1dc33ce09427fe9e22ef6e5259de351 /app-crypt/xca | |
parent | Fix typo in dhcrelay init script #357935 by Milan Dadok. (diff) | |
download | gentoo-2-3fc970ab70be87d34eb53be56efa64be519c5f89.tar.gz gentoo-2-3fc970ab70be87d34eb53be56efa64be519c5f89.tar.bz2 gentoo-2-3fc970ab70be87d34eb53be56efa64be519c5f89.zip |
Add prefix keywords, inject $EPREFIX as needed
(Portage version: 2.2.0_alpha23_p5/cvs/Linux i686)
Diffstat (limited to 'app-crypt/xca')
-rw-r--r-- | app-crypt/xca/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/xca/xca-0.9.0.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-crypt/xca/ChangeLog b/app-crypt/xca/ChangeLog index c2f26b473b0c..7d2029f42fdf 100644 --- a/app-crypt/xca/ChangeLog +++ b/app-crypt/xca/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/xca # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.32 2011/01/07 17:07:33 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.33 2011/03/08 20:15:19 abcd Exp $ + + 08 Mar 2011; Jonathan Callen <abcd@gentoo.org> xca-0.9.0.ebuild: + Add prefix keywords, inject $EPREFIX as needed 07 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> -xca-0.8.1.ebuild, -files/xca-0.8.1-qt_detection.patch: diff --git a/app-crypt/xca/xca-0.9.0.ebuild b/app-crypt/xca/xca-0.9.0.ebuild index 11aa2460ea11..47b67653ec38 100644 --- a/app-crypt/xca/xca-0.9.0.ebuild +++ b/app-crypt/xca/xca-0.9.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.9.0.ebuild,v 1.5 2011/01/07 16:39:47 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.9.0.ebuild,v 1.6 2011/03/08 20:15:19 abcd Exp $ EAPI="3" @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/xca/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ppc x86" +KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="doc" RDEPEND=">=dev-libs/openssl-0.9.8[-bindist] @@ -29,15 +29,15 @@ src_configure() { local LINUXDOC use doc || LINUXDOC='touch $@ && true' - QTDIR=/usr \ + QTDIR="${EPREFIX}/usr" \ STRIP="true" \ LINUXDOC="${LINUXDOC}" \ - CC="$(tc-getCC)" \ + CC="$(tc-getCXX)" \ LD="$(tc-getLD)" \ CFLAGS="${CXXFLAGS}" \ LDFLAGS="$(raw-ldflags)" \ - prefix=/usr \ - docdir=/usr/share/doc/${PF} \ + prefix="${EPREFIX}/usr" \ + docdir="${EPREFIX}/usr/share/doc/${PF}" \ ./configure || die "configure failed" } |