summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Januszewski <spock@gentoo.org>2006-04-09 13:17:43 +0000
committerMichael Januszewski <spock@gentoo.org>2006-04-09 13:17:43 +0000
commit4bf815ed8dd194daca9ccd161bba4e2af1373538 (patch)
tree12598e2524768783a2a921fae8366f48a1cc9c26 /app-i18n
parentadd CXXFLAGS_$ABI to make.profile (diff)
downloadgentoo-2-4bf815ed8dd194daca9ccd161bba4e2af1373538.tar.gz
gentoo-2-4bf815ed8dd194daca9ccd161bba4e2af1373538.tar.bz2
gentoo-2-4bf815ed8dd194daca9ccd161bba4e2af1373538.zip
Version bump.
(Portage version: 2.1_pre7-r4)
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/man-pages-pl/ChangeLog10
-rw-r--r--app-i18n/man-pages-pl/files/digest-man-pages-pl-200510243
-rw-r--r--app-i18n/man-pages-pl/man-pages-pl-20051024.ebuild48
3 files changed, 59 insertions, 2 deletions
diff --git a/app-i18n/man-pages-pl/ChangeLog b/app-i18n/man-pages-pl/ChangeLog
index c57ae2fa9575..2586df6a68ee 100644
--- a/app-i18n/man-pages-pl/ChangeLog
+++ b/app-i18n/man-pages-pl/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-i18n/man-pages-pl
-# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.1 2005/09/02 04:29:32 vapier Exp $
+# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.2 2006/04/09 13:17:43 spock Exp $
+
+*man-pages-pl-20051024 (09 Apr 2006)
+
+ 09 Apr 2006; Michał Januszewski <spock@gentoo.org>
+ +man-pages-pl-20051024.ebuild:
+ Version bump.
*man-pages-pl-20040401 (21 Jun 2004)
diff --git a/app-i18n/man-pages-pl/files/digest-man-pages-pl-20051024 b/app-i18n/man-pages-pl/files/digest-man-pages-pl-20051024
new file mode 100644
index 000000000000..4d861bac0544
--- /dev/null
+++ b/app-i18n/man-pages-pl/files/digest-man-pages-pl-20051024
@@ -0,0 +1,3 @@
+MD5 53dbc41853d166e7e96d7f8054015adc man-PL24-10-2005.tar.gz 2848800
+RMD160 9b82f31ceee8eebd7cfca8d1761054aa4cb07263 man-PL24-10-2005.tar.gz 2848800
+SHA256 912b2b295b0d712dfdf631a78a5ef031e96eed88fe31bc667c6ea32606fe8999 man-PL24-10-2005.tar.gz 2848800
diff --git a/app-i18n/man-pages-pl/man-pages-pl-20051024.ebuild b/app-i18n/man-pages-pl/man-pages-pl-20051024.ebuild
new file mode 100644
index 000000000000..7e5677a54c44
--- /dev/null
+++ b/app-i18n/man-pages-pl/man-pages-pl-20051024.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20051024.ebuild,v 1.1 2006/04/09 13:17:43 spock Exp $
+
+DESCRIPTION="A collection of Polish translations of Linux manual pages."
+HOMEPAGE="http://ptm.linux.pl/"
+SRC_URI="http://ptm.linux.pl/man-PL${PV:6:2}-${PV:4:2}-${PV:0:4}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
+IUSE=""
+
+RDEPEND="sys-apps/man"
+DEPEND="sys-devel/autoconf"
+
+S=${WORKDIR}/pl_PL
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+
+ # missing manpages
+ sed -i -e '/\tpasswd.1/ d' man1/Makefile.am
+
+ # manpages provided by other packages
+ mans="groups.1 apropos.1 man.1 su.1 newgrp.1 whatis.1 gpasswd.1 chsh.1 \
+ chfn.1 login.1 expiry.1 porttime.5 lastlog.8 faillog.8 logoutd.8 \
+ rpm.8 rpm2cpio.8"
+ for page in ${mans} ; do
+ sed -i -e "/\\t${page}/ d" man${page: -1}/Makefile.am
+ done
+}
+
+src_compile() {
+ ./autogen.sh \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ || die "./configure failed"
+ emake || die
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog FAQ NEWS README TODO
+}