diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-misc/hsc | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-misc/hsc')
-rw-r--r-- | net-misc/hsc/Manifest | 1 | ||||
-rw-r--r-- | net-misc/hsc/files/hsc-1.0b-cflags.patch | 45 | ||||
-rw-r--r-- | net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch | 12 | ||||
-rw-r--r-- | net-misc/hsc/files/hsc-1.0b-nostrip.patch | 18 | ||||
-rw-r--r-- | net-misc/hsc/files/hsc-1.0b-parmake.patch | 13 | ||||
-rw-r--r-- | net-misc/hsc/hsc-1.0b.ebuild | 33 | ||||
-rw-r--r-- | net-misc/hsc/metadata.xml | 5 |
7 files changed, 127 insertions, 0 deletions
diff --git a/net-misc/hsc/Manifest b/net-misc/hsc/Manifest new file mode 100644 index 000000000000..c4f8c63a29b8 --- /dev/null +++ b/net-misc/hsc/Manifest @@ -0,0 +1 @@ +DIST hsc-1.0b.tar.bz2 623192 RMD160 aaf00b9bd92a669e7363d28edfb338cd9fdd7a96 SHA1 fd951d2007e93c897e055de7af0dae2e15215df0 SHA256 4c3e4b7a96851d8a8cd4c0ce7135c9730f2fb63b0ae3555183b0285d04b38a81 diff --git a/net-misc/hsc/files/hsc-1.0b-cflags.patch b/net-misc/hsc/files/hsc-1.0b-cflags.patch new file mode 100644 index 000000000000..1459d5ad049a --- /dev/null +++ b/net-misc/hsc/files/hsc-1.0b-cflags.patch @@ -0,0 +1,45 @@ +Index: hsc-1.0/configure.in +=================================================================== +--- hsc-1.0.orig/configure.in ++++ hsc-1.0/configure.in +@@ -46,12 +46,12 @@ case $host in + ;; + esac + echo "Configuring for $SYSTEM" +-CFLAGS="-Wall -pedantic" ++CFLAGS="$CFLAGS -Wall -pedantic" + + AC_ARG_ENABLE(debug, + AS_HELP_STRING([--enable-debug],[Compile programs with GDB support and debugging output]), + [CFLAGS="$CFLAGS -ggdb -g3 -DDEBUG"; REGEXDEBUG="regex/printchar.o"], +- CFLAGS="$CFLAGS -fomit-frame-pointer -Os") ++ CFLAGS="$CFLAGS") + AC_ARG_ENABLE(efence, + AS_HELP_STRING([--enable-efence],[Link with efence library for memory debugging]), + CFLAGS="$CFLAGS -lefence") +Index: hsc-1.0/src/regex/Makefile.in +=================================================================== +--- hsc-1.0.orig/src/regex/Makefile.in ++++ hsc-1.0/src/regex/Makefile.in +@@ -29,7 +29,7 @@ version = 0.12 + CPPFLAGS = + + # Likewise, you can override CFLAGS to optimize, use -Wall, etc. +-CFLAGS = -g ++#CFLAGS = -g + + # Ditto for LDFLAGS and LOADLIBES. + LDFLAGS = +Index: hsc-1.0/src/Makefile.in +=================================================================== +--- hsc-1.0.orig/src/Makefile.in ++++ hsc-1.0/src/Makefile.in +@@ -27,7 +27,7 @@ DATADIR=@datadir@ + + CFLAGS = @CFLAGS@ -D@SYSTEM@ -I. + COMP = @CC@ -o $@ $(CFLAGS) +-LINK = @CC@ -o $@ $(CFLAGS) ++LINK = @CC@ -o $@ $(CFLAGS) $(LDFLAGS) + LINKLIBS= @LINKLIBS@ + MOVE = mv + COPY = cp diff --git a/net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch b/net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch new file mode 100644 index 000000000000..5c10efc0f9a2 --- /dev/null +++ b/net-misc/hsc/files/hsc-1.0b-glibc-2.10.patch @@ -0,0 +1,12 @@ +diff -ur hsc-1.0.orig/src/hsclib/css.c hsc-1.0/src/hsclib/css.c +--- hsc-1.0.orig/src/hsclib/css.c 2006-04-03 17:18:37.000000000 +0300 ++++ hsc-1.0/src/hsclib/css.c 2009-08-09 20:19:51.000000000 +0300 +@@ -129,7 +129,7 @@ + #ifdef isblank + #undef isblank + #endif +-static int isblank(int c) ++int isblank(int c) + { + return ((c == ' ') || (c == '\t')); + } diff --git a/net-misc/hsc/files/hsc-1.0b-nostrip.patch b/net-misc/hsc/files/hsc-1.0b-nostrip.patch new file mode 100644 index 000000000000..af4cc947d8fd --- /dev/null +++ b/net-misc/hsc/files/hsc-1.0b-nostrip.patch @@ -0,0 +1,18 @@ +Index: hsc-1.0/src/Makefile.in +=================================================================== +--- hsc-1.0.orig/src/Makefile.in ++++ hsc-1.0/src/Makefile.in +@@ -87,10 +87,9 @@ rex: + # installation + #-------------------------------------------------------------------- + install : all +- strip $(EXE_ALL) +- $(INSTALL) -Ds hsc/hsc $(BINDIR)/hsc +- $(INSTALL) -Ds hsctools/hscdepp $(BINDIR)/hscdepp +- $(INSTALL) -Ds hsctools/hscpitt $(BINDIR)/hscpitt ++ $(INSTALL) -D hsc/hsc $(BINDIR)/hsc ++ $(INSTALL) -D hsctools/hscdepp $(BINDIR)/hscdepp ++ $(INSTALL) -D hsctools/hscpitt $(BINDIR)/hscpitt + + #-------------------------------------------------------------------- + # cleanup - remove all objects and executables diff --git a/net-misc/hsc/files/hsc-1.0b-parmake.patch b/net-misc/hsc/files/hsc-1.0b-parmake.patch new file mode 100644 index 000000000000..8c93d32f4888 --- /dev/null +++ b/net-misc/hsc/files/hsc-1.0b-parmake.patch @@ -0,0 +1,13 @@ +Index: hsc-1.0/Makefile.in +=================================================================== +--- hsc-1.0.orig/Makefile.in ++++ hsc-1.0/Makefile.in +@@ -30,7 +30,7 @@ all: hsc docs + + hsc: + make -C src +-docs: ++docs: hsc + PATH="$(shell pwd)/src/hsc:$(PATH)" HSCEXTRAOPTS="IGNORE=21" make -C docs-source + + install: diff --git a/net-misc/hsc/hsc-1.0b.ebuild b/net-misc/hsc/hsc-1.0b.ebuild new file mode 100644 index 000000000000..826d2d40d116 --- /dev/null +++ b/net-misc/hsc/hsc-1.0b.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit autotools eutils + +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="amd64 ~ppc x86" +IUSE="" + +S=${WORKDIR}/${PN}-${PV/b/} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-cflags.patch" + epatch "${FILESDIR}/${P}-nostrip.patch" + epatch "${FILESDIR}/${P}-parmake.patch" + epatch "${FILESDIR}"/${P}-glibc-2.10.patch + eautoreconf +} + +src_install() { + dodir /usr/share/hsc + emake BINDIR="${D}/usr/bin" DATADIR="${D}/usr/share/hsc" \ + prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" \ + datadir="${D}/usr/share/hsc" install || die "make install failed" +} diff --git a/net-misc/hsc/metadata.xml b/net-misc/hsc/metadata.xml new file mode 100644 index 000000000000..2193d772e351 --- /dev/null +++ b/net-misc/hsc/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>ml</herd> +</pkgmetadata> |