diff options
author | Alex Alexander <wired@gentoo.org> | 2011-09-09 07:35:17 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2011-09-09 07:35:17 +0000 |
commit | f7f974f2ff7c24dfb540cb9b1a50f7b5b3ca750d (patch) | |
tree | 3e11c3d2fac80de8e515a30d184d6f778ef7ef46 /app-text | |
parent | version bump (diff) | |
download | gentoo-2-f7f974f2ff7c24dfb540cb9b1a50f7b5b3ca750d.tar.gz gentoo-2-f7f974f2ff7c24dfb540cb9b1a50f7b5b3ca750d.tar.bz2 gentoo-2-f7f974f2ff7c24dfb540cb9b1a50f7b5b3ca750d.zip |
version bump, bug #379215
(Portage version: 2.2.0_alpha54/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/zathura/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/zathura/zathura-0.0.8.4.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/app-text/zathura/ChangeLog b/app-text/zathura/ChangeLog index a6bd3540171a..f3bc69157617 100644 --- a/app-text/zathura/ChangeLog +++ b/app-text/zathura/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/zathura # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/ChangeLog,v 1.17 2011/05/26 14:32:53 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/ChangeLog,v 1.18 2011/09/09 07:35:17 wired Exp $ + +*zathura-0.0.8.4 (09 Sep 2011) + + 09 Sep 2011; Alex Alexander <wired@gentoo.org> +zathura-0.0.8.4.ebuild: + version bump, bug #379215 26 May 2011; Michael Weber <xmw@gentoo.org> zathura-0.0.8.3.ebuild: added ~arm keyword (bug 368757) diff --git a/app-text/zathura/zathura-0.0.8.4.ebuild b/app-text/zathura/zathura-0.0.8.4.ebuild new file mode 100644 index 000000000000..89c61d8b738c --- /dev/null +++ b/app-text/zathura/zathura-0.0.8.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/zathura-0.0.8.4.ebuild,v 1.1 2011/09/09 07:35:17 wired Exp $ + +EAPI=4 +inherit savedconfig toolchain-funcs eutils + +DESCRIPTION="A highly customizable and functional PDF viewer based on poppler and GTK+" +HOMEPAGE="http://zathura.pwmt.org/" +SRC_URI="http://pwmt.org/download/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND=">=x11-libs/cairo-1.8.8 + >=dev-libs/glib-2.22.4:2 + >=x11-libs/gtk+-2.18.6:2 + >=app-text/poppler-0.12.3[cairo]" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS=( README ) + +src_prepare() { + restore_config config.def.h +} + +src_compile() { + tc-export CC + emake SFLAGS="" +} + +src_install() { + default + save_config config.def.h + + doman zathura.1 + domenu zathura.desktop +} |