# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit autotools gnome2 DESCRIPTION="A simple image viewer widget for GTK" HOMEPAGE="http://trac.bjourne.webfactional.com/" SRC_URI="http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/${P}.tar.gz?format=raw -> ${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples" DEPEND="x11-libs/gtk+:2" RDEPEND="${DEPEND}" src_prepare() { gnome2_src_prepare eautoreconf || die "automake failed" } src_configure() { G2CONF="--disable-dependency-tracking --disable-libtool-lock" gnome2_src_configure } src_install() { DOCS="README" if use examples; then docinto examples dodoc tests/ex*.c || die "dodoc failed" fi gnome2_src_install }