diff options
author | 2009-12-25 02:26:07 +0000 | |
---|---|---|
committer | 2009-12-25 02:26:07 +0000 | |
commit | da11b137e546eeeebd1219a0884a08d608d4da1e (patch) | |
tree | 256cd7ed4b7757cb09be0ff682cf6274196701d2 /app-misc/tpipe | |
parent | Version bump, bug 297352 (diff) | |
download | gentoo-2-da11b137e546eeeebd1219a0884a08d608d4da1e.tar.gz gentoo-2-da11b137e546eeeebd1219a0884a08d608d4da1e.tar.bz2 gentoo-2-da11b137e546eeeebd1219a0884a08d608d4da1e.zip |
QA: Fix do* functions, bug 297944
(Portage version: 2.1.7.15/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/tpipe')
-rw-r--r-- | app-misc/tpipe/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/tpipe/tpipe-1.6.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/app-misc/tpipe/ChangeLog b/app-misc/tpipe/ChangeLog index cc3ce6862931..5e99549f8156 100644 --- a/app-misc/tpipe/ChangeLog +++ b/app-misc/tpipe/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/tpipe # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tpipe/ChangeLog,v 1.3 2009/09/23 16:07:30 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tpipe/ChangeLog,v 1.4 2009/12/25 02:26:07 darkside Exp $ + + 25 Dec 2009; Jeremy Olexa <darkside@gentoo.org> tpipe-1.6.ebuild: + QA: Fix do* functions, bug 297944 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> tpipe-1.6.ebuild: Remove virtual/libc diff --git a/app-misc/tpipe/tpipe-1.6.ebuild b/app-misc/tpipe/tpipe-1.6.ebuild index 3b1f140c70ef..032e8c85c54b 100644 --- a/app-misc/tpipe/tpipe-1.6.ebuild +++ b/app-misc/tpipe/tpipe-1.6.ebuild @@ -1,16 +1,18 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tpipe/tpipe-1.6.ebuild,v 1.4 2009/09/23 16:07:30 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tpipe/tpipe-1.6.ebuild,v 1.5 2009/12/25 02:26:07 darkside Exp $ inherit toolchain-funcs DESCRIPTION="Command to duplicate standard input to more than one program" HOMEPAGE="http://www.eurogaran.com/downloads/tpipe" SRC_URI="http://www.eurogaran.com/downloads/tpipe/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" + DEPEND="" src_compile() { @@ -18,7 +20,7 @@ src_compile() { } src_install() { - dobin tpipe - doman tpipe.1 - dodoc README + dobin tpipe || die + doman tpipe.1 || die + dodoc README.txt || die } |