diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-07-19 19:02:44 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-07-19 19:02:44 +0000 |
commit | 208fc39e796d52857b2dd0885af3ca813693cdcc (patch) | |
tree | 0f29be962e673c625caf0910a8064c62fe8cbadd /x11-misc | |
parent | handle portage ARCH vs kernel ARCH properly (Manifest recommit) (diff) | |
download | gentoo-2-208fc39e796d52857b2dd0885af3ca813693cdcc.tar.gz gentoo-2-208fc39e796d52857b2dd0885af3ca813693cdcc.tar.bz2 gentoo-2-208fc39e796d52857b2dd0885af3ca813693cdcc.zip |
Version bumped. Closes 57516
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xchm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xchm/Manifest | 10 | ||||
-rw-r--r-- | x11-misc/xchm/files/digest-xchm-0.9.2 | 2 | ||||
-rw-r--r-- | x11-misc/xchm/xchm-0.9.2.ebuild | 31 |
4 files changed, 45 insertions, 5 deletions
diff --git a/x11-misc/xchm/ChangeLog b/x11-misc/xchm/ChangeLog index d1e0a7f52109..8853391c806b 100644 --- a/x11-misc/xchm/ChangeLog +++ b/x11-misc/xchm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xchm # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/ChangeLog,v 1.15 2004/07/03 15:21:05 pyrania Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/ChangeLog,v 1.16 2004/07/19 19:02:43 mholzer Exp $ + +*xchm-0.9.2 (19 Jul 2004) + + 19 Jul 2004; Martin Holzer <mholzer@gentoo.org> xchm-0.9.2.ebuild: + Version bumped. Closes 57516 03 Jul 2004; <pyrania@gentoo.org> xchm-0.9.1.ebuild: Stable on x86. diff --git a/x11-misc/xchm/Manifest b/x11-misc/xchm/Manifest index 004a11f29ead..ee523831298e 100644 --- a/x11-misc/xchm/Manifest +++ b/x11-misc/xchm/Manifest @@ -1,8 +1,10 @@ -MD5 ab68cd3932d76dd77a719d63a8ad6c27 xchm-0.9.ebuild 739 MD5 5870427567b2fdd98ee2f525f8aaacee ChangeLog 2803 -MD5 cd04606e58b9d46c6281c39e6d87ec02 xchm-0.9.1.ebuild 720 -MD5 929d7d92fc3de6d180015cd2e58fc07a xchm-0.8.11.ebuild 735 MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173 +MD5 929d7d92fc3de6d180015cd2e58fc07a xchm-0.8.11.ebuild 735 +MD5 cd04606e58b9d46c6281c39e6d87ec02 xchm-0.9.1.ebuild 720 +MD5 cd04606e58b9d46c6281c39e6d87ec02 xchm-0.9.2.ebuild 720 +MD5 ab68cd3932d76dd77a719d63a8ad6c27 xchm-0.9.ebuild 739 +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 -MD5 926b95ad796ffd0ea5f19e186b6788a3 files/digest-xchm-0.8.11 129 +MD5 c2e0a2e988d83dceaba6b3206a73c9ee files/digest-xchm-0.9.2 127 diff --git a/x11-misc/xchm/files/digest-xchm-0.9.2 b/x11-misc/xchm/files/digest-xchm-0.9.2 new file mode 100644 index 000000000000..74928ab68f19 --- /dev/null +++ b/x11-misc/xchm/files/digest-xchm-0.9.2 @@ -0,0 +1,2 @@ +MD5 d212fbe55ca5600834b56e7dcdcb63b4 xchm-0.9.2.tar.gz 323743 +MD5 1c3beebfda2043edde18cf812d4673b1 xchm-0.9.2-doc.tar.gz 73616 diff --git a/x11-misc/xchm/xchm-0.9.2.ebuild b/x11-misc/xchm/xchm-0.9.2.ebuild new file mode 100644 index 000000000000..25cefcfd0c87 --- /dev/null +++ b/x11-misc/xchm/xchm-0.9.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/xchm-0.9.2.ebuild,v 1.1 2004/07/19 19:02:44 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 +} |