summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-10-14 14:56:42 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-10-14 14:56:42 +0000
commit344c4dd26675c6353dd1b03b431c09aa307dcacb (patch)
tree98a1e7fbc9dc732d8bcac78b72171eaa8f46942b /app-misc/xchm
parentVersion bumped. (diff)
downloadgentoo-2-344c4dd26675c6353dd1b03b431c09aa307dcacb.tar.gz
gentoo-2-344c4dd26675c6353dd1b03b431c09aa307dcacb.tar.bz2
gentoo-2-344c4dd26675c6353dd1b03b431c09aa307dcacb.zip
Version bumped.
Diffstat (limited to 'app-misc/xchm')
-rw-r--r--app-misc/xchm/ChangeLog7
-rw-r--r--app-misc/xchm/Manifest4
-rw-r--r--app-misc/xchm/files/digest-xchm-0.8.62
-rw-r--r--app-misc/xchm/xchm-0.8.6.ebuild31
4 files changed, 41 insertions, 3 deletions
diff --git a/app-misc/xchm/ChangeLog b/app-misc/xchm/ChangeLog
index b424c698b1d4..a761571416a2 100644
--- a/app-misc/xchm/ChangeLog
+++ b/app-misc/xchm/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/xchm
# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/xchm/ChangeLog,v 1.7 2003/10/08 21:00:01 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/xchm/ChangeLog,v 1.8 2003/10/14 14:56:38 mholzer Exp $
+
+*xchm-0.8.6 (15 Oct 2003)
+
+ 15 Oct 2003; Martin Holzer <mholzer@gentoo.org> xchm-0.8.6.ebuild:
+ Version bumped.
*xchm-0.8.5 (09 Oct 2003)
diff --git a/app-misc/xchm/Manifest b/app-misc/xchm/Manifest
index b2cca76b7839..7127d2401c4f 100644
--- a/app-misc/xchm/Manifest
+++ b/app-misc/xchm/Manifest
@@ -1,10 +1,10 @@
MD5 1b5bb80f3e573e0fefe9e303d2f93085 xchm-0.8.5.ebuild 732
MD5 b129ed050c2fbba65df93f3610ee5c24 xchm-0.7.1.ebuild 698
MD5 0e7711100005ca675286084ea7e89e33 xchm-0.8.ebuild 696
-MD5 3f3a436ed23e31c7e85fb422fe58c1de ChangeLog 1063
+MD5 ab4ca98be10f254701cab547b97befd6 ChangeLog 1178
MD5 a5f0f0e4d6710e00abcc48714f329c57 xchm-0.8.3.ebuild 730
MD5 47d931d685463ba922a6b5dd1345a6bf xchm-0.8.4.ebuild 732
-MD5 1b5bb80f3e573e0fefe9e303d2f93085 xchm-0.8.6.ebuild 732
+MD5 dd5c42c3ec77340c2bd90176cad9a593 xchm-0.8.6.ebuild 732
MD5 26584a1580591452400d9bb636a461d5 files/digest-xchm-0.7.1 62
MD5 92b8f0416b73ae4aa95523e93586dbef files/digest-xchm-0.8 123
MD5 ff653a77c56925824fe8a2ea59618534 files/digest-xchm-0.8.3 127
diff --git a/app-misc/xchm/files/digest-xchm-0.8.6 b/app-misc/xchm/files/digest-xchm-0.8.6
new file mode 100644
index 000000000000..581ba5237d3f
--- /dev/null
+++ b/app-misc/xchm/files/digest-xchm-0.8.6
@@ -0,0 +1,2 @@
+MD5 6dc90f4ba8faa7d7f89c6c288d443640 xchm-0.8.6.tar.gz 114859
+MD5 d0285796f3230ebccafd40a91df3a9b6 xchm-0.8.6-doc.tar.gz 64439
diff --git a/app-misc/xchm/xchm-0.8.6.ebuild b/app-misc/xchm/xchm-0.8.6.ebuild
new file mode 100644
index 000000000000..7d73d462d0d4
--- /dev/null
+++ b/app-misc/xchm/xchm-0.8.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/xchm/xchm-0.8.6.ebuild,v 1.1 2003/10/14 14:56:38 mholzer Exp $
+
+DESCRIPTION="Utility for viewing Microsoft .chm files."
+HOMEPAGE="http://xchm.sf.net"
+SRC_URI="mirror://sourceforge/xchm/${P}.tar.gz
+ doc? ( mirror://sourceforge/xchm/${P}-doc.tar.gz ) "
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+
+IUSE="doc"
+DEPEND=">=app-doc/chmlib-0.31
+ >=x11-libs/wxGTK-2.4.0"
+
+src_compile() {
+ econf || die "configure failed"
+ emake || die "make failed"
+}
+
+src_install() {
+ einstall || die
+ dodoc COPYING AUTHORS README
+
+ if [ "`use doc`" ]; then
+ cd ${S}"-doc"
+ dohtml html/*
+ fi
+}