View Raw Ebuild
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
[ "${PV}" = 9999 ] && inherit git-r3 autotools
DESCRIPTION="Edje Theme Editor - a theme graphical editor"
HOMEPAGE="https://git.enlightenment.org/dimmus/eflete.git/"
EGIT_REPO_URI="https://git.enlightenment.org/dimmus/eflete.git"
S="${WORKDIR}/${P/_/-}"
LICENSE="BSD-2"
[ "${PV}" = 9999 ] || KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="doc nls static-libs"
RDEPEND=">=dev-libs/efl-1.18.0"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS NEWS README )
src_prepare() {
#eapply -p0 "${FILESDIR}/enventor_eo_prefix_fix.patch"
eapply_user
[ ${PV} = 9999 ] && eautoreconf
}
src_configure() {
local config=(
$(use_enable nls)
$(use_enable static-libs static)
)
econf "${config[@]}"
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}