blob: 8a8427ee28ea87034117af5504c92bf7efe81edb (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/texmakerx/texmakerx-2.1.ebuild,v 1.3 2012/05/03 20:00:41 jdhore Exp $
EAPI=4
inherit base qt4-r2
DESCRIPTION="Fork of the LaTeX IDE TexMaker"
HOMEPAGE="http://texmakerx.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}/TexMakerX%202.1/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE=""
COMMON_DEPEND="
app-text/hunspell
app-text/poppler[qt4]
x11-libs/libX11
x11-libs/libXext
>=x11-libs/qt-gui-4.6.1:4
>=x11-libs/qt-core-4.6.1:4
>=x11-libs/qt-script-4.6.1:4
>=x11-libs/qt-test-4.6.1:4
>=x11-libs/qt-webkit-4.6.1:4"
RDEPEND="${COMMON_DEPEND}
virtual/latex-base
app-text/psutils
app-text/ghostscript-gpl
media-libs/netpbm"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
S="${WORKDIR}"/${P/-/}
PATCHES=( "${FILESDIR}/${P}-hunspell.patch" )
src_prepare() {
find hunspell -delete
sed 's:hunspell/hunspell:hunspell:g' -i *.h || die
qt4-r2_src_prepare
}
|