Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 311989 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-11 / +16 lines)
Line  Link Here
0
-- tomoe-0.6.0.ebuild
0
++ tomoe-0.6.0.ebuild
Lines 2-7 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/app-i18n/tomoe/tomoe-0.6.0.ebuild,v 1.3 2008/09/23 16:35:42 matsuu Exp $
3
# $Header: /var/cvsroot/gentoo-x86/app-i18n/tomoe/tomoe-0.6.0.ebuild,v 1.3 2008/09/23 16:35:42 matsuu Exp $
4
4
5
EAPI=2
6
7
inherit autotools base eutils 
8
5
DESCRIPTION="Japanese handwriting recognition engine"
9
DESCRIPTION="Japanese handwriting recognition engine"
6
HOMEPAGE="http://tomoe.sourceforge.jp/"
10
HOMEPAGE="http://tomoe.sourceforge.jp/"
7
SRC_URI="mirror://sourceforge/tomoe/${P}.tar.gz"
11
SRC_URI="mirror://sourceforge/tomoe/${P}.tar.gz"
Lines 9-15 Link Here
9
LICENSE="LGPL-2.1"
13
LICENSE="LGPL-2.1"
10
SLOT="0"
14
SLOT="0"
11
KEYWORDS="~amd64 x86"
15
KEYWORDS="~amd64 x86"
12
IUSE="doc hyperestraier mysql ruby subversion"
16
IUSE="doc hyperestraier mysql ruby static-libs subversion"
13
17
14
RDEPEND=">=dev-libs/glib-2.4
18
RDEPEND=">=dev-libs/glib-2.4
15
	ruby? ( dev-ruby/ruby-glib2 )
19
	ruby? ( dev-ruby/ruby-glib2 )
Lines 28-43 Link Here
28
32
29
RESTRICT="test"
33
RESTRICT="test"
30
34
31
src_compile() {
35
DOCS=( "AUTHORS" "ChangeLog" "NEWS" "TODO" )
36
37
src_prepare() {
38
	epatch "${FILESDIR}"/${P}-ldflags.patch
39
	eautoreconf
40
}
41
42
src_configure() {
32
	econf \
43
	econf \
33
		$(use_with ruby) \
44
		$(use_with ruby) \
34
		$(use_enable doc gtk-doc) || die
45
		$(use_enable doc gtk-doc) \
46
		$(use_enable static-libs static)
35
#		$(use_with python) \
47
#		$(use_with python) \
36
	emake || die
37
}
38
39
src_install() {
40
	emake DESTDIR="${D}" install || die "make install failed"
41
42
	dodoc AUTHORS ChangeLog NEWS TODO
43
}
48
}

Return to bug 311989