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.

70 lines
1.9 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/blindcoder/xjdic/xjdic.conf
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. if [ $prefix_auto = 1 ] ; then
  23. prefix="opt/xjdic"
  24. set_confopt
  25. fi
  26. xjdic_main() {
  27. cd ${builddir}
  28. mkdir xjdic-src
  29. cd xjdic-src
  30. tar --use-compress-program=bzip2 -xf ${archdir}/xjdic24.tbz2
  31. srcdir=${builddir}/xjdic-src
  32. for x in ${patchfiles} ; do
  33. patch -p1 -i ${x}
  34. done
  35. for x in edict kanjidic; do
  36. bunzip2 -c $archdir/$(echo "$desc_D" | cut -d' ' -f2 | \
  37. grep $x | sed 's/\.gz/.bz2/' ) > $x
  38. done
  39. eval $MAKE all
  40. ./xjdxgen edict
  41. ./xjdxgen kanjidic
  42. mv -v exjdxgen xjdic_cl xjdic_sa xjdserver xjdxgen edict edict.xjdx \
  43. kanjidic kanjidic.xjdx gnu_licence \
  44. kanjstroke radicals.tm vconj radkfile romkana.cnv $bindir/
  45. cat > $root/$bindir/xjdic << EOF
  46. cd /$bindir
  47. ./xjdic_sa
  48. EOF
  49. cat > $root/$bindir/xjdic_client << EOF
  50. cd /$bindir
  51. ./xjdic_cl
  52. EOF
  53. cat > $root/$bindir/xjdic_server << EOF
  54. cd /$bindir
  55. ./xjdserver
  56. EOF
  57. cat > $root/$bindir/xjdic_indexgen << EOF
  58. cd /$bindir
  59. ./xjdxgen
  60. EOF
  61. chmod a+x $bindir/{xjdic,xjdic_client,xjdic_server,xjdic_indexgen}
  62. }
  63. custmain="xjdic_main"
  64. autoextract=0