diff options
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xchm/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xchm/files/digest-xchm-0.8.10 | 2 | ||||
-rw-r--r-- | x11-misc/xchm/xchm-0.8.10.ebuild | 32 |
3 files changed, 36 insertions, 2 deletions
diff --git a/x11-misc/xchm/Manifest b/x11-misc/xchm/Manifest index ad51041aedb1..c724a40f5af8 100644 --- a/x11-misc/xchm/Manifest +++ b/x11-misc/xchm/Manifest @@ -1,8 +1,8 @@ -MD5 79e99c3912d23ca34b60acbcd06ac4a8 ChangeLog 1693 +MD5 6ad14572b5e1300111445f5d4fa18b53 ChangeLog 1810 MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173 MD5 779dcaae5a0492eb1a7c5e2c5906705a xchm-0.8.8.ebuild 750 MD5 fe15bf25a358404a8c9a1d57725ef246 xchm-0.8.9.ebuild 751 -MD5 fe15bf25a358404a8c9a1d57725ef246 xchm-0.8.10.ebuild 751 +MD5 1d317938f71ae2b300481cf3b7139eb7 xchm-0.8.10.ebuild 752 MD5 5ee492158141f80646afc8c0a3238c9e files/digest-xchm-0.8.8 127 MD5 d6a4344f519d6b0d970a7e25393a9bb5 files/digest-xchm-0.8.9 127 MD5 32e2005be89f7bbb274d456f48f32112 files/digest-xchm-0.8.10 129 diff --git a/x11-misc/xchm/files/digest-xchm-0.8.10 b/x11-misc/xchm/files/digest-xchm-0.8.10 new file mode 100644 index 000000000000..5e3354170e28 --- /dev/null +++ b/x11-misc/xchm/files/digest-xchm-0.8.10 @@ -0,0 +1,2 @@ +MD5 ab1666d1112e3c2fd98ce0517a038ad3 xchm-0.8.10.tar.gz 118834 +MD5 bc97fbb792a3d4bb06c0854f96f558e7 xchm-0.8.10-doc.tar.gz 73304 diff --git a/x11-misc/xchm/xchm-0.8.10.ebuild b/x11-misc/xchm/xchm-0.8.10.ebuild new file mode 100644 index 000000000000..03d4fc86e965 --- /dev/null +++ b/x11-misc/xchm/xchm-0.8.10.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 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.10.ebuild,v 1.1 2004/01/06 14:08:21 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 +} |