diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-01 20:56:39 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-01 20:56:39 +0000 |
commit | 5acc1e9aeea30d65773c1c4d7c51ee7c1f9a02ba (patch) | |
tree | 7134d309b28d771b59c8c15c9a99248a387c19dc /dev-lang/yasm | |
parent | fix depend (Manifest recommit) (diff) | |
download | gentoo-2-5acc1e9aeea30d65773c1c4d7c51ee7c1f9a02ba.tar.gz gentoo-2-5acc1e9aeea30d65773c1c4d7c51ee7c1f9a02ba.tar.bz2 gentoo-2-5acc1e9aeea30d65773c1c4d7c51ee7c1f9a02ba.zip |
fix depend; tidy
Diffstat (limited to 'dev-lang/yasm')
-rw-r--r-- | dev-lang/yasm/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/yasm/yasm-0.3.0.ebuild | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/dev-lang/yasm/ChangeLog b/dev-lang/yasm/ChangeLog index 127ce34ee8a3..c8a2f865956d 100644 --- a/dev-lang/yasm/ChangeLog +++ b/dev-lang/yasm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/yasm # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.1 2004/02/09 08:02:58 augustus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.2 2004/06/01 20:56:39 mr_bones_ Exp $ + + 01 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> yasm-0.3.0.ebuild: + fix depend; tidy *yasm-0.3.0 (09 Feb 2004) diff --git a/dev-lang/yasm/yasm-0.3.0.ebuild b/dev-lang/yasm/yasm-0.3.0.ebuild index c933d462b525..cc2112e44319 100644 --- a/dev-lang/yasm/yasm-0.3.0.ebuild +++ b/dev-lang/yasm/yasm-0.3.0.ebuild @@ -1,20 +1,19 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.3.0.ebuild,v 1.2 2004/02/10 13:07:24 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.3.0.ebuild,v 1.3 2004/06/01 20:56:39 mr_bones_ Exp $ DESCRIPTION="assembler that supports amd64" HOMEPAGE="http://www.tortall.net/projects/yasm/" SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz" + LICENSE="BSD" SLOT="0" KEYWORDS="-* ~x86 ~amd64" IUSE="" DEPEND="sys-devel/gcc" -RDEPEND="${DEPEND}" src_install() { - make DESTDIR=${D} install || die - - dodoc AUTHORS COPYING INSTALL Artistic.txt BSD.txt GNU_GPL-2.0 GNU_LGPL-2.0 + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS COPYING INSTALL Artistic.txt BSD.txt } |