summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Bar-Lev <alonbl@gentoo.org>2014-11-07 07:16:53 +0000
committerAlon Bar-Lev <alonbl@gentoo.org>2014-11-07 07:16:53 +0000
commit9fd7c1aa9ea4a4c7c72dae79b1740445780ab773 (patch)
treeff65c56a72dc522149073e79baf2a08457709be4 /app-crypt/xca
parentVersion bump, bug#528462, thanks to bgo (diff)
downloadgentoo-2-9fd7c1aa9ea4a4c7c72dae79b1740445780ab773.tar.gz
gentoo-2-9fd7c1aa9ea4a4c7c72dae79b1740445780ab773.tar.bz2
gentoo-2-9fd7c1aa9ea4a4c7c72dae79b1740445780ab773.zip
Cleanup
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Diffstat (limited to 'app-crypt/xca')
-rw-r--r--app-crypt/xca/ChangeLog6
-rw-r--r--app-crypt/xca/xca-0.9.0.ebuild56
-rw-r--r--app-crypt/xca/xca-0.9.1.ebuild52
-rw-r--r--app-crypt/xca/xca-0.9.3.ebuild53
4 files changed, 5 insertions, 162 deletions
diff --git a/app-crypt/xca/ChangeLog b/app-crypt/xca/ChangeLog
index 5db0b9f9b7f7..6d7956fb4a3d 100644
--- a/app-crypt/xca/ChangeLog
+++ b/app-crypt/xca/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-crypt/xca
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.44 2014/11/07 07:15:28 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/ChangeLog,v 1.45 2014/11/07 07:16:53 alonbl Exp $
+
+ 07 Nov 2014; Alon Bar-Lev <alonbl@gentoo.org> -xca-0.9.0.ebuild,
+ -xca-0.9.1.ebuild, -xca-0.9.3.ebuild:
+ Cleanup
*xca-1.0.0 (07 Nov 2014)
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
-}
diff --git a/app-crypt/xca/xca-0.9.1.ebuild b/app-crypt/xca/xca-0.9.1.ebuild
deleted file mode 100644
index 2133541aaad3..000000000000
--- a/app-crypt/xca/xca-0.9.1.ebuild
+++ /dev/null
@@ -1,52 +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.1.ebuild,v 1.2 2013/03/02 19:16:54 hwoarang Exp $
-
-EAPI="4"
-
-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"
-
-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}"/${P}-ldflags.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
-}
diff --git a/app-crypt/xca/xca-0.9.3.ebuild b/app-crypt/xca/xca-0.9.3.ebuild
deleted file mode 100644
index a0854943bfee..000000000000
--- a/app-crypt/xca/xca-0.9.3.ebuild
+++ /dev/null
@@ -1,53 +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.3.ebuild,v 1.2 2013/03/02 19:16:54 hwoarang Exp $
-
-EAPI="4"
-
-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"
-
-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
-}
-
-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
-}