# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # Based on the ebuild by 'mascanho' @ forums.gentoo.org inherit eutils wxwidgets MY_P=${P/m/M} MY_P=${MY_P/_/} 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 gtk2 nls remote stats unicode amuled" DEPEND=" >=x11-libs/wxGTK-2.6.0 >=net-misc/curl-7.11.0 >=sys-libs/zlib-1.2.1 stats? ( >=media-libs/gd-2.0.26 ) remote? ( >=media-libs/libpng-1.2.0 ) !net-p2p/amule !net-p2p/xmule" pkg_setup() { export WX_GTK_VER="2.6" if ! use gtk2; then need-wxwidgets gtk elif use unicode; then need-wxwidgets unicode else need-wxwidgets gtk2 fi } src_compile() { AMULED="" if use amuled; then AMULED="--enable-amule-daemon --enable-amule-gui" fi econf ${AMULED} \ --enable-debug \ --disable-optimise \ --with-wx-config=${WX_CONFIG} \ --with-wxbase-config=${WX_CONFIG} \ `use_enable nls` \ `use_enable remote amulecmd` \ `use_enable remote amulecmdgui` \ `use_enable remote webserver` \ `use_enable remote webservergui` \ `use_enable stats cas` \ `use_enable stats wxcas` \ `use_enable stats alc` \ `use_enable stats alcc` \ || die emake -j1 || die } src_install() { make DESTDIR=${D} install || die }