diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-04-21 09:29:48 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-04-21 09:29:48 +0000 |
commit | d8ec0b2b57f8edbeb54e46ad14881e8f09f1a090 (patch) | |
tree | 0deab3064f9d0edfc6f1a04b6570e02ab11974ea /app-text | |
parent | Version bump wrt #316479 by Lev Panov. (diff) | |
download | gentoo-2-d8ec0b2b57f8edbeb54e46ad14881e8f09f1a090.tar.gz gentoo-2-d8ec0b2b57f8edbeb54e46ad14881e8f09f1a090.tar.bz2 gentoo-2-d8ec0b2b57f8edbeb54e46ad14881e8f09f1a090.zip |
Version bump wrt #314465 by Tim Harder.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/apvlv/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/apvlv/apvlv-0.0.9.6.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-text/apvlv/ChangeLog b/app-text/apvlv/ChangeLog index e6be9a45897f..e211694db3b0 100644 --- a/app-text/apvlv/ChangeLog +++ b/app-text/apvlv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/apvlv # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/ChangeLog,v 1.1 2010/03/27 16:00:15 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/ChangeLog,v 1.2 2010/04/21 09:29:48 ssuominen Exp $ + +*apvlv-0.0.9.6 (21 Apr 2010) + + 21 Apr 2010; Samuli Suominen <ssuominen@gentoo.org> +apvlv-0.0.9.6.ebuild: + Version bump wrt #314465 by Tim Harder. *apvlv-0.0.9.4 (27 Mar 2010) diff --git a/app-text/apvlv/apvlv-0.0.9.6.ebuild b/app-text/apvlv/apvlv-0.0.9.6.ebuild new file mode 100644 index 000000000000..9d5fa5f73c2c --- /dev/null +++ b/app-text/apvlv/apvlv-0.0.9.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/apvlv-0.0.9.6.ebuild,v 1.1 2010/04/21 09:29:48 ssuominen Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="Alf's PDF Viewer Like Vim" +HOMEPAGE="http://code.google.com/p/apvlv/" +SRC_URI="http://apvlv.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug djvu" + +RDEPEND=">=x11-libs/gtk+-2.4:2 + >=app-text/poppler-0.12.3-r3[cairo] + djvu? ( app-text/djvu )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf \ + $(use_enable debug) \ + --disable-dependency-tracking \ + --with-sysconfdir=/etc/${PN} \ + --with-docdir=/usr/share/doc/${PF} \ + --with-mandir=/usr/share/man \ + $(use_with djvu) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS README THANKS TODO + newicon icons/pdf.png ${PN}.png + make_desktop_entry ${PN} "Alf's PDF Viewer Like Vim" ${PN} "Office;Viewer" +} |