diff options
author | Jonathan Callen <abcd@gentoo.org> | 2010-05-26 16:11:43 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2010-05-26 16:11:43 +0000 |
commit | b1393351b123953f2a303c5be2b2239e5509cc7f (patch) | |
tree | e08afd09693d39b67ff67f3e4bf8afb9e1e9290a /net-analyzer/chaosreader | |
parent | Bump to EAPI=3, add prefix keywords (diff) | |
download | gentoo-2-b1393351b123953f2a303c5be2b2239e5509cc7f.tar.gz gentoo-2-b1393351b123953f2a303c5be2b2239e5509cc7f.tar.bz2 gentoo-2-b1393351b123953f2a303c5be2b2239e5509cc7f.zip |
Bump to EAPI=2, fix QA violations, add prefix keywords
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'net-analyzer/chaosreader')
-rw-r--r-- | net-analyzer/chaosreader/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/chaosreader/chaosreader-0.94.ebuild | 16 |
2 files changed, 12 insertions, 9 deletions
diff --git a/net-analyzer/chaosreader/ChangeLog b/net-analyzer/chaosreader/ChangeLog index 39f985a51ad6..44e3dc3561da 100644 --- a/net-analyzer/chaosreader/ChangeLog +++ b/net-analyzer/chaosreader/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/chaosreader # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/chaosreader/ChangeLog,v 1.12 2010/03/31 18:48:55 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/chaosreader/ChangeLog,v 1.13 2010/05/26 16:11:43 abcd Exp $ + + 26 May 2010; Jonathan Callen <abcd@gentoo.org> chaosreader-0.94.ebuild: + Bump to EAPI=2, fix QA violations, add prefix keywords 31 Mar 2010; Michał Januszewski <spock@gentoo.org> metadata.xml: Remove myself from metadata, add maintainer-needed. diff --git a/net-analyzer/chaosreader/chaosreader-0.94.ebuild b/net-analyzer/chaosreader/chaosreader-0.94.ebuild index 32fc6f03fa52..b79d97485cf5 100644 --- a/net-analyzer/chaosreader/chaosreader-0.94.ebuild +++ b/net-analyzer/chaosreader/chaosreader-0.94.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/chaosreader/chaosreader-0.94.ebuild,v 1.5 2006/12/24 16:10:29 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/chaosreader/chaosreader-0.94.ebuild,v 1.6 2010/05/26 16:11:43 abcd Exp $ + +EAPI="2" inherit eutils @@ -8,18 +10,16 @@ DESCRIPTION="A tool to trace TCP/UDP/... sessions and fetch application data fro HOMEPAGE="http://users.tpg.com.au/bdgcvb/chaosreader.html" SRC_URI="http://dev.gentoo.org/~spock/portage/distfiles/${P}.bz2" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x86-macos" LICENSE="GPL-2" IUSE="" DEPEND=">=dev-lang/perl-5.8.0" S=${WORKDIR} -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/chaosreader-0.94-zombies.patch +src_prepare() { + epatch "${FILESDIR}"/chaosreader-0.94-zombies.patch } src_install() { - newbin ${S}/${P} chaosreader + newbin ${P} chaosreader || die } |