summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Lieber <klieber@gentoo.org>2005-05-17 20:28:26 +0000
committerKurt Lieber <klieber@gentoo.org>2005-05-17 20:28:26 +0000
commitb227ea826be63c25859c876b569d03047f5ce4eb (patch)
treeedb90c5bf6faada91ca42b2c00b850ff0611463d /dev-libs/pcl/pcl-1.4.ebuild
parentadded ~ppc64 (diff)
downloadhistorical-b227ea826be63c25859c876b569d03047f5ce4eb.tar.gz
historical-b227ea826be63c25859c876b569d03047f5ce4eb.tar.bz2
historical-b227ea826be63c25859c876b569d03047f5ce4eb.zip
new version of ebuild
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-libs/pcl/pcl-1.4.ebuild')
-rw-r--r--dev-libs/pcl/pcl-1.4.ebuild34
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
+}