summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-30 13:57:12 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-30 13:57:12 +0000
commita0b2d523b39395acff3850de32149666c9cefdc5 (patch)
tree366d8d1c8b525aca6b689362adad8f879af2ba2e /sys-libs
parentcorrection to the slot operator setting to dev-libs/openssl, noted by floppym (diff)
downloadgentoo-2-a0b2d523b39395acff3850de32149666c9cefdc5.tar.gz
gentoo-2-a0b2d523b39395acff3850de32149666c9cefdc5.tar.bz2
gentoo-2-a0b2d523b39395acff3850de32149666c9cefdc5.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/gwenhywfar/ChangeLog5
-rw-r--r--sys-libs/gwenhywfar/gwenhywfar-4.2.1.ebuild66
2 files changed, 4 insertions, 67 deletions
diff --git a/sys-libs/gwenhywfar/ChangeLog b/sys-libs/gwenhywfar/ChangeLog
index 93f0d3bfe3e0..befff6983e5d 100644
--- a/sys-libs/gwenhywfar/ChangeLog
+++ b/sys-libs/gwenhywfar/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/gwenhywfar
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.109 2015/01/04 18:58:02 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/ChangeLog,v 1.110 2015/05/30 13:57:12 mrueg Exp $
+
+ 30 May 2015; Manuel Rüger <mrueg@gentoo.org> -gwenhywfar-4.2.1.ebuild:
+ Remove old.
*gwenhywfar-4.13.1 (04 Jan 2015)
diff --git a/sys-libs/gwenhywfar/gwenhywfar-4.2.1.ebuild b/sys-libs/gwenhywfar/gwenhywfar-4.2.1.ebuild
deleted file mode 100644
index b0522f425d79..000000000000
--- a/sys-libs/gwenhywfar/gwenhywfar-4.2.1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-4.2.1.ebuild,v 1.8 2014/03/01 22:14:45 mgorny Exp $
-
-EAPI=2
-
-DESCRIPTION="A multi-platform helper library for other libraries"
-HOMEPAGE="http://www.aquamaniac.de/aqbanking/"
-SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release=63&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ~ppc64 ~sparc x86"
-IUSE="debug doc fox gtk qt4"
-
-RDEPEND="dev-libs/libgpg-error
- >=dev-libs/libgcrypt-1.2.0:0
- >=dev-libs/openssl-1.0.0
- >=net-libs/gnutls-2.0.1
- virtual/libiconv
- virtual/libintl
- fox? ( x11-libs/fox:1.6 )
- gtk? ( >=x11-libs/gtk+-2.17.5:2 )
- qt4? ( dev-qt/qtgui:4 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- sys-devel/gettext
- doc? ( app-doc/doxygen )"
-
-# broken upstream, reported but got no reply
-RESTRICT="test"
-
-src_configure() {
- local guis
- use fox && guis="${guis} fox16"
- use gtk && guis="${guis} gtk2"
- use qt4 && guis="${guis} qt4"
-
- econf \
- --disable-dependency-tracking \
- --enable-ssl \
- --enable-visibility \
- $(use_enable debug) \
- $(use_enable doc full-doc) \
- --with-guis="${guis}" \
- --with-docpath=/usr/share/doc/${PF}/apidoc
-}
-
-src_compile() {
- emake || die
-
- if use doc; then
- emake srcdoc || die
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog README TODO
-
- if use doc; then
- emake DESTDIR="${D}" install-srcdoc || die
- fi
-
- find "${D}" -name '*.la' -exec rm -f '{}' +
-}