blob: b656ef6f03eb11f0903851b15b852c8e9826349c (
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
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/socket++/socket++-1.12.12.ebuild,v 1.4 2005/01/19 12:24:52 ka0ttic Exp $
DESCRIPTION="C++ Socket Library"
HOMEPAGE="http://www.linuxhacker.at/socketxx/"
SRC_URI="http://www.linuxhacker.at/linux/downloads/src/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE="debug doc"
DEPEND="sys-devel/automake
sys-devel/autoconf
sys-devel/libtool
sys-apps/texinfo"
RDEPEND=""
src_compile() {
einfo "Running autogen"
WANT_AUTOMAKE=1.7 ./autogen || die "autogen failed"
econf $(use_enable debug) || die "econf failed"
emake || die "emake failed"
if use doc ; then
cd ${S}/doc
einfo "Building HTML documentation"
# the 'html' target in both ${S}/Makefile and ${S}/doc/Makefile
# do indeed exist (and succeed when run manually), but fail when
# 'make html' is done here, so we call makeinfo ourselves.
makeinfo --html -I . -o html socket++.texi || die "makeinfo failed"
fi
}
src_test() {
cd ${S}/test
make check || die "make check failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README* THANKS || die "dodoc failed"
if use doc ; then
dohtml doc/html/* || die "dohtml failed"
fi
}
|