|
From: Yoda-JM <yo...@us...> - 2010-08-22 10:59:11
|
Module: performous
Branch: master
Commit: 358040d71f0b6e0a3701198760e374f77cf22ed2
Author: Vincent Le Ligeour <yo...@us...>
Date: Sun Aug 22 12:58:52 2010 +0200
Added FoFLC ebuild, fixed performous ebuild
---
.../games-arcade/performous/performous-9999.ebuild | 6 +++-
portage-overlay/games-util/foflc/foflc-9999.ebuild | 33 ++++++++++++++++++++
2 files changed, 38 insertions(+), 1 deletions(-)
diff --git a/portage-overlay/games-arcade/performous/performous-9999.ebuild b/portage-overlay/games-arcade/performous/performous-9999.ebuild
index ac3a68c..0c4c6b5 100644
--- a/portage-overlay/games-arcade/performous/performous-9999.ebuild
+++ b/portage-overlay/games-arcade/performous/performous-9999.ebuild
@@ -71,6 +71,10 @@ src_unpack() {
fi
}
+src_prepare() {
+ epatch "${FILESDIR}"/${PN}-gentoopaths.patch
+}
+
src_configure() {
local mycmakeargs="
$(cmake-utils_use_enable tools TOOLS)
@@ -95,7 +99,7 @@ src_install() {
DOCS="docs/*.txt" cmake-utils_src_install
mv -f "${D}/${GAMES_PREFIX}/share/man" "${D}/usr/share/"
mkdir -p "${D}/${GAMES_DATADIR}/${PN}"
- mv -f "${D}/${GAMES_PREFIX}/share" "${D}/${GAMES_DATADIR}/${PN}"
+ mv -f "${D}/${GAMES_PREFIX}/share/games/performous" "${D}/${GAMES_DATADIR}/"
if use songs; then
insinto "${GAMES_DATADIR}/${PN}"
diff --git a/portage-overlay/games-util/foflc/foflc-9999.ebuild b/portage-overlay/games-util/foflc/foflc-9999.ebuild
new file mode 100644
index 0000000..5e95a85
--- /dev/null
+++ b/portage-overlay/games-util/foflc/foflc-9999.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3
+
+inherit cmake-utils games subversion
+
+DESCRIPTION="Frets On Fire Lyrics Converter"
+HOMEPAGE="http://www.fretsonfire.net/forums/viewtopic.php?t=31765&f=11"
+ESVN_REPO_URI="http://editor-on-fire.googlecode.com/svn/trunk/src/foflc"
+
+LICENSE="ASIS"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ mycmakeargs="-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ cmake-utils_src_compile
+}
+
+src_install() {
+ DOCS="*.txt" cmake-utils_src_install
+ prepgamesdirs
+}
|