mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
audio/hydrogen: Fixed problem with scons installing images.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
65eff6c745
commit
15b7a9ab86
2 changed files with 29 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
|||
|
||||
PRGNAM=hydrogen
|
||||
VERSION=${VERSION:-0.9.5}
|
||||
BUILD=${BUILD:-4}
|
||||
BUILD=${BUILD:-5}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -87,6 +87,8 @@ else
|
|||
EXTRACONF="$EXTRACONF jack=0"
|
||||
fi
|
||||
|
||||
patch --verbose -p1 < $CWD/sconstruct-install-images.patch
|
||||
|
||||
QTDIR=$QT4DIR \
|
||||
scons \
|
||||
prefix=/usr \
|
||||
|
|
26
audio/hydrogen/sconstruct-install-images.patch
Normal file
26
audio/hydrogen/sconstruct-install-images.patch
Normal file
|
@ -0,0 +1,26 @@
|
|||
diff -Naur a/Sconstruct b/Sconstruct
|
||||
--- a/Sconstruct 2011-03-15 12:22:35.000000000 +0000
|
||||
+++ b/Sconstruct 2011-10-28 03:17:21.000000000 +0100
|
||||
@@ -214,12 +214,7 @@
|
||||
for file in files:
|
||||
if file.endswith(".png"):
|
||||
|
||||
- if env['prefix'].endswith("/"):
|
||||
- dname = dir[2:]
|
||||
- else:
|
||||
- dname = dir[1:]
|
||||
-
|
||||
- env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/' + dname, source= dir + "/" + file))
|
||||
+ env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/img/gray' + file))
|
||||
|
||||
def get_hydrogen_gui( lib_hydrogen , opts ):
|
||||
includes, cppflags, ldflags = get_platform_flags( opts )
|
||||
@@ -301,7 +296,7 @@
|
||||
env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/data', source="./data/img"))
|
||||
|
||||
#add every img in ./data/img to the install list.
|
||||
- os.path.walk("./data/img/",install_images,env)
|
||||
+ os.path.walk("./data/img/gray",install_images,env)
|
||||
|
||||
|
||||
env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/data', source="./data/drumkits"))
|
Loading…
Reference in a new issue