summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-05 07:45:24 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-05 07:45:24 +0000
commita3711c96ab706ca968e116377e900a960c559145 (patch)
tree7d958a6420ff733cd8544548165f3477f133fe8f /net-misc
parentVersion bump (diff)
downloadgentoo-2-a3711c96ab706ca968e116377e900a960c559145.tar.gz
gentoo-2-a3711c96ab706ca968e116377e900a960c559145.tar.bz2
gentoo-2-a3711c96ab706ca968e116377e900a960c559145.zip
Remove old.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/portfwd/ChangeLog5
-rw-r--r--net-misc/portfwd/portfwd-0.28.ebuild67
2 files changed, 4 insertions, 68 deletions
diff --git a/net-misc/portfwd/ChangeLog b/net-misc/portfwd/ChangeLog
index 89bc0be37526..786e52ae7397 100644
--- a/net-misc/portfwd/ChangeLog
+++ b/net-misc/portfwd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/portfwd
# Copyright 2000-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/portfwd/ChangeLog,v 1.27 2014/03/04 20:14:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/portfwd/ChangeLog,v 1.28 2014/03/05 07:45:23 kensington Exp $
+
+ 05 Mar 2014; Michael Palimaka <kensington@gentoo.org> -portfwd-0.28.ebuild:
+ Remove old.
04 Mar 2014; Agostino Sarubbo <ago@gentoo.org> portfwd-0.29.ebuild:
Stable for x86, wrt bug #501388
diff --git a/net-misc/portfwd/portfwd-0.28.ebuild b/net-misc/portfwd/portfwd-0.28.ebuild
deleted file mode 100644
index 0329a03aa3e6..000000000000
--- a/net-misc/portfwd/portfwd-0.28.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/portfwd/portfwd-0.28.ebuild,v 1.9 2010/10/28 10:15:42 ssuominen Exp $
-
-WANT_AUTOCONF="2.5"
-WANT_AUTOMAKE="1.4"
-inherit autotools eutils
-
-DESCRIPTION="Port Forwarding Daemon"
-SRC_URI="mirror://sourceforge/${PN}/${P/_/}.tar.gz"
-HOMEPAGE="http://portfwd.sourceforge.net"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 ia64 ~ppc ~sparc x86"
-IUSE=""
-
-DEPEND=">=sys-apps/sed-4"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${WORKDIR}"/${P/_/}
-
- epatch "${FILESDIR}"/${P}-64bit.patch
-
- cd src
- sed -iorig \
- -e "s:^CFLAGS =.*:CFLAGS = @CFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \
- -e "s:^CXXFLAGS =.*:CPPFLAGS = @CXXFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \
- Makefile.am
- cd ../tools
- sed -iorig \
- -e "s:^CXXFLAGS =.*:CPPFLAGS = @CXXFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \
- Makefile.am
- cd ../getopt
- sed -iorig -e "s:$.CC.:\$(CC) @CFLAGS@:g" Makefile.am
- cd ../doc
- sed -iorig -e "s:/doc/portfwd:/share/doc/$P:" Makefile.am
- cd ..
- sed -iorig -e "s:/doc/portfwd:/share/doc/$P:" Makefile.am
-
- eautoreconf
-}
-
-src_compile() {
- cd "${WORKDIR}"/${P/_/}
-
- econf || die "econf failed"
- emake
-}
-
-src_install() {
- cd "${WORKDIR}"/${P/_/}
-
- einstall
- prepalldocs
-
- dodoc cfg/*
-
- newinitd "${FILESDIR}"/${PN}.init ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-}
-
-pkg_postinst() {
- einfo "Many configuration file (/etc/portfwd.cfg) samples are available in /usr/share/doc/${P}"
-}