diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-07-23 21:51:59 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-07-23 21:51:59 +0000 |
commit | b42d857cc96b25012c4f141fe11e7456a536d8ca (patch) | |
tree | 30f1cf72c1fa93b7f68f602a38ba9acd37bbad6b /net-libs | |
parent | this is me cleaning upx (diff) | |
download | historical-b42d857cc96b25012c4f141fe11e7456a536d8ca.tar.gz historical-b42d857cc96b25012c4f141fe11e7456a536d8ca.tar.bz2 historical-b42d857cc96b25012c4f141fe11e7456a536d8ca.zip |
new ebuild, thanks to greg some more
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/rpc2/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/rpc2/files/digest-rpc2-1.13 | 1 | ||||
-rw-r--r-- | net-libs/rpc2/rpc2-1.13.ebuild | 37 |
3 files changed, 46 insertions, 0 deletions
diff --git a/net-libs/rpc2/ChangeLog b/net-libs/rpc2/ChangeLog new file mode 100644 index 000000000000..7f0603f1d3f7 --- /dev/null +++ b/net-libs/rpc2/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-libs/rpc2 +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/rpc2/ChangeLog,v 1.1 2002/07/23 21:51:59 lostlogic Exp $ + +*rpc2-1.13 (30 Jun 2002) + + 30 Jun 2002; Greg Briggs <gb006k@mail.rochester.edu> rpc2-1.13.ebuild: Created + ebuild for this package. diff --git a/net-libs/rpc2/files/digest-rpc2-1.13 b/net-libs/rpc2/files/digest-rpc2-1.13 new file mode 100644 index 000000000000..57c5e751ddf6 --- /dev/null +++ b/net-libs/rpc2/files/digest-rpc2-1.13 @@ -0,0 +1 @@ +MD5 220b64c480b0bf28ef48e20c1a07e3ed rpc2-1.13.tar.gz 447572 diff --git a/net-libs/rpc2/rpc2-1.13.ebuild b/net-libs/rpc2/rpc2-1.13.ebuild new file mode 100644 index 000000000000..6fea2b197e9e --- /dev/null +++ b/net-libs/rpc2/rpc2-1.13.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# + +DESCRIPTION="Remote procedure call package for IP/UDP (used by Coda)" + +# Appearantly maintained by the Coda people +HOMEPAGE="http://www.coda.cs.cmu.edu" + +LICENSE="LGPL-2.1" +KEYWORDS="x86" + +SLOT=1 + +# partly based on the deps suggested by Mandrake's RPM +DEPEND="virtual/glibc + >=sys-libs/lwp-1.9 + >=sys-libs/ncurses-5 + >=sys-libs/readline-4.1" +RDEPEND=${DEPEND} + +SRC_URI="ftp://ftp.coda.cs.cmu.edu/pub/rpc2/src/${P}.tar.gz" + +S=${WORKDIR}/${P} + +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 +} |