# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/epdfview/epdfview-0.1.7-r2.ebuild,v 1.4 2011/08/07 12:54:30 billie Exp $ EAPI=2 inherit autotools eutils gnome2 DESCRIPTION="Lightweight PDF viewer using Poppler and GTK+ libraries." HOMEPAGE="http://trac.emma-soft.com/epdfview/" SRC_URI="http://trac.emma-soft.com/epdfview/chrome/site/releases/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="cups nls test" RDEPEND=">=app-text/poppler-0.12.3-r3[cairo] >=x11-libs/gtk+-2.6:2 cups? ( >=net-print/cups-1.1 )" DEPEND="${RDEPEND} dev-util/pkgconfig nls? ( sys-devel/gettext ) test? ( dev-util/cppunit ) userland_GNU? ( >=sys-apps/findutils-4.4 )" pkg_setup() { G2CONF="--disable-dependency-tracking $(use_enable nls) $(use_with cups)" DOCS="AUTHORS NEWS README THANKS" } src_prepare() { sed -i \ -e 's:Icon=icon_epdfview-48:Icon=epdfview:' \ data/epdfview.desktop || die epatch "${FILESDIR}"/${PN}-0.1.7-mouse-scrolling.patch \ "${FILESDIR}"/${P}-poppler-changeset_r35{4,7}.patch eautoreconf gnome2_src_prepare } src_install() { gnome2_src_install local res for res in 24 32 48; do insinto /usr/share/icons/hicolor/${res}x${res}/apps newins data/icon_epdfview-${res}.png epdfview.png || die done }