summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-06-09 12:38:15 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-06-09 12:38:15 +0000
commitd58d8623b1867c2526f2ee1792789ad47f554daa (patch)
tree2e952e5ccdb44c7b9b6dadc7c40901652663a948 /net-libs
parentUpdating remote-id in metadata.xml (diff)
downloadgentoo-2-d58d8623b1867c2526f2ee1792789ad47f554daa.tar.gz
gentoo-2-d58d8623b1867c2526f2ee1792789ad47f554daa.tar.bz2
gentoo-2-d58d8623b1867c2526f2ee1792789ad47f554daa.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/enet/ChangeLog6
-rw-r--r--net-libs/enet/enet-1.0.ebuild17
-rw-r--r--net-libs/enet/enet-1.3.6.ebuild32
3 files changed, 5 insertions, 50 deletions
diff --git a/net-libs/enet/ChangeLog b/net-libs/enet/ChangeLog
index 3f5484760e54..089812413840 100644
--- a/net-libs/enet/ChangeLog
+++ b/net-libs/enet/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/enet
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/enet/ChangeLog,v 1.36 2015/04/19 09:37:03 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/enet/ChangeLog,v 1.37 2015/06/09 12:38:15 mrueg Exp $
+
+ 09 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -enet-1.0.ebuild,
+ -enet-1.3.6.ebuild:
+ Remove old.
19 Apr 2015; Pacho Ramos <pacho@gentoo.org> enet-1.3.7.ebuild:
x86 stable wrt bug #535574
diff --git a/net-libs/enet/enet-1.0.ebuild b/net-libs/enet/enet-1.0.ebuild
deleted file mode 100644
index 853676cb44cc..000000000000
--- a/net-libs/enet/enet-1.0.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/enet/enet-1.0.ebuild,v 1.7 2013/03/30 14:47:26 ulm Exp $
-
-DESCRIPTION="relatively thin, simple and robust network communication layer on top of UDP"
-HOMEPAGE="http://enet.bespin.org/"
-SRC_URI="http://enet.bespin.org/download/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="ppc"
-IUSE=""
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc *.txt README
-}
diff --git a/net-libs/enet/enet-1.3.6.ebuild b/net-libs/enet/enet-1.3.6.ebuild
deleted file mode 100644
index 8c696750c9e8..000000000000
--- a/net-libs/enet/enet-1.3.6.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/enet/enet-1.3.6.ebuild,v 1.3 2013/02/17 17:41:38 ago Exp $
-
-EAPI=3
-inherit base
-
-DESCRIPTION="relatively thin, simple and robust network communication layer on top of UDP"
-HOMEPAGE="http://enet.bespin.org/"
-SRC_URI="http://enet.bespin.org/download/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="1.3"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="static-libs"
-
-RDEPEND="!${CATEGORY}/${PN}:0"
-
-DOCS=( "ChangeLog" "README" )
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- $(use_enable static-libs static)
-}
-
-src_install() {
- base_src_install
- if ! use static-libs ; then
- find "${D}" -type f -name '*.la' -exec rm {} + || die
- fi
-}