summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-09-09 19:21:13 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-09-09 19:21:13 +0000
commit0475cb2a147140f8ba0466d2af370c8612501a51 (patch)
tree2425014168a23ba847549571d412fb9797b22344 /app-misc
parentInitial version (diff)
downloadhistorical-0475cb2a147140f8ba0466d2af370c8612501a51.tar.gz
historical-0475cb2a147140f8ba0466d2af370c8612501a51.tar.bz2
historical-0475cb2a147140f8ba0466d2af370c8612501a51.zip
Initial version
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/xchm/Manifest5
-rw-r--r--app-misc/xchm/files/digest-xchm-0.7.12
-rw-r--r--app-misc/xchm/xchm-0.7.1.ebuild31
3 files changed, 35 insertions, 3 deletions
diff --git a/app-misc/xchm/Manifest b/app-misc/xchm/Manifest
index 8c6c145b7772..97e4e39b3124 100644
--- a/app-misc/xchm/Manifest
+++ b/app-misc/xchm/Manifest
@@ -1,4 +1,3 @@
-MD5 5b1395c7c050c5545c5903fa154e29b7 xchm-0.8.ebuild 539
-MD5 3015fd0ba027af567ce62237b3219dfd xchm-0.7.1.ebuild 614
-MD5 ceffbd4a5b99707ef35c47ad1297febf files/digest-xchm-0.8 60
+MD5 ac5a92725772f463e389cca1fa721ca5 ChangeLog 393
+MD5 c3a6a14cf2995274515bd08583ce0e42 xchm-0.7.1.ebuild 702
MD5 4a744582ba8f1bdd4ef921f65b5a2ea0 files/digest-xchm-0.7.1 127
diff --git a/app-misc/xchm/files/digest-xchm-0.7.1 b/app-misc/xchm/files/digest-xchm-0.7.1
new file mode 100644
index 000000000000..a8588740634e
--- /dev/null
+++ b/app-misc/xchm/files/digest-xchm-0.7.1
@@ -0,0 +1,2 @@
+MD5 3d588dfa7840c150a7b2dc8d418066ee xchm-0.7.1.tar.gz 102545
+MD5 ec65212e637cbc2fe9e8fda8d7a99b19 xchm-0.7.1-doc.tar.gz 57172
diff --git a/app-misc/xchm/xchm-0.7.1.ebuild b/app-misc/xchm/xchm-0.7.1.ebuild
new file mode 100644
index 000000000000..c0d7fb7c3d16
--- /dev/null
+++ b/app-misc/xchm/xchm-0.7.1.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.7.1.ebuild,v 1.1 2003/09/09 19:21:06 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"
+
+IUSE="doc"
+DEPEND=">=dev-libs/chmlib-0.31
+ >=x11-libs/wxGTK-2.4.0"
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ einstall || die
+ dodoc COPYING AUTHORS README NEWS
+
+ if [ "`use doc`" ]; then
+ cd ${S}"-doc"
+ dohtml html/*
+ fi
+}