# Copyright 1999-2008 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit autotools 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="examples" DEPEND="x11-libs/gtk+:2" RDEPEND="${DEPEND}" src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc README || die "dodoc failed" if use examples; then docinto examples dodoc tests/ex*.c || die "dodoc failed" fi }