# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/linux-igd/linux-igd-0.92.ebuild,v 1.4 2004/03/23 18:56:09 mholzer Exp $ MY_PN="linuxigd" S="${WORKDIR}/${PN}" 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() { cd ${S} mv Makefile Makefile.orig sed Makefile \ -e "s|/etc/linuxigd|${D}/etc/linuxigd|" \ -e "s|/usr/bin|${D}/usr/bin|" mv pmlist.cpp pmlist.cpp.orig sed 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." }