blob: 84e2ba512778dd5a71d1343d4e5906ab036ed663 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/linux-igd/linux-igd-0.75.ebuild,v 1.9 2004/06/24 23:54:20 agriffis Exp $
MY_PN="gateway"
S="${WORKDIR}/${MY_PN}-${PV}"
DESCRIPTION="Daemon that emulates Microsoft's Internet Connection Service (ICS)
for UPnP-aware clients"
HOMEPAGE="http://linux-igd.sourceforge.net"
SRC_URI="mirror://sourceforge/linux-igd/${MY_PN}-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~ppc"
DEPEND="net-misc/upnp
net-firewall/iptables"
src_compile() {
mv Makefile Makefile.orig
sed <Makefile.orig >Makefile \
-e "s|/etc/linuxigd|${D}/etc/linuxigd|" \
-e "s|/usr/bin|${D}/usr/bin|"
mv pmlist.cpp pmlist.cpp.orig
sed <pmlist.cpp.orig >pmlist.cpp \
-e 's|/usr/sbin/iptables|/sbin/iptables|g'
emake || die "compile problem"
}
src_install () {
exeinto /usr/bin
doexe upnpd
insinto /etc/linuxigd
doins etc/*
doins ${FILESDIR}/upnpd.conf
exeinto /etc/init.d
newexe ${FILESDIR}/rc_upnpd upnpd
dodoc CHANGELOG LICENSE README SECURITY TODO
}
pkg_postinst() {
einfo "Make sure your firewall routing broadcast packages"
einfo "to 239.0.0.0/255.0.0.0 correctly. See"
einfo "/usr/share/doc/${P}/README.gz"
einfo "for more information."
}
|