diff options
author | Matthieu Sozeau <mattam@gentoo.org> | 2004-08-18 11:42:58 +0000 |
---|---|---|
committer | Matthieu Sozeau <mattam@gentoo.org> | 2004-08-18 11:42:58 +0000 |
commit | 4f5e896159da242092377fe6ae670afba725dbdf (patch) | |
tree | 24a1630986c59d01bd3edf0c85be20b723c2e9d3 | |
parent | Bump sys-apps/qingy to version 0.5.1. Wipe out older ebuilds... (Manifest rec... (diff) | |
download | gentoo-2-4f5e896159da242092377fe6ae670afba725dbdf.tar.gz gentoo-2-4f5e896159da242092377fe6ae670afba725dbdf.tar.bz2 gentoo-2-4f5e896159da242092377fe6ae670afba725dbdf.zip |
Version bump, fixes bug #59861
-rw-r--r-- | net-misc/hsc/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/hsc/Manifest | 6 | ||||
-rw-r--r-- | net-misc/hsc/files/digest-hsc-0.935 | 1 | ||||
-rw-r--r-- | net-misc/hsc/hsc-0.935.ebuild | 32 |
4 files changed, 44 insertions, 3 deletions
diff --git a/net-misc/hsc/ChangeLog b/net-misc/hsc/ChangeLog index d82bc162226d..55b13eeb5e79 100644 --- a/net-misc/hsc/ChangeLog +++ b/net-misc/hsc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/hsc # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/ChangeLog,v 1.6 2004/07/01 21:08:26 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/ChangeLog,v 1.7 2004/08/18 11:42:58 mattam Exp $ + +*hsc-0.935 (18 Aug 2004) + + 18 Aug 2004; Matthieu Sozeau <mattam@gentoo.org> hsc-0.935.ebuild: + Add hsc-0.935, thanks to Daniel Armyr <daniel.armyr@home.se> for the ebuild + (bug #59861) 01 Jul 2004; Jon Hood <squinky86@gentoo.org> hsc-0.929.ebuild, hsc-0.931.ebuild: diff --git a/net-misc/hsc/Manifest b/net-misc/hsc/Manifest index 938ee9320b0a..a3d7cc604fe4 100644 --- a/net-misc/hsc/Manifest +++ b/net-misc/hsc/Manifest @@ -1,7 +1,9 @@ -MD5 42afc1fef96833749eb9ce47a2be0463 hsc-0.931.ebuild 950 -MD5 8a797f96c4781cd941f39c627e4dd518 hsc-0.929.ebuild 948 MD5 cc37bab9708ffdebabf23205a6877906 ChangeLog 1051 +MD5 8a797f96c4781cd941f39c627e4dd518 hsc-0.929.ebuild 948 +MD5 42afc1fef96833749eb9ce47a2be0463 hsc-0.931.ebuild 950 MD5 8b350f19c06fcabf1053b0421b7c3f5a metadata.xml 155 +MD5 0f64f224977f5771b3c33e16a1ca9e16 hsc-0.935.ebuild 789 +MD5 fe32a6823ac1404e688790987990ebb0 files/digest-hsc-0.935 62 MD5 13a8398dc37427ed00147e630652fb0e files/Makefile.hsc-0.929.patch.gz 629 MD5 216b1a2fbc023fbb42ba08e5a33571e9 files/Makefile.hsc-0.931.patch.bz2 791 MD5 91d17721a179d561b59ff20245d03077 files/digest-hsc-0.929 62 diff --git a/net-misc/hsc/files/digest-hsc-0.935 b/net-misc/hsc/files/digest-hsc-0.935 new file mode 100644 index 000000000000..6f690fb74637 --- /dev/null +++ b/net-misc/hsc/files/digest-hsc-0.935 @@ -0,0 +1 @@ +MD5 38ae47c361456dca298c31a040ccbcc5 hsc-0.935.tar.bz2 338091 diff --git a/net-misc/hsc/hsc-0.935.ebuild b/net-misc/hsc/hsc-0.935.ebuild new file mode 100644 index 000000000000..d7c9bf5fcccf --- /dev/null +++ b/net-misc/hsc/hsc-0.935.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/hsc-0.935.ebuild,v 1.1 2004/08/18 11:42:58 mattam Exp $ + +DESCRIPTION="An HTML preprocessor using ML syntax" +HOMEPAGE="http://www.linguistik.uni-erlangen.de/~msbethke/software.html" +SRC_URI="http://www.linguistik.uni-erlangen.de/~msbethke/binaries/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="virtual/libc" + +src_compile() { + make || die +} + +src_install() { + dodir /usr/bin + dodir /usr/lib + dodir /usr/share + #This makefile uses INSTDIR instead of DESTDIR + make INSTDIR=${D}/usr/ install || die +} + +pkg_postinst() { + einfo Documentation and examples for HSC are available in + einfo /usr/share/doc/${P}/ +} |