blob: 53690cd1cf20eae46dd60c9df2d038638ba7aed0 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/commonc++/commonc++-1.9.7-r2.ebuild,v 1.12 2004/06/24 23:02:59 agriffis Exp $
inherit eutils
S=${WORKDIR}/CommonC++-1.9.7
DESCRIPTION="GNU Common C++ is a C++ framework offering portable support for\
threading, sockets, file access, daemons, persistence, serial I/O, XML parsing,\
and system services"
SRC_URI="mirror://gnu/commonc++/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/commonc++/"
DEPEND="sys-libs/zlib
dev-libs/libxml2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-0.1.patch || die
}
src_compile() {
econf || die "./configure failed"
make DESTDIR=${D} || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS INSTALL NEWS OVERVIEW.TXT ChangeLog\
README THANKS TODO COPYING COPYING.addendum
dohtml doc/*
}
|