diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2004-09-02 22:24:15 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2004-09-02 22:24:15 +0000 |
commit | f9d7d881a618903aff8da29afbbee978a162b64e (patch) | |
tree | 31a78445390aaae9143d5173dfe788b4cdf851fc /app-text | |
parent | Added || die "sed failed" to all invocations of sed (Manifest recommit) (diff) | |
download | gentoo-2-f9d7d881a618903aff8da29afbbee978a162b64e.tar.gz gentoo-2-f9d7d881a618903aff8da29afbbee978a162b64e.tar.bz2 gentoo-2-f9d7d881a618903aff8da29afbbee978a162b64e.zip |
~amd64. $(get_libdir)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/barcode/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/barcode/barcode-0.98.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-text/barcode/ChangeLog b/app-text/barcode/ChangeLog index 1bad4c78d122..9fbee318169d 100644 --- a/app-text/barcode/ChangeLog +++ b/app-text/barcode/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/barcode # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/ChangeLog,v 1.5 2004/06/24 22:28:00 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/ChangeLog,v 1.6 2004/09/02 22:24:15 kugelfang Exp $ + + 03 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> barcode-0.98.ebuild: + Marked ~amd64. Made $(get_libdir) aware. 13 Jun 2004; David Holm <dholm@gentoo.org> barcode-0.98.ebuild: Added to ~ppc. diff --git a/app-text/barcode/barcode-0.98.ebuild b/app-text/barcode/barcode-0.98.ebuild index de6171795aec..cc3e56d4dd3a 100644 --- a/app-text/barcode/barcode-0.98.ebuild +++ b/app-text/barcode/barcode-0.98.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-text/barcode/barcode-0.98.ebuild,v 1.8 2004/07/13 20:42:58 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/barcode-0.98.ebuild,v 1.9 2004/09/02 22:24:15 kugelfang Exp $ inherit eutils @@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/barcode/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ~ppc" +KEYWORDS="x86 ~ppc ~amd64" IUSE="" src_unpack() { @@ -20,10 +20,10 @@ src_unpack() { sed -i \ -e 's:/info:/share/info:' \ -e 's:/man/:/share/man/:' \ - Makefile.in + Makefile.in || die "sed failed" } src_install() { - emake install prefix=${D}/usr || die + emake install prefix=${D}/usr LIBDIR="\$(prefix)/$(get_libdir)" || die dodoc ChangeLog README TODO doc/barcode.{pdf,ps} } |