diff options
author | Tom Martin <slarti@gentoo.org> | 2004-07-13 08:51:10 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2004-07-13 08:51:10 +0000 |
commit | e79515c013ef76c04cf8f26dc2aa112afe47cb10 (patch) | |
tree | 08b0c931b077ecd56f30fc14160e38949097913d /app-misc/lhinv | |
parent | Fixed epatch lines to close bug 56870, renamed that gcc34 patch to be consist... (diff) | |
download | historical-e79515c013ef76c04cf8f26dc2aa112afe47cb10.tar.gz historical-e79515c013ef76c04cf8f26dc2aa112afe47cb10.tar.bz2 historical-e79515c013ef76c04cf8f26dc2aa112afe47cb10.zip |
Fixed my own bad QA in src_unpack.
Diffstat (limited to 'app-misc/lhinv')
-rw-r--r-- | app-misc/lhinv/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/lhinv/lhinv-1.1-r4.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/app-misc/lhinv/ChangeLog b/app-misc/lhinv/ChangeLog index c29ea6194c89..60960139b4e8 100644 --- a/app-misc/lhinv/ChangeLog +++ b/app-misc/lhinv/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/lhinv # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lhinv/ChangeLog,v 1.11 2004/07/11 18:23:15 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/lhinv/ChangeLog,v 1.12 2004/07/13 08:51:10 slarti Exp $ + + 13 Jul 2004; Tom Martin <slarti@gentoo.org> lhinv-1.1-r4.ebuild: + QA fix in src_unpack. Changed cd ${S} && unpack ${A} || die to what it + should be. Changed epatch to use ${PN}. *lhinv-1.1-r4 (11 Jul 2004) diff --git a/app-misc/lhinv/lhinv-1.1-r4.ebuild b/app-misc/lhinv/lhinv-1.1-r4.ebuild index 66cd0af7bcbd..9d8bf017a6b8 100644 --- a/app-misc/lhinv/lhinv-1.1-r4.ebuild +++ b/app-misc/lhinv/lhinv-1.1-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lhinv/lhinv-1.1-r4.ebuild,v 1.1 2004/07/11 18:23:15 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/lhinv/lhinv-1.1-r4.ebuild,v 1.2 2004/07/13 08:51:10 slarti Exp $ inherit eutils @@ -17,8 +17,9 @@ DEPEND=">=sys-apps/sed-4" RDEPEND="dev-lang/perl" src_unpack() { - unpack ${A} && cd ${S} || die - epatch ${FILESDIR}/lhinv-1.1-r4-vmnet_sit.patch || die "epatch failed." + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-1.1-r4-vmnet_sit.patch || die "epatch failed." } src_compile() { |