diff options
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/rpm/rpm-4.0.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/app-arch/rpm/rpm-4.0.ebuild b/app-arch/rpm/rpm-4.0.ebuild deleted file mode 100644 index d11902551d0f..000000000000 --- a/app-arch/rpm/rpm-4.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.0.ebuild,v 1.5 2000/11/19 12:17:29 achim Exp $ - -A="${P}.tar.gz" -S=${WORKDIR}/${P} -DESCRIPTION="Red Hat Package Management Utils" -SRC_URI="ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/${A}" -HOMEPAGE="http://www.rpm.org/" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-libs/glibc-2.1.3 - >=sys-libs/zlib-1.1.3 - >=sys-apps/bzip2-1.0.1 - >=sys-libs/db-3.1.17 - =sys-libs/db-1.85" - - -src_compile() { - cd ${S} - try ./configure --prefix=/usr - try make -} - -src_install() { - try make DESTDIR=${D} install - mv ${D}/bin/rpm ${D}/usr/bin - rm -rf ${D}/bin - cd ${S} - dodoc CHANGES COPYING CREDITS GROUPS README* RPM* TODO -} - -pkg_postinst() { - ${ROOT}usr/bin/rpm --initdb --root=${ROOT} -} - - - |