From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-util/shc/Manifest | 1 + dev-util/shc/metadata.xml | 11 +++++++++++ dev-util/shc/shc-3.8.9.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 dev-util/shc/Manifest create mode 100644 dev-util/shc/metadata.xml create mode 100644 dev-util/shc/shc-3.8.9.ebuild (limited to 'dev-util/shc') diff --git a/dev-util/shc/Manifest b/dev-util/shc/Manifest new file mode 100644 index 000000000000..e5e7fdb9a13f --- /dev/null +++ b/dev-util/shc/Manifest @@ -0,0 +1 @@ +DIST shc-3.8.9.tgz 20536 SHA256 ef7bbf1252c9c791f711782870d00d6f19c42c08e0ee57e9a04d0e2b3d114d40 SHA512 e8a4f9b0ef6e90fc99ebeeb0af36b89d1020209429c9651a036ab1f51a293d9faa3b775b7f040e91997b6ff5a487cb45943fc3548fa6fa3e7282e0d6f74d2cd4 WHIRLPOOL 07e0144fb58deeb205ea108ee79b451b1456351970f7a1e90cbe52bb7463578161c18a1a6028298309fba454456703a1df97a29ca6e56074695831ff8dc6488d diff --git a/dev-util/shc/metadata.xml b/dev-util/shc/metadata.xml new file mode 100644 index 000000000000..5e6ea6acc16d --- /dev/null +++ b/dev-util/shc/metadata.xml @@ -0,0 +1,11 @@ + + + + + pinkbyte@gentoo.org + Sergey Popov + + + http://www.datsi.fi.upm.es/~frosal/sources/CHANGES + + diff --git a/dev-util/shc/shc-3.8.9.ebuild b/dev-util/shc/shc-3.8.9.ebuild new file mode 100644 index 000000000000..6b911aa3f4cd --- /dev/null +++ b/dev-util/shc/shc-3.8.9.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit toolchain-funcs + +DESCRIPTION="A (shell-) script compiler/scrambler" +HOMEPAGE="http://www.datsi.fi.upm.es/~frosal" +SRC_URI="http://www.datsi.fi.upm.es/~frosal/sources/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ppc ~sparc x86" +IUSE="" + +RESTRICT="test" + +src_prepare() { + # respect LDFLAGS + sed -i makefile -e 's:$(CC) $(CFLAGS):& $(LDFLAGS):' || die + # fix source file name wrt bug #433970 + mv {${P},${PN}}.c || die +} + +src_compile() { + ## the "test"-target leads to an access-violation -> so we skip it + ## as it's only for demonstration purposes anyway. + emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" shc +} + +src_install() { + dobin shc + doman shc.1 + newdoc shc.README README + dodoc CHANGES +} -- cgit v1.2.3-65-gdbad