From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-text/barcode/Manifest | 6 ++++++ app-text/barcode/barcode-0.98-r1.ebuild | 36 +++++++++++++++++++++++++++++++++ app-text/barcode/barcode-0.99.ebuild | 32 +++++++++++++++++++++++++++++ app-text/barcode/files/0.98-info.patch | 14 +++++++++++++ app-text/barcode/metadata.xml | 8 ++++++++ 5 files changed, 96 insertions(+) create mode 100644 app-text/barcode/Manifest create mode 100644 app-text/barcode/barcode-0.98-r1.ebuild create mode 100644 app-text/barcode/barcode-0.99.ebuild create mode 100644 app-text/barcode/files/0.98-info.patch create mode 100644 app-text/barcode/metadata.xml (limited to 'app-text/barcode') diff --git a/app-text/barcode/Manifest b/app-text/barcode/Manifest new file mode 100644 index 000000000000..721437a665bd --- /dev/null +++ b/app-text/barcode/Manifest @@ -0,0 +1,6 @@ +AUX 0.98-info.patch 441 BLAKE2B 2e334be2e36e00a0528d220244affcd000da4ca7b4576501c34b210134ad9e5ff8af99c467d3be3ee34173b651690f8f0ec9a5584ceec60337b4abd1d7a4f825 SHA512 694c4ccd03baa7a17c0512b55b9a39fb2de34afef61194833fe5a481ba13c22f1d21217f53908ca8ad4cea536fbd9a6453486ba2778349e6b1651d2c67513ad7 +DIST barcode-0.98.tar.gz 335658 BLAKE2B 93694332200fce9311d4282c15b2e87e89a54af1a04cd251c9feb9b5ec056e62e97cca9f33e498df1d31d1d98d52e4f0b257f0669e9f7981addcc8e12a61f0cc SHA512 b2ff43d0c752a9fe7c17d65ef136ff2432ceddd27879c91cb18e46e9b0fc8ed6c174aa4154c0fa6d6e70c478ac86448b8eafa1857bb759159b2eaecc8d6f7ca1 +DIST barcode-0.99.tar.gz 890730 BLAKE2B 4695a9baaa2d95c898f0078fc7d49e642fdd5b21e3b0c92d1f275252c78b94e5bdfc78084e6dd8d28231748bf6c567678cf996e309fc1e4a1db53bb2ceb0eb5a SHA512 f500dbe7eaa657ed6879316835557533e0972c8740a8bb61bea46efdd4120827a3c412ca24fec6e1833395191521425dae272f10d8553a252896b363290118b1 +EBUILD barcode-0.98-r1.ebuild 805 BLAKE2B a731789d9c0643b41a3388e5eb234cbb69267da1218d68850e58bed2a0e35c6286babbca4352e69ed1fcb48c7fda7a70ed09969c5484c968b54931d9a326c935 SHA512 4a5207b85e31bd773e838541c0d4a33f762bbc484f11ffca272b3b90aa3c3369f51ec4639629d435afd5ec590967bb005083bd68f39a56f348a3717ef1ebe073 +EBUILD barcode-0.99.ebuild 674 BLAKE2B c493c0b0107b455b46402c7490c8c1d10b4b24cbd7cba8abccd7f698e9e40b3237ba696a011ddccc052c9b0ee8f42381f1116f890fb03d484e51f6ed86e2f38c SHA512 a6ffef8901b504023a4efa95405b4f171c07fb974c238f7e78f96af75b39fa00fd00f72cc358759a85276af3832ee5b604a3a3ca5d90aee5944ccb2a5b8dd0a0 +MISC metadata.xml 243 BLAKE2B c7e8ffa98061b37b0107cea12e59f7779ed014b1b83b008c1f8baa888fca120d4ba508078f2182c27c1bff0e8c2dea07bf3b33a3b086fdfbd7421cbf57b2494c SHA512 dbdb824584151c0ccb600c9fa433898cb613604bc97c7305b7a0809d22574007bc9ee3037b3922ee5256471519fd27510c3168b24ca3f75ab63e5c3051502d3f 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..ef3174b628d4 --- /dev/null +++ b/app-text/barcode/barcode-0.98-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit eutils multilib toolchain-funcs + +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() { + 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" + dodoc ChangeLog README TODO doc/barcode.{pdf,ps} +} diff --git a/app-text/barcode/barcode-0.99.ebuild b/app-text/barcode/barcode-0.99.ebuild new file mode 100644 index 000000000000..5b04b0aef75b --- /dev/null +++ b/app-text/barcode/barcode-0.99.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +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 +} diff --git a/app-text/barcode/files/0.98-info.patch b/app-text/barcode/files/0.98-info.patch new file mode 100644 index 000000000000..740458f88ed4 --- /dev/null +++ b/app-text/barcode/files/0.98-info.patch @@ -0,0 +1,14 @@ +--- doc/barcode.info.old 2003-10-26 19:08:39.000000000 -0800 ++++ doc/barcode.info 2003-10-26 19:58:42.179447512 -0800 +@@ -1,6 +1,11 @@ + This is barcode.info, produced by makeinfo version 4.0 from + barcode.texinfo. + ++INFO-DIR-SECTION Miscellaneous ++START-INFO-DIR-ENTRY ++* Barcode: (barcode). Barcode generation library. ++END-INFO-DIR-ENTRY ++ + This file is the User's Manual for the barcode library (version + 0.98). + diff --git a/app-text/barcode/metadata.xml b/app-text/barcode/metadata.xml new file mode 100644 index 000000000000..7b2aa138b855 --- /dev/null +++ b/app-text/barcode/metadata.xml @@ -0,0 +1,8 @@ + + + + + tamiko@gentoo.org + Matthias Maier + + -- cgit v1.2.3