summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Sozeau <mattam@gentoo.org>2005-09-22 10:11:32 +0000
committerMatthieu Sozeau <mattam@gentoo.org>2005-09-22 10:11:32 +0000
commitd5a1824b628e260bbb39c2a764cd8fb70a9ed73d (patch)
tree7d2d4af38f29959e4fb5e52e7f709a549eb3d415 /net-misc/hsc/hsc-0.999.ebuild
parentfix ChangeLog header (diff)
downloadhistorical-d5a1824b628e260bbb39c2a764cd8fb70a9ed73d.tar.gz
historical-d5a1824b628e260bbb39c2a764cd8fb70a9ed73d.tar.bz2
historical-d5a1824b628e260bbb39c2a764cd8fb70a9ed73d.zip
Add latest version, mark 935 stable on x86, remove unused version.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'net-misc/hsc/hsc-0.999.ebuild')
-rw-r--r--net-misc/hsc/hsc-0.999.ebuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/net-misc/hsc/hsc-0.999.ebuild b/net-misc/hsc/hsc-0.999.ebuild
new file mode 100644
index 000000000000..e58962bcc421
--- /dev/null
+++ b/net-misc/hsc/hsc-0.999.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hsc/hsc-0.999.ebuild,v 1.1 2005/09/22 10:11:32 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 ~ppc ~amd64"
+
+IUSE=""
+
+DEPEND="virtual/libc"
+
+src_compile() {
+ econf
+ emake -j1 || die
+}
+
+src_install() {
+ dodir /usr/bin
+ dodir /usr/share/doc/hsc
+ dodir /usr/share/hsc
+
+
+ make BINDIR=${D}/usr/bin DATADIR=${D}/usr/share/hsc \
+ prefix=${D}/usr docdir=${D}/usr/share/doc/hsc datadir=${D}/usr/share/hsc install || die
+}
+
+pkg_postinst() {
+ einfo Documentation and examples for HSC are available in
+ einfo /usr/share/doc/${P}/
+}