blob: c68fbb8f935655fdb50343464bebd25aecee396e (
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
66
67
68
69
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/ymessenger/ymessenger-0.99.19.1-r1.ebuild,v 1.2 2003/04/04 06:06:12 seemant Exp $
inherit kde
IUSE="kde gnome"
MY_P=${PN}_${PV%.*}-${PV#*.*.*.*}
S=${WORKDIR}/opt/${PN}/bin
DESCRIPTION="Yahoo's instant messenger client"
HOMEPAGE="http://messenger.yahoo.com/messenger/download/unix.html"
SRC_URI="http://download.yahoo.com/dl/unix/linux/debian_sid/${MY_P}.tar.gz"
DEPEND="media-libs/gdk-pixbuf
gnome-extra/gtkhtml"
RDEPEND="virtual/x11"
SLOT="0"
LICENSE="yahoo"
KEYWORDS="x86 -ppc -sparc -alpha -mips -hppa"
pkg_setup() {
if [ ${ARCH} != "x86" ] ; then
einfo "This is an x86 only package, sorry"
die "Not supported on your ARCH"
fi
}
src_compile() {
cd ${S}
}
src_install () {
cd ${S}
into /opt/ymessenger
newbin ymessenger.bin ymessenger
insinto /opt/ymessenger/bin
doins yahoo_kde.xpm yahoo_gnome.png
insinto /opt/ymessenger/bin
doins ymessenger.desktop
if use gnome
then
insinto /usr/share/gnome/apps/Internet
doins ymessenger.desktop
fi
if use kde
then
insinto ${KDEDIR}/share/applnk/Internet
doins ymessenger.kdelnk
fi
}
pkg_postinst() {
einfo ""
einfo "If you are upgrading from an older version of ymessenger,"
einfo "please unmerge the previous version."
einfo "-=AND=-"
einfo "mv ~/.ymessenger/preferences ~/.ymessenger/preferences.old"
einfo ""
}
|