summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2003-06-21 08:23:13 +0000
committerGeorge Shapovalov <george@gentoo.org>2003-06-21 08:23:13 +0000
commit0c6b4c5b2fc6350ec67ed5509beda92d55bfc7aa (patch)
treeb747dd593fd7c3b95bff741d5f341aeeadfed404 /net-misc/hsc
parentnew package: an HTML preprocessor using standard ML syntax. (diff)
downloadgentoo-2-0c6b4c5b2fc6350ec67ed5509beda92d55bfc7aa.tar.gz
gentoo-2-0c6b4c5b2fc6350ec67ed5509beda92d55bfc7aa.tar.bz2
gentoo-2-0c6b4c5b2fc6350ec67ed5509beda92d55bfc7aa.zip
new package: an HTML preprocessor using standard ML syntax.
Diffstat (limited to 'net-misc/hsc')
-rw-r--r--net-misc/hsc/ChangeLog19
-rw-r--r--net-misc/hsc/Manifest4
-rw-r--r--net-misc/hsc/files/Makefile.hsc-0.929.patch.gzbin0 -> 629 bytes
-rw-r--r--net-misc/hsc/files/digest-hsc-0.9291
-rw-r--r--net-misc/hsc/hsc-0.929.ebuild39
5 files changed, 62 insertions, 1 deletions
diff --git a/net-misc/hsc/ChangeLog b/net-misc/hsc/ChangeLog
new file mode 100644
index 000000000000..a2496b3dda46
--- /dev/null
+++ b/net-misc/hsc/ChangeLog
@@ -0,0 +1,19 @@
+# ChangeLog for <CATEGORY>/hsc
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/ChangeLog,v 1.1 2003/06/21 08:22:36 george Exp $
+
+*hsc-0.929 (20 Jun 2003)
+
+ 20 Jun 2003; George Shapovalov <george@gentoo.org> hsc-0.929.ebuild, files/Makefile.hsc-0.929.patch :
+ initial release (#18855)
+ HSC is an HTML preprocessor using standard ML syntax.
+ Ebuild submitted by Daniel Armyr
+
+ 24 04 2003; Daniel Armyr <daniel.armyr@home.se> hsc-0.929.ebuild,
+ Makefile.hsc-0.929.patch: Ebuild will now compile under any revision number.
+ Added installation of all examples refered to in the docs.
+
+ 06 04 2003; Daniel Armyr <daniel.armyr@home.se> hsc-0.929.ebuild,
+ Makefile.hsc-0.929.patch: Submitted the ebuild.
+
+
diff --git a/net-misc/hsc/Manifest b/net-misc/hsc/Manifest
index 7d22b30ccccf..ae32cbf6f045 100644
--- a/net-misc/hsc/Manifest
+++ b/net-misc/hsc/Manifest
@@ -1,2 +1,4 @@
-MD5 4c4648a863053eaa032182f27ef8c3e1 hsc-0.929.ebuild 1332
+MD5 34fa798dc13c71d4851f5d5b52a54dc2 hsc-0.929.ebuild 956
+MD5 537b3b2ac16d8673c7c02d87c6fb29d3 ChangeLog 787
+MD5 13a8398dc37427ed00147e630652fb0e files/Makefile.hsc-0.929.patch.gz 629
MD5 91d17721a179d561b59ff20245d03077 files/digest-hsc-0.929 62
diff --git a/net-misc/hsc/files/Makefile.hsc-0.929.patch.gz b/net-misc/hsc/files/Makefile.hsc-0.929.patch.gz
new file mode 100644
index 000000000000..af1cec733734
--- /dev/null
+++ b/net-misc/hsc/files/Makefile.hsc-0.929.patch.gz
Binary files differ
diff --git a/net-misc/hsc/files/digest-hsc-0.929 b/net-misc/hsc/files/digest-hsc-0.929
new file mode 100644
index 000000000000..500979e8e874
--- /dev/null
+++ b/net-misc/hsc/files/digest-hsc-0.929
@@ -0,0 +1 @@
+MD5 26ee1cd784e1a9581e52bebe8847b6b7 hsc-0.929.tar.bz2 328420
diff --git a/net-misc/hsc/hsc-0.929.ebuild b/net-misc/hsc/hsc-0.929.ebuild
new file mode 100644
index 000000000000..dc71ed354943
--- /dev/null
+++ b/net-misc/hsc/hsc-0.929.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/hsc-0.929.ebuild,v 1.1 2003/06/21 08:22:41 george 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/glibc"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ gzcat ${FILESDIR}/Makefile.${PF}.patch.gz|patch -p1 Makefile || die "patch failed"
+}
+
+src_compile() {
+ #The patch ensures this line works.
+ 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}/
+}