blob: 2223c5d2bab29e8e571a13035d9e4aa1d15f72a4 (
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
|
# Copyright 1999-2008 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.5 2008/10/04 01:41:49 ranger Exp $
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/tetex app-text/ptex )"
DEPEND="${RDEPEND}
sys-devel/flex"
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
}
|