diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /games-engines/love | |
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 'games-engines/love')
-rw-r--r-- | games-engines/love/Manifest | 2 | ||||
-rw-r--r-- | games-engines/love/files/love-0.8.0-freetype2.patch | 48 | ||||
-rw-r--r-- | games-engines/love/love-0.7.2-r1.ebuild | 44 | ||||
-rw-r--r-- | games-engines/love/love-0.8.0.ebuild | 55 | ||||
-rw-r--r-- | games-engines/love/love-9999.ebuild | 58 | ||||
-rw-r--r-- | games-engines/love/metadata.xml | 10 |
6 files changed, 217 insertions, 0 deletions
diff --git a/games-engines/love/Manifest b/games-engines/love/Manifest new file mode 100644 index 000000000000..4a236e4259fb --- /dev/null +++ b/games-engines/love/Manifest @@ -0,0 +1,2 @@ +DIST love-0.7.2-linux-src.tar.gz 900209 SHA256 a57adcb0cbdc390a9bd8e2fe477bc175799b9ffd3486e01f859a36bf27f7f268 SHA512 cbca1d7e3425d1ecbdae019212dfa2814d8ac3bad1faedd4b052cf3e89b5bf2fac6e422283628e4c125858c9db050dee2129476d1a73ec44ffe8a4704f170f61 WHIRLPOOL 1c5258fefca15c71065e0cfff795bfaf30b7c9acabf89ffa5fd71311ce1ee767f98088dbac844f26f50fc69d2d8d384819fce69372f573a48f5d3848a2d1da8f +DIST love-0.8.0-linux-src.tar.gz 1027356 SHA256 9167ca1cc7893ff1fdcf3b6fc7e2a88be10d899075a513942420fe8f94668ecc SHA512 6a0e28d102b950d3dddf7101996fe0ad04dfd7d4ec5e58797b41ef3382b60e74f90c6e707f882cf43cc0c5cc98703857eefc6418e6a6fd34e88f8019143f55a4 WHIRLPOOL 39c56d987d710b7589db0af3b6b5e59fc05d7e6e49b8e9f88a2a3fc050afe518d561517bb7b2a6428b30cda0322878801aafbdec98976831b37df56c3c02440c diff --git a/games-engines/love/files/love-0.8.0-freetype2.patch b/games-engines/love/files/love-0.8.0-freetype2.patch new file mode 100644 index 000000000000..64e42c5f2840 --- /dev/null +++ b/games-engines/love/files/love-0.8.0-freetype2.patch @@ -0,0 +1,48 @@ +--- src/modules/font/freetype/TrueTypeRasterizer.h.old 2015-01-07 09:49:39.394000727 +0100 ++++ src/modules/font/freetype/TrueTypeRasterizer.h 2015-01-07 09:50:28.846065847 +0100 +@@ -27,10 +27,10 @@ + + // TrueType2 + #include <ft2build.h> +-#include <freetype/freetype.h> +-#include <freetype/ftglyph.h> +-#include <freetype/ftoutln.h> +-#include <freetype/fttrigon.h> ++#include <freetype.h> ++#include <ftglyph.h> ++#include <ftoutln.h> ++#include <fttrigon.h> + + namespace love + { +@@ -67,4 +67,4 @@ + } // font + } // love + +-#endif // LOVE_FONT_FREETYPE_TRUE_TYPE_RASTERIZER_H +\ No newline at end of file ++#endif // LOVE_FONT_FREETYPE_TRUE_TYPE_RASTERIZER_H +--- src/modules/font/freetype/Font.h.old 2015-01-07 09:49:20.421359400 +0100 ++++ src/modules/font/freetype/Font.h 2015-01-07 09:50:02.076571918 +0100 +@@ -30,10 +30,10 @@ + #else + #include <ft2build.h> + #endif +-#include <freetype/freetype.h> +-#include <freetype/ftglyph.h> +-#include <freetype/ftoutln.h> +-#include <freetype/fttrigon.h> ++#include <freetype.h> ++#include <ftglyph.h> ++#include <ftoutln.h> ++#include <fttrigon.h> + + namespace love + { +@@ -73,4 +73,4 @@ + } // font + } // love + +-#endif // LOVE_FONT_FREETYPE_FONT_H +\ No newline at end of file ++#endif // LOVE_FONT_FREETYPE_FONT_H diff --git a/games-engines/love/love-0.7.2-r1.ebuild b/games-engines/love/love-0.7.2-r1.ebuild new file mode 100644 index 000000000000..007840f5b88c --- /dev/null +++ b/games-engines/love/love-0.7.2-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils games + +DESCRIPTION="A framework for 2D games in Lua" +HOMEPAGE="http://love2d.org/" +SRC_URI="https://www.bitbucket.org/rude/${PN}/downloads/${P}-linux-src.tar.gz" + +LICENSE="ZLIB" +SLOT="0.7" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND="dev-games/physfs + dev-lang/lua[deprecated] + media-libs/devil[mng,png,tiff] + media-libs/freetype + media-libs/libmodplug + media-libs/libsdl[joystick,opengl] + media-libs/libvorbis + media-libs/openal + media-sound/mpg123 + virtual/opengl" +DEPEND="${RDEPEND} + media-libs/libmng + media-libs/tiff" + +S=${WORKDIR}/${PN}-HEAD + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.8.0-freetype2.patch +} + +src_install() { + DOCS="readme.txt changes.txt" \ + default + if [[ "${SLOT}" != "0" ]]; then + mv "${ED}${GAMES_BINDIR}"/${PN} \ + "${ED}${GAMES_BINDIR}"/${PN}-${SLOT} || die + fi +} diff --git a/games-engines/love/love-0.8.0.ebuild b/games-engines/love/love-0.8.0.ebuild new file mode 100644 index 000000000000..70e440f1c59c --- /dev/null +++ b/games-engines/love/love-0.8.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit games + +if [[ ${PV} == 9999* ]]; then + inherit autotools mercurial + EHG_REPO_URI="https://bitbucket.org/rude/${PN}" + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://www.bitbucket.org/rude/${PN}/downloads/${P}-linux-src.tar.gz" + KEYWORDS="amd64 ~arm ~ppc x86" +fi + +DESCRIPTION="A framework for 2D games in Lua" +HOMEPAGE="http://love2d.org/" + +LICENSE="ZLIB" +SLOT="0" +IUSE="" + +RDEPEND="dev-games/physfs + dev-lang/lua[deprecated] + media-libs/devil[mng,png,tiff] + media-libs/freetype + media-libs/libmodplug + media-libs/libsdl[joystick,opengl,video] + media-libs/libvorbis + media-libs/openal + media-sound/mpg123 + virtual/opengl" +DEPEND="${RDEPEND} + media-libs/libmng + media-libs/tiff" + +src_prepare() { + if [[ ${PV} == 9999* ]]; then + sh platform/unix/gen-makefile || die + mkdir platform/unix/m4 || die + eautoreconf + fi + epatch "${FILESDIR}"/${P}-freetype2.patch +} + +src_install() { + DOCS="readme.md changes.txt" \ + default + if [[ "${SLOT}" != "0" ]]; then + mv "${ED}${GAMES_BINDIR}"/${PN} \ + "${ED}${GAMES_BINDIR}"/${PN}-${SLOT} || die + fi +} diff --git a/games-engines/love/love-9999.ebuild b/games-engines/love/love-9999.ebuild new file mode 100644 index 000000000000..99389a39aee7 --- /dev/null +++ b/games-engines/love/love-9999.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit base games + +if [[ ${PV} == 9999* ]]; then + inherit autotools mercurial + EHG_REPO_URI="https://bitbucket.org/rude/${PN}" + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://www.bitbucket.org/rude/${PN}/downloads/${P}-linux-src.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="A framework for 2D games in Lua" +HOMEPAGE="http://love2d.org/" + +LICENSE="ZLIB" +SLOT="0" +IUSE="" + +RDEPEND="dev-games/physfs + dev-lang/lua[deprecated] + media-libs/devil[mng,png,tiff] + media-libs/freetype + media-libs/libmodplug + media-libs/libsdl[joystick,opengl] + media-libs/libvorbis + media-libs/openal + media-sound/mpg123 + virtual/opengl" +DEPEND="${RDEPEND} + media-libs/libmng + media-libs/tiff" + +DOCS=( "readme.md" "changes.txt" ) + +src_prepare() { + if [[ ${PV} == 9999* ]]; then + sh platform/unix/gen-makefile || die + cp platform/unix/Makefile.am . || die + cp platform/unix/configure.ac . || die + mkdir platform/unix/m4 || die + eautoreconf + fi +} + +src_install() { + base_src_install + if [[ "${SLOT}" != "0" ]]; then + mv "${ED}${GAMES_BINDIR}"/${PN} \ + "${ED}${GAMES_BINDIR}"/${PN}-${SLOT} || die + fi +} diff --git a/games-engines/love/metadata.xml b/games-engines/love/metadata.xml new file mode 100644 index 000000000000..32d9f17722ef --- /dev/null +++ b/games-engines/love/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>games</herd> + <maintainer> + <email>chithanh@gentoo.org</email> + <name>Chí-Thanh Christopher Nguyễn</name> + </maintainer> +</pkgmetadata> + |