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 /sys-libs/lib-compat-loki | |
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-libs/lib-compat-loki')
-rw-r--r-- | sys-libs/lib-compat-loki/Manifest | 1 | ||||
-rw-r--r-- | sys-libs/lib-compat-loki/lib-compat-loki-0.2-r1.ebuild | 40 | ||||
-rw-r--r-- | sys-libs/lib-compat-loki/metadata.xml | 5 |
3 files changed, 46 insertions, 0 deletions
diff --git a/sys-libs/lib-compat-loki/Manifest b/sys-libs/lib-compat-loki/Manifest new file mode 100644 index 000000000000..a82dfefc362b --- /dev/null +++ b/sys-libs/lib-compat-loki/Manifest @@ -0,0 +1 @@ +DIST lib-compat-loki-0.2.tar.bz2 1441552 SHA256 112b916c21f1a47d257aff721cda10a79e40efe4b75f71d696b70a0036f12234 SHA512 7a090d9bfb3cb3a184d64030f9c85070034365e83c9e11b315df98995d15933d13542069f15b7bd1dd1c4f1cfab3466c1b354bdc073172573846347ecc8c8527 WHIRLPOOL e92a57bed5a77af44fde2d310fab24feb872af6483a0b3da1ce2e914c2cc107428adfb15d86afcb44a50c7a8858093c65186f51e2c741f7bb7666b6ccd9f107a diff --git a/sys-libs/lib-compat-loki/lib-compat-loki-0.2-r1.ebuild b/sys-libs/lib-compat-loki/lib-compat-loki-0.2-r1.ebuild new file mode 100644 index 000000000000..9ba84f538442 --- /dev/null +++ b/sys-libs/lib-compat-loki/lib-compat-loki-0.2-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Compatibility libc6 libraries for Loki games" +HOMEPAGE="http://www.gentoo.org/" +SRC_URI="http://www.blfh.de/gentoo/distfiles/${P}.tar.bz2 + http://dev.gentoo.org/~wolf31o2/sources/lib-compat-loki/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="sys-libs/lib-compat + >=media-libs/libsdl-1.2.15-r4[abi_x86_32(-)]" + +# I'm not quite sure if this is necessary: +RESTRICT="strip" + +S=${WORKDIR}/${P}/x86 + +src_prepare() { + # rename the libs in order to _never_ overwrite any existing lib. + mv libc-2.2.5.so loki_libc.so.6 || die + mv ld-2.2.5.so loki_ld-linux.so.2 || die + mv libnss_files-2.2.5.so loki_libnss_files.so.2 || die + mv libsmpeg-0.4.so.0 loki_libsmpeg-0.4.so.0 || die +} + +src_install() { + ABI=x86 + + into / + dolib.so loki_ld-linux.so.2 + rm -f loki_ld-linux.so.2 + into /usr + dolib.so *.so* +} diff --git a/sys-libs/lib-compat-loki/metadata.xml b/sys-libs/lib-compat-loki/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/sys-libs/lib-compat-loki/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>games</herd> +</pkgmetadata> |