diff options
20 files changed, 114 insertions, 306 deletions
diff --git a/net-analyzer/ethereal/ChangeLog b/net-analyzer/ethereal/ChangeLog index 1cb39efffcb0..93bac0dd6fe1 100644 --- a/net-analyzer/ethereal/ChangeLog +++ b/net-analyzer/ethereal/ChangeLog @@ -1,19 +1,30 @@ # ChangeLog for net-analyzer/ethereal # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.4 2002/04/17 04:27:38 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.5 2002/05/04 03:16:38 woodchip Exp $ + +*ethereal-0.9.3-r1 (3 May 2002) + + 3 May 2002; Donny Davies <woodchip@gentoo.org> : + + Added LICENSE, SLOT. *ethereal-0.9.3 (16 Apr 2002) - 16 Apr 2002; Ryan Phillips <rphillips@gentoo.org> + + 16 Apr 2002; Ryan Phillips <rphillips@gentoo.org> : + Change URLs to point to correct web address. (#1851) *ethereal-0.9.3 (11 Apr 2002) - 11 Apr 2002; Spider <spider@gentoo.org> + + 11 Apr 2002; Spider <spider@gentoo.org> : + Update all glib dependencies to use glib-1.2* in preparation of unmasking the glib-2.0.1 packages *ethereal-0.9.3 (04 Feb 2002) - 04 Feb 2002; Spider <spider@gentoo.org> - Update to the latest version, closing bug 1439 + 04 Feb 2002; Spider <spider@gentoo.org> : + + Update to the latest version, closing bug 1439 *ethereal-0.9.0 (1 Feb 2002) diff --git a/net-analyzer/ethereal/ethereal-0.8.18.ebuild b/net-analyzer/ethereal/ethereal-0.8.18.ebuild deleted file mode 100644 index 660e41a1561d..000000000000 --- a/net-analyzer/ethereal/ethereal-0.8.18.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.8.18.ebuild,v 1.4 2001/06/24 20:13:37 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="ethereal" -SRC_URI="http://ethereal.zing.org/distribution/${A} - ftp://ethereal.zing.org/pub/ethereal/${A}" -HOMEPAGE="http://ethereal.zing.org/" - -DEPEND="virtual/glibc virtual/x11 sys-devel/perl - >=net-libs/libpcap-0.5.2 >=sys-libs/zlib-1.1.3 - ssl? ( >=dev-libs/openssl-0.9.6a ) - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 )" - -RDEPEND="virtual/glibc virtual/x11 - >=sys-libs/zlib-1.1.3 - ssl? ( >=dev-libs/openssl-0.9.6a ) - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 )" - -src_compile() { - if [ "`use ssl`" ] ; then - myconf="--with-ssl=/usr" - else - myconf="--without-ssl" - fi - if [ "`use snmp`" ] ; then - myconf="--enable-snmp" - else - myconf="--disable-snmp" - fi - - LDFLAGS="-L/usr/lib -lz" try ./configure --host=${CHOST} --prefix=/usr --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --mandir=/usr/share/man --sysconfdir=/etc/ethereal --enable-pcap --enable-zlib --enable-ipv6 $myconf - try make -} - -src_install() { - - dodir /usr/lib/ethereal/plugins/${PV} - try make prefix=${D}/usr sysconfdir=${D}/etc/ethereal mandir=${D}/usr/share/man \ - plugindir=${D}/usr/lib/ethereal/plugins/${PV} install - dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO - -} - - - diff --git a/net-analyzer/ethereal/ethereal-0.8.20.ebuild b/net-analyzer/ethereal/ethereal-0.8.20.ebuild deleted file mode 100644 index 6b8aa26f2031..000000000000 --- a/net-analyzer/ethereal/ethereal-0.8.20.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org>, Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.8.20.ebuild,v 1.2 2002/04/12 16:56:07 spider Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A commercial-quality network protocol analyzer" -SRC_URI="http://ethereal.zing.org/distribution/${P}.tar.gz" -HOMEPAGE="http://ethereal.zing.org/" - -RDEPEND="virtual/glibc - >=sys-libs/zlib-1.1.3 - =dev-libs/glib-1.2* - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 ) - X? ( virtual/x11 >=x11-libs/gtk+-1.2.0 ) - ssl? ( >=dev-libs/openssl-0.9.6b )" - -DEPEND="${RDEPEND} - sys-devel/perl - sys-devel/bison - sys-devel/flex - >=net-libs/libpcap-0.5.2" - -src_compile() { - - local myconf - use ssl || myconf="${myconf} --without-ssl" - use snmp || myconf="${myconf} --disable-snmp" - use X || myconf="${myconf} --disable-ethereal" - - ./configure --prefix=/usr --host=${CHOST} ${myconf} \ - --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --mandir=/usr/share/man --sysconfdir=/etc/ethereal \ - --enable-pcap --enable-zlib --enable-ipv6 || die - - make || die "compile problem" -} - -src_install() { - - dodir /usr/lib/ethereal/plugins/${PV} - - make plugindir=${D}/usr/lib/ethereal/plugins/${PV} \ - prefix=${D}/usr sysconfdir=${D}/etc/ethereal \ - mandir=${D}/usr/share/man install || die - - dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO -} diff --git a/net-analyzer/ethereal/ethereal-0.9.0.ebuild b/net-analyzer/ethereal/ethereal-0.9.0.ebuild deleted file mode 100644 index 9f3252e15abc..000000000000 --- a/net-analyzer/ethereal/ethereal-0.9.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org>, Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.0.ebuild,v 1.2 2002/04/12 16:56:07 spider Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A commercial-quality network protocol analyzer" -SRC_URI="http://ethereal.zing.org/distribution/${P}.tar.gz" -HOMEPAGE="http://ethereal.zing.org/" - -RDEPEND="virtual/glibc - >=sys-libs/zlib-1.1.3 - =dev-libs/glib-1.2* - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 ) - X? ( virtual/x11 >=x11-libs/gtk+-1.2.0 ) - ssl? ( >=dev-libs/openssl-0.9.6b )" - -DEPEND="${RDEPEND} - sys-devel/perl - sys-devel/bison - sys-devel/flex - >=net-libs/libpcap-0.5.2" - -src_compile() { - - local myconf - use ssl || myconf="${myconf} --without-ssl" - use snmp || myconf="${myconf} --disable-snmp" - use X || myconf="${myconf} --disable-ethereal" - - ./configure --prefix=/usr --host=${CHOST} ${myconf} \ - --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --mandir=/usr/share/man --sysconfdir=/etc/ethereal \ - --enable-pcap --enable-zlib --enable-ipv6 || die - - make || die "compile problem" -} - -src_install() { - - dodir /usr/lib/ethereal/plugins/${PV} - - make plugindir=${D}/usr/lib/ethereal/plugins/${PV} \ - prefix=${D}/usr sysconfdir=${D}/etc/ethereal \ - mandir=${D}/usr/share/man install || die - - dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO -} diff --git a/net-analyzer/ethereal/ethereal-0.9.1.ebuild b/net-analyzer/ethereal/ethereal-0.9.1.ebuild deleted file mode 100644 index d0f47cd9c0ea..000000000000 --- a/net-analyzer/ethereal/ethereal-0.9.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org>, Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.1.ebuild,v 1.2 2002/04/12 16:56:07 spider Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A commercial-quality network protocol analyzer" -SRC_URI="http://ethereal.zing.org/distribution/${P}.tar.gz" -HOMEPAGE="http://ethereal.zing.org/" - -RDEPEND="virtual/glibc - >=sys-libs/zlib-1.1.3 - =dev-libs/glib-1.2* - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 ) - X? ( virtual/x11 >=x11-libs/gtk+-1.2.0 ) - ssl? ( >=dev-libs/openssl-0.9.6b )" - -DEPEND="${RDEPEND} - sys-devel/perl - sys-devel/bison - sys-devel/flex - >=net-libs/libpcap-0.5.2" - -src_compile() { - - local myconf - use ssl || myconf="${myconf} --without-ssl" - use snmp || myconf="${myconf} --disable-snmp" - use X || myconf="${myconf} --disable-ethereal" - - ./configure --prefix=/usr --host=${CHOST} ${myconf} \ - --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --mandir=/usr/share/man --sysconfdir=/etc/ethereal \ - --enable-pcap --enable-zlib --enable-ipv6 || die - - make || die "compile problem" -} - -src_install() { - - dodir /usr/lib/ethereal/plugins/${PV} - - make plugindir=${D}/usr/lib/ethereal/plugins/${PV} \ - prefix=${D}/usr sysconfdir=${D}/etc/ethereal \ - mandir=${D}/usr/share/man install || die - - dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO -} diff --git a/net-analyzer/ethereal/ethereal-0.9.3.ebuild b/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild index 8e9c51c32c82..1049a373d0e7 100644 --- a/net-analyzer/ethereal/ethereal-0.9.3.ebuild +++ b/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild @@ -1,12 +1,13 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org>, Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.3.ebuild,v 1.3 2002/04/17 04:26:07 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild,v 1.1 2002/05/04 03:16:38 woodchip Exp $ S=${WORKDIR}/${P} DESCRIPTION="A commercial-quality network protocol analyzer" SRC_URI="http://www.ethereal.com/distribution/${P}.tar.gz" HOMEPAGE="http://www.ethereal.com/" +LICENSE="GPL-2" +SLOT="0" RDEPEND="virtual/glibc >=sys-libs/zlib-1.1.3 @@ -22,27 +23,32 @@ DEPEND="${RDEPEND} >=net-libs/libpcap-0.5.2" src_compile() { - local myconf + use X || myconf="${myconf} --disable-ethereal" use ssl || myconf="${myconf} --without-ssl" use snmp || myconf="${myconf} --disable-snmp" - use X || myconf="${myconf} --disable-ethereal" - ./configure --prefix=/usr --host=${CHOST} ${myconf} \ - --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --mandir=/usr/share/man --sysconfdir=/etc/ethereal \ - --enable-pcap --enable-zlib --enable-ipv6 || die + ./configure \ + --prefix=/usr \ + --enable-pcap \ + --enable-zlib \ + --enable-ipv6 \ + --mandir=/usr/share/man \ + --sysconfdir=/etc/ethereal \ + --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ + --host=${CHOST} ${myconf} || die "bad ./configure" make || die "compile problem" } src_install() { - dodir /usr/lib/ethereal/plugins/${PV} - make plugindir=${D}/usr/lib/ethereal/plugins/${PV} \ - prefix=${D}/usr sysconfdir=${D}/etc/ethereal \ - mandir=${D}/usr/share/man install || die + make install \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + sysconfdir=${D}/etc/ethereal \ + plugindir=${D}/usr/lib/ethereal/plugins/${PV} || die dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO } diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.8.18 b/net-analyzer/ethereal/files/digest-ethereal-0.8.18 deleted file mode 100644 index 88017fdf8837..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.8.18 +++ /dev/null @@ -1 +0,0 @@ -MD5 bbc51343dd353c49702a87ca9585c82a ethereal-0.8.18.tar.gz 1938288 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.8.20 b/net-analyzer/ethereal/files/digest-ethereal-0.8.20 deleted file mode 100644 index 1c166e584e03..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.8.20 +++ /dev/null @@ -1 +0,0 @@ -MD5 069cf917b94cacdc905041fe5d977675 ethereal-0.8.20.tar.gz 2306541 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.0 b/net-analyzer/ethereal/files/digest-ethereal-0.9.0 deleted file mode 100644 index 9e9b3d2896c3..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.9.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 ffd8bd046f744264b7eec1b1e3dd3565 ethereal-0.9.0.tar.gz 2650195 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.1 b/net-analyzer/ethereal/files/digest-ethereal-0.9.1 deleted file mode 100644 index fcd89e70b3ab..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.9.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 d358941f978bff598672c618df044195 ethereal-0.9.1.tar.gz 2756335 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.3 b/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r1 index 35591709ece6..35591709ece6 100644 --- a/net-analyzer/ethereal/files/digest-ethereal-0.9.3 +++ b/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r1 diff --git a/net-analyzer/lcrzoex/ChangeLog b/net-analyzer/lcrzoex/ChangeLog index f421507ecac7..03050d1ae493 100644 --- a/net-analyzer/lcrzoex/ChangeLog +++ b/net-analyzer/lcrzoex/ChangeLog @@ -1,8 +1,14 @@ # ChangeLog for net-analyzer/lcrzoex # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lcrzoex/ChangeLog,v 1.6 2002/04/30 03:30:24 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lcrzoex/ChangeLog,v 1.7 2002/05/04 03:16:38 woodchip Exp $ -*lcrzoex-4.09 (29 Apr 2002) +*lcrzoex-4.09-r1 (3 May 2002) + + 3 May 2002; Donny Davies <woodchip@gentoo.org> : + + Added LICENSE, SLOT. + +*lcrzoex-4.09 (28 Apr 2002) *lcrzoex-4.08 (16 Apr 2002) diff --git a/net-analyzer/lcrzoex/files/digest-lcrzoex-4.09 b/net-analyzer/lcrzoex/files/digest-lcrzoex-4.09-r1 index 52bea9599336..52bea9599336 100644 --- a/net-analyzer/lcrzoex/files/digest-lcrzoex-4.09 +++ b/net-analyzer/lcrzoex/files/digest-lcrzoex-4.09-r1 diff --git a/net-analyzer/lcrzoex/lcrzoex-4.09.ebuild b/net-analyzer/lcrzoex/lcrzoex-4.09-r1.ebuild index 057d62dfd9d3..a9c391e81e41 100644 --- a/net-analyzer/lcrzoex/lcrzoex-4.09.ebuild +++ b/net-analyzer/lcrzoex/lcrzoex-4.09-r1.ebuild @@ -1,7 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# Author: Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lcrzoex/lcrzoex-4.09.ebuild,v 1.1 2002/04/30 03:30:24 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/lcrzoex/lcrzoex-4.09-r1.ebuild,v 1.1 2002/05/04 03:16:38 woodchip Exp $ DESCRIPTION="Toolbox of over 300 utilities for testing Ethernet/IP networks" HOMEPAGE="http://www.laurentconstantin.com/en/lcrzoex/" @@ -9,7 +8,6 @@ SRC_URI="http://www.laurentconstantin.com/common/${PN}/download/v4/${P}-src.tgz" S=${WORKDIR}/${P}-src DEPEND="virtual/glibc =net-libs/lcrzo-${PV}" - LICENSE="GPL-2" SLOT="0" diff --git a/net-analyzer/ucd-snmp/ChangeLog b/net-analyzer/ucd-snmp/ChangeLog index 5244e51da075..bf22cec0fd3f 100644 --- a/net-analyzer/ucd-snmp/ChangeLog +++ b/net-analyzer/ucd-snmp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/ucd-snmp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ChangeLog,v 1.2 2002/02/13 00:26:39 m0rpheus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ChangeLog,v 1.3 2002/05/04 03:16:38 woodchip Exp $ + +*ucd-snmp-4.2.3-r1 (3 May 2002) + + 3 May 2002; Donny Davies <woodchip@gentoo.org> : + + Added LICENSE, SLOT. *ucd-snmp-4.2.3 (13 Feb 2002) diff --git a/net-analyzer/ucd-snmp/files/digest-ucd-snmp-4.2.3 b/net-analyzer/ucd-snmp/files/digest-ucd-snmp-4.2.3-r1 index cad194121987..cad194121987 100644 --- a/net-analyzer/ucd-snmp/files/digest-ucd-snmp-4.2.3 +++ b/net-analyzer/ucd-snmp/files/digest-ucd-snmp-4.2.3-r1 diff --git a/net-analyzer/ucd-snmp/files/snmpd.rc5 b/net-analyzer/ucd-snmp/files/snmpd.rc5 deleted file mode 100644 index 0fd232d39f22..000000000000 --- a/net-analyzer/ucd-snmp/files/snmpd.rc5 +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -#RCUPDATE:2 3 4:80:This line is required for script management - -. /etc/rc.d/config/functions - -SERVICE=snmpd -opts="start stop restart" - -PIDFILE=/var/run/snmpd.pid -EXE=/usr/sbin/snmpd - -start() { - ebegin "Starting $SERVICE..." - start-stop-daemon --start --quiet --exec $EXE - eend $? "Started $SERVICE." "Error Starting $SERVICE." -} - -stop() { - ebegin "Stopping $SERVICE..." - start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $EXE - eend $? "Stopped $SERVICE." "Error Stopping $SERVICE." -} - -restart() { - stop - start -} - -doservice ${@} - - diff --git a/net-analyzer/ucd-snmp/files/snmpd.rc6 b/net-analyzer/ucd-snmp/files/snmpd.rc6 index 184b39b77821..573c91d81701 100644 --- a/net-analyzer/ucd-snmp/files/snmpd.rc6 +++ b/net-analyzer/ucd-snmp/files/snmpd.rc6 @@ -1,29 +1,29 @@ #!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/files/snmpd.rc6,v 1.2 2001/12/06 20:17:02 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/files/snmpd.rc6,v 1.3 2002/05/04 03:16:38 woodchip Exp $ depend() { - need net + need net } checkconfig() { - if [ ! -e /usr/share/snmp/snmpd.conf ] ; then - eerror "You need an /usr/share/snmp/snmpd.conf to run ucd-snmpd" - eerror "There is an example config in /usr/share/docs/ucd-snmp" - return 1 - fi + if [ ! -e /usr/share/snmp/snmpd.conf ] ; then + eerror "You need an /usr/share/snmp/snmpd.conf to run ucd-snmpd" + eerror "There is an example config in /usr/share/docs/ucd-snmp" + return 1 + fi } start() { - checkconfig || return 1 - ebegin "Starting snmpd" - start-stop-daemon --start --quiet --exec /usr/sbin/snmpd - eend $? + checkconfig || return 1 + ebegin "Starting snmpd" + start-stop-daemon --start --quiet --exec /usr/sbin/snmpd + eend $? } stop() { - ebegin "Stopping snmpd" - start-stop-daemon --stop --quiet --exec /usr/sbin/snmpd - eend $? + ebegin "Stopping snmpd" + start-stop-daemon --stop --quiet --exec /usr/sbin/snmpd + eend $? } diff --git a/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild b/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild new file mode 100644 index 000000000000..e8727d053cb4 --- /dev/null +++ b/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild,v 1.1 2002/05/04 03:16:38 woodchip Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Software for generating and retrieving SNMP data" +SRC_URI="http://download.sourceforge.net/net-snmp/${P}.tar.gz" +HOMEPAGE="http://net-snmp.sourceforge.net/" + +DEPEND="virtual/glibc <sys-libs/db-2 + >=sys-libs/zlib-1.1.3 + ssl? ( >=dev-libs/openssl-0.9.6 ) + tcpd? ( >=sys-apps/tcp-wrappers-7.6 )" +LICENSE="as-is" +SLOT="0" + +src_compile() { + local myconf + use ssl && myconf="${myconf} --with-openssl=/usr" + use ssl || myconf="${myconf} --enable-internal-md5 --with-openssl=no" + use tcpd && myconf="${myconf} --with-libwrap" + use ipv6 && myconf="${myconf} --with-ipv6" + + ./configure \ + --with-zlib \ + --prefix=/usr \ + --enable-shared \ + --mandir=/usr/share/man \ + --with-sys-location="Unknown" \ + --with-sys-contact="root@Unknown" \ + --with-logfile=/var/log/snmpd.log \ + --with-persistent-directory=/var/lib/ucd-snmp \ + --host=${CHOST} ${myconf} || die "bad ./configure" + + emake || die "compile problem" +} + +src_install () { + make install \ + prefix=${D}/usr \ + exec_prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + persistentdir=${D}/var/lib/ucd-snmp || die + + dodoc AGENT.txt ChangeLog FAQ INSTALL NEWS PORTING README* TODO EXAMPLE.conf + + exeinto /etc/init.d + newexe ${FILESDIR}/snmpd.rc6 snmpd +} diff --git a/net-analyzer/ucd-snmp/ucd-snmp-4.2.3.ebuild b/net-analyzer/ucd-snmp/ucd-snmp-4.2.3.ebuild deleted file mode 100644 index ff58a505a78a..000000000000 --- a/net-analyzer/ucd-snmp/ucd-snmp-4.2.3.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Donny Davies <woodchip@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ucd-snmp-4.2.3.ebuild,v 1.1 2002/02/13 00:26:39 m0rpheus Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="Software for generating and retrieving SNMP data" -SRC_URI="http://download.sourceforge.net/net-snmp/${P}.tar.gz" -HOMEPAGE="http://net-snmp.sourceforge.net/" - -DEPEND="virtual/glibc <sys-libs/db-2 - >=sys-libs/zlib-1.1.3 - ssl? ( >=dev-libs/openssl-0.9.6 ) - tcpd? ( >=sys-apps/tcp-wrappers-7.6 )" - -src_compile() { - local myconf - use ssl && myconf="${myconf} --with-openssl=/usr" - use ssl || myconf="${myconf} --enable-internal-md5 --with-openssl=no" - use tcpd && myconf="${myconf} --with-libwrap" - use ipv6 && myconf="${myconf} --with-ipv6" - - ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} \ - --with-zlib --enable-shared --with-sys-contact="root@Unknown" \ - --with-sys-location="Unknown" --with-logfile=/var/log/snmpd.log \ - --with-persistent-directory=/var/lib/ucd-snmp ${myconf} - assert - emake || die -} - -src_install () { - make prefix=${D}/usr exec_prefix=${D}/usr mandir=${D}/usr/share/man \ - persistentdir=${D}/var/lib/ucd-snmp install || die - - dodoc AGENT.txt ChangeLog FAQ INSTALL NEWS PORTING README* TODO EXAMPLE.conf - - exeinto /etc/init.d - newexe ${FILESDIR}/snmpd.rc6 snmpd -} |