Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 562 - Ethereal 0.9.1
Summary: Ethereal 0.9.1
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: chouser (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-02-06 15:38 UTC by Yannick Koehler (RETIRED)
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Yannick Koehler (RETIRED) gentoo-dev 2002-02-06 15:38:18 UTC
 
Comment 1 Yannick Koehler (RETIRED) gentoo-dev 2002-02-06 15:40:00 UTC
# 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>
# /space/gentoo/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.1.ebuild,v
1.1 2002/01/08 11:05:44 blocke 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.0
        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
}

---

Digest

MD5 d358941f978bff598672c618df044195 ethereal-0.9.1.tar.gz 2756335
Comment 2 Daniel Robbins (RETIRED) gentoo-dev 2002-02-06 15:44:46 UTC
this is a new version for net-analyzer/ethereal
Comment 3 chouser (RETIRED) gentoo-dev 2002-02-09 13:58:04 UTC
This appears to already be in CVS.

--Chouser