diff options
author | Michael Januszewski <spock@gentoo.org> | 2007-05-06 14:25:39 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2007-05-06 14:25:39 +0000 |
commit | 3a1faba12869bcbb70fb1bfcde63dd135a067a02 (patch) | |
tree | d1af69614838edbe9ebf1b803fb4f97dea201db1 /app-i18n/man-pages-pl | |
parent | New function, xfce44_zipped() for .zipped plugins (diff) | |
download | gentoo-2-3a1faba12869bcbb70fb1bfcde63dd135a067a02.tar.gz gentoo-2-3a1faba12869bcbb70fb1bfcde63dd135a067a02.tar.bz2 gentoo-2-3a1faba12869bcbb70fb1bfcde63dd135a067a02.zip |
Version bump (bug #176728).
(Portage version: 2.1.2.6)
Diffstat (limited to 'app-i18n/man-pages-pl')
-rw-r--r-- | app-i18n/man-pages-pl/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/man-pages-pl/files/digest-man-pages-pl-20070126 | 3 | ||||
-rw-r--r-- | app-i18n/man-pages-pl/man-pages-pl-20070126.ebuild | 49 |
3 files changed, 60 insertions, 2 deletions
diff --git a/app-i18n/man-pages-pl/ChangeLog b/app-i18n/man-pages-pl/ChangeLog index bc856ada1059..dc18d6f7a986 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.5 2006/12/04 20:02:39 spock Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.6 2007/05/06 14:25:39 spock Exp $ + +*man-pages-pl-20070126 (06 May 2007) + + 06 May 2007; Michał Januszewski <spock@gentoo.org> + +man-pages-pl-20070126.ebuild: + Version bump (bug #176728). 04 Dec 2006; Michał Januszewski <spock@gentoo.org> man-pages-pl-20051024.ebuild: diff --git a/app-i18n/man-pages-pl/files/digest-man-pages-pl-20070126 b/app-i18n/man-pages-pl/files/digest-man-pages-pl-20070126 new file mode 100644 index 000000000000..5ea4361fce1a --- /dev/null +++ b/app-i18n/man-pages-pl/files/digest-man-pages-pl-20070126 @@ -0,0 +1,3 @@ +MD5 2548a5bbab11998017b6ea8e98058e2c man-PL26-01-2007.tar.gz 3433683 +RMD160 e2086b5e7540b197d399664d405f97a115773d2c man-PL26-01-2007.tar.gz 3433683 +SHA256 f0d5ad8f295c1e60e3d150c1ab3a2a4b3943ae425dc1ce8f43e5688b984c1b79 man-PL26-01-2007.tar.gz 3433683 diff --git a/app-i18n/man-pages-pl/man-pages-pl-20070126.ebuild b/app-i18n/man-pages-pl/man-pages-pl-20070126.ebuild new file mode 100644 index 000000000000..87489f24d697 --- /dev/null +++ b/app-i18n/man-pages-pl/man-pages-pl-20070126.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2007 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-20070126.ebuild,v 1.1 2007/05/06 14:25:39 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="" +DEPEND="" + +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="gendiff.1 groups.1 apropos.1 man.1 su.1 newgrp.1 whatis.1 gpasswd.1 chsh.1 \ + chfn.1 limits.5 login.1 expiry.1 porttime.5 lastlog.8 faillog.8 logoutd.8 \ + rpm.8 rpmdeps.8 rpmbuild.8 rpmcache.8 rpmgraph.8 rpm2cpio.8 evim.1 vim.1 \ + vimdiff.1 vimtutor.1 ex.1 rview.1 rvim.1 view.1 suauth.5" + 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 +} |