mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
679 B

  1. static=0
  2. for x in upx gzip sed kbd mplayer pciutils grep coreutils util-linux libgli lvp gawk bash findutils eject xfree86 flex ; do
  3. [ "$pkg" == "$x" ] && static=1
  4. done
  5. if [ $static -eq 1 ] ; then
  6. echo_status "Building this package statically for LVP"
  7. var_append GCC_WRAPPER_APPEND " " "-static"
  8. fi
  9. if [ "$pkg" == "modutils" ] ; then
  10. echo_status "Building this package statically for LVP"
  11. var_append confopt " " "--enable-combined"
  12. fi
  13. for x in mplayer freeglut ; do
  14. if [ "$pkg" == "$x" ] ; then
  15. echo_status "Building this package statically for LVP"
  16. var_append confopt " " "--enable-static"
  17. fi
  18. done
  19. install_init () {
  20. echo_status "stub called: install_init $@"
  21. }