diff options
author | 2002-07-23 21:48:04 +0000 | |
---|---|---|
committer | 2002-07-23 21:48:04 +0000 | |
commit | 8ab46c4e8e6e031874a02092cc7f51050e65efaa (patch) | |
tree | d429287f45bea4507d1a3e65be1d67b379554f3d | |
parent | added ppc to keywrds (diff) | |
download | gentoo-2-8ab46c4e8e6e031874a02092cc7f51050e65efaa.tar.gz gentoo-2-8ab46c4e8e6e031874a02092cc7f51050e65efaa.tar.bz2 gentoo-2-8ab46c4e8e6e031874a02092cc7f51050e65efaa.zip |
oops.
-rw-r--r-- | sys-libs/lwp/ChangeLog | 8 | ||||
-rw-r--r-- | sys-libs/lwp/files/digest-lwp-1.9 | 1 | ||||
-rw-r--r-- | sys-libs/lwp/lwp-1.9.ebuild | 42 |
3 files changed, 51 insertions, 0 deletions
diff --git a/sys-libs/lwp/ChangeLog b/sys-libs/lwp/ChangeLog new file mode 100644 index 000000000000..496ba4892e5b --- /dev/null +++ b/sys-libs/lwp/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for sys-libs/lwp +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/lwp/ChangeLog,v 1.1 2002/07/23 21:48:04 lostlogic Exp $ + +*lwp-1.9 (30 Jun 2002) + + 30 Jun 2002; Greg Briggs <gb006k@mail.rochester.edu> lwp-1.9.ebuild: Created + ebuild for this package. diff --git a/sys-libs/lwp/files/digest-lwp-1.9 b/sys-libs/lwp/files/digest-lwp-1.9 new file mode 100644 index 000000000000..682bbb144978 --- /dev/null +++ b/sys-libs/lwp/files/digest-lwp-1.9 @@ -0,0 +1 @@ +MD5 741992fd4dfa87bfbc47237dd1a57762 lwp-1.9.tar.gz 246491 diff --git a/sys-libs/lwp/lwp-1.9.ebuild b/sys-libs/lwp/lwp-1.9.ebuild new file mode 100644 index 000000000000..87fce14b18ba --- /dev/null +++ b/sys-libs/lwp/lwp-1.9.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/lwp/lwp-1.9.ebuild,v 1.1 2002/07/23 21:48:04 lostlogic Exp $ + +DESCRIPTION="Light weight process library (used by Coda). This is NOT libwww-perl." + +# Appearantly maintained by the Coda people +HOMEPAGE="http://www.coda.cs.cmu.edu" + +#actually "GNU Library General Public Licence Version 2" +LICENSE="LGPL-2.1" + +# Nothing listed in the docs for dependencies that I noticed +DEPEND="virtual/glibc" +RDEPEND=${DEPEND} + +SLOT="1" +KEYWORDS="x86" + +SRC_URI="ftp://ftp.coda.cs.cmu.edu/pub/lwp/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 () { + # does not seems to consistently use DESTDIR where it needs to, but I could be wrong too + # make DESTDIR=${D} install || die + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + oldincludedir=${D}/usr/include \ + install || die +} |