summaryrefslogtreecommitdiff
path: root/dev-libs
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2016-09-27 23:27:35 +0200
committerDavid Seifert <soap@gentoo.org>2016-09-27 23:28:34 +0200
commitf87b7a1668fd7ee8000e375950487248f95f7bdb (patch)
tree2c49d3a31f1e864818419d4ff44d60441eaaec85 /dev-libs
parent0e2028487dc6c08de3ddb58fa873104981524c16 (diff)
downloadgentoo-f87b7a1668fd7ee8000e375950487248f95f7bdb.tar.gz
gentoo-f87b7a1668fd7ee8000e375950487248f95f7bdb.tar.xz
dev-libs/fampp2: Remove old ebuilds
Package-Manager: portage-2.3.1
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/fampp2/Manifest1
-rw-r--r--dev-libs/fampp2/fampp2-6.0.1.ebuild33
-rw-r--r--dev-libs/fampp2/fampp2-7.0.1.ebuild50
3 files changed, 0 insertions, 84 deletions
diff --git a/dev-libs/fampp2/Manifest b/dev-libs/fampp2/Manifest
index 9ba494d2092..0fe680ecbf1 100644
--- a/dev-libs/fampp2/Manifest
+++ b/dev-libs/fampp2/Manifest
@@ -1,2 +1 @@
-DIST fampp2-6.0.1.tar.bz2 282852 SHA256 8f54e0226cac5ab94f80aff1c11104d305a63183a88267e259b86059c93d58c0 SHA512 f61ff11596c22bdbca21d280a19500110b0df1caaec33abee7ac304b046f301222dfa5908de1137e4fd84cbb69de297fa313acb333c3a5f54f5788d5ff5c11c0 WHIRLPOOL af51b86054c5589ae3312980112e0244666460bf394f48319b3b1c8d84901156c7b913b3706fdc89ed3ba8189ea1abd748227a909b53a276fd22804748e5de99
DIST fampp2-7.0.1.tar.bz2 288073 SHA256 2bfcc28755dbec832b395bad63b8cf40896b0d4bfbca02c57477a164ca2f0244 SHA512 317a5cfd383418265cafea0840af8b7c714a04b34265ebfba73230ff2492df8f7884797529916693ab489bdbc94799ca83e015cf0bcfffaea6b28b3a7f9ccbd0 WHIRLPOOL 513b6c9f42f9fdacb089079420212d5f79394aec339061d5edd0e7faa34e0b20f33ae98258771a9d60f958683f8bdb6cedae4cd1067f76266f7ee79053b0d9a7
diff --git a/dev-libs/fampp2/fampp2-6.0.1.ebuild b/dev-libs/fampp2/fampp2-6.0.1.ebuild
deleted file mode 100644
index ad02d1830eb..00000000000
--- a/dev-libs/fampp2/fampp2-6.0.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-DESCRIPTION="C++ wrapper for fam"
-HOMEPAGE="https://sourceforge.net/projects/fampp/"
-SRC_URI="mirror://sourceforge/fampp/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="virtual/fam
- dev-libs/STLport
- dev-libs/ferrisloki
- >=dev-libs/libsigc++-2.0.0
- =dev-libs/glib-2*
- =x11-libs/gtk+-2*"
-
-src_prepare() {
- sed -ri \
- -e '/^C(XX)?FLAGS/s:-O0 -g::' \
- -e '/^LDFLAGS/s:-Wl,-O1 -Wl,--hash-style=both::' \
- configure
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc AUTHORS ChangeLog NEWS README TODO
-}
diff --git a/dev-libs/fampp2/fampp2-7.0.1.ebuild b/dev-libs/fampp2/fampp2-7.0.1.ebuild
deleted file mode 100644
index ddc05a83891..00000000000
--- a/dev-libs/fampp2/fampp2-7.0.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils
-
-DESCRIPTION="C++ wrapper for fam"
-HOMEPAGE="https://sourceforge.net/projects/fampp/"
-SRC_URI="mirror://sourceforge/fampp/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples stlport"
-
-RDEPEND="virtual/fam
- stlport? ( dev-libs/STLport )
- >=dev-libs/ferrisloki-2.0.3[stlport?]
- dev-libs/libsigc++:2
- dev-libs/glib:2
- x11-libs/gtk+:2"
-DEPEND="${DEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- sed -ri \
- -e '/^C(XX)?FLAGS/s:-O0 -g::' \
- -e '/^LDFLAGS/s:-Wl,-O1 -Wl,--hash-style=both::' \
- configure || die "sed failed"
-}
-
-src_configure() {
- # glib and gtk+ are only required for some examples
- econf \
- --disable-glibtest \
- --disable-gtktest \
- --with-stlport=/usr/include/stlport \
- $(use_enable stlport)
-
- if ! use examples ; then
- sed -i -e '/^SUBDIRS/ s/examples//' Makefile.in || die "sed failed"
- fi
-}
-
-src_install() {
- default
- prune_libtool_files
-}