blob: c0930911187c2b2355ee780016f48dab2a217efb (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/kbibtex/kbibtex-0.3.ebuild,v 1.2 2011/06/03 02:57:57 mr_bones_ Exp $
EAPI=4
inherit versionator kde4-base
DESCRIPTION="BibTeX editor for KDE to edit bibliographies used with LaTeX"
HOMEPAGE="http://home.gna.org/kbibtex/"
SRC_URI="http://download.gna.org/${PN}/$(get_version_component_range 1-2)/${P/_/-}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="virtual/tex-base
dev-libs/libxml2
dev-libs/libxslt
"
RDEPEND="${DEPEND}
dev-tex/bibtex2html"
S=${WORKDIR}/${P/_/-}
|