blob: 3f0237fb8e255eef03eb7c30c15311cae867d0e0 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/winefish/winefish-1.3.3.ebuild,v 1.5 2007/01/28 06:13:23 genone Exp $
inherit eutils fdo-mime
MY_PV=${PV/%[[:alpha:]]/}
DESCRIPTION="LaTeX editor based on Bluefish"
HOMEPAGE="http://winefish.berlios.de/"
SRC_URI="http://download.berlios.de/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="spell"
DEPEND=">=x11-libs/gtk+-2.4
>=dev-libs/libpcre-6.3
spell? ( virtual/aspell-dict )"
#S=${WORKDIR}/${PN}-${MY_PV}
src_compile() {
econf --disable-update-databases || die
emake || die
}
src_install() {
make install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS CHANGES README ROADMAP THANKS TODO
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
elog "You need to emerge a TeX distribution to gain winfish's full capacity"
}
|