diff options
author | Kurt Lieber <klieber@gentoo.org> | 2003-11-04 14:01:47 +0000 |
---|---|---|
committer | Kurt Lieber <klieber@gentoo.org> | 2003-11-04 14:01:47 +0000 |
commit | 9eae95c3fe9ed2946e5dfe686e0b7db255b6c055 (patch) | |
tree | 623b46acd7e25ceac6feac398b4768366c4f0d7f /dev-libs/pcl/pcl-1.2.ebuild | |
parent | initial ebuild. bug #32662 (diff) | |
download | gentoo-2-9eae95c3fe9ed2946e5dfe686e0b7db255b6c055.tar.gz gentoo-2-9eae95c3fe9ed2946e5dfe686e0b7db255b6c055.tar.bz2 gentoo-2-9eae95c3fe9ed2946e5dfe686e0b7db255b6c055.zip |
initial ebuild. bug #32662
Diffstat (limited to 'dev-libs/pcl/pcl-1.2.ebuild')
-rw-r--r-- | dev-libs/pcl/pcl-1.2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-libs/pcl/pcl-1.2.ebuild b/dev-libs/pcl/pcl-1.2.ebuild new file mode 100644 index 000000000000..48fc7a9a6d43 --- /dev/null +++ b/dev-libs/pcl/pcl-1.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pcl/pcl-1.2.ebuild,v 1.1 2003/11/04 14:01:45 klieber Exp $ + +DESCRIPTION="A library to provide low-level coroutines for in-process context switching" +HOMEPAGE="http://www.xmailserver.org/libpcl.html" +SRC_URI="http://monkey.org/~provos/${P}.tar.gz" +SRC_URI="http://www.xmailserver.org/${P}.tar.gz" +S=${WORKDIR}/${P} + +# unsure on this one +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" +DEPEND="" + +src_unpack() { + unpack ${A} + cd ${S} +} + +src_compile() { + econf || die "configure failed" + emake || die "emake failed" +} + +src_install() { + dolib pcl/libpcl.a + dodoc ChangeLog INSTALL NEWS README + dohtml man/pcl.html + doman man/pcl.3 + insinto /usr/include + doins include/pcl.h +} |