diff options
author | 2003-09-09 19:21:13 +0000 | |
---|---|---|
committer | 2003-09-09 19:21:13 +0000 | |
commit | 72d1393495ac850dd92bbe2a173bc8fc9f6a0704 (patch) | |
tree | 33010971c7c002bc774a113b5a7d1a73fa1339d4 /app-misc/xchm | |
parent | Initial version (diff) | |
download | gentoo-2-72d1393495ac850dd92bbe2a173bc8fc9f6a0704.tar.gz gentoo-2-72d1393495ac850dd92bbe2a173bc8fc9f6a0704.tar.bz2 gentoo-2-72d1393495ac850dd92bbe2a173bc8fc9f6a0704.zip |
Initial version
Diffstat (limited to 'app-misc/xchm')
-rw-r--r-- | app-misc/xchm/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/xchm/Manifest | 5 | ||||
-rw-r--r-- | app-misc/xchm/files/digest-xchm-0.7.1 | 2 | ||||
-rw-r--r-- | app-misc/xchm/xchm-0.7.1.ebuild | 31 |
4 files changed, 44 insertions, 3 deletions
diff --git a/app-misc/xchm/ChangeLog b/app-misc/xchm/ChangeLog new file mode 100644 index 000000000000..5ec34c6103cd --- /dev/null +++ b/app-misc/xchm/ChangeLog @@ -0,0 +1,9 @@ +# 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.1 2003/09/09 19:21:06 mholzer Exp $ + +*xchm-0.7.1 (09 Sep 2003) + + 09 Sep 2003; Martin Holzer <mholzer@gentoo.org> xchm-0.7.1.ebuild: + Adding initial ebuild. Submitted by Kevin Carlson <kcarlson@kevinga.com> + in #27940. 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 +} |