summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-10-07 18:10:59 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-10-07 18:10:59 +0000
commit354effa29af665ef303e9b65163205b1cfb6840c (patch)
treebada0a3774920fcb4642b8afdd487590b94849ea /app-misc
parentfix new project crash bug (bug 24855) (diff)
downloadgentoo-2-354effa29af665ef303e9b65163205b1cfb6840c.tar.gz
gentoo-2-354effa29af665ef303e9b65163205b1cfb6840c.tar.bz2
gentoo-2-354effa29af665ef303e9b65163205b1cfb6840c.zip
Version bumped.
Diffstat (limited to 'app-misc')
-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.42
-rw-r--r--app-misc/xchm/xchm-0.8.4.ebuild31
4 files changed, 42 insertions, 2 deletions
diff --git a/app-misc/xchm/ChangeLog b/app-misc/xchm/ChangeLog
index 4db6910a8ecc..9f7caee35068 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.5 2003/10/07 12:34:07 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/xchm/ChangeLog,v 1.6 2003/10/07 18:10:54 mholzer Exp $
+
+*xchm-0.8.4 (08 Oct 2003)
+
+ 08 Oct 2003; Martin Holzer <mholzer@gentoo.org> xchm-0.8.4.ebuild:
+ Version bumped.
07 Oct 2003; David Holm <dholm@gentoo.org> xchm-0.8.3.ebuild:
Added to ~ppc.
diff --git a/app-misc/xchm/Manifest b/app-misc/xchm/Manifest
index b4fbd0fa5a0c..0ac4495f8e64 100644
--- a/app-misc/xchm/Manifest
+++ b/app-misc/xchm/Manifest
@@ -1,7 +1,9 @@
-MD5 af9a55fdf7bcb05c9e3b9f6d5973600c ChangeLog 831
MD5 b129ed050c2fbba65df93f3610ee5c24 xchm-0.7.1.ebuild 698
MD5 0e7711100005ca675286084ea7e89e33 xchm-0.8.ebuild 696
+MD5 cea406ea5c91902fcbfcf4e7ab5d4b8d ChangeLog 948
MD5 a5f0f0e4d6710e00abcc48714f329c57 xchm-0.8.3.ebuild 730
+MD5 47d931d685463ba922a6b5dd1345a6bf xchm-0.8.4.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
+MD5 e87b5a3b230b0c38c3c6b244bdfc813b files/digest-xchm-0.8.4 127
diff --git a/app-misc/xchm/files/digest-xchm-0.8.4 b/app-misc/xchm/files/digest-xchm-0.8.4
new file mode 100644
index 000000000000..6520125f2a4b
--- /dev/null
+++ b/app-misc/xchm/files/digest-xchm-0.8.4
@@ -0,0 +1,2 @@
+MD5 faf1ab179c2d2a29f4432fff1067d3b3 xchm-0.8.4.tar.gz 113260
+MD5 596437f3186724060dd0a822a806821d xchm-0.8.4-doc.tar.gz 63839
diff --git a/app-misc/xchm/xchm-0.8.4.ebuild b/app-misc/xchm/xchm-0.8.4.ebuild
new file mode 100644
index 000000000000..d40515220b96
--- /dev/null
+++ b/app-misc/xchm/xchm-0.8.4.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.4.ebuild,v 1.1 2003/10/07 18:10:54 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
+}