summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-09-28 11:24:47 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-09-28 11:24:47 +0000
commitfe5e9d91fc6bee15cdf3fc9ab27fd2d1f220ead9 (patch)
treec05b760f10976487d74fc8e333481a2348fa0658 /x11-misc
parentAdd various fixes from upstream. (diff)
downloadgentoo-2-fe5e9d91fc6bee15cdf3fc9ab27fd2d1f220ead9.tar.gz
gentoo-2-fe5e9d91fc6bee15cdf3fc9ab27fd2d1f220ead9.tar.bz2
gentoo-2-fe5e9d91fc6bee15cdf3fc9ab27fd2d1f220ead9.zip
Version bump, see bug #149389.
(Portage version: 2.1.2_pre1-r4)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/qcomicbook/ChangeLog8
-rw-r--r--x11-misc/qcomicbook/files/digest-qcomicbook-0.3.33
-rw-r--r--x11-misc/qcomicbook/qcomicbook-0.3.3.ebuild39
3 files changed, 49 insertions, 1 deletions
diff --git a/x11-misc/qcomicbook/ChangeLog b/x11-misc/qcomicbook/ChangeLog
index 8bf2e90da27b..ec939453afb5 100644
--- a/x11-misc/qcomicbook/ChangeLog
+++ b/x11-misc/qcomicbook/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/qcomicbook
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/qcomicbook/ChangeLog,v 1.11 2006/09/03 09:29:47 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/qcomicbook/ChangeLog,v 1.12 2006/09/28 11:24:46 nelchael Exp $
+
+*qcomicbook-0.3.3 (28 Sep 2006)
+
+ 28 Sep 2006; Krzysiek Pawlik <nelchael@gentoo.org>
+ +qcomicbook-0.3.3.ebuild:
+ Version bump, see bug #149389.
*qcomicbook-0.3.2 (03 Sep 2006)
diff --git a/x11-misc/qcomicbook/files/digest-qcomicbook-0.3.3 b/x11-misc/qcomicbook/files/digest-qcomicbook-0.3.3
new file mode 100644
index 000000000000..6761023a403d
--- /dev/null
+++ b/x11-misc/qcomicbook/files/digest-qcomicbook-0.3.3
@@ -0,0 +1,3 @@
+MD5 a52b768ccca632a820094739e6aaec36 qcomicbook-0.3.3.tar.gz 394293
+RMD160 7378ed5cb7e68c87e196155387267d0d86962a2c qcomicbook-0.3.3.tar.gz 394293
+SHA256 70ff6742c064bce34dfb5657a4dc7fd5397a9628ba4682a40679e6332fbe3a5a qcomicbook-0.3.3.tar.gz 394293
diff --git a/x11-misc/qcomicbook/qcomicbook-0.3.3.ebuild b/x11-misc/qcomicbook/qcomicbook-0.3.3.ebuild
new file mode 100644
index 000000000000..14fc3c681671
--- /dev/null
+++ b/x11-misc/qcomicbook/qcomicbook-0.3.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/qcomicbook/qcomicbook-0.3.3.ebuild,v 1.1 2006/09/28 11:24:46 nelchael Exp $
+
+inherit eutils qt3
+
+DESCRIPTION="QComicBook is a viewer for comic book archives containing jpeg/png images."
+HOMEPAGE="http://linux.bydg.org/~yogin/"
+SRC_URI="http://linux.bydg.org/~yogin/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+IUSE=""
+
+DEPEND="$(qt_min_version 3.3)
+ media-libs/imlib2"
+
+RDEPEND="${DEPEND}
+ app-arch/unrar
+ !ppc? ( app-arch/rar )
+ app-arch/zip"
+
+src_compile() {
+ econf --with-Qt-dir=${QTDIR} || die "Configure failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+
+ # makes a pretty desktop icon and such
+ dodir /usr/share/pixmaps
+ cp icons/${PN}.png ${D}/usr/share/pixmaps
+ make_desktop_entry qcomicbook
+
+ dodoc README TODO ChangeLog AUTHORS
+}