blob: fecbbc638162f24c9498d4c7e01caab37f54d8b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-de/man-pages-de-0.12.ebuild,v 1.5 2014/01/30 20:27:35 vapier Exp $
EAPI=4
MY_P="${PN/-/}-${PV}"
DESCRIPTION="A somewhat comprehensive collection of Linux german man page translations"
HOMEPAGE="http://alioth.debian.org/projects/manpages-de/"
SRC_URI="http://manpages-de.alioth.debian.org/downloads/${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 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="dev-lang/perl"
RDEPEND="virtual/man"
S=${WORKDIR}/${MY_P}
src_compile() { :; }
src_install() {
emake MANDIR="${ED}"/usr/share/man/de install
dodoc CHANGES README
# Remove man pages provided by other packages
# - shadow
rm "${ED}"/usr/share/man/de/man1/groups.1*
}
|