blob: 4fb97a931ec2c0aa7c1811ccb6e6650f917c9f9e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/libtomoe-gtk/libtomoe-gtk-0.6.0.ebuild,v 1.1 2007/07/07 05:34:18 matsuu Exp $
MY_P="tomoe-gtk-${PV}"
DESCRIPTION="Tomoe GTK+ interface widget library"
HOMEPAGE="http://tomoe.sourceforge.jp/"
SRC_URI="mirror://sourceforge/tomoe/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND=">=app-i18n/tomoe-0.6.0
>=x11-libs/gtk+-2.4.0
>=gnome-extra/gucharmap-1.4.0
doc? ( dev-util/gtk-doc )"
# python? ( >=dev-lang/pygtk-2 )
S="${WORKDIR}/${MY_P}"
src_compile() {
econf $(use_enable doc gtk-doc) || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|