diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-04-05 21:08:50 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-04-05 21:08:50 +0000 |
commit | a53204cf038c0ebcc4b3b01e27f08595c8a08446 (patch) | |
tree | 76aba5effbebc6602c9dd46692b8d671705234eb /app-arch | |
parent | more bug fixes (diff) | |
download | historical-a53204cf038c0ebcc4b3b01e27f08595c8a08446.tar.gz historical-a53204cf038c0ebcc4b3b01e27f08595c8a08446.tar.bz2 historical-a53204cf038c0ebcc4b3b01e27f08595c8a08446.zip |
This package currently does not work, so I moved it to attic, so
it does not breake emerge
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} -} - - - |