diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-12-24 15:26:06 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-12-24 15:26:06 +0000 |
commit | fa80e7a12a8f5afb6cfb446f6291b8704e1a48f4 (patch) | |
tree | e20f2ea60e58b6f2fbc1edc324caf5591eebdebf /x11-misc | |
parent | x86 stable (Manifest recommit) (diff) | |
download | gentoo-2-fa80e7a12a8f5afb6cfb446f6291b8704e1a48f4.tar.gz gentoo-2-fa80e7a12a8f5afb6cfb446f6291b8704e1a48f4.tar.bz2 gentoo-2-fa80e7a12a8f5afb6cfb446f6291b8704e1a48f4.zip |
Version bumped.
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xchm/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xchm/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/xchm/files/digest-xchm-0.9.7 | 2 | ||||
-rw-r--r-- | x11-misc/xchm/xchm-0.9.7.ebuild | 31 |
4 files changed, 41 insertions, 1 deletions
diff --git a/x11-misc/xchm/ChangeLog b/x11-misc/xchm/ChangeLog index d4491effe9f1..43f50e7a8659 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.22 2004/12/24 15:19:47 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xchm/ChangeLog,v 1.23 2004/12/24 15:26:06 mholzer Exp $ + +*xchm-0.9.7 (24 Dec 2004) + + 24 Dec 2004; Martin Holzer <mholzer@gentoo.org> +xchm-0.9.7.ebuild: + Version bumped. *xchm-0.9.5 (24 Dec 2004) diff --git a/x11-misc/xchm/Manifest b/x11-misc/xchm/Manifest index 164c84afc67f..70146e36c013 100644 --- a/x11-misc/xchm/Manifest +++ b/x11-misc/xchm/Manifest @@ -1,10 +1,12 @@ MD5 a9260c7e4cace33b064877d2341fe053 ChangeLog 4291 MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173 MD5 a3ba0c0172a6b3d458aaffe7101f94f1 xchm-0.8.11.ebuild 734 +MD5 d00cf5472099e7ece76d567c10e8ccab xchm-0.9.7.ebuild 721 MD5 ca9b88e0182622b3aa87a6e27276a592 xchm-0.9.3.ebuild 719 MD5 4717b17faad09f11051170cbf868c3dc xchm-0.9.4.ebuild 720 MD5 9336b8f89426311bc16b2735e8667223 xchm-0.9.5.ebuild 720 MD5 d00cf5472099e7ece76d567c10e8ccab xchm-0.9.6.ebuild 721 +MD5 f5917ff42f223e8448dc6317dfc869fd files/digest-xchm-0.9.7 127 MD5 926b95ad796ffd0ea5f19e186b6788a3 files/digest-xchm-0.8.11 129 MD5 3eba16532da12e7abefdc862ccbdf2ac files/digest-xchm-0.9.3 127 MD5 711979e8bb85e70238b0fb1c95d1ebc0 files/digest-xchm-0.9.4 127 diff --git a/x11-misc/xchm/files/digest-xchm-0.9.7 b/x11-misc/xchm/files/digest-xchm-0.9.7 new file mode 100644 index 000000000000..c1800cc12332 --- /dev/null +++ b/x11-misc/xchm/files/digest-xchm-0.9.7 @@ -0,0 +1,2 @@ +MD5 7481fceb17035e5dd10b9547bd56ee98 xchm-0.9.7.tar.gz 323675 +MD5 71e49b6a88f08b78b7866240f7889b3d xchm-0.9.7-doc.tar.gz 76540 diff --git a/x11-misc/xchm/xchm-0.9.7.ebuild b/x11-misc/xchm/xchm-0.9.7.ebuild new file mode 100644 index 000000000000..40c85fbf97d4 --- /dev/null +++ b/x11-misc/xchm/xchm-0.9.7.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.7.ebuild,v 1.1 2004/12/24 15:26:06 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 +} |