Magellan Linux

Annotation of /trunk/mage/usr/lib/mage/smage2.functions.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2040 - (hide annotations) (download) (as text)
Fri Feb 1 09:45:47 2013 UTC (11 years, 3 months ago) by niro
File MIME type: application/x-sh
File size: 30051 byte(s)
-do not save/restore PKGTYPE twice for split_packages
1 niro 1640 #!/bin/bash
2     # smage2 releated functions
3     # $Id$
4    
5     # sources the smage file and uses state from distribution file if exist
6     # may helpful for repository support later on
7     smagesource()
8     {
9     local file="$1"
10 niro 1684 local localstate
11     local distfilestate
12 niro 1649 local mytag
13 niro 1640
14     source ${file}
15    
16 niro 1641 # if PCAT was not set and PCATEGORIE was found
17     # inform the user and use PCATEGORIE as PCAT
18     if [[ -z ${PCAT} ]]
19     then
20     if [[ -n ${PCATEGORIE} ]]
21     then
22     PCAT="${PCATEGORIE}"
23 niro 1651 unset PCATEGORIE
24 niro 1641 # print a warning
25     echo -e "${COLYELLOW}Warning: 'PCATEGORIE' is deprecated and gets removed in the future.${COLDEFAULT}"
26     echo -e "${COLYELLOW} Please modify this smage2 script to use the 'PCAT' variable.${COLDEFAULT}"
27     echo
28     else
29     die "Neither PCAT nor PCATEGORIE are defined!"
30     fi
31     fi
32    
33 niro 1684 [[ -n ${STATE} ]] && localstate="${STATE}"
34 niro 1649 [[ -n ${DISTROTAG} ]] && mytag="${DISTROTAG}"
35 niro 1640
36     if [ -f ${SMAGESCRIPTSDIR}/distribution ]
37     then
38     source ${SMAGESCRIPTSDIR}/distribution
39 niro 1684 [[ -n ${STATE} ]] && distfilestate="${STATE}"
40 niro 1649 [[ -n ${DISTROTAG} ]] && mytag="${DISTROTAG}"
41 niro 1640 fi
42 niro 1684 # now switch state and export it but do not overide any local states
43     if [[ ! -z ${localstate} ]]
44     then
45     STATE="${localstate}"
46     else
47     STATE="${distfilestate}"
48     fi
49 niro 1649
50     if mqueryfeature "pkgdistrotag"
51     then
52     # if DISTROTAG was not defined globally
53     # or in distribution file then deactivate this feature!
54     # at this point $mytag must have the distrotag
55     if [[ -z ${mytag} ]]
56     then
57     FVERBOSE=off msetfeature "!pkgdistrotag"
58     unset DISTROTAG
59     echo -e "${COLRED}Requested 'pkgdistrotag' but no \$DISTROTAG found!${COLDEFAULT}"
60     echo -e "${COLRED}Disabled the feature for pkgbuild sanity!${COLDEFAULT}"
61     else
62 niro 1684 # now switch state and export it but do not overide any local states
63 niro 1649 export DISTROTAG="${mytag}"
64     fi
65     else
66     unset DISTROTAG
67     fi
68 niro 1640 }
69    
70 niro 1649 print_distrotag()
71     {
72     if FVERBOSE=off mqueryfeature "pkgdistrotag"
73     then
74     if [[ ! -z ${DISTROTAG} ]]
75     then
76     # add a point as prefix
77     echo ".${DISTROTAG}"
78     fi
79     fi
80     }
81    
82 niro 1640 showversion()
83     {
84     echo -en "Magellan Source Install v${SMAGEVERSION} "
85     echo -e "-- Niels Rogalla (niro@magellan-linux.de)"
86     }
87    
88     die()
89     {
90     xtitleclean
91     echo -e ${COLRED}"Exited ${BASH_SOURCE} at line no ${BASH_LINENO}."${COLDEFAULT}
92     echo "SMAGE failed: $@"
93     exit 1
94     }
95    
96     die_pipestatus()
97     {
98     # the status change if we do any parameter declarations!!
99     # dont do this anymore, keep this in mind!
100     #
101     # local pos="$1"
102     # local comment="$2"
103     #
104     # [ ${PIPESTATUS[${pos}]} -ne 0 ] && die "${comment}"
105     #
106     [ ${PIPESTATUS[$1]} -ne 0 ] && die "$2"
107     }
108    
109     xtitle()
110     {
111     if [[ ${TERM} = xterm ]]
112     then
113     echo -ne "\033]0;[sMage: $@]\007"
114     fi
115     return 0
116     }
117    
118     xtitleclean()
119     {
120     if [[ ${TERM} = xterm ]]
121     then
122     echo -ne "\033]0;\007"
123     fi
124     return 0
125     }
126    
127     syncsmage2()
128     {
129     xtitle "Updating smage2-script tree ..."
130     local i
131     for i in ${SMAGE2RSYNC}
132     do
133     rsync ${RSYNC_FETCH_OPTIONS} ${i} ${SMAGESCRIPTSDIR}
134     if [[ $? = 0 ]]
135     then
136     break
137     else
138     continue
139     fi
140     done
141    
142     # clean up backup files (foo~)
143     find ${SMAGESCRIPTSDIR} -name *~ -exec rm '{}' ';'
144    
145     xtitleclean
146     }
147    
148     # $1 filename
149     get_db_md5_sum()
150     {
151     local DB_FILE
152     local MD5_FILE
153     local i
154    
155     DB_ENTRY="$(basename $1)"
156     MD5_FILE="${MD5DIR}/$(basename ${SMAGENAME} ${SMAGESUFFIX})"
157    
158     i="$(cat ${MD5_FILE}| grep ${DB_ENTRY} | cut -d' ' -f1)"
159    
160     echo "${i}"
161     }
162    
163     download_sources()
164     {
165     [ -z "${SRC_URI}" ] && echo -e "\nNothing declared to download.\n" && return 0
166    
167     local count=${#SRC_URI[*]}
168     local uri
169     local subdir
170     local outputdir
171     local db_md5_file="${MD5DIR}/$(basename ${SMAGENAME} .${SMAGESUFFIX}).md5"
172     local fetching
173     local i
174    
175     # check if FETCHING is needed
176     if mchecksum --rundir "${SOURCEDIR}/${PNAME}" --file "${db_md5_file}" --method md5
177     then
178     # md5's ok, no fetching needed
179     fetching=false
180     else
181     fetching=true
182     fi
183    
184     if [[ ${fetching} = true ]]
185     then
186     for ((i=0; i < count; i++))
187     do
188     # url to file
189     uri="${SRC_URI[${i}]%%' '*}"
190    
191     # subdir in sources dir; the my_SRCI_URI file goes to there
192     subdir="${SRC_URI[${i}]##*' '}"
193    
194     # if $subdir is not equal with $uri then an other dir is used
195     if [[ ${uri} != ${subdir} ]]
196     then
197     outputdir="${SOURCEDIR}/${PNAME}/${subdir}"
198     else
199     outputdir="${SOURCEDIR}/${PNAME}"
200     fi
201    
202     echo -e "${COLBLUE}==>${COLGREEN} fetching ${uri}${COLDEFAULT}"
203     # always use verbose mode for source downloads
204     FVERBOSE=off msetfeature "verbose"
205     # do not die here, mchecksum catches download errors
206     mdownload --uri "${uri}" --dir "${outputdir}"
207    
208     # unset them to be sure
209     unset uri
210     unset subdir
211     unset outputdir
212     done
213    
214     # recheck md5 sums after download
215     echo
216     echo -e "${COLBLUE}===${COLGREEN} Checking MD5 sums:${COLDEFAULT}"
217     mchecksum --rundir "${SOURCEDIR}/${PNAME}" --file "${db_md5_file}" --method md5 || die "md5 failed"
218     echo
219     else
220     echo -e "${COLBLUE}===${COLGREEN} All sources already fetched, nothing to do${COLDEFAULT}"
221     fi
222    
223     # not needed anymore
224     unset SRC_URI
225     }
226    
227     # dummy function, used if that does not exist in smage file
228     src_prepare()
229     {
230     echo "no src_prepare defined; doing nothing ..."
231     return 0
232     }
233    
234     # dummy function, used if that does not exist in smage file
235     src_compile()
236     {
237     echo "no src_compile defined; doing nothing ..."
238     return 0
239     }
240    
241     # dummy function, used if that does not exist in smage file
242     src_check()
243     {
244     echo "no src_check defined; doing nothing ..."
245     return 0
246     }
247    
248     # dummy function, used if that does not exist in smage file
249     src_install()
250     {
251     echo "no src_install defined; doing nothing ..."
252     return 0
253     }
254    
255     mlibdir()
256     {
257     local libdir=lib
258     [[ ${ARCH} = x86_64 ]] && libdir=lib64
259    
260     echo "${libdir}"
261     }
262    
263     mconfigure()
264     {
265     local myopts
266     if [[ ! -z ${CTARGET} ]]
267     then
268     myopts+=" --target=${CTARGET}"
269     fi
270    
271     if [ -x ./configure ]
272     then
273     # if requested disable-static
274     if [[ ! -z $(./configure --help | grep -- '--.*able-static') ]]
275     then
276     if mqueryfeature '!static'
277     then
278     myopts+=" --disable-static"
279     else
280     myopts+=" --enable-static"
281     fi
282     fi
283    
284 niro 1680 # always enable shared by default but not for waf configure
285     if [[ ! -z $(./configure --help | grep -- '--.*able-shared') ]] &&
286     [[ -z $(./configure --version | grep waf) ]]
287 niro 1640 then
288     myopts+=" --enable-shared"
289     fi
290    
291     ./configure \
292     --prefix=/usr \
293     --host=${CHOST} \
294     --build=${CHOST} \
295     --mandir=/usr/share/man \
296     --infodir=/usr/share/info \
297     --datadir=/usr/share \
298     --sysconfdir=/etc \
299     --localstatedir=/var/lib \
300     --libdir=/usr/$(mlibdir) \
301     ${myopts} \
302     "$@" || die "mconfigure failed"
303     else
304     echo "configure is not an executable ..."
305     exit 1
306     fi
307     }
308    
309     minstall()
310     {
311     if [ -f ./[mM]akefile -o -f ./GNUmakefile ]
312     then
313     make prefix=${BINDIR}/usr \
314     datadir=${BINDIR}/usr/share \
315     infodir=${BINDIR}/usr/share/info \
316     localstatedir=${BINDIR}/var/lib \
317     mandir=${BINDIR}/usr/share/man \
318     sysconfdir=${BINDIR}/etc \
319     libdir=${BINDIR}/usr/$(mlibdir) \
320     "$@" install || die "minstall failed"
321     else
322     die "no Makefile found"
323     fi
324     }
325    
326     mmake()
327     {
328     make ${MAKEOPTS} ${EXTRA_EMAKE} "$@"
329     }
330    
331     munpack()
332     {
333     local SRCFILE
334     local IFTAR
335     local DEST
336    
337     SRCFILE=$1
338    
339     if [[ -z $2 ]]
340     then
341     DEST=${BUILDDIR}
342     else
343     DEST=$2
344     fi
345    
346 niro 1795 echo -e "${COLBLUE}>>>${COLGREEN} Unpacking ${SOURCEDIR}/${PNAME}/${SRCFILE}${COLDEFAULT}"
347    
348 niro 1640 [[ ! -d ${DEST} ]] && install -d ${DEST}
349    
350     case "${SRCFILE##*.}" in
351     bz2)
352     IFTAR="$(basename $SRCFILE .bz2)"
353     IFTAR="${IFTAR##*.}"
354     if [[ ${IFTAR} = tar ]]
355     then
356     tar --no-same-owner -xvjf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tar.bz2 unpack failed."
357     else
358     pushd ${DEST} > /dev/null
359     bzcat ${SOURCEDIR}/${PNAME}/${SRCFILE} > ${DEST}/$(basename ${SRCFILE} .bz2) || die ".bz2 unpack failed."
360     popd > /dev/null
361     fi
362     ;;
363     gz)
364     IFTAR="$(basename $SRCFILE .gz)"
365     IFTAR="${IFTAR##*.}"
366     if [[ ${IFTAR} = tar ]]
367     then
368     tar --no-same-owner -xvzf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tar.gz unpack failed."
369     else
370     pushd ${DEST} > /dev/null
371     zcat ${SOURCEDIR}/${PNAME}/${SRCFILE} > ${DEST}/$(basename ${SRCFILE} .gz) || die ".gz unpack failed."
372     popd > /dev/null
373     fi
374     ;;
375     xz)
376     IFTAR="$(basename $SRCFILE .xz)"
377     IFTAR="${IFTAR##*.}"
378     if [[ ${IFTAR} = tar ]]
379     then
380     tar --no-same-owner -xvJf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tar.xz unpack failed."
381     else
382     pushd ${DEST} > /dev/null
383     xzcat ${SOURCEDIR}/${PNAME}/${SRCFILE} > ${DEST}/$(basename ${SRCFILE} .xz) || die ".xz unpack failed."
384     popd > /dev/null
385     fi
386     ;;
387     tbz2|mpks|mpk)
388     tar --no-same-owner -xvjf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tbz2 unpack failed."
389     ;;
390     tgz)
391     tar --no-same-owner -xvzf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tgz unpack failed."
392     ;;
393     txz|mpkzs|mpkz)
394     tar --no-same-owner -xvJf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".txz unpack failed."
395     ;;
396     rar)
397     unrar x ${SOURCEDIR}/${PNAME}/${SRCFILE} ${DEST} || die ".rar unpack failed."
398     ;;
399     zip|xpi|jar)
400     unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."
401     ;;
402     rpm)
403     pushd ${DEST} > /dev/null
404     rpm2targz ${SOURCEDIR}/${PNAME}/${SRCFILE} || die "rpm2targz: .rpm unpack failed."
405     tar --no-same-owner -xvzf ${SRCFILE/.rpm/.tar.gz} || die "tar: .rpm unpack failed."
406     if [[ -f ${DEST}/${SRCFILE/.rpm/.tar.gz} ]]
407     then
408     rm ${DEST}/${SRCFILE/.rpm/.tar.gz}
409     fi
410     ;;
411     *)
412     die "munpack failed"
413     ;;
414     esac
415     }
416    
417     mpatch()
418     {
419     local PATCHOPTS
420     local PATCHFILE
421     local i
422    
423     PATCHOPTS=$1
424     PATCHFILE=$2
425    
426     if [[ -z $2 ]]
427     then
428     PATCHFILE=$1
429    
430     ## patch level auto-detection, get patch level
431     for ((i=0; i < 10; i++))
432     do
433     patch --dry-run -Np${i} -i ${SOURCEDIR}/${PNAME}/${PATCHFILE} > /dev/null
434     if [[ $? = 0 ]]
435     then
436     PATCHOPTS="-Np${i}"
437     break
438     fi
439     done
440     fi
441    
442     echo -e "${COLBLUE}*** ${COLGREEN}Applying patch '${PATCHFILE}'${COLDEFAULT}"
443     patch "${PATCHOPTS}" -i ${SOURCEDIR}/${PNAME}/${PATCHFILE}
444     }
445    
446     mlibtoolize()
447     {
448     local opts="$@"
449     [[ -z ${opts} ]] && opts="--verbose --install --force"
450    
451     libtoolize ${opts} || die "running: mlibtoolize ${opts}"
452     }
453    
454     mautoreconf()
455     {
456     local opts="$@"
457     [[ -z ${opts} ]] && opts="--verbose --install --force"
458    
459     autoreconf ${opts} || die "running: mautoreconf ${opts}"
460     }
461    
462     minstalldocs()
463     {
464     local docfiles
465     local doc
466     docfiles="$@"
467    
468     if [ ! -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} ]
469     then
470     install -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "creating doc dirs."
471     fi
472    
473     for doc in ${docfiles}
474     do
475     if [ -f ${doc} ]
476     then
477     if mqueryfeature "compressdoc"
478     then
479     cat ${doc} | gzip -9c > ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/$(basename ${doc}).gz || die "gzipping +installing ${doc}."
480     chmod 0644 ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/$(basename ${doc}).gz || die "fixing permissions of ${doc}."
481     else
482     install -m 0644 ${doc} ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "installing ${doc}."
483     fi
484     fi
485     done
486     }
487    
488     mstriplibs()
489     {
490     local stripdir="$@"
491    
492     [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
493     [[ -z ${STRIP_DYN_LIB} ]] && STRIP_DYN_LIB="--strip-debug"
494     find ${stripdir} ! -type d | xargs --no-run-if-empty file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs --no-run-if-empty strip ${STRIP_DYN_LIB} 2> /dev/null
495     }
496    
497     mstripbins()
498     {
499     local stripdir="$@"
500    
501     [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
502     [[ -z ${STRIP_DYN_BIN} ]] && STRIP_DYN_BIN="--strip-debug"
503     find ${stripdir} ! -type d | xargs --no-run-if-empty file | grep "executable" | grep ELF | cut -f 1 -d : | xargs --no-run-if-empty strip ${STRIP_DYN_BIN} 2> /dev/null
504     }
505    
506     mstripstatic()
507     {
508     local stripdir="$@"
509    
510     [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
511     [[ -z ${STRIP_STATIC_LIB} ]] && STRIP_STATIC_LIB="--strip-debug"
512     find ${stripdir} ! -type d | xargs --no-run-if-empty file | grep "ar archive" | cut -f 1 -d : | xargs --no-run-if-empty strip ${STRIP_STATIC_LIB} 2> /dev/null
513     }
514    
515     mstriplibtoolarchive()
516     {
517     local stripdir="$@"
518    
519     [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
520     find ${stripdir} ! -type d -name \*.la | xargs --no-run-if-empty file | grep "libtool library" | cut -f 1 -d : | xargs --no-run-if-empty rm -f -- 2> /dev/null
521     }
522    
523     mpurgetargets()
524     {
525     local stripdir="$@"
526     local target
527    
528     [[ -z ${stripdir} ]] && stripdir=${BINDIR}
529     # nothing to do in this case
530     [[ -z ${PURGE_TARGETS[*]} ]] && return
531    
532     for target in ${PURGE_TARGETS[*]}
533     do
534     # check if target is a regex pattern without any slashes
535     if [[ ${target} = ${target//\/} ]]
536     then
537     find ${BINDIR} -type f -name "${target}" | xargs --no-run-if-empty rm -f -- 2> /dev/null
538     else
539     rm -f -- ${target} 2> /dev/null
540     fi
541     done
542     }
543    
544     mcompressdocs()
545     {
546     local bindir="$@"
547    
548     if [ -d ${bindir}/usr/share/man ]
549     then
550     echo -e "${COLBLUE}===${COLGREEN} compressing man-pages ...${COLDEFAULT}"
551     ${MLIBDIR}/compressdoc -g -9 ${bindir}/usr/share/man
552     fi
553    
554     if [ -d ${bindir}/usr/share/info ]
555     then
556     echo -e "${COLBLUE}===${COLGREEN} compressing info-pages ...${COLDEFAULT}"
557     ${MLIBDIR}/compressdoc -g -9 ${bindir}/usr/share/info
558     fi
559     }
560    
561     sminclude()
562     {
563     local i
564    
565     if [[ -n "$@" ]]
566     then
567     for i in $@
568     do
569     echo "--- Including ${SMAGESCRIPTSDIR}/include/${i}.sminc"
570     source ${SMAGESCRIPTSDIR}/include/${i}.sminc
571     done
572     echo
573     fi
574     }
575    
576 niro 1689 march()
577     {
578     local retval
579    
580     if [[ ! -z ${ARCH} ]]
581     then
582     echo "${ARCH}"
583     retval=0
584     else
585     retval=1
586     fi
587    
588     return "${retval}"
589     }
590    
591     marchsrcfile()
592     {
593     local retval
594 niro 1796 local var="$1"
595    
596     [[ -z ${var} ]] && var="SRCFILE"
597    
598     if [[ ! -z $(eval echo \$${var}_${ARCH/i*86/x86}) ]]
599 niro 1689 then
600 niro 1796 eval echo \$${var}_${ARCH/i*86/x86} | tr ';' '\n'
601 niro 1689 retval=0
602     else
603     retval=1
604     fi
605    
606     return "${retval}"
607     }
608    
609     marchsrcdir()
610     {
611     local retval
612     if [[ ! -z $(eval echo \$SRCDIR_${ARCH/i*86/x86}) ]]
613     then
614     eval echo \$SRCDIR_${ARCH/i*86/x86} | tr ';' '\n'
615     retval=0
616     else
617     retval=1
618     fi
619    
620     return "${retval}"
621     }
622    
623     marchdepend()
624     {
625     local retval
626    
627     if [[ ! -z $(eval echo \$DEPEND_${ARCH/i*86/x86}) ]]
628     then
629     echo "\$(eval echo \\\$DEPEND_\${ARCH/i*86/x86} | tr ';' '\n')"
630     retval=0
631     else
632     retval=1
633     fi
634    
635     return "${retval}"
636     }
637    
638     marchsdepend()
639     {
640     local retval
641     if [[ ! -z $(eval echo \$SDEPEND_${ARCH/i*86/x86}) ]]
642     then
643     echo "\$(eval echo \\\$SDEPEND_\${ARCH/i*86/x86} | tr ';' '\n')"
644     retval=0
645     else
646     retval=1
647     fi
648    
649     return "${retval}"
650     }
651    
652 niro 1640 setup_distcc_environment()
653     {
654     if [ -x /usr/bin/distcc ]
655     then
656     echo -e "${COLBLUE}---${COLGREEN} Using DistCC for compilation ...${COLDEFAULT}"
657     export PATH=/usr/$(mlibdir)/distcc/bin:${PATH} || die "distcc: could not export new $PATH"
658    
659     export DISTCC_DIR="${DISTCC_DIR}" || die "distcc_dir export failed"
660    
661     # creating distcc tempdir
662     install -o distcc -g daemon -d ${DISTCC_DIR}
663     chmod 1777 ${DISTCC_DIR}
664     fi
665     }
666    
667     setup_ccache_environment()
668     {
669     if [ -x /usr/bin/ccache ]
670     then
671     echo -e "${COLBLUE}---${COLGREEN} Using CCache for compilation ...${COLDEFAULT}"
672     export PATH=/usr/$(mlibdir)/ccache/bin:${PATH} || die "ccache: could not export new $PATH"
673     fi
674     }
675    
676     # fixes given dependencies to match a MAGE_TARGET
677     # fix_mage_deps -target s/depend # <-- note -target !
678     fix_mage_deps()
679     {
680     local target="$1"
681     local depend="$2"
682     local NDEPEND
683     local sym dep cat pver pname
684    
685     # deps and provides are special
686     # they must be fixed to match the target
687    
688     # run this only if target and depend is not empty
689     if [ -n "${target}" ] && [ -n "${depend}" ]
690     then
691     # fix DEPEND
692     while read sym dep
693     do
694     # ignore empty lines
695     [[ -z ${dep} ]] && continue
696    
697     cat="$(dirname ${dep})"
698     # change if not virtual
699     if [[ ${cat} = virtual ]]
700     then
701     pname="$(basename ${dep})"
702     else
703     # fix pver to target-pver
704     # to get pname-target-pver
705    
706     # doing it backwards !
707     pver="${dep##*-}"
708     # full pver
709     pname="$(basename ${dep/-${pver}/})${target}-${pver}"
710     fi
711    
712     # do not add empty lines
713     if [ -z "${NDEPEND}" ]
714     then
715     NDEPEND="${sym} ${cat}/${pname}"
716     else
717     NDEPEND="${NDEPEND}
718     ${sym} ${cat}/${pname}"
719     fi
720    
721     unset cat pname pver
722     done << EOF
723     ${depend}
724     EOF
725     # set NDEPEND to DEPEND
726     depend="${NDEPEND}"
727     fi
728    
729     echo "${depend}"
730     }
731    
732     # build_mage_script(): helper functions for regen_mage_tree()
733     # generates an mage file with given information in smage file
734     # needs at least:
735     # PNAME name of pkg
736     # PVER version
737     # PBUILD revision
738 niro 1641 # PCAT category of the pkg
739     # PCATEGORIE category of the pkg (deprecated, use PCAT!)
740 niro 1640 # STATE state of pkg stable|unstable|old
741     # DESCRIPTION a short description (opt)
742     # HOMEPAGE homepage (opt)
743 niro 1648 # LICENSE license information of the pkg (opt)
744 niro 1640 # DEPEND runtime dependencies (opt)
745     # SDEPEND adds needed deps to build the pkg (opt)
746     # PROVIDE provides a virtual (opt)
747     #
748     # special tags:
749     # PKGTYPE type of pkg
750     # INHERITS which functions get included
751     # SPECIAL_FUNCTIONS special functions which should also be added
752     # warning: they get killed before the build starts !
753     # SPLIT_PACKAGES names of all subpackages which are splitted from parent
754     # SPLIT_PACKAGE_BASE base package name for splitpackages
755     # (only in the resulting magefile}
756     #
757     # MAGE_TREE_DEST target destination of the generated tree
758     # REGEN_MAGE_TREE set to 'true' to enable this
759     #
760     # gets called with build_mage_script target
761     build_mage_script()
762     {
763     local magefile
764     local dest
765     local target
766     local split_pkg_base
767     local sym
768     local depname
769    
770     # if MAGE_TREE_DEST not set use BUILDDIR
771     : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}
772    
773     # determinate which suffix this mage file should get, if any
774     [[ $1 = --target ]] && shift && target="-$1"
775    
776     # mark package as splitpackage
777     [[ $1 = --split-pkg-base ]] && shift && split_pkg_base="$1"
778    
779     # name of magefile
780     magefile="${PNAME}${target}-${PVER}-${PBUILD}.mage"
781    
782     # destination to magefile
783 niro 1641 dest="${MAGE_TREE_DEST}/${PCAT}/${PNAME}${target}/${magefile}"
784 niro 1640
785     # show what we are doing
786     echo -e "${COLBLUE}===${COLGREEN} generating mage file:${COLDEFAULT}"
787     echo "${dest}"
788    
789     install -d "$(dirname ${dest})"
790     # now build the mage file
791     > ${dest}
792    
793     # pgkname and state
794 niro 1649 echo "PKGNAME=\"${PNAME}${target}-${PVER}-\${ARCH}$(print_distrotag)-${PBUILD}\"" >> ${dest}
795 niro 1640 echo "STATE=\"${STATE}\"" >> ${dest}
796    
797     # description and homepage
798     echo "DESCRIPTION=\"${DESCRIPTION}\"" >> ${dest}
799     echo "HOMEPAGE=\"${HOMEPAGE}\"" >> ${dest}
800    
801 niro 1648 # license information
802     echo "LICENSE=\"${LICENSE}\"" >> ${dest}
803    
804 niro 1640 # special tags and vars
805     echo "PKGTYPE=\"${PKGTYPE}\"" >> ${dest}
806    
807     # echo MAGE_TARGETS ## note -target is needed !
808     echo "MAGE_TARGETS=\"${target}\"" >> ${dest}
809    
810     # split package base
811     echo "SPLIT_PACKAGE_BASE=\"${split_pkg_base}\"" >> ${dest}
812    
813     # add special vars
814     if [ -n "${SPECIAL_VARS}" ]
815     then
816     local i
817     for i in ${SPECIAL_VARS}
818     do
819     # being tricky here :)
820     echo "${i}=\"$(eval echo \$${i})\"" >> ${dest}
821     done
822     fi
823    
824     # add at least all includes
825     if [ -n "${INHERITS}" ]
826     then
827     echo -n "minclude" >> ${dest}
828     local i
829     for i in ${INHERITS}
830     do
831     echo -n " ${i}" >> ${dest}
832     done
833     # a CRLF is needed here!
834     echo >> ${dest}
835     fi
836    
837     # deps and provides
838     echo "DEPEND=\"$(fix_mage_deps "${target}" "${DEPEND}")\"" >> ${dest}
839     echo "SDEPEND=\"$(fix_mage_deps "${target}" "${SDEPEND}")\"" >> ${dest}
840     echo "PROVIDE=\"${PROVIDE}\"" >> ${dest}
841    
842     # add special functions
843     if [ -n "${SPECIAL_FUNCTIONS}" ]
844     then
845     local i
846     for i in ${SPECIAL_FUNCTIONS}
847     do
848     # add to mage (quotes needed !)
849     typeset -f "${i}" >> ${dest}
850     # unset to be safe (quotes needed !)
851     #unset "${i}" <-- later to get every target built
852     done
853     fi
854    
855     # pre|post-install|removes
856     typeset -f preinstall >> ${dest}
857     typeset -f postinstall >> ${dest}
858     typeset -f preremove >> ${dest}
859     typeset -f postremove >> ${dest}
860     }
861    
862     regen_mage_tree()
863     {
864     local subpackage
865    
866     # build them only if requested
867     if mqueryfeature regentree
868     then
869     # run it without targets
870     if [[ -n ${MAGE_TARGETS} ]]
871     then
872     # build for each target a mage file
873     # run it with several targets
874     echo
875     for subpackage in ${MAGE_TARGETS}
876     do
877     build_mage_script --target "${subpackage}"
878     done
879     echo
880    
881     # run it for splitpackages
882     elif [[ -n ${SPLIT_PACKAGES} ]]
883     then
884     local split_pkg_base="${PNAME}"
885     # save smage environment
886     split_save_variables
887     # build for each subpackage a mage file
888     # run it with several targets
889     echo
890     for subpackage in ${SPLIT_PACKAGES}
891     do
892     # get the right variables for the split
893     export PNAME="${subpackage}"
894     split_info_${subpackage}
895 niro 1651 # fix PCATEGORIE -> PCAT
896     if [[ ! -z ${PCATEGORIE} ]]
897     then
898     PCAT="${PCATEGORIE}"
899     unset PCATEGORIE
900     fi
901 niro 1640 # get the preinstall etc
902     split_export_inherits ${subpackage}
903     build_mage_script --split-pkg-base "${split_pkg_base}"
904     # delete split preinstall etc
905     split_delete_inherits ${subpackage}
906     # restore smage environment
907     split_restore_variables
908     done
909     echo
910     # unset all saved smage variables
911     split_unset_variables
912    
913     else
914     echo
915     build_mage_script
916     echo
917     fi
918     fi
919    
920     # now unset all uneeded vars to be safe
921     # unset PKGNAME <-- don't do that; smage needs this var
922     # unset to be safe (quotes needed !)
923     # for i in ${SPECIAL_FUNCTIONS}
924     # do
925     # unset "${i}"
926     # done
927     unset SPECIAL_FUNCTIONS
928     # for i in ${SPECIAL_VARS}
929     # do
930     # unset "${i}"
931     # done
932     unset SPECIAL_VARS
933     unset STATE
934     unset DESCRIPTION
935     unset HOMEPAGE
936     # unset PKGTYPE <-- don't do that either; smage needs this var
937     unset INHERITS
938     unset DEPEND
939     unset SDEPEND
940     unset PROVIDE
941     unset preinstall
942     unset postinstall
943     unset preremove
944     unset postremove
945     }
946    
947     split_save_variables()
948     {
949     export SAVED_PNAME="${PNAME}"
950     export SAVED_PVER="${PVER}"
951     export SAVED_PBUILD="${PBUILD}"
952 niro 1641 export SAVED_PCAT="${PCAT}"
953 niro 1640 export SAVED_DESCRIPTION="${DESCRIPTION}"
954     export SAVED_HOMEPAGE="${HOMEPAGE}"
955     export SAVED_SPECIAL_VARS="${SPECIAL_VARS}"
956     export SAVED_STATE="${STATE}"
957     export SAVED_INHERITS="${INHERITS}"
958     export SAVED_DEPEND="${DEPEND}"
959     export SAVED_SDEPEND="${SDEPEND}"
960     export SAVED_PROVIDE="${PROVIDE}"
961     export SAVED_PKGTYPE="${PKGTYPE}"
962    
963     # special handling needed for mage features
964     # pkgbuild
965     mqueryfeature "pkgbuild" && export SAVED_FEATURE_PKGBUILD="pkgbuild"
966     mqueryfeature "!pkgbuild" && export SAVED_FEATURE_PKGBUILD="!pkgbuild"
967     # strip
968     mqueryfeature "strip" && export SAVED_FEATURE_STRIP="strip"
969     mqueryfeature "!strip" && export SAVED_FEATURE_STRIP="!strip"
970     # libtool
971     mqueryfeature "libtool" && export SAVED_FEATURE_LIBTOOL="libtool"
972     mqueryfeature "!libtool" && export SAVED_FEATURE_LIBTOOL="!libtool"
973     # compressdoc
974     mqueryfeature "compressdoc" && export SAVED_FEATURE_COMPRESSDOC="compressdoc"
975     mqueryfeature "!compressdoc" && export SAVED_FEATURE_COMPRESSDOC="!compressdoc"
976    
977     # bindir too
978     export SAVED_BINDIR="${BINDIR}"
979    
980     # export the SPLIT_PACKAGE_BASE
981     export SPLIT_PACKAGE_BASE="${SAVED_PNAME}"
982    
983     # functions
984     if [[ ! -z $(typeset -f preinstall) ]]
985     then
986     # rename the old one
987     local saved_preinstall
988     saved_preinstall=SAVED_$(typeset -f preinstall)
989     eval "${saved_preinstall}"
990     export -f SAVED_preinstall
991     fi
992    
993     if [[ ! -z $(typeset -f postinstall) ]]
994     then
995     # rename the old one
996     local saved_postinstall
997     saved_postinstall=SAVED_$(typeset -f postinstall)
998     eval "${saved_postinstall}"
999     export -f SAVED_postinstall
1000     fi
1001    
1002     if [[ ! -z $(typeset -f preremove) ]]
1003     then
1004     # rename the old one
1005     local saved_preremove
1006     saved_preremove=SAVED_$(typeset -f preremove)
1007     eval "${saved_preremove}"
1008     export -f SAVED_preremove
1009     fi
1010    
1011     if [[ ! -z $(typeset -f postremove) ]]
1012     then
1013     # rename the old one
1014     local saved_postremove
1015     saved_postremove=SAVED_$(typeset -f postremove)
1016     eval "${saved_postremove}"
1017     export -f SAVED_postremove
1018     fi
1019     }
1020    
1021     split_restore_variables()
1022     {
1023     export PNAME="${SAVED_PNAME}"
1024     export PVER="${SAVED_PVER}"
1025     export PBUILD="${SAVED_PBUILD}"
1026 niro 1641 export PCAT="${SAVED_PCAT}"
1027 niro 1640 export DESCRIPTION="${SAVED_DESCRIPTION}"
1028     export HOMEPAGE="${SAVED_HOMEPAGE}"
1029     export SPECIAL_VARS="${SAVED_SPECIAL_VARS}"
1030     export STATE="${SAVED_STATE}"
1031     export INHERITS="${SAVED_INHERITS}"
1032     export DEPEND="${SAVED_DEPEND}"
1033     export SDEPEND="${SAVED_SDEPEND}"
1034     export PROVIDE="${SAVED_PROVIDE}"
1035     export PKGTYPE="${SAVED_PKGTYPE}"
1036    
1037     # special handling needed for mage features
1038     # pkgbuild
1039     FVERBOSE=off msetfeature "${SAVED_FEATURE_PKGBUILD}"
1040     # strip
1041     FVERBOSE=off msetfeature "${SAVED_FEATURE_STRIP}"
1042     # libtool
1043     FVERBOSE=off msetfeature "${SAVED_FEATURE_LIBTOOL}"
1044     # compressdoc
1045     FVERBOSE=off msetfeature "${SAVED_FEATURE_COMPRESSDOC}"
1046    
1047     # bindir too
1048     export BINDIR="${SAVED_BINDIR}"
1049    
1050     # functions
1051     if [[ ! -z $(typeset -f SAVED_preinstall) ]]
1052     then
1053     # rename the old one
1054     local saved_preinstall
1055     saved_preinstall=$(typeset -f SAVED_preinstall)
1056     eval "${saved_preinstall/SAVED_/}"
1057     export -f preinstall
1058     fi
1059    
1060     if [[ ! -z $(typeset -f SAVED_postinstall) ]]
1061     then
1062     # rename the old one
1063     local saved_postinstall
1064     saved_postinstall=$(typeset -f SAVED_postinstall)
1065     eval "${saved_postinstall/SAVED_/}"
1066     export -f postinstall
1067     fi
1068    
1069     if [[ ! -z $(typeset -f SAVED_preremove) ]]
1070     then
1071     # rename the old one
1072     local saved_preremove
1073     saved_preremove=$(typeset -f SAVED_preremove)
1074     eval "${saved_preremove/SAVED_/}"
1075     export -f preremove
1076     fi
1077    
1078     if [[ ! -z $(typeset -f SAVED_postremove) ]]
1079     then
1080     # rename the old one
1081     local saved_postremove
1082     saved_postremove=$(typeset -f SAVED_postremove)
1083     eval "${saved_postremove/SAVED_/}"
1084     export -f postremove
1085     fi
1086     }
1087    
1088     split_unset_variables()
1089     {
1090     # unset saved vars; not needed anymore
1091     unset SAVED_PNAME
1092     unset SAVED_PVER
1093     unset SAVED_PBUILD
1094 niro 1641 unset SAVED_PCAT
1095 niro 1640 unset SAVED_DESCRIPTION
1096     unset SAVED_HOMEPAGE
1097     unset SAVED_SPECIAL_VARS
1098     unset SAVED_STATE
1099     unset SAVED_PKGTYPE
1100     unset SAVED_INHERITS
1101     unset SAVED_DEPEND
1102     unset SAVED_SDEPEND
1103     unset SAVED_PROVIDE
1104     unset SAVED_BINDIR
1105     unset SAVED_PKGTYPE
1106     unset SAVED_FEATURE_PKGBUILD
1107     unset SAVED_FEATURE_STRIP
1108     unset SAVED_FEATURE_LIBTOOL
1109     unset SAVED_FEATURE_COMPRESSDOC
1110     unset SPLIT_PACKAGE_BASE
1111     unset -f SAVED_preinstall
1112     unset -f SAVED_postinstall
1113     unset -f SAVED_preremove
1114     unset -f SAVED_postremove
1115     }
1116    
1117     split_export_inherits()
1118     {
1119     local subpackage="$1"
1120     local func
1121     local newfunc
1122    
1123     for func in preinstall postinstall preremove postremove
1124     do
1125     if [[ ! -z $(typeset -f ${func}_${subpackage}) ]]
1126     then
1127     newfunc=$(typeset -f ${func}_${subpackage})
1128     newfunc="${newfunc/_${subpackage} (/ (}"
1129     eval "${newfunc}"
1130     fi
1131     done
1132     }
1133    
1134     split_delete_inherits()
1135     {
1136     local subpackage="$1"
1137     local func
1138    
1139     for func in preinstall postinstall preremove postremove
1140     do
1141     if [[ ! -z $(typeset -f ${func}_${subpackage}) ]]
1142     then
1143     unset -f ${func}
1144     fi
1145     done
1146     }
1147    
1148     export_inherits()
1149     {
1150     local include="$1"
1151     shift
1152    
1153     while [ "$1" ]
1154     do
1155     local functions="$1"
1156    
1157     # sanity checks
1158     [ -z "${include}" ] && die "export_inherits(): \$include not given."
1159     [ -z "${functions}" ] && die "export_inherits(): \$functions not given."
1160    
1161     eval "${functions}() { ${include}_${functions} ; }"
1162    
1163     # debug
1164     [[ ${MAGEDEBUG} = on ]] && typeset -f "${functions}"
1165    
1166     shift
1167     done
1168     }
1169    
1170     generate_package_md5sum()
1171     {
1172     local dest
1173     local pcat
1174     local pname
1175     local pver
1176     local pbuild
1177     local parch
1178     local target
1179     local pkgname
1180    
1181     # very basic getops
1182     for i in $*
1183     do
1184     case $1 in
1185     --pcat|-c) shift; pcat="$1" ;;
1186     --pname|-n) shift; pname="$1" ;;
1187     --pver|-v) shift; pver="$1" ;;
1188     --pbuild|-b) shift; pbuild="$1" ;;
1189     --parch|a) shift; parch="$1" ;;
1190     --target|t) shift; target="$1" ;;
1191     esac
1192     shift
1193     done
1194    
1195     # sanity checks; abort if not given
1196     [ -z "${pcat}" ] && die "generate_package_md5sum() \$pcat not given."
1197     [ -z "${pname}" ] && die "generate_package_md5sum() \$pname not given."
1198     [ -z "${pver}" ] && die "generate_package_md5sum() \$pver not given."
1199     [ -z "${pbuild}" ] && die "generate_package_md5sum() \$pbuild not given."
1200     [ -z "${parch}" ] && die "generate_package_md5sum() \$parch not given."
1201    
1202     # check needed global vars
1203     [ -z "${PKGDIR}" ] && die "generate_package_md5sum() \$PKGDIR not set."
1204     [ -z "${PKGSUFFIX}" ] && die "generate_package_md5sum() \$PKGSUFFIX not set."
1205    
1206     # fix target as it may be empty !
1207     [ -n "${target}" ] && target="-${target}"
1208    
1209     # build pkgname
1210 niro 1649 pkgname="${pname}${target}-${pver}-${parch}$(print_distrotag)-${pbuild}"
1211 niro 1640
1212     # build pkg-md5-sum only if requested
1213     if mqueryfeature regentree
1214     then
1215     echo -ne "${COLBLUE}===${COLGREEN} generating md5's for ${pkgname}.${PKGSUFFIX} ... ${COLDEFAULT}"
1216    
1217     # abort if not exist
1218     if [ ! -f ${PKGDIR}/${pkgname}.${PKGSUFFIX} ]
1219     then
1220     echo -e "${COLRED}! exists${COLDEFAULT}"
1221     return 0
1222     fi
1223    
1224     # if MAGE_TREE_DEST not set use BUILDDIR
1225     : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}
1226    
1227     # setup md5 dir
1228     dest="${MAGE_TREE_DEST}/${pcat}/${pname}${target}/md5"
1229     install -d ${dest}
1230    
1231     # gen md5sum
1232     ( cd ${PKGDIR}; md5sum "${pkgname}.${PKGSUFFIX}" ) \
1233     > ${dest}/${pkgname}.md5
1234     echo -e "${COLGREEN}done${COLDEFAULT}"
1235     fi
1236     }
1237    
1238     source_pkg_build()
1239     {
1240     if [[ ${PKGTYPE} = virtual ]]
1241     then
1242     echo "Virtual package detected; src-pkg-tarball not necessary ..."
1243     return 0
1244     fi
1245    
1246     if [[ ! -d ${SOURCEDIR}/${PNAME} ]]
1247     then
1248     echo "No SRC_URI defined; src-pkg-tarball not necessary ..."
1249     return 0
1250     fi
1251    
1252     [ -z "${SRCPKGDIR}" ] && die "\$SRCPKGDIR not found. Please setup your ${MAGERC} correctly."
1253    
1254     echo -e "${COLGREEN}Creating source package tarball ... ${COLDEFAULT}"
1255    
1256     # include the smage2 file
1257     cp ${SMAGENAME} ${SOURCEDIR}/${PNAME}
1258    
1259     ( cd ${SOURCEDIR}; tar cvjf ${BUILDDIR}/${PNAME}-${PVER}-${PBUILD}.tar.bz2 ${PNAME}; )
1260     [[ ! -d ${SRCPKGDIR} ]] && install -d ${SRCPKGDIR}
1261     mv ${BUILDDIR}/${PNAME}-${PVER}-${PBUILD}.tar.bz2 ${SRCPKGDIR}/${PNAME}-${PVER}-${PBUILD}.${SRCPKGSUFFIX}
1262    
1263 niro 1679 echo -e "${COLGREEN}Source package ${COLBLUE}${PNAME}-${PVER}-${PBUILD}.${SRCPKGSUFFIX} ${COLGREEN}successfully builded.${COLDEFAULT}\n"
1264 niro 1640 }
1265    
1266     step_by_step()
1267     {
1268     if mqueryfeature stepbystep
1269     then
1270     echo -e "${COLRED}Step-by-step enabled! Paused after $1.${COLDEFAULT}"
1271     echo "Press [enter] to continue"
1272     read
1273     fi
1274     }
1275    
1276     resume_stamp()
1277     {
1278     local step="$1"
1279     [[ ! -d ${BUILDDIR}/.stamps ]] && install -d ${BUILDDIR}/.stamps
1280     touch ${BUILDDIR}/.stamps/smage-${PKGNAME}-${step}
1281     }
1282    
1283     run_resume()
1284     {
1285     local step="$1"
1286    
1287     if mqueryfeature "resume" && [[ -f ${BUILDDIR}/.stamps/smage-${PKGNAME}-${step} ]]
1288     then
1289     echo -e "${COLMAGENTA}${step} already processed; doing nothing${COLDEFAULT}"
1290     return 0
1291     else
1292     return 1
1293     fi
1294     }