# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-20041230.ebuild,v 1.1 2004/12/31 23:42:56 sekretarz Exp $ inherit eutils libtool DESCRIPTION="This library implements the client side of the Gadu-Gadu protocol" HOMEPAGE="http://dev.null.pl/ekg" SRC_URI="http://dev.gentoo.org/~sekretarz/distfiles/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~amd64" IUSE="ssl threads" DEPEND="ssl? ( >=dev-libs/openssl-0.9.6m )" #RDEPEND="" S=${WORKDIR}/${P} src_compile() { cd ${S} aclocal -I m4 autoheader autoconf elibtoolize econf \ --enable-shared \ `use_with threads pthread` \ `use_with ssl openssl` \ || die "econf failed" emake || die "emake failed" } src_install() { einstall || die }