diff --git a/config/options b/config/options index 67b4225948..f0213dee08 100644 --- a/config/options +++ b/config/options @@ -94,7 +94,7 @@ EXTRAFIRMWARES=no EMULATORS=yes # Support for games (yes/no) -GAMES=no +GAMES=yes # Network Support (Samba shares and FTP Server) (yes/no) NETWORK=yes diff --git a/packages/games/install b/packages/games/install index 3454c41e66..7cac4c9ddb 100755 --- a/packages/games/install +++ b/packages/games/install @@ -1,5 +1,8 @@ #!/bin/sh . config/options +$SCRIPTS/install openal-soft +$SCRIPTS/install SDL_image +$SCRIPTS/install physfs -$SCRIPTS/install supertux +#$SCRIPTS/install supertux diff --git a/packages/games/supertux/build b/packages/games/supertux/build index 4155e82a66..a022c000c8 100755 --- a/packages/games/supertux/build +++ b/packages/games/supertux/build @@ -16,7 +16,7 @@ mkdir -p .build cd .build -cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr \ +cmake -D CMAKE_INSTALL_PREFIX:PATH=./ \ -D CMAKE_FIND_ROOT_PATH:PATH=$SYSROOT_PREFIX \ .. diff --git a/packages/graphics/Mesa-openchrome/build b/packages/graphics/Mesa-openchrome/build index 6ec25e523b..46ab5a733e 100755 --- a/packages/graphics/Mesa-openchrome/build +++ b/packages/graphics/Mesa-openchrome/build @@ -45,6 +45,8 @@ DRI_DRIVER_SEARCH_DIR="$XORG_PATH_DRI" \ make +make -C progs/xdemos + # strip libmesa #$STRIP src/mesa/libmesa.so* diff --git a/packages/graphics/Mesa-openchrome/install b/packages/graphics/Mesa-openchrome/install index fc67d6e9fc..bdda8fa240 100755 --- a/packages/graphics/Mesa-openchrome/install +++ b/packages/graphics/Mesa-openchrome/install @@ -19,3 +19,6 @@ cp -PR $BUILD/$1*/lib/libGL.so* $INSTALL/usr/lib mkdir -p $INSTALL/usr/lib/dri cp -PR $BUILD/$1*/lib/*_dri.so $INSTALL/usr/lib/dri + +mkdir -p $INSTALL/usr/bin +cp -PR $BUILD/$1*/progs/xdemos/{corender,glsync,glthreads,glxcontexts,glxdemo,glxgears,glxgears_fbconfig,glxgears_pixmap,glxheads,glxinfo,glxpbdemo,glxpixmap,glxsnoop,glxswapcontrol,manywin,offset,overlay,pbdemo,pbinfo,sharedtex,sharedtex_mt,texture_from_pixmap,wincopy,xfont,xrotfontdemo} $INSTALL/usr/bin diff --git a/packages/graphics/driconf/build b/packages/graphics/driconf/build new file mode 100755 index 0000000000..ecbfdde294 --- /dev/null +++ b/packages/graphics/driconf/build @@ -0,0 +1,18 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/build toolchain +$SCRIPTS/build Python +$SCRIPTS/build pygtk + +. config/options.python + +cd $BUILD/$1* + +sed -i -e "s%/usr/local%/usr%" setup.cfg + +$PYTHON setup.py install -O1 --root ./.install + +find .install -name "*.py" -exec rm -rf "{}" ";" +find .install -name "*.pyo" -exec rm -rf "{}" ";" diff --git a/packages/graphics/driconf/install b/packages/graphics/driconf/install new file mode 100755 index 0000000000..c294de98f2 --- /dev/null +++ b/packages/graphics/driconf/install @@ -0,0 +1,12 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/install Python +$SCRIPTS/install pygtk + +BUILD_DIR=`ls -d $BUILD/$1*` + +. config/options.python + +cp -PR $BUILD_DIR/.install/* $INSTALL \ No newline at end of file diff --git a/packages/graphics/driconf/url b/packages/graphics/driconf/url new file mode 100644 index 0000000000..d572396a41 --- /dev/null +++ b/packages/graphics/driconf/url @@ -0,0 +1 @@ +http://people.freedesktop.org/~fxkuehl/driconf/driconf-0.9.1.tar.gz \ No newline at end of file diff --git a/packages/virtual/image/install b/packages/virtual/image/install index 3f8971e128..8b280c53f1 100755 --- a/packages/virtual/image/install +++ b/packages/virtual/image/install @@ -74,6 +74,7 @@ case "$2" in [ "$DEVTOOLS" = yes ] && $SCRIPTS/install gdb [ "$DEVTOOLS" = yes ] && $SCRIPTS/install mrxvt [ "$DEVTOOLS" = yes ] && $SCRIPTS/install pciutils + [ "$DEVTOOLS" = yes ] && $SCRIPTS/install driconf # Devtools for Cooreboot... (not for Release) [ "$DEVTOOLS" = yes ] && $SCRIPTS/install superiotool