blob: 6cb8c1064aece67232cc9ed215c3c0c0159dcd88 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Mikael Hallendal <hallski@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.1 2001/11/06 00:17:14 hallski Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GNU Portable Threads"
SRC_URI="ftp://ftp.gnu.org/gnu/pth/pth-1.4.0.tar.gz"
HOMEPAGE="http://www.gnu.org/software/pth/"
DEPEND="virtual/glibc"
src_compile() {
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info
assert
emake || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc ANNOUNCE AUTHORS COPYING ChangeLog NEWS README THANKS USERS
}
|