blob: 5431ad56bbbe78066472c31e5409f8ad55faae13 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# /space/gentoo/cvsroot/gentoo-x86/net-im/gabber/gabber-0.8.7-r1.ebuild,v 1.5 2002/06/08 15:38:09 spider Exp
S="${WORKDIR}/msn"
DESCRIPTION=""
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://amsn.sourceforge.net"
SLOT="0"
DEPEND=">=dev-lang/tcl-8.3.3"
src_compile() {
make prefix=${D}/usr \
gnomelinks=${D}/etc/X11/applnk/Internet \
kdelinks=${D}/usr/share/applnk/Internet \
wmapps=${D}/etc/X11/applnk/Internet || die
}
src_install() {
make install prefix=${D}/usr \
wmapps=${D}/etc/X11/applnk/Internet || die
rm -f ${D}/usr/bin/amsn
ln -s /usr/share/amsn/amsn ${D}/usr/bin/amsn
}
|