summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Marlowe <mattm@gentoo.org>2011-06-07 00:35:25 +0000
committerMatthew Marlowe <mattm@gentoo.org>2011-06-07 00:35:25 +0000
commitfb36b6e05d20bc00bfba710c8a3078e7270134cc (patch)
tree8ff90c7c1985068d4ddad3a7d811d7cfd76fa443
parentAdd USE=zlib support and handle cross-compiling #362941. (diff)
downloadgentoo-2-fb36b6e05d20bc00bfba710c8a3078e7270134cc.tar.gz
gentoo-2-fb36b6e05d20bc00bfba710c8a3078e7270134cc.tar.bz2
gentoo-2-fb36b6e05d20bc00bfba710c8a3078e7270134cc.zip
Fixes for bug #367629
(Portage version: 2.1.9.50/cvs/Linux x86_64)
-rw-r--r--media-gfx/cutycapt/ChangeLog8
-rw-r--r--media-gfx/cutycapt/cutycapt-0_p20110502-r2.ebuild31
2 files changed, 38 insertions, 1 deletions
diff --git a/media-gfx/cutycapt/ChangeLog b/media-gfx/cutycapt/ChangeLog
index 59195a77d5c7..43a779c96f08 100644
--- a/media-gfx/cutycapt/ChangeLog
+++ b/media-gfx/cutycapt/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-gfx/cutycapt
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/cutycapt/ChangeLog,v 1.2 2011/05/03 06:47:20 mattm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/cutycapt/ChangeLog,v 1.3 2011/06/07 00:35:25 mattm Exp $
+
+*cutycapt-0_p20110502-r2 (07 Jun 2011)
+
+ 07 Jun 2011; <matt@gentoo.org> +cutycapt-0_p20110502-r2.ebuild:
+ Fixes for bug #367629
+ Thanks to radhermit@gentoo.org for reporting
*cutycapt-0_p20110502-r1 (03 May 2011)
diff --git a/media-gfx/cutycapt/cutycapt-0_p20110502-r2.ebuild b/media-gfx/cutycapt/cutycapt-0_p20110502-r2.ebuild
new file mode 100644
index 000000000000..8d5d40f582be
--- /dev/null
+++ b/media-gfx/cutycapt/cutycapt-0_p20110502-r2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/cutycapt/cutycapt-0_p20110502-r2.ebuild,v 1.1 2011/06/07 00:35:25 mattm Exp $
+
+EAPI=4
+inherit qt4-r2
+
+DESCRIPTION="Qt WebKit Web Page Rendering Capture Utility"
+HOMEPAGE="http://cutycapt.sourceforge.net/"
+SRC_URI="http://dev.gentoo.org/~mattm/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND="x11-libs/qt-gui x11-libs/qt-webkit x11-libs/qt-core x11-libs/qt-svg"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ eqmake4 CutyCapt.pro
+}
+
+src_install() {
+ dobin CutyCapt
+}
+
+pkg_postinst() {
+ einfo "You cannot use CutyCapt without an X server, but you"
+ einfo "can use e.g. Xvfb as light-weight server."
+ einfo "See ${HOMEPAGE} for usage."
+}