Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/barcode/
Date: Sat, 25 Feb 2017 22:42:18
Message-Id: 1488062523.000faa37b1b4704842c98552340cac5dcfa23a3c.tamiko@gentoo
1 commit: 000faa37b1b4704842c98552340cac5dcfa23a3c
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 25 22:30:57 2017 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 22:42:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=000faa37
7
8 app-text/barcode: version bump to 0.99
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-text/barcode/Manifest | 1 +
13 app-text/barcode/barcode-0.99.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/app-text/barcode/Manifest b/app-text/barcode/Manifest
17 index bf8f04590f..715ce7b0a2 100644
18 --- a/app-text/barcode/Manifest
19 +++ b/app-text/barcode/Manifest
20 @@ -1 +1,2 @@
21 DIST barcode-0.98.tar.gz 335658 SHA256 4229e19279b9787ac7e98852fa0bfd93986dce93b9cb07d93a017d68d409b635 SHA512 b2ff43d0c752a9fe7c17d65ef136ff2432ceddd27879c91cb18e46e9b0fc8ed6c174aa4154c0fa6d6e70c478ac86448b8eafa1857bb759159b2eaecc8d6f7ca1 WHIRLPOOL 30bdb0037b5c69e6638175c27f96cce3329934b4febb634c48bd1b3b49cf2b6ef20462bb93432e4b3965f6f9f6a2f3d33d80a3dfa9365d9b69c993403a159327
22 +DIST barcode-0.99.tar.gz 890730 SHA256 7c031cf3eb811242f53664379aebbdd9fae0b7b26b5e5d584c31a9f338154b64 SHA512 f500dbe7eaa657ed6879316835557533e0972c8740a8bb61bea46efdd4120827a3c412ca24fec6e1833395191521425dae272f10d8553a252896b363290118b1 WHIRLPOOL 93cbc4d12fbc8d5ec1c4cd0b89f281bee9722814900890678d72b15a165ff27d1446f6ff7dd4b68c001ce343bb3ceb0fae6a3faabed30de5184e08ce0e206ba7
23
24 diff --git a/app-text/barcode/barcode-0.99.ebuild b/app-text/barcode/barcode-0.99.ebuild
25 new file mode 100644
26 index 0000000000..e2edb1fea4
27 --- /dev/null
28 +++ b/app-text/barcode/barcode-0.99.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit eutils multilib
37 +
38 +DESCRIPTION="barcode generator"
39 +HOMEPAGE="https://www.gnu.org/software/barcode/"
40 +SRC_URI="mirror://gnu/barcode/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
45 +IUSE=""
46 +RDEPEND="app-text/libpaper"
47 +DEPEND="${RDEPEND}"
48 +
49 +src_prepare() {
50 + sed -i -e '/^LDFLAGS =/s:=:+=:' \
51 + -e "/^aLIBDIR/s:lib:$(get_libdir):" \
52 + -e '/^INFODIR/s:info:share/info:' \
53 + -e '/^MAN/s:man:share/man:' \
54 + Makefile.in || die
55 +
56 + default
57 +}
58 +
59 +src_install() {
60 + default
61 + dodoc ChangeLog README TODO
62 +}