Initial import
This commit is contained in:
4
games-util/wit/Manifest
Normal file
4
games-util/wit/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
AUX wit-3.01a-install.patch 469 SHA256 109892aa0e6f380bd4105bd4d42ea10245aa9912d71c90d21b4721cf37749400 SHA512 b4fff50d731e6f0f1554e7e6ddbe41814c5ab969ce9bea0d4202a6803d31dc6569d0df4fbca687bc50441f83f5423b88262ee3a15ecdc12253215b40dce6f28c WHIRLPOOL 637c342f7bdf535d21345e6fb1aaa35ccfa8125a3a4f5d3ba58222228ae8201f01ffe00335931b0425b5a4cc13ba861225af6887baf0ed090b9d830a8345ef6b
|
||||
DIST wit-v3.0a-r7464-i386.tar.gz 10378 SHA256 6e39047b06f03e9ffd8945b587a03adf1edcdfc7c6393bdc9e47d77c064d1d0c SHA512 50e28033512d4e893e703059f0da15037b3e999bbe22a96cb3ec1fb6a2fe57657b2153728c09c3edaf0ccf79b525dc509102e7e702b8a2a437926f7c97a09213 WHIRLPOOL e1975770595bca0e02530ecc0511f261354da9585da540bcfd29be315730f43368b262cec4df67ebd47a539e2e78de6eb225647ec6dec67a7248cd294ae7dd58
|
||||
DIST wit-v3.0a-r7464-x86_64.tar.gz 10378 SHA256 6e39047b06f03e9ffd8945b587a03adf1edcdfc7c6393bdc9e47d77c064d1d0c SHA512 50e28033512d4e893e703059f0da15037b3e999bbe22a96cb3ec1fb6a2fe57657b2153728c09c3edaf0ccf79b525dc509102e7e702b8a2a437926f7c97a09213 WHIRLPOOL e1975770595bca0e02530ecc0511f261354da9585da540bcfd29be315730f43368b262cec4df67ebd47a539e2e78de6eb225647ec6dec67a7248cd294ae7dd58
|
||||
EBUILD wit-3.0a.ebuild 766 SHA256 969fac5c83ffc9122e9a048fa59848c46f809609519b25a38716b26d88171f8e SHA512 014f6c36790509ead929d84eccaaa67ca69c5e3578f2d91f099e59f1a2b988cd0ebb87c41cdb0d8de8731475b8bda60b61c424fb1cefa71f854677af4c50c592 WHIRLPOOL c6214ccd8e3f376be9183d131bb5c43a752556359f4d33798c7d4392d1017fa65db523fe71fb322c6ad5166eb1e0841414903ac1adb54f5b445a597910cf2c29
|
||||
15
games-util/wit/files/wit-3.01a-install.patch
Normal file
15
games-util/wit/files/wit-3.01a-install.patch
Normal file
@@ -0,0 +1,15 @@
|
||||
--- install.sh 2017-12-03 06:08:29.712290476 -0500
|
||||
+++ install_new.sh 2018-02-15 14:57:37.017662059 -0500
|
||||
@@ -49,9 +49,10 @@
|
||||
#------------------------------------------------------------------------------
|
||||
# settings
|
||||
|
||||
-BASE_PATH="/usr/local"
|
||||
+PREFIX="${PREFIX:-}"
|
||||
+BASE_PATH="${PREFIX}/usr/local"
|
||||
BIN_PATH="$BASE_PATH/bin"
|
||||
-SHARE_PATH="/usr/local/share/wit"
|
||||
+SHARE_PATH="${PREFIX}/usr/local/share/wit"
|
||||
|
||||
BIN_FILES="wit wwt wdf wfuse "
|
||||
WDF_LINKS="wdf-cat wdf-dump"
|
||||
44
games-util/wit/wit-3.0a.ebuild
Normal file
44
games-util/wit/wit-3.0a.ebuild
Normal file
@@ -0,0 +1,44 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
MY_PV="v${PV}-r7464"
|
||||
|
||||
DESCRIPTION=""
|
||||
HOMEPAGE="https://wit.wiimm.de"
|
||||
SRC_URI="amd64? ( https://wit.wiimm.de/download/${PN}-${MY_PV}-x86_64.tar.gz )
|
||||
x86? ( https://wit.wiimm.de/download/${PN}-${MY_PV}-i386.tar.gz ) "
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
|
||||
use amd64 && mv "${WORKDIR}/${PN}-${MY_PV}-x86_64" "${S}"
|
||||
use x86 && mv "${WORKDIR}/${PN}-${MY_PV}-i386" "${S}"
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${P}-install.patch"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
true
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
true
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cd "${S}"
|
||||
PREFIX="${D}" ./install.sh --no-sudo
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user