blob: 605174d8a199a016e867534e5d09ab1d18f3d11f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# 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.2.ebuild,v 1.5 2005/07/10 20:09:53 swegener 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/${P}.tar.gz"
# unsure on this one
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
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
}
|