blob: c8953308759523b319cc16e301c31a73b9a7c3d8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-recode/irssi-recode-1.5.ebuild,v 1.3 2004/06/24 23:06:17 agriffis Exp $
IRSSI="0.8.6"
DESCRIPTION="A third party character set converting module for the Irssi IRC client"
SRC_URI="http://irssi.org/files/irssi-${IRSSI}.tar.bz2"
HOMEPAGE="http://lefort.be.eu.org/irssi/"
DEPEND=">=net-irc/irssi-${IRSSI}
>=dev-libs/glib-2.0"
RDEPEND=""
#Irssi needs to be compiled with glib-2
SLOT="0"
LICENSE="BSD"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64"
IUSE=""
src_compile() {
touch ${WORKDIR}/irssi-${IRSSI}/config.h &&
gcc -g -shared -DHAVE_CONFIG_H -I${WORKDIR}/irssi-${IRSSI} -I${WORKDIR}/irssi-${IRSSI}/src \
-I${WORKDIR}/irssi-${IRSSI}/src/core -I${WORKDIR}/irssi-${IRSSI}/src/fe-common/core \
`pkg-config --cflags glib-2.0` -o ${T}/librecode.so ${FILESDIR}/recode.c || die
}
src_install() {
insinto /usr/lib/irssi/modules
doins ${T}/librecode.so
}
pkg_postinst() {
einfo ""
einfo "Type /load recode in Irssi to load this module."
einfo "See ${FILESDIR}/recode.c for more information."
einfo ""
}
|