blob: 033ee1a443479ef9d7082d4beee0961ff3f7bd9d (
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
|
# Copyright 1999-2005 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.0.5.ebuild,v 1.1 2005/06/13 19:35:02 chainsaw Exp $
inherit toolchain-funcs
MY_P="${P/xchat-/}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Sysinfo plugin for X-Chat."
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
HOMEPAGE="http://dev.gentoo.org/~chainsaw/xsys/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="bmp xmms buttons"
DEPEND=">=net-irc/xchat-2.4.0
bmp? ( media-plugins/bmp-infopipe )
xmms? ( media-plugins/xmms-infopipe )"
src_unpack() {
unpack ${A}
sed -i -e "s:-O2 -Wall:${CFLAGS} -Wall:" ${S}/Makefile
if use buttons; then
sed -i -e "s:#BUTTON:BUTTON:" ${S}/Makefile
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"
dodoc ChangeLog README || die "dodoc failed"
}
|