diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-01-20 19:11:55 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-01-20 19:11:55 +0000 |
commit | 86c813e1c815983e943791dd8091c5f3731f3612 (patch) | |
tree | abc44983d98f676079cc4af18cdbd4c9f1dfc540 /net-misc/radvd | |
parent | Version bumped. Closes 38758 (Manifest recommit) (diff) | |
download | gentoo-2-86c813e1c815983e943791dd8091c5f3731f3612.tar.gz gentoo-2-86c813e1c815983e943791dd8091c5f3731f3612.tar.bz2 gentoo-2-86c813e1c815983e943791dd8091c5f3731f3612.zip |
cleanup
Diffstat (limited to 'net-misc/radvd')
-rw-r--r-- | net-misc/radvd/Manifest | 8 | ||||
-rw-r--r-- | net-misc/radvd/files/digest-radvd-0.7.1 | 1 | ||||
-rw-r--r-- | net-misc/radvd/files/digest-radvd-0.7.2 | 1 | ||||
-rw-r--r-- | net-misc/radvd/radvd-0.7.1.ebuild | 59 | ||||
-rw-r--r-- | net-misc/radvd/radvd-0.7.2.ebuild | 59 |
5 files changed, 2 insertions, 126 deletions
diff --git a/net-misc/radvd/Manifest b/net-misc/radvd/Manifest index b018e0ae79bf..4bc9d49ef6fb 100644 --- a/net-misc/radvd/Manifest +++ b/net-misc/radvd/Manifest @@ -1,8 +1,4 @@ -MD5 699553ef390bf06a9811cb92c871c87f radvd-0.7.2.ebuild 1610 -MD5 ba981f5cf7af1bd566b55b1321679e60 radvd-0.7.2-r1.ebuild 1327 MD5 e5fc54190a964a59178d4b11d7efb848 ChangeLog 1011 -MD5 bc30aa0c826e53e5e320cc59939efd04 radvd-0.7.1.ebuild 1610 -MD5 c47ba5fc74b7b903753474799a9ea8fa files/radvd 613 -MD5 de245606da9f75a40de1a0ad2aec0c96 files/digest-radvd-0.7.1 63 -MD5 48df423b3b993bec69b27f5bc4026415 files/digest-radvd-0.7.2 63 +MD5 ba981f5cf7af1bd566b55b1321679e60 radvd-0.7.2-r1.ebuild 1327 MD5 48df423b3b993bec69b27f5bc4026415 files/digest-radvd-0.7.2-r1 63 +MD5 c47ba5fc74b7b903753474799a9ea8fa files/radvd 613 diff --git a/net-misc/radvd/files/digest-radvd-0.7.1 b/net-misc/radvd/files/digest-radvd-0.7.1 deleted file mode 100644 index fb5df66e6833..000000000000 --- a/net-misc/radvd/files/digest-radvd-0.7.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 5f0ae96490eab23ae926f9ee209c1e8b radvd-0.7.1.tar.gz 114333 diff --git a/net-misc/radvd/files/digest-radvd-0.7.2 b/net-misc/radvd/files/digest-radvd-0.7.2 deleted file mode 100644 index e70ec263610e..000000000000 --- a/net-misc/radvd/files/digest-radvd-0.7.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 26ea468b2323e44cf827ae5f84d18dc8 radvd-0.7.2.tar.gz 116442 diff --git a/net-misc/radvd/radvd-0.7.1.ebuild b/net-misc/radvd/radvd-0.7.1.ebuild deleted file mode 100644 index c0c84be0f72d..000000000000 --- a/net-misc/radvd/radvd-0.7.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/radvd/radvd-0.7.1.ebuild,v 1.5 2003/09/05 22:01:49 msterret Exp $ - -DESCRIPTION="Linux IPv6 Router Advertisement Daemon (radvd)" -HOMEPAGE="http://v6web.litech.org/radvd/" -SRC_URI="http://v6web.litech.org/radvd/dist/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="x86" - -DEPEND="virtual/glibc - virtual/kernel" - -pkg_preinst() { - if ! groupmod radvd; then - groupadd -g 75 radvd || die "problem adding group radvd" - fi - - usermod radvd &>/dev/null - if [ $? != 2 ]; then - useradd -u 75 -g radvd -s /bin/false -d / -c "Router Advertisement Daemon (radvd)" radvd - assert "problem adding user radvd" - fi -} - -src_compile() { - econf --libexecdir=/usr/lib/radvd \ - --with-pidfile=/var/run/radvd/radvd.pid \ - --sysconfdir=/etc/radvd - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc CHANGES COPYRIGHT INTRO.html README TODO - - insinto /etc/radvd - doins radvd.conf.example - - exeinto /etc/init.d - doexe ${FILESDIR}/radvd - - dodir /var/run/radvd - fowners radvd.radvd /var/run/radvd - fperms 755 /var/run/radvd -} - -pkg_postinst() { - einfo To make it work you have to configure /etc/radvd/radvd.conf and put - einfo the line net.ipv6.conf.all.forwarding = 1 in sysctl.conf or just run - einfo sysctl -w net.ipv6.conf.all.forwarding=1 in your firewallscripts before - einfo starting radvd. - einfo - einfo echo 1 \> /proc/sys/net/ipv6/conf/all/forwarding should also work. - einfo - einfo "rc-update add radvd default" should make it start at boottime. -} diff --git a/net-misc/radvd/radvd-0.7.2.ebuild b/net-misc/radvd/radvd-0.7.2.ebuild deleted file mode 100644 index 27450e09d164..000000000000 --- a/net-misc/radvd/radvd-0.7.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/radvd/radvd-0.7.2.ebuild,v 1.5 2003/09/05 22:01:49 msterret Exp $ - -DESCRIPTION="Linux IPv6 Router Advertisement Daemon (radvd)" -HOMEPAGE="http://v6web.litech.org/radvd/" -SRC_URI="http://v6web.litech.org/radvd/dist/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="x86" - -DEPEND="virtual/glibc - virtual/kernel" - -pkg_preinst() { - if ! groupmod radvd; then - groupadd -g 75 radvd || die "problem adding group radvd" - fi - - usermod radvd &>/dev/null - if [ $? != 2 ]; then - useradd -u 75 -g radvd -s /bin/false -d / -c "Router Advertisement Daemon (radvd)" radvd - assert "problem adding user radvd" - fi -} - -src_compile() { - econf --libexecdir=/usr/lib/radvd \ - --with-pidfile=/var/run/radvd/radvd.pid \ - --sysconfdir=/etc/radvd - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - dodoc CHANGES COPYRIGHT INTRO.html README TODO - - insinto /etc/radvd - doins radvd.conf.example - - exeinto /etc/init.d - doexe ${FILESDIR}/radvd - - dodir /var/run/radvd - fowners radvd.radvd /var/run/radvd - fperms 755 /var/run/radvd -} - -pkg_postinst() { - einfo To make it work you have to configure /etc/radvd/radvd.conf and put - einfo the line net.ipv6.conf.all.forwarding = 1 in sysctl.conf or just run - einfo sysctl -w net.ipv6.conf.all.forwarding=1 in your firewallscripts before - einfo starting radvd. - einfo - einfo echo 1 \> /proc/sys/net/ipv6/conf/all/forwarding should also work. - einfo - einfo "rc-update add radvd default" should make it start at boottime. -} |