diff options
author | Kurt Lieber <klieber@gentoo.org> | 2005-05-17 20:28:26 +0000 |
---|---|---|
committer | Kurt Lieber <klieber@gentoo.org> | 2005-05-17 20:28:26 +0000 |
commit | b6ddbf45186c02df1b1a64dca71af6df38b64599 (patch) | |
tree | e21c0934d77c4da364c964ffcc95c10c6b0f6c27 /dev-libs/pcl/pcl-1.4.ebuild | |
parent | added ~ppc64 (diff) | |
download | gentoo-2-b6ddbf45186c02df1b1a64dca71af6df38b64599.tar.gz gentoo-2-b6ddbf45186c02df1b1a64dca71af6df38b64599.tar.bz2 gentoo-2-b6ddbf45186c02df1b1a64dca71af6df38b64599.zip |
new version of ebuild
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-libs/pcl/pcl-1.4.ebuild')
-rw-r--r-- | dev-libs/pcl/pcl-1.4.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/pcl/pcl-1.4.ebuild b/dev-libs/pcl/pcl-1.4.ebuild new file mode 100644 index 000000000000..bdf0bc3eb104 --- /dev/null +++ b/dev-libs/pcl/pcl-1.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pcl/pcl-1.4.ebuild,v 1.1 2005/05/17 20:28:26 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://www.xmailserver.org/lib${P}.tar.gz" + +# license not specified, but derived from GPL'd works +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +IUSE="" + +src_unpack() { + unpack ${A} +} + +S="${WORKDIR}/lib${P}" + +src_compile() { + econf || die "configure failed" + emake || die "emake failed" +} + +src_install() { + dolib pcl/.libs/libpcl.a + dodoc ChangeLog INSTALL NEWS README + dohtml man/pcl.html + doman man/pcl.3 + insinto /usr/include + doins include/pcl.h +} |