diff options
Diffstat (limited to 'app-crypt/xca/xca-0.9.0.ebuild')
-rw-r--r-- | app-crypt/xca/xca-0.9.0.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/app-crypt/xca/xca-0.9.0.ebuild b/app-crypt/xca/xca-0.9.0.ebuild deleted file mode 100644 index babe9e615f3d..000000000000 --- a/app-crypt/xca/xca-0.9.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 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.8 2013/03/02 19:16:54 hwoarang Exp $ - -EAPI="3" - -inherit eutils flag-o-matic 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/xca/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="doc" - -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}"/${P}-qt_detection.patch - epatch "${FILESDIR}"/${P}-underlinking.patch #371887 -} - -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="$(raw-ldflags)" \ - prefix="${EPREFIX}/usr" \ - docdir="${EPREFIX}/usr/share/doc/${PF}" \ - ./configure || die "configure failed" -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake destdir="${D}" mandir="share/man" install || die "emake install failed" - - dodoc AUTHORS || die - - insinto /etc/xca - doins misc/*.txt || die -} |