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 2032 by niro, Fri Jun 12 11:01:39 2009 UTC trunk/include/mtools.sminc revision 19670 by niro, Wed Oct 9 13:16:15 2013 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 initscripts  # installs given directories
14  # minstallrc /path/to/rc-script {destfilename}  # minstalldir /path/to/dest/dir {/path/to/dest/dirN}
15  minstallrc()  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    # install files to given path (defaults to /usr/bin)
29    # minstallfile {-s} /path/to/file {/path/to/dest}
30    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   # install our initscript  # installs executables to given path
93   install -v -m 0755 -o root -g root ${file} ${BINDIR}/etc/rc.d/init.d/${rcscript} || die  # 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     # create libtool symlinks
136     # 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    
 minstalludevrule()  
 {  
  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 udev rule  
  install -v -m 0644 -o root -g root ${file} ${BINDIR}/etc/udev/rules.d/${udevrule} || die  
 }  
   
 minstalludevhelper()  
 {  
  local udevhelper  
  local file  
   
  [[ -z "$1" ]] && die "No udev helper 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  
  udevhelper="$2"  
  else  
  udevhelper="$(basename ${file})"  
  fi  
   
  # needed directory  
  install -d ${BINDIR}/lib/udev || die  
   
  # install our udev-helper  
  install -v -m 0755 -o root -g root ${file} ${BINDIR}/lib/udev/${udevhelper} || 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 278  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 316  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 351  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 372  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 383  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 402  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
467    
468   [[ -z ${argv} ]] && die "No dest dir given"   # recursive
469   for dest in ${argv}   if [[ $1 = -r ]] || [[ $1 = -R ]]
470   do   then
471   [[ -d ${BINDIR}${dest} ]] && continue   opts="-R"
472   install -v -d ${BINDIR}/${dest} || die   source="$2"
473   done   dest="$3"
474  }   fi
   
   
 # install files to given path (defaults to /usr/bin)  
 # minstallfile {-s} /path/to/file {/path/to/dest}  
 minstallfile()  
 {  
  local file  
  local dest  
475    
476   [[ -z $1 ]] && die "No etc file given"   # recursive
477     if [[ $1 = -rf ]] || [[ $1 = -fr ]] || [[ $1 = -Rf ]] || [[ $1 = -fR ]]
478     then
479     opts="-R -f"
480     source="$2"
481     dest="$3"
482     fi
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     [[ ! -e ${BINDIR}/${dest} ]] && die "${BINDIR}/${dest} does not exist."
525    
526     rm -v ${opts} ${BINDIR}/${dest} || die
527  }  }
528    
529  # installs executables to given path  mmove()
 # minstalllib {-s} /path/to/exec {/path/to/dest}  
 minstalllib()  
530  {  {
531   local file   local source="$1"
532   local dest   local dest="$2"
533     local opts
  [[ -z $1 ]] && die "No file given"  
534    
535   if [[ $1 = -s ]]   # force
536     if [[ $1 = -f ]]
537   then   then
538   file="${SOURCEDIR}/${PNAME}/$2"   opts="-f"
539     source="$2"
540   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  
541   fi   fi
542    
543   # install our library   [[ -z ${source} ]] && die "No source given."
544   install -v -m 0755 -o root -g root ${file} ${BINDIR}/${dest} || die   [[ -z ${dest} ]] && die "No dest given."
545    
546   # 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  
547  }  }
548    
549  # mark directoris undeletable  # mark directories undeletable
550  mkeepdir()  mkeepdir()
551  {  {
552   local keepdir   local keepdir
# Line 562  mchown() Line 581  mchown()
581   # recursive   # recursive
582   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
583   then   then
584   local recursive="--recursive"   local recursive="-R"
585   local owner="$2"   local owner="$2"
586   local path="$3"   local path="$3"
587   fi   fi
# Line 582  mchmod() Line 601  mchmod()
601   # recursive   # recursive
602   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
603   then   then
604   local recursive="--recursive"   local recursive="-R"
605   local posix="$2"   local posix="$2"
606   local path="$3"   local path="$3"
607   fi   fi
# Line 597  mlink() Line 616  mlink()
616  {  {
617   local symlink="$1"   local symlink="$1"
618   local pathto="$2"   local pathto="$2"
619     local verbose="-v"
620    
621     # check for busybox as it doesn'tz support 'ln -v'
622     [[ $(readlink $(which ln)) = */busybox ]] && verbose=""
623    
624   [[ -z ${symlink} ]] && die "No symlink given."   [[ -z ${symlink} ]] && die "No symlink given."
625   [[ -z ${pathto} ]] && die "No path given."   [[ -z ${pathto} ]] && die "No path given."
626    
627   ln -v -snf ${symlink} ${BINDIR}/${pathto} || die   ln ${verbose} -snf ${symlink} ${BINDIR}/${pathto} || die
628    }
629    
630    mclearconfig()
631    {
632     local confdir
633     local prefix="${BINDIR}"
634     [[ -z ${MCONFIG} ]] && die "No \$MCONFIG given!"
635    
636     # no bindir prefix if requested
637     case $1 in
638     -b|--no-bindir) prefix="";;
639     esac
640    
641     confdir="$(dirname ${MCONFIG})"
642     if [[ ! -d ${prefix}/${confdir} ]]
643     then
644     install -d ${prefix}/${confdir} || die
645     fi
646     : > ${prefix}/${MCONFIG}
647    }
648    
649    maddconfig()
650    {
651     local argv="$1"
652     local confdir
653     local prefix="${BINDIR}"
654    
655     [[ -z ${MCONFIG} ]] && die "No \$MCONFIG given!"
656    
657     # no bindir prefix if requested
658     case $1 in
659     -b|--no-bindir) prefix=""; argv="$2" ;;
660     esac
661    
662     #[[ -z ${argv} ]] && die "No  argument given!"
663    
664     confdir="$(dirname ${MCONFIG})"
665     if [[ ! -d ${prefix}/${confdir} ]]
666     then
667     install -d ${prefix}/${confdir} || die
668     fi
669     echo "${argv}" >> ${prefix}/${MCONFIG} || die
670  }  }

Legend:
Removed from v.2032  
changed lines
  Added in v.19670