diff options
author | Ben de Groot <yngwin@gentoo.org> | 2009-06-06 09:16:34 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2009-06-06 09:16:34 +0000 |
commit | 2182bef54b0fc7d96036058acbc1190b4ed228be (patch) | |
tree | 96c1ceb8de8123f2b5ea2f476c360cf7cdd6e5c5 /app-crypt | |
parent | amd64/x86 stable, bug #271889 (diff) | |
download | gentoo-2-2182bef54b0fc7d96036058acbc1190b4ed228be.tar.gz gentoo-2-2182bef54b0fc7d96036058acbc1190b4ed228be.tar.bz2 gentoo-2-2182bef54b0fc7d96036058acbc1190b4ed228be.zip |
Delete old versions
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/qca/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/qca/qca-1.0-r2.ebuild | 43 | ||||
-rw-r--r-- | app-crypt/qca/qca-2.0.1-r1.ebuild | 67 | ||||
-rw-r--r-- | app-crypt/qca/qca-2.0.2.ebuild | 60 |
4 files changed, 5 insertions, 171 deletions
diff --git a/app-crypt/qca/ChangeLog b/app-crypt/qca/ChangeLog index 09dee789bca0..5698beb0ff77 100644 --- a/app-crypt/qca/ChangeLog +++ b/app-crypt/qca/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/qca # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.62 2009/05/04 12:44:56 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.63 2009/06/06 09:16:34 yngwin Exp $ + + 06 Jun 2009; Ben de Groot <yngwin@gentoo.org> -qca-1.0-r2.ebuild, + -qca-2.0.1-r1.ebuild, -qca-2.0.2.ebuild: + Delete old versions *qca-2.0.2-r1 (04 May 2009) diff --git a/app-crypt/qca/qca-1.0-r2.ebuild b/app-crypt/qca/qca-1.0-r2.ebuild deleted file mode 100644 index 08738ff33029..000000000000 --- a/app-crypt/qca/qca-1.0-r2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-1.0-r2.ebuild,v 1.19 2008/07/27 19:14:20 carlo Exp $ - -EAPI=1 - -inherit eutils qt3 - -DESCRIPTION="Qt Cryptographic Architecture (QCA)" -HOMEPAGE="http://delta.affinix.com/qca/" -SRC_URI="http://delta.affinix.com/download/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="" - -DEPEND="x11-libs/qt:3" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/qca-pathfix.patch - #This is needed just in bsd, but make no harm in linux - epatch "${FILESDIR}"/qca-1.0-fbsd.patch -} - -src_compile() { - ./configure --prefix=/usr || die "configure failed" - sed -i \ - -e "/^CFLAGS/s:$: ${CFLAGS}:" \ - -e "/^CXXFLAGS/s:$: ${CXXFLAGS}:" \ - -e "/-strip/d" \ - Makefile - emake || die "emake failed" -} - -src_install() { - make INSTALL_ROOT="${D}" install || die "make install failed" - if [ "$(get_libdir)" != "lib" ]; then - mv "${D}"/usr/lib "${D}"/usr/$(get_libdir) - fi -} diff --git a/app-crypt/qca/qca-2.0.1-r1.ebuild b/app-crypt/qca/qca-2.0.1-r1.ebuild deleted file mode 100644 index 0cbf0518197f..000000000000 --- a/app-crypt/qca/qca-2.0.1-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-2.0.1-r1.ebuild,v 1.2 2009/04/26 15:32:25 yngwin Exp $ - -EAPI="2" - -inherit eutils multilib qt4 - -DESCRIPTION="Qt Cryptographic Architecture (QCA)" -HOMEPAGE="http://delta.affinix.com/qca/" -SRC_URI="http://delta.affinix.com/download/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="2" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="debug doc examples" -RESTRICT="test" - -DEPEND="!<app-crypt/qca-1.0-r3 - x11-libs/qt-core:4[debug=]" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-pcfilespath.patch -} - -src_configure() { - _libdir=$(get_libdir) - local myconf - use debug && myconf="--debug" || myconf="--release" - eqmake4 || die "eqmake failed" - - ./configure \ - --prefix=/usr \ - --qtdir=/usr \ - --includedir="/usr/include/qca2" \ - --libdir="/usr/${_libdir}/qca2" \ - --no-separate-debug-info \ - --disable-tests \ - ${myconf} \ - || die "configure failed" - - eqmake4 ${PN}.pro -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake INSTALL_ROOT="${D}" install || die "emake install failed" - dodoc README TODO || die "dodoc failed." - - cat <<-EOF > "${WORKDIR}"/44qca2 - LDPATH=/usr/${_libdir}/qca2 - EOF - doenvd "${WORKDIR}"/44qca2 - - if use doc; then - dohtml "${S}"/apidocs/html/* || die "Failed to install documentation" - fi - - if use examples; then - insinto /usr/share/doc/${PF}/ - doins -r "${S}"/examples || die "Failed to install examples" - fi -} diff --git a/app-crypt/qca/qca-2.0.2.ebuild b/app-crypt/qca/qca-2.0.2.ebuild deleted file mode 100644 index 0e017556e3c0..000000000000 --- a/app-crypt/qca/qca-2.0.2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-2.0.2.ebuild,v 1.1 2009/05/02 09:25:20 hwoarang Exp $ - -EAPI="2" - -inherit eutils multilib qt4 - -DESCRIPTION="Qt Cryptographic Architecture (QCA)" -HOMEPAGE="http://delta.affinix.com/qca/" -SRC_URI="http://delta.affinix.com/download/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="2" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="debug doc examples" -RESTRICT="test" - -DEPEND="!<app-crypt/qca-1.0-r3 - x11-libs/qt-core:4[debug=]" -RDEPEND="${DEPEND}" - -#src_prepare() { -# epatch "${FILESDIR}"/${P}-pcfilespath.patch -#} - -src_configure() { - _libdir=$(get_libdir) - - ./configure \ - --prefix=/usr \ - --qtdir=/usr \ - --includedir="/usr/include/qca2" \ - --libdir="/usr/${_libdir}/qca2" \ - --no-separate-debug-info \ - --disable-tests \ - --$(use debug && echo debug || echo release) \ - || die "configure failed" - - eqmake4 -} - -src_install() { - emake INSTALL_ROOT="${D}" install || die "emake install failed" - dodoc README TODO || die "dodoc failed" - - cat <<-EOF > "${WORKDIR}"/44qca2 - LDPATH=/usr/${_libdir}/qca2 - EOF - doenvd "${WORKDIR}"/44qca2 || die - - if use doc; then - dohtml "${S}"/apidocs/html/* || die "Failed to install documentation" - fi - - if use examples; then - insinto /usr/share/doc/${PF}/ - doins -r "${S}"/examples || die "Failed to install examples" - fi -} |