blob: fda70a04fbcfb06929706b7ac95aeff000630fa8 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xindy/xindy-2.3.ebuild,v 1.10 2010/04/24 11:12:33 aballier Exp $
inherit eutils
DESCRIPTION="A Flexible Indexing System"
HOMEPAGE="http://www.xindy.org/"
SRC_URI="mirror://sourceforge/xindy/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc x86"
IUSE="doc"
RDEPEND="virtual/latex-base
>=dev-lisp/clisp-2.44.1-r1
|| ( dev-texlive/texlive-langcyrillic app-text/ptex )"
DEPEND="${RDEPEND}
sys-devel/flex"
src_unpack() {
unpack ${A}
cd "${S}"
has_version '>=dev-lisp/clisp-2.48' && epatch "${FILESDIR}/${P}-clisp-2.48.patch"
}
src_compile() {
local clisp_dir
clisp_dir=`clisp --version | grep "Installation directory:" | sed 's/Installation directory: //'`
econf \
$(use_enable doc docs) \
--enable-external-clisp --enable-clisp-dir=${clisp_dir}
VARTEXFONTS="${T}/fonts" emake -j1 || die "Make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog.Gour NEWS README
}
|