blob: b5654e10b825102a89fb3203b0287881dd8215f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/xmule/xmule-1.8.2-r3.ebuild,v 1.6 2004/07/23 20:31:07 squinky86 Exp $
inherit eutils
MY_P=${P}c
S=${WORKDIR}/${PN}
DESCRIPTION="wxWindows based client for the eDonkey/eMule/lMule network"
HOMEPAGE="http://xmule.ws/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz
http://dev.gentoo.org/~squinky86/files/${P}-gcc34.patch"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE="nls"
DEPEND=">=x11-libs/wxGTK-2.4.2
nls? ( sys-devel/gettext )
>=sys-libs/zlib-1.2.1"
pkg_setup() {
# FIXME: Is this really how we want to do this ?
GREP=`grep ' unicode' /var/db/pkg/x11-libs/wxGTK*/USE`
if [ "${GREP}" != "" ]; then
eerror "This package doesn't work with wxGTK"
eerror "compiled with gtk2 and unicode in USE"
eerror "Please re-compile wxGTK with -unicode"
die "aborting..."
fi
}
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's/@datadir@/${DESTDIR}@datadir@/' Makefile.in
epatch ${DISTDIR}/${P}-gcc34.patch
}
src_compile () {
local myconf=
use nls \
|| myconf="${myconf} --disable-nls"
myconf="${myconf} --with-zlib=/tmp/zlib/"
econf ${myconf} || die
emake || die
}
src_install () {
einstall mkinstalldirs=${S}/mkinstalldirs DESTDIR=${D} || die
dodir /usr/share/xmule
insinto /usr/share/xmule
doins src/resource/*
mv ${D}/usr/bin/xmule ${D}/usr/bin/xmule-bin
mv ${D}/var/tmp/portage/${PF}/image/usr/share/locale/* ${D}/usr/share/locale/
rm -rf ${D}/var
exeinto /usr/bin
newexe ${FILESDIR}/xmule.sh xmule
}
|