diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-10-06 02:37:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-10-06 02:37:26 +0000 |
commit | cc47ef0117c523c44987e191c1b46faa3daef6d2 (patch) | |
tree | 0b21c49e47e931ea38bdfc090fdc28eaa7ead63c /sys-apps | |
parent | old (diff) | |
download | gentoo-2-cc47ef0117c523c44987e191c1b46faa3daef6d2.tar.gz gentoo-2-cc47ef0117c523c44987e191c1b46faa3daef6d2.tar.bz2 gentoo-2-cc47ef0117c523c44987e191c1b46faa3daef6d2.zip |
old
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/man-db/files/digest-man-db-2.4.3 | 3 | ||||
-rw-r--r-- | sys-apps/man-db/man-db-2.4.3.ebuild | 40 |
2 files changed, 0 insertions, 43 deletions
diff --git a/sys-apps/man-db/files/digest-man-db-2.4.3 b/sys-apps/man-db/files/digest-man-db-2.4.3 deleted file mode 100644 index bb21bfb2a78e..000000000000 --- a/sys-apps/man-db/files/digest-man-db-2.4.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 30814a47f209f43b152659ba51fc7937 man-db-2.4.3.tar.gz 816545 -RMD160 809bdb51f3b60113dbf24c214cc4de419edf1235 man-db-2.4.3.tar.gz 816545 -SHA256 872973bfcf500c1af2c2fe79d9b0099443a9969a86017711f166cc70853553ed man-db-2.4.3.tar.gz 816545 diff --git a/sys-apps/man-db/man-db-2.4.3.ebuild b/sys-apps/man-db/man-db-2.4.3.ebuild deleted file mode 100644 index db58086b21ef..000000000000 --- a/sys-apps/man-db/man-db-2.4.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-db/man-db-2.4.3.ebuild,v 1.1 2006/02/22 00:14:29 vapier Exp $ - -inherit eutils - -DESCRIPTION="a man replacement that utilizes berkdb instead of flat files" -HOMEPAGE="http://www.nongnu.org/man-db/" -SRC_URI="http://download.savannah.nongnu.org/releases/man-db/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext ) - sys-libs/db" -RDEPEND="sys-libs/db - !sys-apps/man" -PROVIDE="virtual/man" - -pkg_setup() { - enewgroup man 15 - enewuser man 13 -1 /usr/share/man man -} - -src_compile() { - econf $(use_enable nls) || die - # the dependency rules are all wrong unless we build - # in the src dir ... so we run in parallel in src first - # to prevent any race conditions ... - mkdir -p {src,libdb}/.depend - emake -C src || die - emake || die -} - -src_install() { - make install DESTDIR="${D}" || die - dodoc README docs/{ChangeLog,NEWS,ToDo} -} |