alonbl 14/08/29 21:01:37 Modified: ChangeLog Added: xca-0.9.3-r2.ebuild Log: Fix openssl issue, bug#520948, thanks to [email protected] (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Revision Changes Path 1.43 app-crypt/xca/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.43&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/ChangeLog?rev=1.43&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/ChangeLog?r1=1.42&r2=1.43 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- ChangeLog 4 Jul 2013 12:18:48 -0000 1.42 +++ ChangeLog 29 Aug 2014 21:01:37 -0000 1.43 @@ -1,6 +1,12 @@ # ChangeLog for app-crypt/xca -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.42 2013/07/04 12:18:48 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.43 2014/08/29 21:01:37 alonbl Exp $ + +*xca-0.9.3-r2 (29 Aug 2014) + + 29 Aug 2014; Alon Bar-Lev <[email protected]> +files/xca-0.9.3-openssl.patch, + +xca-0.9.3-r2.ebuild: + Fix openssl issue, bug#520948, thanks to [email protected] 04 Jul 2013; Agostino Sarubbo <[email protected]> xca-0.9.3-r1.ebuild: Stable for x86, wrt bug #470302 1.1 app-crypt/xca/xca-0.9.3-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/xca-0.9.3-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/xca/xca-0.9.3-r2.ebuild?rev=1.1&content-type=text/plain Index: xca-0.9.3-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.9.3-r2.ebuild,v 1.1 2014/08/29 21:01:37 alonbl Exp $ EAPI="5" inherit eutils toolchain-funcs DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests and revokation lists" HOMEPAGE="http://www.hohnstaedt.de/xca.html" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="doc bindist" RDEPEND=">=dev-libs/openssl-0.9.8[bindist=] dev-qt/qtgui:4" DEPEND="${RDEPEND} doc? ( app-text/linuxdoc-tools )" src_prepare() { # http://sourceforge.net/tracker/index.php?func=detail&aid=1800298&group_id=62274&atid=500028 epatch "${FILESDIR}"/${PN}-0.9.0-qt_detection.patch epatch "${FILESDIR}"/${PN}-0.9.1-ldflags.patch epatch "${FILESDIR}"/${P}-desktop.patch epatch "${FILESDIR}"/${P}-openssl.patch } src_configure() { local LINUXDOC use doc || LINUXDOC='touch $@ && true' QTDIR="${EPREFIX}/usr" \ STRIP="true" \ LINUXDOC="${LINUXDOC}" \ CC="$(tc-getCXX)" \ LD="$(tc-getLD)" \ CFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" \ prefix="${EPREFIX}/usr" \ docdir="${EPREFIX}/usr/share/doc/${PF}" \ ./configure || die "configure failed" } src_install() { emake destdir="${D}" mandir="share/man" install dodoc AUTHORS insinto /etc/xca doins misc/*.txt }
