blob: e389359bdae1d8f41e3cc7646a17cde8d1cb4e02 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-xsys/xchat-xsys-2.2.0-r1.ebuild,v 1.4 2008/04/13 01:02:35 chainsaw Exp $
inherit toolchain-funcs eutils
MY_P="${P/xchat-/}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Sysinfo plugin for X-Chat."
SRC_URI="http://dev.gentoo.org/~chainsaw/xsys/download/${MY_P}.tar.bz2 mirror://gentoo/${MY_P}.tar.bz2"
HOMEPAGE="http://dev.gentoo.org/~chainsaw/xsys/"
IUSE="audacious"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86"
RDEPEND="|| (
>=net-irc/xchat-2.4.0
>=net-irc/xchat-gnome-0.4
)
sys-apps/pciutils
audacious? ( >=media-sound/audacious-1.4.0 )"
DEPEND="${RDEPEND}
audacious? ( dev-util/pkgconfig )"
src_unpack() {
unpack ${A}
cd "${S}"
if ! useq audacious; then
epatch "${FILESDIR}/${PV}-no-audacious.patch"
fi
}
src_compile() {
emake -j1 CC="$(tc-getCC)" || die "Compile failed"
}
src_install() {
exeinto /usr/$(get_libdir)/xchat/plugins
doexe xsys-${PV}.so || die "doexe failed"
exeinto /usr/$(get_libdir)/xchat-gnome/plugins
doexe xsys-${PV}.so || die "doexe failed"
dodoc ChangeLog README || die "dodoc failed"
}
|