diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-10-02 14:07:29 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-10-02 14:07:29 +0000 |
commit | 1a78cfc480004612508bfa18b2c3a05742825909 (patch) | |
tree | 46edbbd69e295c435f3baccc9313e57b6300fcf0 /x11-misc/xchm/xchm-0.9.5.ebuild | |
parent | 65734 (Manifest recommit) (diff) | |
download | gentoo-2-1a78cfc480004612508bfa18b2c3a05742825909.tar.gz gentoo-2-1a78cfc480004612508bfa18b2c3a05742825909.tar.bz2 gentoo-2-1a78cfc480004612508bfa18b2c3a05742825909.zip |
New version out.
Diffstat (limited to 'x11-misc/xchm/xchm-0.9.5.ebuild')
-rw-r--r-- | x11-misc/xchm/xchm-0.9.5.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/x11-misc/xchm/xchm-0.9.5.ebuild b/x11-misc/xchm/xchm-0.9.5.ebuild new file mode 100644 index 000000000000..0df3beddb132 --- /dev/null +++ b/x11-misc/xchm/xchm-0.9.5.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.5.ebuild,v 1.1 2004/10/02 14:07:29 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 +} |