diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-01-24 19:08:03 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-01-24 19:08:03 +0000 |
commit | cbec9dabf3449994aabe31623cb37c3e4d3e6132 (patch) | |
tree | fdbf0c446e3824e929ccef63c776b00198fef5c5 /x11-misc/xchm | |
parent | Version bumped. (diff) | |
download | gentoo-2-cbec9dabf3449994aabe31623cb37c3e4d3e6132.tar.gz gentoo-2-cbec9dabf3449994aabe31623cb37c3e4d3e6132.tar.bz2 gentoo-2-cbec9dabf3449994aabe31623cb37c3e4d3e6132.zip |
Version bumped.
Diffstat (limited to 'x11-misc/xchm')
-rw-r--r-- | x11-misc/xchm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xchm/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xchm/files/digest-xchm-0.8.11 | 2 | ||||
-rw-r--r-- | x11-misc/xchm/xchm-0.8.11.ebuild | 32 |
4 files changed, 42 insertions, 3 deletions
diff --git a/x11-misc/xchm/ChangeLog b/x11-misc/xchm/ChangeLog index 9807d97e00dc..9990a4885e4f 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.6 2004/01/24 18:58:40 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/ChangeLog,v 1.7 2004/01/24 19:07:31 mholzer Exp $ + +*xchm-0.8.11 (24 Jan 2004) + + 24 Jan 2004; Martin Holzer <mholzer@gentoo.org> xchm-0.8.11.ebuild: + Version bumped. 24 Jan 2004; Martin Holzer <mholzer@gentoo.org> xchm-0.8.10.ebuild: x86 stable diff --git a/x11-misc/xchm/Manifest b/x11-misc/xchm/Manifest index 4fa8b254822d..2c68575f4a7f 100644 --- a/x11-misc/xchm/Manifest +++ b/x11-misc/xchm/Manifest @@ -1,6 +1,6 @@ -MD5 813bd328a18cec53568719b3def84e40 ChangeLog 1985 +MD5 b322dc08df4b97d83d98a492f51fa6ac ChangeLog 2102 MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173 -MD5 543db9dbbf1d939a35d82e7a6f9b3ac0 xchm-0.8.11.ebuild 752 +MD5 e0085acfbaf49aa2d885a0018691b8b8 xchm-0.8.11.ebuild 752 MD5 efc6b0faf9f6a68f0592ed8b90f83bd1 xchm-0.8.9.ebuild 750 MD5 cdb790a02339eca83b069af07e3c599a xchm-0.8.10.ebuild 751 MD5 926b95ad796ffd0ea5f19e186b6788a3 files/digest-xchm-0.8.11 129 diff --git a/x11-misc/xchm/files/digest-xchm-0.8.11 b/x11-misc/xchm/files/digest-xchm-0.8.11 new file mode 100644 index 000000000000..b414ad4506ad --- /dev/null +++ b/x11-misc/xchm/files/digest-xchm-0.8.11 @@ -0,0 +1,2 @@ +MD5 02e37bde39ccf6560db45812ab59987c xchm-0.8.11.tar.gz 223047 +MD5 c7991dfd015a1bba3f03a34092514ebc xchm-0.8.11-doc.tar.gz 73285 diff --git a/x11-misc/xchm/xchm-0.8.11.ebuild b/x11-misc/xchm/xchm-0.8.11.ebuild new file mode 100644 index 000000000000..7b768b269b8b --- /dev/null +++ b/x11-misc/xchm/xchm-0.8.11.ebuild @@ -0,0 +1,32 @@ +# 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.8.11.ebuild,v 1.1 2004/01/24 19:07:31 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 )" +RESTRICT="nomirror" + +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 +} |