Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/portfwd/
Date: Wed, 04 May 2016 01:02:28
Message-Id: 1462321895.4a688bee40a0b29e1a29e7b989668c8e1eedc8f3.wizardedit@gentoo
1 commit: 4a688bee40a0b29e1a29e7b989668c8e1eedc8f3
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 00:31:35 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 00:31:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a688bee
7
8 net-misc/portfwd: remove old version
9
10 Package-Manager: portage-2.2.26
11
12 net-misc/portfwd/portfwd-0.29.ebuild | 48 ------------------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/net-misc/portfwd/portfwd-0.29.ebuild b/net-misc/portfwd/portfwd-0.29.ebuild
16 deleted file mode 100644
17 index 155dc86..0000000
18 --- a/net-misc/portfwd/portfwd-0.29.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -inherit autotools eutils systemd
27 -
28 -DESCRIPTION="Port Forwarding Daemon"
29 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
30 -HOMEPAGE="http://portfwd.sourceforge.net"
31 -LICENSE="GPL-2"
32 -
33 -SLOT="0"
34 -KEYWORDS="amd64 ia64 ~ppc ~sparc x86"
35 -IUSE=""
36 -
37 -DEPEND=">=sys-apps/sed-4"
38 -RDEPEND=""
39 -
40 -src_prepare() {
41 - cd src
42 - sed -iorig \
43 - -e "s:^CFLAGS =.*:CFLAGS = @CFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \
44 - -e "s:^CXXFLAGS =.*:CPPFLAGS = @CXXFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \
45 - Makefile.am || die
46 - cd ../tools
47 - sed -iorig \
48 - -e "s:^CXXFLAGS =.*:CPPFLAGS = @CXXFLAGS@ -Wall -DPORTFWD_CONF=\\\\\"\$(sysconfdir)/portfwd.cfg\\\\\":" \
49 - Makefile.am || die
50 - cd ../getopt
51 - sed -iorig -e "s:$.CC.:\$(CC) @CFLAGS@:g" Makefile.am || die
52 - cd ../doc
53 - sed -iorig -e "s:/doc/portfwd:/share/doc/$P:" Makefile.am || die
54 - cd ..
55 - sed -iorig -e "s:/doc/portfwd:/share/doc/$P:" Makefile.am || die
56 -
57 - eautoreconf
58 -}
59 -
60 -src_install() {
61 - default
62 -
63 - dodoc cfg/*
64 -
65 - newinitd "${FILESDIR}"/${PN}.init ${PN}
66 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
67 - systemd_dounit "${FILESDIR}"/${PN}.service
68 -}