blob: f9a8a028188494e67f2599ee1df4f4c0df316641 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Michael Nazaroff (Naz) <naz@themoonsofjupiter.net>
#
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="http://ftp.azc.uam.mx/mirrors/gnu/commonc++/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/commonc++/"
DEPEND="virtual/glibc
sys-libs/zlib
dev-libs/libxml2"
src_compile() {
cd ${S}
./configure \
--prefix=/usr --host=${CHOST} --mandir=/usr/share/man \
--infodir=/usr/share/info || die "./configure failed"
emake || die "make failed"
}
src_install () {
make prefix=${D} install || die
dodoc AUTHORS INSTALL NEWS OVERVIEW.TXT ChangeLog\
README THANKS TODO
}
|