diff options
-rw-r--r-- | media-gfx/wkhtmltopdf/ChangeLog | 6 | ||||
-rw-r--r-- | media-gfx/wkhtmltopdf/wkhtmltopdf-0.10.0_rc2.ebuild | 48 | ||||
-rw-r--r-- | media-gfx/wkhtmltopdf/wkhtmltopdf-0.11.0_rc1.ebuild | 44 |
3 files changed, 5 insertions, 93 deletions
diff --git a/media-gfx/wkhtmltopdf/ChangeLog b/media-gfx/wkhtmltopdf/ChangeLog index 749b0dac399f..061f2789c6f0 100644 --- a/media-gfx/wkhtmltopdf/ChangeLog +++ b/media-gfx/wkhtmltopdf/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/wkhtmltopdf # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/wkhtmltopdf/ChangeLog,v 1.5 2015/01/20 22:29:52 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/wkhtmltopdf/ChangeLog,v 1.6 2015/01/20 22:32:55 radhermit Exp $ + + 20 Jan 2015; Tim Harder <radhermit@gentoo.org> + -wkhtmltopdf-0.10.0_rc2.ebuild, -wkhtmltopdf-0.11.0_rc1.ebuild: + Remove old. *wkhtmltopdf-0.12.2.1 (20 Jan 2015) diff --git a/media-gfx/wkhtmltopdf/wkhtmltopdf-0.10.0_rc2.ebuild b/media-gfx/wkhtmltopdf/wkhtmltopdf-0.10.0_rc2.ebuild deleted file mode 100644 index cca35013fdf9..000000000000 --- a/media-gfx/wkhtmltopdf/wkhtmltopdf-0.10.0_rc2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/wkhtmltopdf/wkhtmltopdf-0.10.0_rc2.ebuild,v 1.2 2013/03/02 21:41:29 hwoarang Exp $ - -EAPI=4 - -inherit qt4-r2 multilib - -DESCRIPTION="Convert html to pdf (and various image formats) using webkit" -HOMEPAGE="http://code.google.com/p/wkhtmltopdf/" -SRC_URI="http://wkhtmltopdf.googlecode.com/files/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples" - -RDEPEND="dev-qt/qtgui:4 - dev-qt/qtwebkit:4 - dev-qt/qtcore:4 - dev-qt/qtsvg:4 - dev-qt/qtxmlpatterns:4" -DEPEND="${RDEPEND}" - -# Tests pull data from websites and require a -# special patched version of qt so many fail -RESTRICT="test" - -src_prepare() { - sed -i -e "s:\(INSTALLBASE/\)lib:\1$(get_libdir):" src/lib/lib.pro || die -} - -src_configure() { - eqmake4 INSTALLBASE="${D}"/usr -} - -src_test() { - ./scripts/test.sh || die "Tests failed" -} - -src_install() { - default - - if use examples ; then - docinto examples - dodoc examples/* - fi -} diff --git a/media-gfx/wkhtmltopdf/wkhtmltopdf-0.11.0_rc1.ebuild b/media-gfx/wkhtmltopdf/wkhtmltopdf-0.11.0_rc1.ebuild deleted file mode 100644 index 9220f0709738..000000000000 --- a/media-gfx/wkhtmltopdf/wkhtmltopdf-0.11.0_rc1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/wkhtmltopdf/wkhtmltopdf-0.11.0_rc1.ebuild,v 1.2 2013/03/02 21:41:29 hwoarang Exp $ - -EAPI="4" - -inherit qt4-r2 multilib - -DESCRIPTION="Convert html to pdf (and various image formats) using webkit" -HOMEPAGE="http://code.google.com/p/wkhtmltopdf/" -SRC_URI="http://wkhtmltopdf.googlecode.com/files/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples" - -RDEPEND="dev-qt/qtgui:4 - dev-qt/qtwebkit:4 - dev-qt/qtcore:4 - dev-qt/qtsvg:4 - dev-qt/qtxmlpatterns:4" -DEPEND="${RDEPEND}" - -# Tests pull data from websites and require a -# special patched version of qt so many fail -RESTRICT="test" - -src_prepare() { - sed -i -e "s:\(INSTALLBASE/\)lib:\1$(get_libdir):" src/lib/lib.pro || die -} - -src_configure() { - eqmake4 INSTALLBASE="${D}"/usr -} - -src_test() { - ./scripts/test.sh || die "tests failed" -} - -src_install() { - default - use examples && dodoc -r examples -} |