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/iplog-2.2.3-r2.ebuild | |
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/iplog-2.2.3-r2.ebuild')
-rw-r--r-- | net-analyzer/iplog/iplog-2.2.3-r2.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
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 } |