summaryrefslogtreecommitdiff
path: root/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-arch/unp/unp-2.0_pre7_p1-r1.ebuild')
-rw-r--r--app-arch/unp/unp-2.0_pre7_p1-r1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
deleted file mode 100644
index cfaff187f34c..000000000000
--- a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils bash-completion-r1
-
-DESCRIPTION="Script for unpacking various file formats"
-HOMEPAGE="https://packages.qa.debian.org/u/unp.html"
-TEMP_PV="${PV/_pre/$'\x7e'pre}"
-MY_PV="${TEMP_PV/_p/+nmu}"
-SRC_URI="mirror://debian/pool/main/u/unp/${PN}_${MY_PV}.tar.bz2"
-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"
-
-PATCHES=( "${FILESDIR}/${P}-remove-deprecated-have.diff" )
-
-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 || die "dobin failed"
- dosym unp /usr/bin/ucat
- doman debian/unp.1 || die "doman failed"
- dodoc debian/changelog debian/README.Debian
- dobashcomp bash_completion.d/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
-}