diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /sys-apps/9base | |
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 'sys-apps/9base')
-rw-r--r-- | sys-apps/9base/9base-6-r1.ebuild | 50 | ||||
-rw-r--r-- | sys-apps/9base/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/9base/metadata.xml | 8 |
3 files changed, 59 insertions, 0 deletions
diff --git a/sys-apps/9base/9base-6-r1.ebuild b/sys-apps/9base/9base-6-r1.ebuild new file mode 100644 index 000000000000..a305aceab3cc --- /dev/null +++ b/sys-apps/9base/9base-6-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="A port of various original Plan 9 tools for Unix, based on plan9port" +HOMEPAGE="http://tools.suckless.org/9base" +SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz" + +LICENSE="9base MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +MAKEOPTS="${MAKEOPTS} -j1" + +pkg_setup() { + local _objtype=386 + [[ $(tc-arch) == "amd64" ]] && _objtype=x86_64 + [[ $(tc-arch) == "ppc" ]] && _objtype=ppc + + my9baseopts=( + PREFIX=/usr/plan9 + OBJTYPE=${_objtype} + AR="$(tc-getAR) rc" + CC="$(tc-getCC)" + DESTDIR="${D}" + ) +} + +src_prepare() { + sed -i -e '/strip/d' std.mk {diff,sam}/Makefile || die + + # http://lists.suckless.org/dev/1006/4639.html + sed -i -e '/-static/d' config.mk || die +} + +src_compile() { + emake "${my9baseopts[@]}" +} + +src_install() { + emake "${my9baseopts[@]}" install + dodoc README + + # We don't compress to keep support for plan9's man + docompress -x /usr/plan9/share/man +} diff --git a/sys-apps/9base/Manifest b/sys-apps/9base/Manifest new file mode 100644 index 000000000000..3772a3448c20 --- /dev/null +++ b/sys-apps/9base/Manifest @@ -0,0 +1 @@ +DIST 9base-6.tar.gz 1045868 SHA256 2997480eb5b4cf3092c0896483cd2de625158bf51c501aea2dc5cf74176d6de9 SHA512 38108a94118b56c6f3982e692beb1068c52f9aecd74447d6b552b77fae5e365eab72b4781bdf07d9696ac89d54371c1cae8cc0363de510b53988302acef50dba WHIRLPOOL 364afe8a9eabb42e215f1520751e737ab418d084aafbc83df57e823662d5237bae0f7c2904257073dac382c7c3116d46bb958b7d56bdee493ad9f6b12e147a71 diff --git a/sys-apps/9base/metadata.xml b/sys-apps/9base/metadata.xml new file mode 100644 index 000000000000..c2d865517c00 --- /dev/null +++ b/sys-apps/9base/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>ssuominen@gentoo.org</email> + <name>Samuli Suominen</name> + </maintainer> +</pkgmetadata> |