Magellan Linux

Diff of /branches/R11-unstable/include/mtools.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/core/include/mtools.sminc revision 2031 by niro, Fri Jun 12 10:56:41 2009 UTC trunk/include/mtools.sminc revision 31554 by niro, Fri Nov 30 10:15:39 2018 UTC
# Line 1  Line 1 
1  # $Header: /magellan-cvs/smage/include/mtools.sminc,v 1.39 2008/04/20 08:28:23 niro Exp $  # $Id$
2  # some special build tools  # some special build tools
3    
4  # automatical inherit mtools.minc  # get the pname right with split-packages
5  # this will provide the service management functions  mpname()
6  INHERITS="${INHERITS} mtools"  {
7     local pname="${PNAME}"
8     [[ ! -z ${SPLIT_PACKAGE_BASE} ]] && pname="${SPLIT_PACKAGE_BASE}"
9    
10     echo "${pname}"
11    }
12    
13    # installs given directories
14    # minstalldir /path/to/dest/dir {/path/to/dest/dirN}
15    minstalldir()
16    {
17     local argv="$@"
18     local dest
19    
20     [[ -z ${argv} ]] && die "No dest dir given"
21     for dest in ${argv}
22     do
23     [[ -d ${BINDIR}${dest} ]] && continue
24     install -v -d ${BINDIR}/${dest} || die
25     done
26    }
27    
28  # installs initscripts  # install files to given path (defaults to /usr/bin)
29  # minstallrc /path/to/rc-script {destfilename}  # minstallfile {-s} /path/to/file {/path/to/dest}
30  minstallrc()  minstallfile()
31  {  {
  local rcscript  
32   local file   local file
33     local dest
34    
35   [[ -z "$1" ]] && die "No initscript given"   [[ -z $1 ]] && die "No etc file given"
36    
37   # if no fullpath given use file from sourcedir   if [[ $1 = -s ]]
  if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]  
38   then   then
39   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$2"
40     dest="$3"
41     if [[ -z $3 ]]
42     then
43     dest=/usr/bin
44     install -d ${BINDIR}/${dest} || die
45     fi
46   else   else
47   file="$1"   file="$1"
48     dest="$2"
49     if [[ -z $2 ]]
50     then
51     dest=/usr/bin
52     install -d ${BINDIR}/${dest} || die
53     fi
54   fi   fi
55    
56   if [[ -n "$2" ]]   # install our configfile
57     install -v -m 0644 -o root -g root ${file} ${BINDIR}/${dest} || die
58    }
59    
60    # installs executables to given path
61    # minstallexec {-s} /path/to/exec {/path/to/dest}
62    minstallexec()
63    {
64     local file
65     local dest
66    
67     [[ -z $1 ]] && die "No file given"
68    
69     if [[ $1 = -s ]]
70   then   then
71   rcscript="$2"   file="${SOURCEDIR}/$(mpname)/$2"
72     dest="$3"
73     if [[ -z $3 ]]
74     then
75     dest=/usr/bin
76     install -d ${BINDIR}/${dest} || die
77     fi
78   else   else
79   rcscript="$(basename ${file})"   file="$1"
80     dest="$2"
81     if [[ -z $2 ]]
82     then
83     dest=/usr/bin
84     install -d ${BINDIR}/${dest} || die
85     fi
86   fi   fi
87    
88   # needed directory   # install our configfile
89   install -d ${BINDIR}/etc/rc.d/init.d || die   install -v -m 0755 -o root -g root ${file} ${BINDIR}/${dest} || die
90    }
91    
92    # installs executables to given path
93    # minstalllib {-s} /path/to/exec {/path/to/dest}
94    minstalllib()
95    {
96     local file
97     local dest
98     local verbose="-v"
99    
100     # check for busybox as it doesn't support 'ln -v'
101     [[ $(readlink $(which ln)) = */busybox ]] && verbose=""
102    
103     [[ -z $1 ]] && die "No file given"
104    
105     if [[ $1 = -s ]]
106     then
107     file="${SOURCEDIR}/$(mpname)/$2"
108     dest="$3"
109     if [[ -z $3 ]]
110     then
111     dest=/usr/$(mlibdir)
112     install -d ${BINDIR}/${dest} || die
113     fi
114     else
115     file="$1"
116     dest="$2"
117     if [[ -z $2 ]]
118     then
119     dest=/usr/$(mlibdir)
120     install -d ${BINDIR}/${dest} || die
121     fi
122     fi
123    
124     # install our library
125     install -v -m 0755 -o root -g root ${file} ${BINDIR}/${dest} || die
126    
127     # prefer scanelf
128     if [[ -x $(type -P scanelf) ]]
129     then
130     local soname="$(scanelf -qBF '%S#p' ${file})"
131     ln ${verbose} -snf $(basename ${file}) ${BINDIR}/${dest}/${soname} || die
132     else
133     echo -e "${COLYELLOW}minstalllib(): Warning: scanelf not found, using fallback symlink method${COLDEFAULT}"
134    
135   # install our initscript   # create libtool symlinks
136   install -v -m 0755 -o root -g root ${file} ${BINDIR}/etc/rc.d/init.d/${rcscript} || die   # 1. - library.so.1.0.0 -> library.so.1.0
137     if [ "${file%.*}" != *.so ]
138     then
139     ln ${verbose} -snf $(basename ${file}) ${BINDIR}/${dest}/$(basename ${file%.*}) || die
140     fi
141     # 2. - library.so.1.0.0 -> library.so.1
142     if [ "${file%.*.*}" != *.so ]
143     then
144     ln ${verbose} -snf $(basename ${file}) ${BINDIR}/${dest}/$(basename ${file%.*.*}) || die
145     fi
146     # 3. - library.so.1.0.0.0 -> library.so.1
147     if [ "${file%.*.*.*}" != *.so ]
148     then
149     ln ${verbose} -snf $(basename ${file}) ${BINDIR}/${dest}/$(basename ${file%.*.*.*}) || die
150     fi
151     fi
152  }  }
153    
154  # installs environment files  # installs environment files
# Line 48  minstallenv() Line 163  minstallenv()
163   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
164   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]
165   then   then
166   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$1"
167   else   else
168   file="$1"   file="$1"
169   fi   fi
# Line 79  minstallconf() Line 194  minstallconf()
194   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
195   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]
196   then   then
197   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$1"
198   else   else
199   file="$1"   file="$1"
200   fi   fi
# Line 111  minstalletc() Line 226  minstalletc()
226   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
227   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]
228   then   then
229   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$1"
230   else   else
231   file="$1"   file="$1"
232   fi   fi
# Line 137  minstalletc() Line 252  minstalletc()
252   install -v -m 0644 -o root -g root ${file} ${BINDIR}/${destdir}/${etcfile} || die   install -v -m 0644 -o root -g root ${file} ${BINDIR}/${destdir}/${etcfile} || die
253  }  }
254    
 minstalludev()  
 {  
  local udevrule  
  local file  
   
  [[ -z "$1" ]] && die "No udev rule given"  
   
  # if no fullpath given use file from sourcedir  
  if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]  
  then  
  file="${SOURCEDIR}/${PNAME}/$1"  
  else  
  file="$1"  
  fi  
   
  if [[ -n "$2" ]]  
  then  
  udevrule="$2"  
  else  
  udevrule="$(basename ${file})"  
  fi  
   
  # needed directory  
  install -d ${BINDIR}/etc/udev/rules.d || die  
   
  # install our initscript  
  install -v -m 0755 -o root -g root ${file} ${BINDIR}/etc/udev/rules.d/udevrule || die  
 }  
   
255  # install man files to appropiate dirs  # install man files to appropiate dirs
256  # minstallman /path/to/manfile.foo  # minstallman /path/to/manfile.foo
257  minstallman()  minstallman()
# Line 249  minstallpixmap() Line 335  minstallpixmap()
335   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
336   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]
337   then   then
338   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$1"
339   else   else
340   file="$1"   file="$1"
341   fi   fi
# Line 287  minstallpam() Line 373  minstallpam()
373   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
374   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]
375   then   then
376   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$1"
377   else   else
378   file="$1"   file="$1"
379   fi   fi
# Line 322  minstallcron() Line 408  minstallcron()
408   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
409   if [[ -z $(dirname $2) ]] || [[ $(dirname $2) = . ]]   if [[ -z $(dirname $2) ]] || [[ $(dirname $2) = . ]]
410   then   then
411   file="${SOURCEDIR}/${PNAME}/$2"   file="${SOURCEDIR}/$(mpname)/$2"
412   else   else
413   file="$2"   file="$2"
414   fi   fi
# Line 343  minstallcron() Line 429  minstallcron()
429    
430    
431  # installs logrotate configuration files  # installs logrotate configuration files
432  # minstallpam /path/to/logrotatefile {destfilename}  # minstalllog /path/to/logrotatefile {destfilename}
433  minstalllog()  minstalllog()
434  {  {
435   local logfile   local logfile
# Line 354  minstalllog() Line 440  minstalllog()
440   # if no fullpath given use file from sourcedir   # if no fullpath given use file from sourcedir
441   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]   if [[ -z $(dirname $1) ]] || [[ $(dirname $1) = . ]]
442   then   then
443   file="${SOURCEDIR}/${PNAME}/$1"   file="${SOURCEDIR}/$(mpname)/$1"
444   else   else
445   file="$1"   file="$1"
446   fi   fi
# Line 373  minstalllog() Line 459  minstalllog()
459   install -v -m 0644 -o root -g root ${file} ${BINDIR}/etc/logrotate.d/${logfile} || die   install -v -m 0644 -o root -g root ${file} ${BINDIR}/etc/logrotate.d/${logfile} || die
460  }  }
461    
462    mcopy()
 # installs given directories  
 # minstalldir /path/to/dest/dir {/path/to/dest/dirN}  
 minstalldir()  
463  {  {
464   local argv="$@"   local source="$1"
465   local dest   local dest="$2"
466     local opts
  [[ -z ${argv} ]] && die "No dest dir given"  
  for dest in ${argv}  
  do  
  [[ -d ${BINDIR}${dest} ]] && continue  
  install -v -d ${BINDIR}/${dest} || die  
  done  
 }  
467    
468     # recursive
469     if [[ $1 = -r ]] || [[ $1 = -R ]]
470     then
471     opts="-R"
472     source="$2"
473     dest="$3"
474     fi
475    
476  # install files to given path (defaults to /usr/bin)   # recursive
477  # minstallfile {-s} /path/to/file {/path/to/dest}   if [[ $1 = -rf ]] || [[ $1 = -fr ]] || [[ $1 = -Rf ]] || [[ $1 = -fR ]]
478  minstallfile()   then
479  {   opts="-R -f"
480   local file   source="$2"
481   local dest   dest="$3"
482     fi
  [[ -z $1 ]] && die "No etc file given"  
483    
484   if [[ $1 = -s ]]   if [[ $1 = -a ]]
485   then   then
486   file="${SOURCEDIR}/${PNAME}/$2"   opts="-a"
487     source="$2"
488   dest="$3"   dest="$3"
  if [[ -z $3 ]]  
  then  
  dest=/usr/bin  
  install -d ${BINDIR}/${dest} || die  
  fi  
  else  
  file="$1"  
  dest="$2"  
  if [[ -z $2 ]]  
  then  
  dest=/usr/bin  
  install -d ${BINDIR}/${dest} || die  
  fi  
489   fi   fi
490    
491   # install our configfile   [[ -z ${source} ]] && die "No source given."
492   install -v -m 0644 -o root -g root ${file} ${BINDIR}/${dest} || die   [[ -z ${dest} ]] && die "No dest given."
493    
494     cp -v ${opts} ${source} ${BINDIR}/${dest} || die
495  }  }
496    
497  # installs executables to given path  mdelete()
 # minstallexec {-s} /path/to/exec {/path/to/dest}  
 minstallexec()  
498  {  {
499   local file   local dest="$1"
500   local dest   local opts
501    
502   [[ -z $1 ]] && die "No file given"   # enforce
503     if [[ $1 = -f ]]
504     then
505     opts="-f"
506     dest="$2"
507     fi
508    
509   if [[ $1 = -s ]]   # recursive
510     if [[ $1 = -r ]] || [[ $1 = -R ]]
511   then   then
512   file="${SOURCEDIR}/${PNAME}/$2"   opts="-r"
  dest="$3"  
  if [[ -z $3 ]]  
  then  
  dest=/usr/bin  
  install -d ${BINDIR}/${dest} || die  
  fi  
  else  
  file="$1"  
513   dest="$2"   dest="$2"
  if [[ -z $2 ]]  
  then  
  dest=/usr/bin  
  install -d ${BINDIR}/${dest} || die  
  fi  
514   fi   fi
515    
516   # install our configfile   # recursive
517   install -v -m 0755 -o root -g root ${file} ${BINDIR}/${dest} || die   if [[ $1 = -rf ]] || [[ $1 = -fr ]] || [[ $1 = -Rf ]] || [[ $1 = -fR ]]
518     then
519     opts="-r -f"
520     dest="$2"
521     fi
522    
523     [[ -z ${dest} ]] && die "No dest given."
524     for i in $(eval echo "${BINDIR}/${dest}")
525     do
526     if [[ -e ${i} ]] || [[ -L ${i} ]]
527     then
528     rm -v ${opts} ${i} || die
529     else
530     die "${i} does not exist."
531     fi
532     done
533  }  }
534    
535  # installs executables to given path  mmove()
 # minstalllib {-s} /path/to/exec {/path/to/dest}  
 minstalllib()  
536  {  {
537   local file   local source="$1"
538   local dest   local dest="$2"
539     local opts
540    
541   [[ -z $1 ]] && die "No file given"   # force
542     if [[ $1 = -f ]]
  if [[ $1 = -s ]]  
543   then   then
544   file="${SOURCEDIR}/${PNAME}/$2"   opts="-f"
545     source="$2"
546   dest="$3"   dest="$3"
  if [[ -z $3 ]]  
  then  
  dest=/usr/$(mlibdir)  
  install -d ${BINDIR}/${dest} || die  
  fi  
  else  
  file="$1"  
  dest="$2"  
  if [[ -z $2 ]]  
  then  
  dest=/usr/$(mlibdir)  
  install -d ${BINDIR}/${dest} || die  
  fi  
547   fi   fi
548    
549   # install our library   [[ -z ${source} ]] && die "No source given."
550   install -v -m 0755 -o root -g root ${file} ${BINDIR}/${dest} || die   [[ -z ${dest} ]] && die "No dest given."
551    
552   # create libtool symlinks   mv -v ${opts} ${source} ${BINDIR}/${dest} || die
  # 1. - library.so.1.0.0 -> library.so.1.0  
  if [ "${file%.*}" != *.so ]  
  then  
  ln -v -snf $(basename ${file}) ${BINDIR}/${dest}/$(basename ${file%.*})  
  fi  
  # 2. - library.so.1.0.0 -> library.so.1  
  if [ "${file%.*.*}" != *.so ]  
  then  
  ln -v -snf $(basename ${file}) ${BINDIR}/${dest}/$(basename ${file%.*.*})  
  fi  
553  }  }
554    
555  # mark directoris undeletable  # mark directories undeletable
556  mkeepdir()  mkeepdir()
557  {  {
558   local keepdir   local keepdir
# Line 533  mchown() Line 587  mchown()
587   # recursive   # recursive
588   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
589   then   then
590   local recursive="--recursive"   local recursive="-R"
591   local owner="$2"   local owner="$2"
592   local path="$3"   local path="$3"
593   fi   fi
# Line 553  mchmod() Line 607  mchmod()
607   # recursive   # recursive
608   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
609   then   then
610   local recursive="--recursive"   local recursive="-R"
611   local posix="$2"   local posix="$2"
612   local path="$3"   local path="$3"
613   fi   fi
# Line 568  mlink() Line 622  mlink()
622  {  {
623   local symlink="$1"   local symlink="$1"
624   local pathto="$2"   local pathto="$2"
625     local verbose="-v"
626    
627     # check for busybox as it doesn'tz support 'ln -v'
628     [[ $(readlink $(which ln)) = */busybox ]] && verbose=""
629    
630   [[ -z ${symlink} ]] && die "No symlink given."   [[ -z ${symlink} ]] && die "No symlink given."
631   [[ -z ${pathto} ]] && die "No path given."   [[ -z ${pathto} ]] && die "No path given."
632    
633   ln -v -snf ${symlink} ${BINDIR}/${pathto} || die   ln ${verbose} -snf ${symlink} ${BINDIR}/${pathto} || die
634    }
635    
636    mclearconfig()
637    {
638     local confdir
639     local prefix="${BINDIR}"
640     [[ -z ${MCONFIG} ]] && die "No \$MCONFIG given!"
641    
642     # no bindir prefix if requested
643     case $1 in
644     -b|--no-bindir) prefix="";;
645     esac
646    
647     confdir="$(dirname ${MCONFIG})"
648     if [[ ! -d ${prefix}/${confdir} ]]
649     then
650     install -d ${prefix}/${confdir} || die
651     fi
652     : > ${prefix}/${MCONFIG}
653    }
654    
655    maddconfig()
656    {
657     local argv="$1"
658     local confdir
659     local prefix="${BINDIR}"
660    
661     [[ -z ${MCONFIG} ]] && die "No \$MCONFIG given!"
662    
663     # no bindir prefix if requested
664     case $1 in
665     -b|--no-bindir) prefix=""; argv="$2" ;;
666     esac
667    
668     #[[ -z ${argv} ]] && die "No  argument given!"
669    
670     confdir="$(dirname ${MCONFIG})"
671     if [[ ! -d ${prefix}/${confdir} ]]
672     then
673     install -d ${prefix}/${confdir} || die
674     fi
675     echo "${argv}" >> ${prefix}/${MCONFIG} || die
676    }
677    
678    mfilterflag()
679    {
680     local type="$1"
681     local flag="$2"
682     local var
683    
684     for var in $(eval echo \${${type}})
685     do
686     case "${var}" in
687     ${flag}) continue;;
688     *) echo -n "${var}"' ';;
689     esac
690     done
691     echo
692    }
693    
694    maddflag()
695    {
696     local type="$1"
697     local flag="$2"
698     echo "$(eval echo \${${type}}) ${flag}"
699  }  }

Legend:
Removed from v.2031  
changed lines
  Added in v.31554