diff options
author | Michael Weber <xmw@gentoo.org> | 2010-09-06 00:57:37 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2010-09-06 00:57:37 +0000 |
commit | 21fc5ac2c05dff0b8e24474d60963dce5d9078ad (patch) | |
tree | fabf2c817a2b294b4eb53d66d288a7a6f2a0b10c /app-text/barcode | |
parent | Version bump KDE SC 4.5.1 (diff) | |
download | gentoo-2-21fc5ac2c05dff0b8e24474d60963dce5d9078ad.tar.gz gentoo-2-21fc5ac2c05dff0b8e24474d60963dce5d9078ad.tar.bz2 gentoo-2-21fc5ac2c05dff0b8e24474d60963dce5d9078ad.zip |
Revbump to fix LDFLAGS from bug #335631.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-text/barcode')
-rw-r--r-- | app-text/barcode/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/barcode/barcode-0.98-r1.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/app-text/barcode/ChangeLog b/app-text/barcode/ChangeLog index 18518f29a069..50cae879720d 100644 --- a/app-text/barcode/ChangeLog +++ b/app-text/barcode/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/barcode # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/ChangeLog,v 1.18 2010/04/05 22:20:41 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/ChangeLog,v 1.19 2010/09/06 00:57:37 xmw Exp $ + +*barcode-0.98-r1 (06 Sep 2010) + + 06 Sep 2010; Michael Weber <xmw@gentoo.org> +barcode-0.98-r1.ebuild: + Revbump to fix LDFLAGS from bug #335631. 05 Apr 2010; Jonathan Callen <abcd@gentoo.org> barcode-0.98.ebuild: Bump to EAPI=3, add prefix keywords diff --git a/app-text/barcode/barcode-0.98-r1.ebuild b/app-text/barcode/barcode-0.98-r1.ebuild new file mode 100644 index 000000000000..052968bedc88 --- /dev/null +++ b/app-text/barcode/barcode-0.98-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/barcode-0.98-r1.ebuild,v 1.1 2010/09/06 00:57:37 xmw Exp $ + +EAPI="3" + +inherit eutils toolchain-funcs + +DESCRIPTION="barcode generator" +HOMEPAGE="http://www.gnu.org/software/barcode/" +SRC_URI="mirror://gnu/barcode/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${PV}-info.patch + sed -i -e '/^LDFLAGS =/s:=:+=:' \ + -e "/^aLIBDIR/s:lib:$(get_libdir):" \ + -e '/^INFODIR/s:info:share/info:' \ + -e '/^MAN/s:man:share/man:' \ + Makefile.in || die +} + +src_configure() { + tc-export CC + econf +} + +src_install() { + emake install prefix="${ED}/usr" || die + dodoc ChangeLog README TODO doc/barcode.{pdf,ps} || die +} |