summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-06-07 15:53:21 +0000
committerMike Frysinger <vapier@gentoo.org>2008-06-07 15:53:21 +0000
commit4841091be378750d80a72d4d2719e530bf68f055 (patch)
tree0732fdba0b3d2a1cfc07272322f53b945ab8cd72 /sys-apps/man-pages
parentStable for HPPA (bug #225085). (diff)
downloadhistorical-4841091be378750d80a72d4d2719e530bf68f055.tar.gz
historical-4841091be378750d80a72d4d2719e530bf68f055.tar.bz2
historical-4841091be378750d80a72d4d2719e530bf68f055.zip
old
Diffstat (limited to 'sys-apps/man-pages')
-rw-r--r--sys-apps/man-pages/files/man-pages-2.61-DESTDIR.patch25
-rw-r--r--sys-apps/man-pages/man-pages-2.76.ebuild50
2 files changed, 0 insertions, 75 deletions
diff --git a/sys-apps/man-pages/files/man-pages-2.61-DESTDIR.patch b/sys-apps/man-pages/files/man-pages-2.61-DESTDIR.patch
deleted file mode 100644
index 63e5754f9ead..000000000000
--- a/sys-apps/man-pages/files/man-pages-2.61-DESTDIR.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -3,6 +3,7 @@
- # Do "make install" to copy the pages to their destination.
- # Do "make gz" or "make bz2" first if you use compressed source pages.
-
-+DESTDIR=
- prefix?=/usr
- MANDIR=$(prefix)/share/man
-
-@@ -48,11 +49,11 @@
- done; \
- done; fi
-
--README=$(MANDIR)/man1/README
-+README=$(DESTDIR)$(MANDIR)/man1/README
- install:
- for i in man? man??; do \
-- install -d -m 755 $(MANDIR)/"$$i"; \
-- install -m 644 "$$i"/* $(MANDIR)/"$$i"; \
-+ install -d -m 755 $(DESTDIR)$(MANDIR)/"$$i" || exit $$?; \
-+ install -m 644 "$$i"/* $(DESTDIR)$(MANDIR)/"$$i" || exit $$?; \
- done; \
- rm -f $(README) $(README).gz $(README).bz2
-
diff --git a/sys-apps/man-pages/man-pages-2.76.ebuild b/sys-apps/man-pages/man-pages-2.76.ebuild
deleted file mode 100644
index bda9c003ab4c..000000000000
--- a/sys-apps/man-pages/man-pages-2.76.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-2.76.ebuild,v 1.4 2008/03/10 05:19:58 ricmm Exp $
-
-inherit eutils
-
-DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
-HOMEPAGE="http://www.win.tue.nl/~aeb/linux/man/"
-SRC_URI="mirror://kernel/linux/docs/manpages/${P}.tar.bz2"
-
-LICENSE="freedist"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE="nls"
-RESTRICT="binchecks"
-
-RDEPEND="virtual/man"
-PDEPEND="nls? (
- linguas_cs? ( app-i18n/man-pages-cs )
- linguas_da? ( app-i18n/man-pages-da )
- linguas_de? ( app-i18n/man-pages-de )
- linguas_es? ( app-i18n/man-pages-es )
- linguas_fr? ( app-i18n/man-pages-fr )
- linguas_it? ( app-i18n/man-pages-it )
- linguas_ja? ( app-i18n/man-pages-ja )
- linguas_nl? ( app-i18n/man-pages-nl )
- linguas_pl? ( app-i18n/man-pages-pl )
- linguas_ro? ( app-i18n/man-pages-ro )
- linguas_ru? ( app-i18n/man-pages-ru )
- linguas_zh_CN? ( app-i18n/man-pages-zh_CN )
- )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-2.08-updates.patch
-}
-
-src_compile() { :; }
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc man-pages-*.Announce README Changes*
-}
-
-pkg_postinst() {
- einfo "If you don't have a makewhatis cronjob, then you"
- einfo "should update the whatis database yourself:"
- einfo " # makewhatis -u"
-}