diff options
Diffstat (limited to 'net-p2p/amule/amule-1.2.8-r2.ebuild')
-rw-r--r-- | net-p2p/amule/amule-1.2.8-r2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net-p2p/amule/amule-1.2.8-r2.ebuild b/net-p2p/amule/amule-1.2.8-r2.ebuild new file mode 100644 index 000000000000..1565d21b0336 --- /dev/null +++ b/net-p2p/amule/amule-1.2.8-r2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/amule-1.2.8-r2.ebuild,v 1.1 2005/09/20 15:38:06 mkay Exp $ + +inherit wxwidgets + +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 gtk" + +DEPEND=">=x11-libs/wxGTK-2.4.2-r2 + >=net-misc/curl-7.11.0 + >=sys-libs/zlib-1.2.1 + !net-p2p/xmule" + +src_compile() { + need-wxwidgets gtk2 || die "gtk version of wxGTK not found" + econf `use_enable nls` \ + `use_enable remote amulecmd` \ + `use_enable debug` || die + + emake -j1 || die +} + +src_install() { + make DESTDIR=${D} install || die +} |