summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-03-29 22:04:49 +0200
committerUlrich Müller <ulm@gentoo.org>2020-03-29 22:05:12 +0200
commita93d8bdb0730f2b55f9acec7ec6aa1749d850e28 (patch)
tree91aecca05183d7e108fbb3e1945d7b1aff4f1424 /app-i18n
parentnet-vpn/networkmanager-l2tp-1.8.2: bump. (diff)
downloadgentoo-a93d8bdb0730f2b55f9acec7ec6aa1749d850e28.tar.gz
gentoo-a93d8bdb0730f2b55f9acec7ec6aa1749d850e28.tar.bz2
gentoo-a93d8bdb0730f2b55f9acec7ec6aa1749d850e28.zip
app-i18n/man-pages-de: Version 2.12-r1 stable on all arches.
Remove old. Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/man-pages-de/man-pages-de-2.12-r1.ebuild2
-rw-r--r--app-i18n/man-pages-de/man-pages-de-2.12.ebuild80
2 files changed, 1 insertions, 81 deletions
diff --git a/app-i18n/man-pages-de/man-pages-de-2.12-r1.ebuild b/app-i18n/man-pages-de/man-pages-de-2.12-r1.ebuild
index 3588685c686d..50be75b168bf 100644
--- a/app-i18n/man-pages-de/man-pages-de-2.12-r1.ebuild
+++ b/app-i18n/man-pages-de/man-pages-de-2.12-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://salsa.debian.org/manpages-de-team/manpages-de/-/archive/v${PV}/
LICENSE="GPL-3+ man-pages GPL-2+ GPL-2 BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sparc x86"
IUSE=""
RDEPEND="virtual/man"
diff --git a/app-i18n/man-pages-de/man-pages-de-2.12.ebuild b/app-i18n/man-pages-de/man-pages-de-2.12.ebuild
deleted file mode 100644
index 2cdb3cbc7fef..000000000000
--- a/app-i18n/man-pages-de/man-pages-de-2.12.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-MY_P="${PN/-/}-v${PV}"
-
-DESCRIPTION="A somewhat comprehensive collection of Linux german man page translations"
-HOMEPAGE="https://salsa.debian.org/manpages-de-team/manpages-de"
-SRC_URI="https://salsa.debian.org/manpages-de-team/manpages-de/-/archive/v${PV}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-3+ man-pages GPL-2+ GPL-2 BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sparc x86"
-IUSE=""
-
-RDEPEND="virtual/man"
-BDEPEND="app-text/po4a"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
-
- sed '/gzip --best/d' -i po/Makefile.am || die
-
- # sys-apps/shadow has it's own translated man-page for this
- local manpage
- local noinst_manpages=(
- upstream/debian-unstable/man1/groups.1
- po/man1/groups.1.po
- po/man1/su.1.po
- )
- for manpage in ${noinst_manpages[@]} ; do
- rm "${manpage}" || die
- done
-
- # Use the same compression as every other manpage
- local PORTAGE_COMPRESS_LOCAL=${PORTAGE_COMPRESS-bzip2}
- local PORTAGE_COMPRESS_FLAGS_LOCAL=${PORTAGE_COMPRESS_FLAGS}
- if [[ ${PORTAGE_COMPRESS_FLAGS+set} != "set" ]] ; then
- case ${PORTAGE_COMPRESS_LOCAL} in
- bzip2|gzip)
- PORTAGE_COMPRESS_FLAGS_LOCAL="-9"
- ;;
- esac
- fi
-
- # Fix source files for symlinks
- local LINKSOURCE
- case ${PORTAGE_COMPRESS_LOCAL} in
- bzip2)
- for LINKSOURCE in upstream/*/links.txt ; do
- sed -i -e 's/\.gz/\.bz2/g' "${LINKSOURCE}" || die
- done
- ;;
- gzip)
- # pass
- ;;
- xz)
- for LINKSOURCE in upstream/*/links.txt ; do
- sed -i -e 's/\.gz/\.xz/g' "${LINKSOURCE}" || die
- done
- ;;
- *)
- ewarn "Unexpected compression command ${PORTAGE_COMPRESS} found, symlinks will not work."
- ;;
- esac
-
- eautoreconf
-}
-
-src_compile() { :; }
-
-src_install() {
- emake mandir="${ED}"/usr/share/man install
- dodoc CHANGES.md README.md
-}