blob: 0329a03aa3e697ba9d5e105bfba5c44ca7576e03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# 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}"
}
|