blob: 056c22459c692ba13c29788237b7eefb3ca3565c (
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
33
34
35
|
# Copyright 1999-2012 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.8.ebuild,v 1.7 2012/02/25 14:58:52 ssuominen Exp $
MY_PN=manpages-de
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_PN}-${PV}.tar.bz2"
LICENSE="as-is GPL-2 GPL-3 BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
IUSE=""
RDEPEND="virtual/man"
S=${WORKDIR}/${MY_PN}-${PV}
src_compile() { :; }
src_install() {
emake MANDIR="${D}"/usr/share/man/de install || die
dodoc CHANGES README
# Remove man pages provided by other packages
# - shadow
rm "${D}"/usr/share/man/de/man1/{chsh,groups,login,passwd,newgrp,su}.1*
# - man
rm "${D}"/usr/share/man/de/man1/{apropos,man,whatis}.1*
# - man-db
rm "${D}"/usr/share/man/de/man1/{manpath,zsoelim}.1*
rm "${D}"/usr/share/man/de/man5/manpath.5*
rm "${D}"/usr/share/man/de/man8/{catman,mandb}.8*
}
|