diff options
author | Matthias Maier <tamiko@gentoo.org> | 2017-02-25 16:30:57 -0600 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2017-02-25 16:42:03 -0600 |
commit | 000faa37b1b4704842c98552340cac5dcfa23a3c (patch) | |
tree | 6be2f6010a89f7fceeab4eb4bac3b0be0a6341bf /app-text | |
parent | dev-vcs/vcsh: version bump to 1.20151229.1 (diff) | |
download | gentoo-000faa37b1b4704842c98552340cac5dcfa23a3c.tar.gz gentoo-000faa37b1b4704842c98552340cac5dcfa23a3c.tar.bz2 gentoo-000faa37b1b4704842c98552340cac5dcfa23a3c.zip |
app-text/barcode: version bump to 0.99
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/barcode/Manifest | 1 | ||||
-rw-r--r-- | app-text/barcode/barcode-0.99.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/app-text/barcode/Manifest b/app-text/barcode/Manifest index bf8f04590f43..715ce7b0a26b 100644 --- a/app-text/barcode/Manifest +++ b/app-text/barcode/Manifest @@ -1 +1,2 @@ DIST barcode-0.98.tar.gz 335658 SHA256 4229e19279b9787ac7e98852fa0bfd93986dce93b9cb07d93a017d68d409b635 SHA512 b2ff43d0c752a9fe7c17d65ef136ff2432ceddd27879c91cb18e46e9b0fc8ed6c174aa4154c0fa6d6e70c478ac86448b8eafa1857bb759159b2eaecc8d6f7ca1 WHIRLPOOL 30bdb0037b5c69e6638175c27f96cce3329934b4febb634c48bd1b3b49cf2b6ef20462bb93432e4b3965f6f9f6a2f3d33d80a3dfa9365d9b69c993403a159327 +DIST barcode-0.99.tar.gz 890730 SHA256 7c031cf3eb811242f53664379aebbdd9fae0b7b26b5e5d584c31a9f338154b64 SHA512 f500dbe7eaa657ed6879316835557533e0972c8740a8bb61bea46efdd4120827a3c412ca24fec6e1833395191521425dae272f10d8553a252896b363290118b1 WHIRLPOOL 93cbc4d12fbc8d5ec1c4cd0b89f281bee9722814900890678d72b15a165ff27d1446f6ff7dd4b68c001ce343bb3ceb0fae6a3faabed30de5184e08ce0e206ba7 diff --git a/app-text/barcode/barcode-0.99.ebuild b/app-text/barcode/barcode-0.99.ebuild new file mode 100644 index 000000000000..e2edb1fea451 --- /dev/null +++ b/app-text/barcode/barcode-0.99.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils multilib + +DESCRIPTION="barcode generator" +HOMEPAGE="https://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="" +RDEPEND="app-text/libpaper" +DEPEND="${RDEPEND}" + +src_prepare() { + 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 + + default +} + +src_install() { + default + dodoc ChangeLog README TODO +} |