diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-07-30 17:08:55 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-07-30 17:08:55 +0000 |
commit | caf20ebc8722935201f7815ae238ba2f1e9a93b3 (patch) | |
tree | e4294484591db699c62e16e0c8ce329cf4a5d7e0 /app-i18n/man-pages-pl | |
parent | Removed intermediate versions. (diff) | |
download | gentoo-2-caf20ebc8722935201f7815ae238ba2f1e9a93b3.tar.gz gentoo-2-caf20ebc8722935201f7815ae238ba2f1e9a93b3.tar.bz2 gentoo-2-caf20ebc8722935201f7815ae238ba2f1e9a93b3.zip |
Remove man pages provided by sys-apps/man-db, see bug #375623.
(Portage version: 2.1.10.9/cvs/Linux x86_64)
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/man-pages-pl-20070628-r1.ebuild | 50 |
2 files changed, 58 insertions, 2 deletions
diff --git a/app-i18n/man-pages-pl/ChangeLog b/app-i18n/man-pages-pl/ChangeLog index d45b62368057..ae7fecbde4ce 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-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.13 2010/10/19 10:23:57 leio Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.14 2011/07/30 17:08:55 nelchael Exp $ + +*man-pages-pl-20070628-r1 (30 Jul 2011) + + 30 Jul 2011; Krzysztof Pawlik <nelchael@gentoo.org> + +man-pages-pl-20070628-r1.ebuild: + Remove man pages provided by sys-apps/man-db, see bug #375623. 19 Oct 2010; Mart Raudsepp <leio@gentoo.org> man-pages-pl-20070628.ebuild: Drop to ~mips diff --git a/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild b/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild new file mode 100644 index 000000000000..9ca74d128ec9 --- /dev/null +++ b/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2011 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-20070628-r1.ebuild,v 1.1 2011/07/30 17:08:55 nelchael Exp $ + +inherit autotools + +DESCRIPTION="A collection of Polish translations of Linux manual pages." +HOMEPAGE="http://www.batnet.pl/ptm/" +SRC_URI="http://www.batnet.pl/ptm/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 mc.1" + # bug #375623: + mans="${mans} manpath.5 catman.8 mandb.8 zsoelim.1 manpath.1" + for page in ${mans} ; do + sed -i -e "/\\t${page}/ d" man${page: -1}/Makefile.am + done + + eautoreconf || die +} + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog FAQ NEWS README TODO +} |