blob: f2ca8ad0e388752de456f998ce2d78e57dd0d87b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-latex/pidgin-latex-1.0.ebuild,v 1.7 2008/01/07 23:11:30 tester Exp $
inherit flag-o-matic multilib eutils
DESCRIPTION="Pidgin plugin that renders latex formulae"
HOMEPAGE="http://sourceforge.net/projects/pidgin-latex"
SRC_URI="mirror://sourceforge/pidgin-latex/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="net-im/pidgin
>=x11-libs/gtk+-2"
RDEPEND="${DEPEND}
virtual/tetex
media-gfx/imagemagick"
S=${WORKDIR}/${PN}
pkg_setup() {
if ! built_with_use net-im/pidgin gtk; then
eerror "You need to compile net-im/pidgin with USE=gtk"
die "Missing gtk USE flag on net-im/pidgin"
fi
}
src_compile()
{
append-flags -fPIC
emake || die "emake failed"
}
src_install()
{
make LIB_INSTALL_DIR="${D}/usr/$(get_libdir)/pidgin" install PREFIX="${D}/usr" \
|| die "make install failed"
dodoc README CHANGELOG TODO
}
|