diff options
author | Torsten Veller <tove@gentoo.org> | 2007-04-28 12:28:16 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2007-04-28 12:28:16 +0000 |
commit | 74dacf4825f4ab4988f5f915294be2b3b82c6fe5 (patch) | |
tree | 06e1175bb6d4ed32698a69392cfa207cdee5884d /net-analyzer/iplog | |
parent | Migrated to generation 2. (diff) | |
download | gentoo-2-74dacf4825f4ab4988f5f915294be2b3b82c6fe5.tar.gz gentoo-2-74dacf4825f4ab4988f5f915294be2b3b82c6fe5.tar.bz2 gentoo-2-74dacf4825f4ab4988f5f915294be2b3b82c6fe5.zip |
Use newinitd
(Portage version: 2.1.2.5)
Diffstat (limited to 'net-analyzer/iplog')
-rw-r--r-- | net-analyzer/iplog/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/iplog/iplog-2.2.3-r2.ebuild | 15 |
2 files changed, 12 insertions, 10 deletions
diff --git a/net-analyzer/iplog/ChangeLog b/net-analyzer/iplog/ChangeLog index 884cdb879a2e..27dd9e28a109 100644 --- a/net-analyzer/iplog/ChangeLog +++ b/net-analyzer/iplog/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/iplog -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iplog/ChangeLog,v 1.18 2006/09/30 01:30:26 robbat2 Exp $ +# 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 <tove@gentoo.org> iplog-2.2.3-r2.ebuild: + Use newinitd 30 Sep 2006; Robin H. Johnson <robbat2@gentoo.org> iplog-2.2.3-r2.ebuild: Add ~amd64 so I can use it. diff --git a/net-analyzer/iplog/iplog-2.2.3-r2.ebuild b/net-analyzer/iplog/iplog-2.2.3-r2.ebuild index e328499de5b2..bd9370f5eef6 100644 --- a/net-analyzer/iplog/iplog-2.2.3-r2.ebuild +++ b/net-analyzer/iplog/iplog-2.2.3-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# 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.12 2006/09/30 01:30:26 robbat2 Exp $ +# $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 @@ -17,8 +17,8 @@ DEPEND="net-libs/libpcap" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-DLT_LINUX_SSL.patch + cd "${S}" + epatch "${FILESDIR}"/${PV}-DLT_LINUX_SSL.patch } src_compile() { @@ -28,11 +28,10 @@ src_compile() { src_install() { make \ - prefix=${D}/usr \ - mandir=${D}/usr/share/man \ + prefix="${D}"/usr \ + mandir="${D}"/usr/share/man \ install || die dodoc AUTHORS NEWS README TODO example-iplog.conf - exeinto /etc/init.d - newexe ${FILESDIR}/iplog.rc6 iplog + newinitd "${FILESDIR}"/iplog.rc6 iplog } |