blob: 4d793c982c4b82b9f43ef0cf3dd5484f1431010d (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/amsn/amsn-0.94.ebuild,v 1.9 2005/09/15 23:25:46 agriffis Exp $
S="${WORKDIR}/${P/./_}"
DESCRIPTION="Alvaro's Messenger client for MSN"
SRC_URI="mirror://sourceforge/${PN}/${P/./_}.tar.gz"
HOMEPAGE="http://amsn.sourceforge.net"
IUSE="gnome kde imlib xmms"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 hppa ppc ~sparc x86"
DEPEND=">=dev-lang/tcl-8.3
>=dev-lang/tk-8.3
imlib? ( media-libs/imlib )"
RDEPEND="${DEPEND}
dev-tcltk/tls
media-gfx/imagemagick
xmms? ( media-plugins/xmms-infopipe )"
src_compile() {
if use imlib
then
einfo "Compiling the freedesktop notification plugin"
cd ${S}/plugins/traydock
econf || die
make || die
fi
}
src_install() {
dodir /usr/share/amsn/
cp -pPR ${S}/* ${D}/usr/share/amsn/
# Remove all CVS extra stuff
# not here in this version
# find ${D} -type d -name CVS -exec rm -rf {} \;
if use gnome
then
dodir /usr/share/applications
cp ${D}/usr/share/amsn/amsn.desktop ${D}/usr/share/applications
einfo "Installing GNOME Icons in /usr/share/pixmaps"
dodir /usr/share/pixmaps
cp -pPR ${S}/icons/32x32/* ${D}/usr/share/pixmaps/
fi
if use kde
then
dodir /usr/share/applnk/Internet
cp ${D}/usr/share/amsn/amsn.desktop ${D}/usr/share/applnk/Internet/
einfo "Installing KDE Icons in default theme"
dodir /usr/share/pixmaps
cp -pPR ${S}/icons/32x32/* ${D}/usr/share/pixmaps/
fi
if use imlib
then
einfo "Installing the freedesktop notification plugin"
dodir /usr/lib/amsn/plugins/traydock
mv ${D}/usr/share/amsn/plugins/traydock/libtray.so ${D}/usr/lib/amsn/plugins/traydock/
rm -rf ${D}/usr/share/amsn/plugins/traydock/
ln -s ../../../lib/amsn/plugins/traydock/ ${D}/usr/share/amsn/plugins/
else
rm -rf ${D}/usr/share/amsn/plugins/traydock
fi
rm -rf ${D}/usr/share/amsn/plugins/winflash
rm -rf ${D}/usr/share/amsn/plugins/QuickTimeTcl3.1
rm -rf ${D}/usr/share/amsn/plugins/applescript
rm -rf ${D}/usr/share/amsn/plugins/tclCarbonNotification
rm -rf ${D}/usr/share/amsn/plugins/tclAE2.0
rm -rf ${D}/usr/share/amsn/utils/
dodir /usr/bin/
ln -s ../share/amsn/amsn ${D}/usr/bin/amsn
cd ${D}/usr/share/amsn
dodoc TODO README FAQ CREDITS HELP
rm -f TODO
}
pkg_postinst() {
if use xmms
then
einfo "For XMMS use in amsn, make sure the xmms-infopipe plugin is enabled."
fi
}
|