Portage is a package management system used by Gentoo Linux
# ChangeLog for net-analyzer/iplog
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iplog/ChangeLog,v 1.19 2007/04/28 12:28:16 tove Exp $
28 Apr 2007; Torsten Veller
Use newinitd
30 Sep 2006; Robin H. Johnson
Add ~amd64 so I can use it.
05 Mar 2006; Markus Ullmann
COPYING cleanup
15 Feb 2006; Markus Ullmann
Removing virtual/libpcap wrt bug #117898
15 Sep 2005; Aron Griffis
Mark 2.2.3-r2 stable on alpha
24 Apr 2005; Marcelo Goes
-iplog-2.2.3.ebuild:
Removing old ebuilds.
29 Jan 2005; Daniel Black
iplog-2.2.3-r2.ebuild, iplog-2.2.3.ebuild:
changed net-libs/libpcap depend to virtual/libcap
08 Nov 2004; Bryan Østergaard
iplog-2.2.3-r2.ebuild, iplog-2.2.3.ebuild:
~alpha keyword, fix license syntax.
21 Mar 2004; Michael Boman
iplog-2.2.3-r2.ebuild, iplog-2.2.3.ebuild:
QA: IUSE variable was missing, unnecessary definition of S removed.
10 Mar 2004; Jason Wever
Stable on sparc.
27 Feb 2004; Michael Boman
files/iplog.rc6:
- Marked stable on x86. Closes 42998.
- re-indented the init.d script.
- Changed some internal stuff in the ebuild so it's a bit cleaner.
*iplog-2.2.3-r2 (26 Oct 2003)
26 Oct 2003; Robin H. Johnson
files/iplog.rc6:
add my own startup script for iplog
*iplog-2.2.3-r1 (18 Oct 2003)
18 Oct 2003; Mike Frysinger
Add dlt patch to support more interface types #27928.
*iplog-2.2.3 (1 Feb 2002)
21 Jul 2002; Owen Stampflee
Tested and Added PPC to KEYWORDS.
1 Feb 2002; G.Bevin
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
AUX 2.2.3-DLT_LINUX_SSL.patch 7611 RMD160 d6854fa72025900393684148c0b2b726d3beeb26 SHA1 f340bfa406cdb4bf38ea8338ca2b20ae0c6c7b32 SHA256 f969b18e7909aeb9f4e94d05d3860a98b7cb0831dbc4f7d5ca2db87cf7201541
AUX iplog.rc6 886 RMD160 121dbb0f6748d14bef9249182971d128b77673a4 SHA1 0db07e18ec23884a26c9d3ef52bd878c2b883ef6 SHA256 898ba77211f63cd41a6234993d5eeb0998d4de0d4f1b3d7202c592962f60916e
DIST iplog-2.2.3.tar.gz 133639 RMD160 879441d6cb3afe5bb8df42411fb821a2c7a0fad7 SHA1 ce257d13ceb54bacb5cfe97570603868c7463cb2 SHA256 cc3da7b6f360ff25455e5ae7c95d7377de332deb23f6dcb5c1ea11e563702fff
EBUILD iplog-2.2.3-r2.ebuild 849 RMD160 d73fc9aa478b115a6283e2dfa071850fdfbbc317 SHA1 a701dcfa84a4e288154f858659055f7d399d1692 SHA256 62e71a6e96f34acf9a9acd0c20f2361cfa275e9757022b4f0041cabbd79be263
MISC ChangeLog 2538 RMD160 e88a5bd3b718c6de5788744d5edc153bb47c20f4 SHA1 0b5b5c5665c64bfd1be008fc3358da4b67b415d0 SHA256 f7004736d2537beaf0b3351fe0f3dc9d337d350b6e23e909e7126b4abc59e0d3
MISC metadata.xml 227 RMD160 4de30a2196df0469d2a26cecf308e8699e48e158 SHA1 d19185713fec1769d0029a23d1151fa441e4d994 SHA256 4743553d8fe6a64cd031cf3fcabe8eb8b68c65adcec8483550c910b26de779a8
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iplog/iplog-2.2.3-r2.ebuild,v 1.13 2007/04/28 12:28:16 tove Exp $
inherit eutils
DESCRIPTION="iplog is a TCP/IP traffic logger"
HOMEPAGE="http://ojnk.sourceforge.net/"
SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
LICENSE="|| ( GPL-2 FDL-1.1 )"
SLOT="0"
KEYWORDS="alpha ppc sparc x86 ~amd64"
IUSE=""
DEPEND="net-libs/libpcap"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-DLT_LINUX_SSL.patch
}
src_compile() {
econf || die
make CFLAGS="${CFLAGS} -D_REENTRANT" all || die
}
src_install() {
make \
prefix="${D}"/usr \
mandir="${D}"/usr/share/man \
install || die
dodoc AUTHORS NEWS README TODO example-iplog.conf
newinitd "${FILESDIR}"/iplog.rc6 iplog
}