# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/amule-1.2.7.ebuild,v 1.1 2004/07/02 20:26:25 squinky86 Exp $ MY_P=${P/m/M} S=${WORKDIR}/${MY_P} DESCRIPTION="aMule, the all-platform eMule p2p client" HOMEPAGE="http://www.amule.org" SRC_URI="http://download.berlios.de/${PN}/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="debug nls remote" DEPEND=">=x11-libs/wxGTK-2.4.2 >=net-misc/curl-7.11.0 >=sys-libs/zlib-1.2.1" pkg_setup() { if wx-config --cppflags | grep gtk2u >& /dev/null; then einfo "${PN} will not build if wxGTK was compiled" einfo "with unicode support. If you are using a version of" einfo "wxGTK <= 2.4.2, you must set USE=-gtk2. In newer versions," einfo "you must set USE=-unicode." die "wxGTK must be re-emerged without unicode suport" fi } src_compile() { econf `use_enable nls` \ `use_enable remote amulecmd` \ `use_enable debug` || die emake -j1 || die } src_install() { make DESTDIR=${D} install || die }