You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/elementary/elementary-1.9.3.ebuild

55 lines
1.3 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/elementary/elementary-1.9.3.ebuild,v 1.1 2014/04/17 14:58:37 tommy Exp $
EAPI=3
MY_P=${P/_/-}
if [[ "${PV}" == "9999" ]] ; then
EGIT_SUB_PROJECT="core"
EGIT_URI_APPEND="${PN}"
else
SRC_URI="http://download.enlightenment.org/rel/libs/${PN}/${MY_P}.tar.bz2"
EKEY_STATE="snap"
fi
inherit enlightenment
DESCRIPTION="Basic widget set, based on EFL for mobile touch-screen devices."
HOMEPAGE="http://trac.enlightenment.org/e/wiki/Elementary"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="debug examples fbcon quicklaunch sdl wayland X static-libs"
DEPEND="
>=dev-libs/efl-1.9.2[sdl?,png,wayland?,X?]
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_configure() {
MY_ECONF="
$(use_enable debug)
$(use_enable doc)
--disable-ecore-cocoa
--disable-ecore-psl1ght
--disable-ecore-win32
--disable-ecore-wince
--disable-elocation
--disable-emap
--disable-eweather
$(use_enable examples build-examples)
$(use_enable examples install-examples)
$(use_enable fbcon ecore-fb)
$(use_enable sdl ecore-sdl)
$(use_enable wayland ecore-wayland)
$(use_enable X ecore-x)
$(use_enable quicklaunch quick-launch)
"
enlightenment_src_configure
}