Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/man-pages-de: man-pages-de-1.5.ebuild ChangeLog man-pages-de-1.3.ebuild
Date: Wed, 26 Feb 2014 21:32:36
Message-Id: 20140226213227.63B532004C@flycatcher.gentoo.org
1 mrueg 14/02/26 21:32:27
2
3 Modified: ChangeLog
4 Added: man-pages-de-1.5.ebuild
5 Removed: man-pages-de-1.3.ebuild
6 Log:
7 Version bump. Cleanup older version. Proxy commit for Markus Oehme. Fixes bug #502518.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
10
11 Revision Changes Path
12 1.28 app-i18n/man-pages-de/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-de/ChangeLog?rev=1.28&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-de/ChangeLog?rev=1.28&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-de/ChangeLog?r1=1.27&r2=1.28
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-i18n/man-pages-de/ChangeLog,v
21 retrieving revision 1.27
22 retrieving revision 1.28
23 diff -u -r1.27 -r1.28
24 --- ChangeLog 30 Jan 2014 20:27:35 -0000 1.27
25 +++ ChangeLog 26 Feb 2014 21:32:27 -0000 1.28
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-i18n/man-pages-de
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-de/ChangeLog,v 1.27 2014/01/30 20:27:35 vapier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-de/ChangeLog,v 1.28 2014/02/26 21:32:27 mrueg Exp $
31 +
32 +*man-pages-de-1.5 (26 Feb 2014)
33 +
34 + 26 Feb 2014; Manuel RĂ¼ger <mrueg@g.o> +man-pages-de-1.5.ebuild,
35 + -man-pages-de-1.3.ebuild:
36 + Version bump. Cleanup older version. Proxy commit for Markus Oehme. Fixes bug
37 + #502518.
38
39 30 Jan 2014; Mike Frysinger <vapier@g.o> man-pages-de-0.12.ebuild,
40 man-pages-de-0.8.ebuild, man-pages-de-1.3.ebuild, man-pages-de-1.4.ebuild:
41
42
43
44 1.1 app-i18n/man-pages-de/man-pages-de-1.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-de/man-pages-de-1.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/man-pages-de/man-pages-de-1.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: man-pages-de-1.5.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-de/man-pages-de-1.5.ebuild,v 1.1 2014/02/26 21:32:27 mrueg Exp $
54
55 EAPI=5
56
57 inherit eutils autotools
58
59 MY_P="${PN/-/}-${PV}"
60
61 DESCRIPTION="A somewhat comprehensive collection of Linux german man page translations"
62 HOMEPAGE="http://alioth.debian.org/projects/manpages-de/"
63 SRC_URI="http://manpages-de.alioth.debian.org/downloads/${MY_P}.tar.xz"
64
65 LICENSE="GPL-3+ man-pages GPL-2+ GPL-2 BSD"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
68 IUSE=""
69
70 RDEPEND="virtual/man"
71 DEPEND="${RDEPEND}
72 app-text/po4a"
73
74 S=${WORKDIR}/${MY_P}
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${PN}-1.3-bzip2.patch
78
79 # Use the same compression as every other manpage
80 local PORTAGE_COMPRESS_LOCAL=${PORTAGE_COMPRESS-bzip2}
81 if [[ ${PORTAGE_COMPRESS+set} == "set" ]] ; then
82 PORTAGE_COMPRESS_LOCAL="#"
83 fi
84 if [[ ${PORTAGE_COMPRESS_FLAGS+set} != "set" ]] ; then
85 case ${PORTAGE_COMPRESS_LOCAL} in
86 bzip2|gzip) local PORTAGE_COMPRESS_FLAGS_LOCAL="-9"
87 ;;
88 esac
89 fi
90 sed -i -e "s/gzip --best/${PORTAGE_COMPRESS_LOCAL} ${PORTAGE_COMPRESS_FLAGS_LOCAL}/"\
91 po/man{1,2,3,4,5,6,7,8}/Makefile.in po/common.mk || die
92 eautoreconf
93 }
94
95 src_compile() { :; }
96
97 src_install() {
98 emake mandir="${ED}"/usr/share/man install
99 dodoc CHANGES README
100 }