summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2007-04-14 21:02:27 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2007-04-14 21:02:27 +0000
commit280c910a1aa4370d36fb916ba2365bb9e0a4af1a (patch)
treecc8d0cbb5a7788031b5d0f1b4ddb4b1475e20041 /net-analyzer/FlowScan
parentJAVA_PKG_STRICT cleanups and migrate to splitted ant. (diff)
downloadgentoo-2-280c910a1aa4370d36fb916ba2365bb9e0a4af1a.tar.gz
gentoo-2-280c910a1aa4370d36fb916ba2365bb9e0a4af1a.tar.bz2
gentoo-2-280c910a1aa4370d36fb916ba2365bb9e0a4af1a.zip
Use elog instead of einfo.
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-analyzer/FlowScan')
-rw-r--r--net-analyzer/FlowScan/ChangeLog6
-rw-r--r--net-analyzer/FlowScan/FlowScan-1.006-r2.ebuild20
2 files changed, 14 insertions, 12 deletions
diff --git a/net-analyzer/FlowScan/ChangeLog b/net-analyzer/FlowScan/ChangeLog
index 7a2b188b89dd..53a85447c6fb 100644
--- a/net-analyzer/FlowScan/ChangeLog
+++ b/net-analyzer/FlowScan/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/FlowScan
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/FlowScan/ChangeLog,v 1.9 2007/02/01 20:57:14 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/FlowScan/ChangeLog,v 1.10 2007/04/14 21:02:27 vanquirius Exp $
+
+ 14 Apr 2007; Marcelo Goes <vanquirius@gentoo.org>
+ FlowScan-1.006-r2.ebuild:
+ Use elog instead of einfo.
01 Feb 2007; Markus Ullmann <jokey@gentoo.org> +files/flowscan.init:
fix exec bit
diff --git a/net-analyzer/FlowScan/FlowScan-1.006-r2.ebuild b/net-analyzer/FlowScan/FlowScan-1.006-r2.ebuild
index ce865239a08e..f6acf6c55a99 100644
--- a/net-analyzer/FlowScan/FlowScan-1.006-r2.ebuild
+++ b/net-analyzer/FlowScan/FlowScan-1.006-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/FlowScan/FlowScan-1.006-r2.ebuild,v 1.4 2006/03/05 20:12:55 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/FlowScan/FlowScan-1.006-r2.ebuild,v 1.5 2007/04/14 21:02:27 vanquirius Exp $
inherit eutils
@@ -31,13 +31,13 @@ pkg_setup() {
}
src_compile() {
- ./configure --prefix=${D}/var/lib/flows --bindir=/var/lib/flows/bin || die "configure failed"
+ ./configure --prefix="${D}"/var/lib/flows --bindir=/var/lib/flows/bin || die "configure failed"
}
src_install() {
make install || die "install failed"
- newinitd ${FILESDIR}/flowscan.init flowscan
+ newinitd "${FILESDIR}"/flowscan.init flowscan
dodoc Changes *README* TODO
newdoc INSTALL README.update
@@ -50,7 +50,7 @@ src_install() {
|| die "sed failed"
exeinto /var/lib/flows/bin
- newexe ${FILESDIR}/FlowScan.pm FlowScan.pm
+ newexe "${FILESDIR}"/FlowScan.pm FlowScan.pm
insinto /var/lib/flows/bin
doins cf/flowscan.cf cf/CampusIO.cf
}
@@ -59,10 +59,8 @@ pkg_postinst() {
chown flows:flows /var/lib/flows/{ft,rrds,scoreboard}
chown flows:flows /var/lib/flows/bin/flowscan.cf
chown flows:flows /var/lib/flows/bin/FlowScan.pm
- einfo
- einfo "Please note that while you can use the reporting modules that come"
- einfo "with FlowScan, it is recommended that you install either JKFlow or"
- einfo "for more simple implementations CUFlow. Both are available in"
- einfo "Portage."
- einfo
+ elog "Please note that while you can use the reporting modules that come"
+ elog "with FlowScan, it is recommended that you install either JKFlow or"
+ elog "for more simple implementations CUFlow. Both are available in"
+ elog "Portage."
}