# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="C++ network programming library" HOMEPAGE="http://pmade.org/software/netxx" SRC_URI="http://pmade.org/software/netxx/download/netxx-0.4.2.tar.bz2" LICENSE="BSD" SLOT="0" IUSE="debug" KEYWORDS="~x86" DEPEND="dev-util/boost-jam" src_compile() { econf || die "econf failed" args=""; if ! use debug; then args="--release" fi jam $args } src_install() { into /usr insinto /usr/include/netxx doins include/netxx/*.h insinto /usr/include/netxx/tls doins include/netxx/tls/*.h insinto /usr/share/${P} doins Jamfile Jamrules README INSTALL insinto /usr/share/${P}/examples doins examples/*.cxx examples/Jamfile examples/README examples/config.jam if use debug; then dolib.a src/debug/libnetxx.a else dolib.a src/release/libnetxx.a fi }