diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2008-06-19 12:04:03 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2008-06-19 12:04:03 +0000 |
commit | fc48a5343434cde5fb2bae7c272f15a71aa65b8a (patch) | |
tree | 45aeb2ed914317f19bd3c23e0c0320535f3fe560 /app-crypt/xca | |
parent | stable x86, bug 227979 (diff) | |
download | gentoo-2-fc48a5343434cde5fb2bae7c272f15a71aa65b8a.tar.gz gentoo-2-fc48a5343434cde5fb2bae7c272f15a71aa65b8a.tar.bz2 gentoo-2-fc48a5343434cde5fb2bae7c272f15a71aa65b8a.zip |
Added LDFLAGS=$(raw-ldflags) since they get passed directly to the linker (and compilation therefore fails if LDFLAGS="-Wl,--as-needed)". Added missing eclasses, removed COPYING (and other non-existent) files from dodoc.
(Portage version: 2.1.5.6)
Diffstat (limited to 'app-crypt/xca')
-rw-r--r-- | app-crypt/xca/ChangeLog | 10 | ||||
-rw-r--r-- | app-crypt/xca/xca-0.6.4.ebuild | 9 |
2 files changed, 13 insertions, 6 deletions
diff --git a/app-crypt/xca/ChangeLog b/app-crypt/xca/ChangeLog index cbcff2ba698a..f04058534f58 100644 --- a/app-crypt/xca/ChangeLog +++ b/app-crypt/xca/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-crypt/xca -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.13 2007/10/23 15:49:30 alonbl Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.14 2008/06/19 12:04:03 dev-zero Exp $ + + 19 Jun 2008; Tiziano Müller <dev-zero@gentoo.org> xca-0.6.4.ebuild: + Added LDFLAGS=$(raw-ldflags) since they get passed directly to the linker + (and compilation therefore fails if LDFLAGS="-Wl,--as-needed)". Added + missing eclasses, removed COPYING (and other non-existent) files from + dodoc. 23 Oct 2007; Alon Bar-Lev <alonbl@gentoo.org> -files/xca-0.5.1-build.patch, -files/xca-0.5.1-db.patch, diff --git a/app-crypt/xca/xca-0.6.4.ebuild b/app-crypt/xca/xca-0.6.4.ebuild index 14215e663ea5..bdc98ec6dcf2 100644 --- a/app-crypt/xca/xca-0.6.4.ebuild +++ b/app-crypt/xca/xca-0.6.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.6.4.ebuild,v 1.2 2007/10/23 15:49:30 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.6.4.ebuild,v 1.3 2008/06/19 12:04:03 dev-zero Exp $ -inherit eutils +inherit eutils toolchain-funcs flag-o-matic DESCRIPTION="A graphical user interface to OpenSSL, RSA public keys, certificates, signing requests and revokation lists" HOMEPAGE="http://www.hohnstaedt.de/xca.html" @@ -40,6 +40,7 @@ src_compile() { LINUXDOC="${LINUXDOC}" \ CC="$(tc-getCC)" \ LD="$(tc-getLD)" \ + LDFLAGS="$(raw-ldflags)" \ prefix=/usr \ ./configure || die "configure failed" emake || die "emake failed" @@ -48,7 +49,7 @@ src_compile() { src_install() { emake destdir="${D}" mandir="share/man" install || die "install failed" - dodoc README CREDITS AUTHORS COPYRIGHT + dodoc AUTHORS insinto /etc/xca doins misc/*.txt |