# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="4" inherit eutils autotools-utils git-2 DESCRIPTION="Unagi Compositing Manager" HOMEPAGE="http://projects.mini-dweeb.org/projects/unagi" SRC_URI="" EGIT_REPO_URI="git://rcs-git.duckcorp.org/projects/unagi/unagi.git" LICENSE="GPL-3" SLOT="0" KEYWORDS="" IUSE="debug doc" RDEPEND=" >=x11-libs/libxcb-1.8 x11-libs/xcb-util dev-libs/confuse >=x11-proto/xcb-proto-1.6 >=dev-libs/libxdg-basedir-1.0.0 x11-proto/xproto dev-libs/libev" DEPEND=" ${RDEPEND} doc? ( app-doc/doxygen sys-devel/autoconf-archive ) dev-util/pkgconfig" DOCS=( AUTHORS BUGS NEWS README THANKS ) AUTOTOOLS_AUTORECONF=1 AUTOTOOLS_IN_SOURCE_BUILD=1 PATCHES=( ) src_configure() { local myeconfargs=( $(use_enable debug) $(use_enable doc doxygen-doc) # $(use_enable doc doxygen-man) $(use_enable doc doxygen-html) ) autotools-utils_src_configure } src_install() { use doc && HTML_DOCS=( "${AUTOTOOLS_BUILD_DIR}/doc/api/html/" ) autotools-utils_src_install }