summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-06-01 19:17:47 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-06-01 19:17:47 +0000
commit4ab1c759dda0b8d9296acc7db2d61b1d61aebd03 (patch)
tree0c4e271c5968e56d93ef42dbd35c04f54736525e /x11-misc/xchm
parentVersion bumped. Closes 52226 (Manifest recommit) (diff)
downloadgentoo-2-4ab1c759dda0b8d9296acc7db2d61b1d61aebd03.tar.gz
gentoo-2-4ab1c759dda0b8d9296acc7db2d61b1d61aebd03.tar.bz2
gentoo-2-4ab1c759dda0b8d9296acc7db2d61b1d61aebd03.zip
Version bumped. Closes 52640
Diffstat (limited to 'x11-misc/xchm')
-rw-r--r--x11-misc/xchm/ChangeLog7
-rw-r--r--x11-misc/xchm/Manifest2
-rw-r--r--x11-misc/xchm/files/digest-xchm-0.9.12
-rw-r--r--x11-misc/xchm/xchm-0.9.1.ebuild31
4 files changed, 41 insertions, 1 deletions
diff --git a/x11-misc/xchm/ChangeLog b/x11-misc/xchm/ChangeLog
index ba23150fd699..d344b9dff8cc 100644
--- a/x11-misc/xchm/ChangeLog
+++ b/x11-misc/xchm/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/xchm
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/ChangeLog,v 1.11 2004/04/20 19:32:22 kugelfang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/ChangeLog,v 1.12 2004/06/01 19:17:47 mholzer Exp $
+
+*xchm-0.9.1 (01 Jun 2004)
+
+ 01 Jun 2004; Martin Holzer <mholzer@gentoo.org> xchm-0.9.1.ebuild:
+ Version bumped. Closes 52640
20 Apr 2004; Danny van Dyk <kugelfang@gentoo.org> xchm-0.9.ebuild:
marked ~amd64
diff --git a/x11-misc/xchm/Manifest b/x11-misc/xchm/Manifest
index 6c49ec16db7b..d4a46c5b020e 100644
--- a/x11-misc/xchm/Manifest
+++ b/x11-misc/xchm/Manifest
@@ -1,6 +1,8 @@
MD5 b92e7b14e8f6e493c7867df973ffc7e9 ChangeLog 2478
MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173
MD5 c60fd70cff34dc9eee1e10fe0b1e430c xchm-0.8.11.ebuild 751
+MD5 3572b90c70724addb5a70d75ade569f4 xchm-0.9.1.ebuild 738
MD5 2b0bc2c517cdd731250518c21942bee8 xchm-0.9.ebuild 757
MD5 926b95ad796ffd0ea5f19e186b6788a3 files/digest-xchm-0.8.11 129
MD5 0bc5e76feadc97a74eb061180b61e6f6 files/digest-xchm-0.9 123
+MD5 6e1aa39fbf69201afc471cc947cfe347 files/digest-xchm-0.9.1 127
diff --git a/x11-misc/xchm/files/digest-xchm-0.9.1 b/x11-misc/xchm/files/digest-xchm-0.9.1
new file mode 100644
index 000000000000..fed08f69dd7f
--- /dev/null
+++ b/x11-misc/xchm/files/digest-xchm-0.9.1
@@ -0,0 +1,2 @@
+MD5 5ba671e09e4c3ac46ffb5ce9d2c985eb xchm-0.9.1.tar.gz 317656
+MD5 30feeca034ffffb3c4398b68bb2cb015 xchm-0.9.1-doc.tar.gz 73618
diff --git a/x11-misc/xchm/xchm-0.9.1.ebuild b/x11-misc/xchm/xchm-0.9.1.ebuild
new file mode 100644
index 000000000000..3f0941530f67
--- /dev/null
+++ b/x11-misc/xchm/xchm-0.9.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/xchm-0.9.1.ebuild,v 1.1 2004/06/01 19:17:47 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 ~amd64"
+
+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
+}