40 lines
870 B
Bash
40 lines
870 B
Bash
|
# Copyright 1999-2012 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui/libyui-2.21.1.ebuild,v 1.3 2012/07/30 18:14:12 miska Exp $
|
||
|
|
||
|
EAPI=4
|
||
|
|
||
|
inherit autotools eutils cmake-utils
|
||
|
|
||
|
DESCRIPTION="UI abstraction library"
|
||
|
HOMEPAGE="https://github.com/libyui/libyui"
|
||
|
SRC_URI="https://github.com/libyui/libyui/archive/libyui/master/${PV}.tar.gz -> libyui-${PV}.tar.gz"
|
||
|
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
IUSE="qt4 ncurses gtk"
|
||
|
|
||
|
DEPEND=""
|
||
|
REQUIRED_USE="|| ( qt4 ncurses gtk )"
|
||
|
PDEPEND="
|
||
|
qt4? ( x11-libs/libyui-qt )
|
||
|
ncurses? ( x11-libs/libyui-ncurses )
|
||
|
gtk? ( x11-libs/libyui-gtk )
|
||
|
"
|
||
|
|
||
|
S=${WORKDIR}/${PN}-${PN}-master-${PV}
|
||
|
|
||
|
src_prepare() {
|
||
|
./bootstrap.sh
|
||
|
}
|
||
|
|
||
|
#src_configure() {
|
||
|
# econf --disable-static
|
||
|
#}
|
||
|
|
||
|
#src_install() {
|
||
|
# default
|
||
|
# find "${ED}" -name '*.la' -exec rm -f {} +
|
||
|
#}
|