diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-08 21:00:06 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-08 21:00:06 +0000 |
commit | 3185cb95fd4130d349c56623dd566e797d0505c3 (patch) | |
tree | edb5b941d8194af2440a5b859bbb18c8a8d6ba2c /app-misc | |
parent | Version bumped. (diff) | |
download | gentoo-2-3185cb95fd4130d349c56623dd566e797d0505c3.tar.gz gentoo-2-3185cb95fd4130d349c56623dd566e797d0505c3.tar.bz2 gentoo-2-3185cb95fd4130d349c56623dd566e797d0505c3.zip |
Version bumped.
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/xchm/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/xchm/Manifest | 4 | ||||
-rw-r--r-- | app-misc/xchm/files/digest-xchm-0.8.5 | 2 | ||||
-rw-r--r-- | app-misc/xchm/xchm-0.8.5.ebuild | 31 |
4 files changed, 41 insertions, 3 deletions
diff --git a/app-misc/xchm/ChangeLog b/app-misc/xchm/ChangeLog index 9f7caee35068..b424c698b1d4 100644 --- a/app-misc/xchm/ChangeLog +++ b/app-misc/xchm/ChangeLog @@ -1,6 +1,11 @@ # 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.6 2003/10/07 18:10:54 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/xchm/ChangeLog,v 1.7 2003/10/08 21:00:01 mholzer Exp $ + +*xchm-0.8.5 (09 Oct 2003) + + 09 Oct 2003; Martin Holzer <mholzer@gentoo.org> xchm-0.8.5.ebuild: + Version bumped. *xchm-0.8.4 (08 Oct 2003) diff --git a/app-misc/xchm/Manifest b/app-misc/xchm/Manifest index d07bba67a330..6682dfc820a3 100644 --- a/app-misc/xchm/Manifest +++ b/app-misc/xchm/Manifest @@ -1,7 +1,7 @@ -MD5 47d931d685463ba922a6b5dd1345a6bf xchm-0.8.5.ebuild 732 +MD5 1b5bb80f3e573e0fefe9e303d2f93085 xchm-0.8.5.ebuild 732 MD5 b129ed050c2fbba65df93f3610ee5c24 xchm-0.7.1.ebuild 698 MD5 0e7711100005ca675286084ea7e89e33 xchm-0.8.ebuild 696 -MD5 cea406ea5c91902fcbfcf4e7ab5d4b8d ChangeLog 948 +MD5 3f3a436ed23e31c7e85fb422fe58c1de ChangeLog 1063 MD5 a5f0f0e4d6710e00abcc48714f329c57 xchm-0.8.3.ebuild 730 MD5 47d931d685463ba922a6b5dd1345a6bf xchm-0.8.4.ebuild 732 MD5 26584a1580591452400d9bb636a461d5 files/digest-xchm-0.7.1 62 diff --git a/app-misc/xchm/files/digest-xchm-0.8.5 b/app-misc/xchm/files/digest-xchm-0.8.5 new file mode 100644 index 000000000000..e5cb732f5c01 --- /dev/null +++ b/app-misc/xchm/files/digest-xchm-0.8.5 @@ -0,0 +1,2 @@ +MD5 a98ac9d616af8bd4a419689bc44c3278 xchm-0.8.5.tar.gz 114411 +MD5 79bf21e933acf4ef38f9f35a41f9eea9 xchm-0.8.5-doc.tar.gz 64367 diff --git a/app-misc/xchm/xchm-0.8.5.ebuild b/app-misc/xchm/xchm-0.8.5.ebuild new file mode 100644 index 000000000000..cd6c5b70b5a0 --- /dev/null +++ b/app-misc/xchm/xchm-0.8.5.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.8.5.ebuild,v 1.1 2003/10/08 21:00:01 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" + +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 +} |