DESCRIPTION="A slim GTK-based image browser" HOMEPAGE="http://developer.berlios.de/projects/gimmage/" SRC_URI="mirror://gentoo/${P}.tar.gz http://download.berlios.de/gimmage/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~ppc ~amd64" IUSE="debug" DEPEND="dev-cpp/gtkmm net-misc/curl sys-apps/file sys-devel/gettext" #RDEPEND=${DEPEND} the same as DEPEND src_compile() { if use debug; then einfo "Enabling debugging" ./configure \ --prefix=/usr \ --eanble-debug || die "./configure failed" else ./configure --prefix=/usr || die "./configure failed" fi emake || die "emake failed" } src_install() { einstall || die "einstall failed" }