blob: 03bd1c94cccc1ae9668b9e9c50d7c90eadbc8a37 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/edb/edb-1.0.5.007.ebuild,v 1.2 2008/02/17 04:03:46 halcy0n Exp $
inherit enlightenment flag-o-matic
DESCRIPTION="Enlightenment Data Base"
HOMEPAGE="http://www.enlightenment.org/Libraries/Edb/"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86
~x86-fbsd"
IUSE="gtk ncurses"
DEPEND="gtk? ( =x11-libs/gtk+-1* )
ncurses? ( sys-libs/ncurses )"
src_compile() {
export MY_ECONF="
--enable-compat185
--enable-dump185
$(use_enable gtk)
$(use_enable ncurses)
"
use ppc && filter-lfs-flags
enlightenment_src_compile
}
|