blob: 12f6dae51726200ce28849cbe36f0c79e7b3ec18 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/purple-plugin_pack/purple-plugin_pack-1.0.ebuild,v 1.6 2007/08/28 14:54:47 nixnut Exp $
MY_P="$PN-${PV}"
DESCRIPTION="A package with many different plugins for pidgin and libpurple"
HOMEPAGE="http://plugins.guifications.org"
SRC_URI="http://downloads.guifications.org/plugins/Plugin%20Pack/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ~ppc x86"
PLUGINS="autorejoin awaynotify bashorg bit blistops dice difftopic eight_ball
flip gRIM groupmsg irssi lastseen listhandler mystatusbox nicksaid oldlogger
plonkers sepandtab showoffline simfix slashexec sslinfo xchat-chats"
IUSE="talkfilters debug"
DEPEND="net-im/pidgin
talkfilters? ( app-text/talkfilters )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_compile() {
# XMMS Remote is disabled due to XMMS being masked
#
# Disabled due to non-working status:
# buddytime
# chronic
# Stocker (http://plugins.guifications.org/trac/wiki/stocker)
#
# Disabled due to being included in current pidgin release:
# Auto Accept
# Auto Reply
# Buddy Note
# convcolors
# Marker Line
# New Line
# Offline Message
local plugins=${PLUGINS}
use talkfilers && plugins="${plugins},talkfilters"
econf --with-plugins="${plugins}" $(use_enable debug) || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO VERSION
}
|