diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-04-27 15:02:05 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-04-27 15:02:05 +0000 |
commit | 4ccc3e67389bf1630b464672564167f7afe5a7a8 (patch) | |
tree | a021f15cf753fddda0bb69805c5cbe63fe6ad37a /net-analyzer/portmon | |
parent | Stable on x86. (diff) | |
download | historical-4ccc3e67389bf1630b464672564167f7afe5a7a8.tar.gz historical-4ccc3e67389bf1630b464672564167f7afe5a7a8.tar.bz2 historical-4ccc3e67389bf1630b464672564167f7afe5a7a8.zip |
Version bumped.
Diffstat (limited to 'net-analyzer/portmon')
-rw-r--r-- | net-analyzer/portmon/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/portmon/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/portmon/files/digest-portmon-2.0 | 1 | ||||
-rw-r--r-- | net-analyzer/portmon/portmon-2.0.ebuild | 32 |
4 files changed, 42 insertions, 2 deletions
diff --git a/net-analyzer/portmon/ChangeLog b/net-analyzer/portmon/ChangeLog index 7ddf5d064bc7..2ce1463b739d 100644 --- a/net-analyzer/portmon/ChangeLog +++ b/net-analyzer/portmon/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/portmon # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portmon/ChangeLog,v 1.2 2004/03/22 12:00:18 mboman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portmon/ChangeLog,v 1.3 2004/04/27 15:02:05 mholzer Exp $ + +*portmon-2.0 (27 Apr 2004) + + 27 Apr 2004; Martin Holzer <mholzer@gentoo.org> portmon-2.0.ebuild: + Version bumped. 22 Mar 2004; Michael Boman <mboman@gentoo.org> portmon-1.9.ebuild: Changed RDEPEND to fix bug 45343. diff --git a/net-analyzer/portmon/Manifest b/net-analyzer/portmon/Manifest index d556a17b9ac7..5ea00335febd 100644 --- a/net-analyzer/portmon/Manifest +++ b/net-analyzer/portmon/Manifest @@ -1,5 +1,7 @@ -MD5 41a73e8b6ae84d1a86549daa2fb91a6b ChangeLog 537 +MD5 1fe8be32dbf455d20d04f45d5a980166 ChangeLog 655 MD5 afd3bf9a6933695a0b3176c0ae4b2a62 portmon-1.9.ebuild 809 MD5 7d43ec53a471d42b355ba1702e0be15d metadata.xml 354 +MD5 05ebfb48f1bbb22a7943015d1b979430 portmon-2.0.ebuild 810 MD5 52e3317349da2a915781b132dba91d9f files/digest-portmon-1.9 63 MD5 cee7d5757350aed272f3e277ba071d0b files/portmon.init 755 +MD5 3148050ea7db3913004266dbb22ef788 files/digest-portmon-2.0 63 diff --git a/net-analyzer/portmon/files/digest-portmon-2.0 b/net-analyzer/portmon/files/digest-portmon-2.0 new file mode 100644 index 000000000000..37607ed4c003 --- /dev/null +++ b/net-analyzer/portmon/files/digest-portmon-2.0 @@ -0,0 +1 @@ +MD5 dc9a0f9da5aa8544257c3546b65cfb93 portmon-2.0.tar.gz 107246 diff --git a/net-analyzer/portmon/portmon-2.0.ebuild b/net-analyzer/portmon/portmon-2.0.ebuild new file mode 100644 index 000000000000..3f36e6118706 --- /dev/null +++ b/net-analyzer/portmon/portmon-2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portmon/portmon-2.0.ebuild,v 1.1 2004/04/27 15:02:05 mholzer Exp $ + +DESCRIPTION="Portmon is a netwok service monitoring daemon." +SRC_URI="http://aboleo.net/software/portmon/downloads/${P}.tar.gz" +HOMEPAGE="http://aboleo.net/software/portmon/" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND="virtual/glibc" + +src_compile() { + econf --sysconfdir=/etc/portmon || die "Configure failed" + emake || die "emake failed" +} + +src_install() { + into /usr + dosbin src/portmon + doman extras/portmon.8 + + insinto /etc/portmon + doins extras/portmon.hosts.sample + dodoc AUTHORS BUGS README + + exeinto /etc/init.d + newexe ${FILESDIR}/portmon.init portmon +} |