blob: 8e715afd9295b65582596883008dc844111c735b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/socket++/socket++-1.12.10.ebuild,v 1.2 2004/06/24 23:18:04 agriffis Exp $
DESCRIPTION="C++ Socket Library"
HOMEPAGE="http://members.aon.at/hstraub/linux/socket++/"
SRC_URI="http://www.hstraub.at/linux/downloads/src/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE="debug"
DEPEND="sys-devel/automake
sys-devel/autoconf
sys-devel/libtool
sys-apps/texinfo"
RDEPEND=""
src_compile() {
./autogen || die "./autogen failed"
econf $(use_enable debug) || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README* THANKS
}
|