commit:     d2f3f373e6e51af478d52c7b4bccd7aa91ac3ca2
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  4 10:11:30 2020 +0000
Commit:     Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Fri Sep  4 10:11:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f3f373

app-arch/unp: Version bump

Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-3.0.5, Repoman-3.0.1

 app-arch/unp/Manifest            |  1 +
 app-arch/unp/unp-2.0_pre9.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/app-arch/unp/Manifest b/app-arch/unp/Manifest
index eb5c120e901..85142386f91 100644
--- a/app-arch/unp/Manifest
+++ b/app-arch/unp/Manifest
@@ -1,2 +1,3 @@
 DIST unp_2.0~pre7+nmu1.tar.bz2 17537 BLAKE2B 
7ef6cfcc524daf95c7cd9dc41ba690cb8db1b1983cd45709c8764591af36d6d00631975bfef0359ac633aae1c11b73efe827e367931f73fe7c5fcc8832b0fe84
 SHA512 
1b30f14c8d17e0a6b149ca4795f2219e9180f814347410e7ff7fa2b9720a9d308190f2ded8fcfd11bac9b5bb7a64ffd93f140bdaffcba1127f0e15e3d2737362
 DIST unp_2.0~pre8.tar.xz 16336 BLAKE2B 
6c6ffd75acda980e6c572c48944b238788a64d2bf1f854b45a3bc468da19fc6e593a8b604d99dac51b5b645ec88b27300be6af4d988a56470812a7ae92f19336
 SHA512 
58d2a6a9f7fe868773273532b46249109e1e757517dd46e485f2b3a77fea404aeea34edf4460e76376806ae0d28baefa55f1063919bdf1493617f1b361fe6039
+DIST unp_2.0~pre9.tar.xz 16424 BLAKE2B 
9042f48be0f80d5e40a08161a35c282ba458dc98cf13992835bdeecebd5fbadd33b3af9165738332cb9f508550a234a48d314332f00ecdacc808a8051eb0740b
 SHA512 
74c9a6e143c9023bdd456dacff5c3a6e30722e259f324c066fe3eed9e4a09c38b399b381719c8677c2fa84434c1e7720384d782d97c098fa6fbcbdbf4030986e

diff --git a/app-arch/unp/unp-2.0_pre9.ebuild b/app-arch/unp/unp-2.0_pre9.ebuild
new file mode 100644
index 00000000000..8116fc04c3a
--- /dev/null
+++ b/app-arch/unp/unp-2.0_pre9.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils bash-completion-r1
+
+DESCRIPTION="Script for unpacking various file formats"
+HOMEPAGE="https://packages.qa.debian.org/u/unp.html";
+MY_PV="${PV/_pre/$'\x7e'pre}"
+SRC_URI="mirror://debian/pool/main/u/unp/${PN}_${MY_PV}.tar.xz"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE="nls"
+
+DEPEND="nls? ( sys-devel/gettext )"
+
+RDEPEND="${DEPEND}
+       dev-lang/perl"
+
+src_compile() {
+       if use nls; then
+               strip-linguas -i .
+               if [ -n "$LINGUAS" ]; then
+                       emake -C po MOFILES="${LINGUAS// /.po }.po"
+               else
+                       emake -C po
+               fi
+       fi
+}
+
+src_install() {
+       dobin unp
+       dosym unp /usr/bin/ucat
+       doman debian/unp.1
+       dodoc debian/changelog debian/README.Debian
+       newbashcomp debian/unp.bash-completion unp
+
+       if use nls; then
+               if [ -n "$LINGUAS" ]; then
+                       emake -C po MOFILES="${LINGUAS// /.mo }.mo" 
DESTDIR="${D}" install
+               else
+                       emake -C po DESTDIR="${D}" install
+               fi
+       fi
+}

Reply via email to