diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-07-23 22:03:43 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-07-23 22:03:43 +0000 |
commit | fe00b387dd56e4c4b9cf5163fe23796656457bfe (patch) | |
tree | f9787c54592f0d020e0cebf62b8b23e15b68468f /sys-libs | |
parent | new ebuild, thanks to greg some more (diff) | |
download | historical-fe00b387dd56e4c4b9cf5163fe23796656457bfe.tar.gz historical-fe00b387dd56e4c4b9cf5163fe23796656457bfe.tar.bz2 historical-fe00b387dd56e4c4b9cf5163fe23796656457bfe.zip |
more new stuff
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/rvm/ChangeLog | 8 | ||||
-rw-r--r-- | sys-libs/rvm/files/digest-rvm-1.6 | 1 | ||||
-rw-r--r-- | sys-libs/rvm/rvm-1.6.ebuild | 36 |
3 files changed, 45 insertions, 0 deletions
diff --git a/sys-libs/rvm/ChangeLog b/sys-libs/rvm/ChangeLog new file mode 100644 index 000000000000..de46edc73f14 --- /dev/null +++ b/sys-libs/rvm/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for sys-libs/rvm +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# + +*rvm-1.6 (01 Jul 2002) + + 01 Jul 2002; Greg Briggs <gb006k@mail.rochester.edu> rvm-1.6.ebuild: Created + ebuild for this package. diff --git a/sys-libs/rvm/files/digest-rvm-1.6 b/sys-libs/rvm/files/digest-rvm-1.6 new file mode 100644 index 000000000000..4d2d6e02465a --- /dev/null +++ b/sys-libs/rvm/files/digest-rvm-1.6 @@ -0,0 +1 @@ +MD5 55ab680163b8c27495abd6e94eb83b11 rvm-1.6.tar.gz 374944 diff --git a/sys-libs/rvm/rvm-1.6.ebuild b/sys-libs/rvm/rvm-1.6.ebuild new file mode 100644 index 000000000000..0f913570b986 --- /dev/null +++ b/sys-libs/rvm/rvm-1.6.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# + +DESCRIPTION="Recoverable Virtual Memory (used by Coda)" + +# Appearantly maintained by the Coda people +HOMEPAGE="http://www.coda.cs.cmu.edu" + +LICENSE="LGPL-2.1" + +SLOT=1 + +# partly based on the deps suggested by Mandrake's RPM +DEPEND="virtual/glibc + >=sys-libs/lwp-1.9" + +RDEPEND=${DEPEND} + +SRC_URI="ftp://ftp.coda.cs.cmu.edu/pub/rvm/src/${P}.tar.gz" + +S=${WORKDIR}/${P} +KEYWORDS="x86" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} |