summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-09-03 09:29:47 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-09-03 09:29:47 +0000
commite503a98df1fc99c66c0506d993ae8729cb2864d4 (patch)
tree080131690cce8122639696b56b282212bafd304c /x11-misc
parentmerge most 2.4 arches (diff)
downloadhistorical-e503a98df1fc99c66c0506d993ae8729cb2864d4.tar.gz
historical-e503a98df1fc99c66c0506d993ae8729cb2864d4.tar.bz2
historical-e503a98df1fc99c66c0506d993ae8729cb2864d4.zip
Version bump, see bug #144719.
Package-Manager: portage-2.1.1_rc1-r2
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/qcomicbook/ChangeLog9
-rw-r--r--x11-misc/qcomicbook/files/digest-qcomicbook-0.3.23
-rw-r--r--x11-misc/qcomicbook/qcomicbook-0.3.2.ebuild39
3 files changed, 50 insertions, 1 deletions
diff --git a/x11-misc/qcomicbook/ChangeLog b/x11-misc/qcomicbook/ChangeLog
index 6cdec25fb913..8bf2e90da27b 100644
--- a/x11-misc/qcomicbook/ChangeLog
+++ b/x11-misc/qcomicbook/ChangeLog
@@ -1,6 +1,13 @@
# 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.10 2006/07/01 19:58:39 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/qcomicbook/ChangeLog,v 1.11 2006/09/03 09:29:47 nelchael Exp $
+
+*qcomicbook-0.3.2 (03 Sep 2006)
+
+ 03 Sep 2006; Krzysiek Pawlik <nelchael@gentoo.org>
+ -qcomicbook-0.2.5.ebuild, -qcomicbook-0.2.7.ebuild,
+ +qcomicbook-0.3.2.ebuild:
+ Version bump, see bug #144719.
*qcomicbook-0.2.7 (01 Jul 2006)
diff --git a/x11-misc/qcomicbook/files/digest-qcomicbook-0.3.2 b/x11-misc/qcomicbook/files/digest-qcomicbook-0.3.2
new file mode 100644
index 000000000000..8d92b95cc120
--- /dev/null
+++ b/x11-misc/qcomicbook/files/digest-qcomicbook-0.3.2
@@ -0,0 +1,3 @@
+MD5 ab191878d0694c77c4e5dd1d22f3d14c qcomicbook-0.3.2.tar.gz 394110
+RMD160 e1ed5145b96de4a558e92fb49201f772b5e2963f qcomicbook-0.3.2.tar.gz 394110
+SHA256 f6ed187c821b576054c743bc33fa938fec31cc8f56063287d81350245b33adec qcomicbook-0.3.2.tar.gz 394110
diff --git a/x11-misc/qcomicbook/qcomicbook-0.3.2.ebuild b/x11-misc/qcomicbook/qcomicbook-0.3.2.ebuild
new file mode 100644
index 000000000000..ea835a2a2245
--- /dev/null
+++ b/x11-misc/qcomicbook/qcomicbook-0.3.2.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.2.ebuild,v 1.1 2006/09/03 09:29:47 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
+}