diff options
-rw-r--r-- | app-arch/lrzip/ChangeLog | 5 | ||||
-rw-r--r-- | app-arch/lrzip/lrzip-0.23.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-arch/lrzip/ChangeLog b/app-arch/lrzip/ChangeLog index 343cfa5d01ac..707cc172566f 100644 --- a/app-arch/lrzip/ChangeLog +++ b/app-arch/lrzip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/lrzip # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lrzip/ChangeLog,v 1.5 2008/05/08 11:33:41 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lrzip/ChangeLog,v 1.6 2008/11/15 13:23:50 flameeyes Exp $ + + 15 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> lrzip-0.23.ebuild: + Add nasm dependency on x86; quote ${D}. *lrzip-0.23 (08 May 2008) diff --git a/app-arch/lrzip/lrzip-0.23.ebuild b/app-arch/lrzip/lrzip-0.23.ebuild index 64af845ef1a2..5d12d69eb699 100644 --- a/app-arch/lrzip/lrzip-0.23.ebuild +++ b/app-arch/lrzip/lrzip-0.23.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lrzip/lrzip-0.23.ebuild,v 1.1 2008/05/08 11:33:41 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lrzip/lrzip-0.23.ebuild,v 1.2 2008/11/15 13:23:50 flameeyes Exp $ DESCRIPTION="Long Range ZIP or Lzma RZIP" HOMEPAGE="http://ck.kolivas.org/apps/lrzip/README" @@ -13,9 +13,10 @@ IUSE="" DEPEND="dev-libs/lzo app-arch/bzip2" -RDEPEND="${DEPEND}" +RDEPEND="${DEPEND} + x86? ( dev-lang/nasm )" src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dodoc README } |