blob: ce4a14bd7f08f25850f95090d0b0517a30fc852b (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/ymessenger/ymessenger-0.93.ebuild,v 1.6 2002/10/25 23:06:23 blizzy Exp $
MY_P="ymessenger-0.93.0-1.i386.rpm"
S=${WORKDIR}/usr/local
DESCRIPTION="Yahoo's instant messenger client"
SRC_URI=""
HOMEPAGE="http://messenger.yahoo.com/messenger/download/unix.html"
DEPEND=">=app-arch/rpm-3.0.6"
RDEPEND="virtual/x11"
RESTRICT="fetch"
SLOT="0"
LICENSE="yahoo"
KEYWORDS="x86 -ppc -sparc -sparc64"
src_unpack() {
if [ ! -f ${DISTDIR}/${MY_P} ] ; then
die "Please download ${MY_P} from ${HOMEPAGE} and place into ${DISTDIR}"
fi
rpm2cpio ${DISTDIR}/${MY_P} | cpio -i --make-directories
}
src_install () {
exeinto /opt/Yahoo/
doexe bin/ymessenger
insinto /etc/env.d
doins ${FILESDIR}/97ymessenger
}
|