# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/ # This ebuild is a small modification of the ebuild from http://bugs.gentoo.org/show_bug.cgi?id=119611 inherit eutils IUSE="speex" DESCRIPTION="OPAL library, used by Ekiga" HOMEPAGE="http://www.ekiga.org" SRC_URI="http://www.ekiga.org/admin/downloads/latest/sources/sources/${P}.tar.gz" RESTRICT="nomirror" LICENSE="MPL-1.0" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="speex? ( media-libs/speex ) >=dev-libs/pwlib-1.10.0" DEPEND="${RDEPEND}" src_compile() { local myconf econf || die "configure failed" emake || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" }