Magellan Linux

Contents of /trunk/mage/usr/lib/mage/smage2.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 205 - (show annotations) (download) (as text)
Mon Aug 22 00:16:41 2005 UTC (18 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 20816 byte(s)
typo

1 #!/bin/bash
2
3 # compiles/installs .smage2 source install scripts
4 # needs pkgbuild_dir (mage)
5
6 # SMAGE2
7 # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.35 2005-08-22 00:16:41 niro Exp $
8
9 #01.10.2004
10 # added ccache support
11 # added distcc support
12
13 ## setup ##
14 PKGSUFFIX="mpk"
15 SMAGENAME="$1"
16 SMAGESUFFIX="smage2"
17 #SOURCEDIR="/bootstrap/sources"
18 #SMAGESCRIPTSDIR="/bootstrap/smage2-install-scripts"
19 #SMAGE2RSYNC="rsync://192.168.0.2/smage2-scripts"
20 MLIBDIR=/usr/lib/mage
21 SMAGEVERSION="$( < ${MLIBDIR}/version)"
22
23 # export default C locale
24 export LC_ALL=C
25
26 source /etc/mage.rc
27
28 showversion() {
29 echo -en "Magellan Source Install v${SMAGEVERSION} "
30 echo -e "-- Niels Rogalla (niro@magellan-linux.de)"
31 }
32
33 die() {
34 xtitleclean
35 echo "SMAGE failed: $@"
36 exit 1
37 }
38
39 xtitle() {
40 if [ ${TERM} == "xterm" ]
41 then
42 echo -ne "\033]0;[sMage: $@]\007"
43 fi
44 return 0
45 }
46
47 xtitleclean() {
48 if [ ${TERM} == "xterm" ]
49 then
50 echo -ne "\033]0;\007"
51 fi
52 return 0
53 }
54
55 syncsmage2() {
56 xtitle "Updating smage2-script tree ..."
57 local i
58 for i in ${SMAGE2RSYNC}
59 do
60 rsync \
61 --recursive \
62 --links \
63 --perms \
64 --times \
65 --devices \
66 --timeout=600 \
67 --verbose \
68 --compress \
69 --progress \
70 --stats \
71 --delete \
72 --delete-after \
73 ${i} ${SMAGESCRIPTSDIR}
74
75 if [ "$?" == "0" ]
76 then
77 break
78 else
79 continue
80 fi
81
82 done
83
84 #clean up backup files (foo~)
85 find ${SMAGESCRIPTSDIR} -name *~ -exec rm '{}' ';'
86
87 xtitleclean
88 }
89
90 # $1 filename
91 get_db_md5_sum() {
92 local DB_FILE
93 local MD5_FILE
94 local i
95
96 DB_ENTRY="$(basename $1)"
97 MD5_FILE="${MD5DIR}/$(basename ${SMAGENAME} ${SMAGESUFFIX})"
98
99 i="$(cat ${MD5_FILE}| grep ${DB_ENTRY} | cut -d' ' -f1)"
100
101 echo "${i}"
102 }
103
104 download_sources() {
105
106 [ -z "${SRC_URI}" ] && echo -e "\nNothing declared to download.\n" && return 0
107
108 local EOA=${#SRC_URI[*]}
109 local my_SRC_URI
110 local my_SRC_URI_DEST
111 local my_SRC_URI_MIRROR
112 local my_SOURCEDIR
113 local DB_MD5_SUM_FILE="${MD5DIR}/$(basename ${SMAGENAME} .${SMAGESUFFIX}).md5"
114 local FETCHING
115 local i mirror
116
117
118 #install SRCDIR/PNAME if not exist
119 [ ! -d ${SOURCEDIR}/${PNAME} ] && install -d ${SOURCEDIR}/${PNAME}
120
121 # check if FETCHING is needed
122 ( cd ${SOURCEDIR}/${PNAME}; md5sum --check ${DB_MD5_SUM_FILE} &> /dev/null )
123 if [[ $? == 0 ]]
124 then
125 # md5's ok, not fetching needed
126 FETCHING=false
127 else
128 FETCHING=true
129 fi
130
131 for ((i=0; i < EOA; i++))
132 do
133 # url to file
134 my_SRC_URI="$(echo ${SRC_URI[${i}]} | cut -d' ' -f1)"
135
136 # subdir in sources dir; the my_SRCI_URI file goes to there
137 my_SRC_URI_DEST="$(echo ${SRC_URI[${i}]} | cut -d' ' -f2)"
138
139 # if my_src_uri_dest is not equal my_src_uri; than an other dir is used
140 if [[ ${my_SRC_URI_DEST} != ${my_SRC_URI} ]]
141 then
142 my_SOURCEDIR="${SOURCEDIR}/${PNAME}/${my_SRC_URI_DEST}"
143 else
144 my_SOURCEDIR="${SOURCEDIR}/${PNAME}"
145 fi
146
147 # if an mirrored file than replace first the mirror uri
148 if [ -n "$(echo ${my_SRC_URI} | grep 'mirror://')" ]
149 then
150 for mirror in ${MIRRORS}
151 do
152 my_SRC_URI_MIRROR="$(echo ${my_SRC_URI} | sed "s|mirror:/|${mirror}/sources|g")"
153
154 #echo "DEBUG: ${MY_SRC_URI}"
155 if [[ ${FETCHING} == true ]]
156 then
157 echo "==> fetching ${my_SRC_URI_MIRROR}"
158 wget \
159 --passive-ftp \
160 --tries 3 \
161 --continue \
162 --progress bar \
163 --directory-prefix="${my_SOURCEDIR}" \
164 "${my_SRC_URI_MIRROR}"
165 if [ "$?" == "0" ]
166 then
167 break
168 else
169 continue
170 fi
171 fi
172 done
173 else
174 #echo "DEBUG: ${SRC_URI[${i}]}"
175 if [[ ${FETCHING} == true ]]
176 then
177 echo "==> fetching ${my_SRC_URI}"
178 wget \
179 --passive-ftp \
180 --tries 3 \
181 --continue \
182 --progress bar \
183 --directory-prefix="${my_SOURCEDIR}" \
184 "${my_SRC_URI}"
185 # only needed to run through a list of mirrors
186 # if [ "$?" == "0" ]
187 # then
188 # break
189 # else
190 # continue
191 # fi
192 fi
193 fi
194
195 # unset them to be shure
196 unset my_SRC_URI
197 unset my_SRC_URI_DEST
198 unset my_SRC_URI_MIRROR
199 unset my_SOURCEDIR
200 done
201
202 # recheck md5 sums
203 echo
204 echo ">== Checking MD5 sums:"
205 ( cd ${SOURCEDIR}/${PNAME}; md5sum --check ${DB_MD5_SUM_FILE} ) || die "md5 failed"
206 echo
207
208 # not needed anymore
209 unset SRC_URI
210 }
211
212 # dummy function, used if that not exist in smage file
213 src_prepare() {
214 echo "no src_prepare defined"
215 sleep 2
216 return 0
217 }
218
219 # dummy function, used if that not exist in smage file
220 src_compile() {
221 echo "no src_compile defined"
222 sleep 2
223 return 0
224 }
225
226 # dummy function, used if that not exist in smage file
227 src_install() {
228 echo "no src_install defined"
229 sleep 2
230 return 0
231 }
232
233 mconfigure() {
234 if [ -x ./configure ]
235 then
236 ./configure \
237 --prefix=/usr \
238 --host=${CHOST} \
239 --mandir=/usr/share/man \
240 --infodir=/usr/share/info \
241 --datadir=/usr/share \
242 --sysconfdir=/etc \
243 --localstatedir=/var/lib \
244 "$@" || die "mconfigure failed"
245 else
246 echo "configure is not an executable ..."
247 exit 1
248 fi
249 }
250
251 minstall() {
252 if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
253 make prefix=${BINDIR}/usr \
254 datadir=${BINDIR}/usr/share \
255 infodir=${BINDIR}/usr/share/info \
256 localstatedir=${BINDIR}/var/lib \
257 mandir=${BINDIR}/usr/share/man \
258 sysconfdir=${BINDIR}/etc \
259 "$@" install || die "minstall failed"
260 else
261 die "no Makefile found"
262 fi
263 }
264
265 mmake() {
266 make ${MAKEOPTS} ${EXTRA_EMAKE} "$@"
267 }
268
269 munpack() {
270 local SRCFILE
271 local IFTAR
272 local DEST
273
274 SRCFILE=$1
275
276 if [ -z "$2" ]
277 then
278 DEST=${BUILDDIR}
279 else
280 DEST=$2
281 fi
282
283 case "${SRCFILE##*.}" in
284 bz2)
285 IFTAR="$(basename $SRCFILE .bz2)"
286 IFTAR="${IFTAR##*.}"
287 if [ "${IFTAR}" == "tar" ]
288 then
289 tar --no-same-owner -xvjf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST}
290 fi
291 ;;
292 gz)
293 IFTAR="$(basename $SRCFILE .gz)"
294 IFTAR="${IFTAR##*.}"
295 if [ "${IFTAR}" == "tar" ]
296 then
297 tar --no-same-owner -xvzf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST}
298 fi
299 ;;
300 tbz2)
301 tar --no-same-owner -xvjf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST}
302 ;;
303 tgz)
304 tar --no-same-owner -xvzf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST}
305 ;;
306 *)
307 die "munpack failed"
308 ;;
309 esac
310 }
311
312 mpatch() {
313 local PATCHOPTS
314 local PATCHFILE
315
316 PATCHOPTS=$1
317 PATCHFILE=$2
318
319 patch "${PATCHOPTS}" -i ${SOURCEDIR}/${PNAME}/${PATCHFILE}
320 }
321
322
323 minstalldocs() {
324 local docfiles
325
326 docfiles="$@"
327
328 if [ ! -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} ]
329 then
330 install -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "creating doc dirs."
331 fi
332
333 for i in ${docfiles}
334 do
335 cat ${i} | gzip -9c > ${i}.gz || die "gzipping docs."
336 install -m 0644 ${SRCDIR}/${i}.gz \
337 ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "coping docs."
338 done
339 }
340
341 mstriplibs() {
342 local stripdir="$@"
343
344 [ -z "${stripdir}" ] && stripdir=${BINDIR}
345 find ${stripdir} | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
346 }
347
348 mstripbins() {
349 local stripdir="$@"
350
351 [ -z "${stripdir}" ] && stripdir=${BINDIR}
352 find ${stripdir} | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
353 }
354
355 sminclude() {
356 local i
357
358 if [[ -n "$@" ]]
359 then
360 for i in $@
361 do
362 echo "--- Including ${SMAGESCRIPTSDIR}/include/${i}.sminc"
363 source ${SMAGESCRIPTSDIR}/include/${i}.sminc
364 done
365 echo
366 fi
367 }
368
369 setup_distcc_environment(){
370 if [ -x /usr/bin/distcc ]
371 then
372 echo "Using DistCC for compilation ..."
373 export PATH=/usr/lib/distcc/bin:${PATH} || die "distcc: could not export new $PATH"
374
375 #export distcc as compiler
376 # export CC="distcc"
377 # export CXX=distcc
378
379 export DISTCC_DIR="${DISTCC_DIR}" || die "distcc_dir export failed"
380
381
382 #ccache + distcc together
383 if [ "${SMAGE_USE_CCACHE}" == "true" ]
384 then
385 if [ -x /usr/bin/ccache ]
386 then
387 echo "Preparing DistCC to work together with CCache ..."
388 #export CCACHE_PREFIX="distcc" || die "distcc: could not set ccach_prefix"
389 # export CC="ccache distcc"
390 # export CXX="ccache distcc"
391 fi
392 fi
393
394 #creating distcc tempdir
395 install -o distcc -g daemon -d ${DISTCC_DIR}
396 chmod 1777 ${DISTCC_DIR}
397 fi
398 }
399
400 setup_ccache_environment(){
401 if [ -x /usr/bin/ccache ]
402 then
403 echo "Using CCache for compilation ..."
404 export PATH=/usr/lib/ccache/bin:${PATH} || die "ccache: could not export new $PATH"
405 #unset CC CXX
406 fi
407 }
408
409
410 # fixes given dependencies to match a MAGE_TARGET
411 # fix_mage_deps -target s/depend # <-- note -target !
412 fix_mage_deps() {
413 local target="$1"
414 local depend="$2"
415 local NDEPEND
416 local sym dep cat pver pname
417
418 # deps and provides are special
419 # they must be fixed to match the target
420
421 # run this only if target and depend is not empty
422 if [ -n "${target}" ] && [ -n "${depend}" ]
423 then
424 # fix DEPEND
425 while read sym dep
426 do
427 cat="$(dirname ${dep})"
428 # change if not virtual
429 if [[ ${cat} = virtual ]]
430 then
431 pname="$(basename ${dep})"
432 else
433 # fix pver to target-pver
434 # to get pname-target-pver
435
436 # doing it backwards !
437 pver="${dep##*-}"
438 # full pver
439 pname="$(basename ${dep/-${pver}/})${target}-${pver}"
440 fi
441
442 # do not add empty lines
443 if [ -z "${NDEPEND}" ]
444 then
445 NDEPEND="${sym} ${cat}/${pname}"
446 else
447 NDEPEND="${NDEPEND}
448 ${sym} ${cat}/${pname}"
449 fi
450
451 unset cat pname pver
452 done << EOF
453 ${depend}
454 EOF
455 # set NDEPEND to DEPEND
456 depend="${NDEPEND}"
457 fi
458
459 echo "${depend}"
460 }
461
462 # build_mage_script(): helper functions for regen_mage_tree()
463 # generates an mage file with given information in smage file
464 # needs at least:
465 # PNAME name of pkg
466 # PVER version
467 # PBUILD revision
468 # PCATEGORIE categorie of the pkg
469 # STATE state of pkg stable|unstable|old
470 # DESCRIPTION va short description (opt)
471 # HOMEPAGE homepage (opt)
472 # DEPEND runtime dependencies (opt)
473 # SDEPEND add. needed deps to build the pkg (opt)
474 # PROVIDE provides a virtual (opt)
475 #
476 # special tags:
477 # PKGTYPE type of pkg
478 # INHERITS which functions get included
479 # SPECIAL_FUNCTIONS special functions wich should also be added
480 # warning: they get killed before the build starts !
481 #
482 # MAGE_TREE_DEST target destination of the generated tree
483 # REGEN_MAGE_TREE set to 'true' to enable this
484 #
485 # gets called with build_mage_script target
486 build_mage_script()
487 {
488 local magefile
489 local dest
490 local target
491 local sym
492 local depname
493
494 # if MAGE_TREE_DEST not set use BUILDDIR
495 : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}
496
497 # determinate which suffix this mage file should get, if any
498 [ -n "$1" ] && target="-$1"
499
500 # name of magefile
501 magefile="${PNAME}${target}-${PVER}-${PBUILD}.mage"
502
503 # destination to magefile
504 dest="${MAGE_TREE_DEST}/${PCATEGORIE}/${PNAME}${target}/${magefile}"
505
506 # show what we are doing
507 echo "Generating Mage file:"
508 echo " ${dest}"
509
510 install -d "$(dirname ${dest})"
511 # now build the mage file
512 > ${dest}
513
514 # header
515 echo '# $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.35 2005-08-22 00:16:41 niro Exp $' >> ${dest}
516 echo >> ${dest}
517
518 # pgkname and state
519 echo "PKGNAME=\"${PNAME}${target}-${PVER}-\${ARCH}-${PBUILD}\"" >> ${dest}
520 echo "STATE=\"${STATE}\"" >> ${dest}
521 echo >> ${dest}
522
523 # description and homepage
524 echo "DESCRIPTION=\"${DESCRIPTION}\"" >> ${dest}
525 echo "HOMEPAGE=\"${HOMEPAGE}\"" >> ${dest}
526 echo >> ${dest}
527
528 # special tags and vars
529 echo "PKGTYPE=\"${PKGTYPE}\"" >> ${dest}
530 # add special vars
531 if [ -n "${SPECIAL_VARS}" ]
532 then
533 local i
534 for i in ${SPECIAL_VARS}
535 do
536 # being tricky here :)
537 echo "${i}=\"$(eval echo \$${i})\"" >> ${dest}
538 done
539 echo >> ${dest}
540 fi
541 # add at least all includes
542 if [ -n "${INHERITS}" ]
543 then
544 echo -n "minclude" >> ${dest}
545 local i
546 for i in ${INHERITS}
547 do
548 echo -n " ${i}" >> ${dest}
549 done
550 echo >> ${dest}
551 fi
552 echo >> ${dest}
553
554 # deps and provides
555 echo "DEPEND=\"$(fix_mage_deps "${target}" "${DEPEND}")\"" >> ${dest}
556 echo >> ${dest}
557 echo "SDEPEND=\"$(fix_mage_deps "${target}" "${SDEPEND}")\"" >> ${dest}
558 echo >> ${dest}
559 echo "PROVIDE=\"${PROVIDE}\"" >> ${dest}
560 echo >> ${dest}
561
562 # add special functions
563 if [ -n "${SPECIAL_FUNCTIONS}" ]
564 then
565 local i
566 for i in ${SPECIAL_FUNCTIONS}
567 do
568 # add to mage (quotes needed !)
569 typeset -f "${i}" >> ${dest}
570 # unset to be safe (quotes needed !)
571 #unset "${i}" <-- later to get every target built
572 done
573 echo >> ${dest}
574 fi
575
576 # pre|post-install|removes
577 typeset -f preinstall >> ${dest}
578 echo >> ${dest}
579 typeset -f postinstall >> ${dest}
580 echo >> ${dest}
581 typeset -f preremove >> ${dest}
582 echo >> ${dest}
583 typeset -f postremove >> ${dest}
584 echo >> ${dest}
585
586 # echo MAGE_TARGETS ## note -target is needed !
587 echo "MAGE_TARGETS=\"${target}\"" >> ${dest}
588 }
589
590 regen_mage_tree()
591 {
592 local i
593
594 # build them only if requested
595 if [[ ${REGEN_MAGE_TREE} = true ]]
596 then
597 # run it without targets
598 if [ -z "${MAGE_TARGETS}" ]
599 then
600 echo
601 build_mage_script
602 echo
603 else
604
605 # build for each target an mage file
606 # run it with several targets
607 for i in ${MAGE_TARGETS}
608 do
609 echo
610 build_mage_script "${i}"
611 echo
612 done
613 fi
614 fi
615
616 # now unset all uneeded vars to be safe
617 # unset PKGNAME <-- don't do that; smage needs this var
618 # unset to be safe (quotes needed !)
619 for i in ${SPECIAL_FUNCTIONS}
620 do
621 unset "${i}"
622 done
623 unset SPECIAL_FUNCTIONS
624 for i in ${SPECIAL_VARS}
625 do
626 unset "${i}"
627 done
628 unset SPECIAL_VARS
629 unset STATE
630 unset DESCRIPTION
631 unset HOMEPAGE
632 unset PKGTYPE
633 unset INHERITS
634 unset DEPEND
635 unset SDEPEND
636 unset PROVIDE
637 unset preinstall
638 unset postinstall
639 unset preremove
640 unset postremove
641 }
642
643 # print out our version
644 showversion
645 echo
646
647 if [ -z "$1" ]
648 then
649 echo "No .smage2 file given. Exiting."
650 echo
651 exit 1
652 fi
653
654 # updating smage2-scripts
655 if [ "$1" == "update" ]
656 then
657 if [ ! -d ${SOURCEDIR} ]
658 then
659 install -d ${SOURCEDIR}
660 fi
661 syncsmage2
662 exit 0
663 fi
664
665 # creates md5sums for smages to given dir
666 if [ "$1" == "calcmd5" ]
667 then
668 if [ $# -ge 3 ]
669 then
670 SMAGENAME="$2"
671 MD5DIR="$3"
672 source ${SMAGENAME} || die "download source failed"
673
674 # overridable sourcedir; must be declared after source of the smage2
675 CALC_SOURCEDIR="${CALC_SOURCEDIR:="${SOURCEDIR}/${PNAME}"}"
676
677 [ -z "${SRC_URI}" ] && die "Nothing declared to calculate."
678
679 # end of array
680 EOA=${#SRC_URI[*]}
681
682 [ ! -d ${MD5DIR} ] && install -d ${MD5DIR}
683
684 # clear md5sum file
685 MY_MD5_FILE="${MD5DIR}/$(basename ${SMAGENAME} .${SMAGESUFFIX}).md5"
686 echo -n > ${MY_MD5_FILE}
687
688 for ((i=0; i < EOA; i++))
689 do
690 # url to file
691 my_SRC_URI="$(echo ${SRC_URI[${i}]} | cut -d' ' -f1)"
692
693 # subdir in sources dir; the my_SRCI_URI file goes to there
694 my_SRC_URI_DEST="$(echo ${SRC_URI[${i}]} | cut -d' ' -f2)"
695
696 # if my_src_uri_dest is not equal my_src_uri; than an other dir is used
697 if [[ ${my_SRC_URI_DEST} != ${my_SRC_URI} ]]
698 then
699 MY_SRC_FILE="${my_SRC_URI_DEST}/$(basename ${SRC_URI[${i}]})"
700 else
701 MY_SRC_FILE="$(basename ${SRC_URI[${i}]})"
702 fi
703
704 if [ -e "${CALC_SOURCEDIR}/${MY_SRC_FILE}" ]
705 then
706 echo "calculating $(basename ${MY_SRC_FILE}) ..."
707 ( cd ${CALC_SOURCEDIR}; md5sum "${MY_SRC_FILE}" ) >> ${MY_MD5_FILE}
708 else
709 echo "WARNING: File '$(basename ${MY_SRC_FILE}) not found in ${CALC_SOURCEDIR}."
710 fi
711
712 # unset them to be shure
713 unset my_SRC_URI
714 unset my_SRC_URI_DEST
715 unset my_SRC_URI_MIRROR
716 unset my_SOURCEDIR
717 done
718
719 echo
720 echo "Calculating of md5 sums for '$(basename ${SMAGENAME} .${SMAGESUFFIX})' done."
721 echo
722 else
723 echo "Usage: Calculating MD5 Sums:"
724 echo " $(basename $0) calcmd5 /path/to/SMAGENAME /path/to/MD5DIR"
725 echo
726 echo
727 echo "Export the CALC_SOURCEDIR variable to override current SOURCEDIRs."
728 echo
729 exit 1
730 fi
731
732 exit 0
733 fi
734
735 # download sources
736 if [ "$1" == "download" -a -n "$2" ]
737 then
738 if [ ! -d ${SMAGESCRIPTSDIR} ]
739 then
740 install -d ${SMAGESCRIPTSDIR}
741 fi
742
743 # get smage
744 SMAGENAME="$2"
745 MD5DIR="$(dirname ${SMAGENAME})/md5"
746 source ${SMAGENAME} || die "download source failed"
747
748 download_sources
749 exit 0
750 fi
751
752 # regen-mage-tree
753 if [ "$1" == "only-regen-tree" -a -n "$2" ]
754 then
755 # set correct SMAGENAME
756 SMAGENAME="$2"
757 MD5DIR="$(dirname ${SMAGENAME})/md5"
758 source ${SMAGENAME} || die "regen: smage2 not found"
759
760 regen_mage_tree
761 exit 0
762 fi
763
764 if [ ! -e ${MLIBDIR}/pkgbuild_dir.sh ]
765 then
766 die "Error: ${MLIBDIR}/pkgbuild_dir.sh not found. Aborting."
767 fi
768
769 if [ -z "`basename ${SMAGENAME}|grep .${SMAGESUFFIX}`" ]
770 then
771 die "File '`basename ${SMAGENAME}`' is not a sMage v${SMAGEVERSION} file. Aborting."
772 fi
773
774 if [ -z "${SOURCEDIR}" ]
775 then
776 die "\$SOURCEDIR not found. Please setup your mage.rc correctly."
777 fi
778
779 if [ -z "${SMAGESCRIPTSDIR}" ]
780 then
781 die "\$SMAGESCRIPTSDIR not found. Please setup your mage.rc correctly."
782 fi
783
784 if [ -z "${SMAGE2RSYNC}" ]
785 then
786 echo "\$SMAGE2RSYNC not found. Please setup your mage.rc correctly."
787 exit 1
788 fi
789
790 if [ -z "${BINDIR}" ]
791 then
792 die "no BINDIR variable found in /etc/mage.rc"
793 fi
794
795 if [ -z "${CHOST}" ]
796 then
797 die "no CHOST variable found in /etc/mage.rc"
798 fi
799
800 if [ -z "${CFLAGS}" ]
801 then
802 die "no CFLAGS variable found in /etc/mage.rc"
803 fi
804
805 if [ -z "${CXXFLAGS}" ]
806 then
807 die "no CXXFLAGS variable found in /etc/mage.rc"
808 fi
809
810
811 source ${SMAGENAME} || die "source failed"
812 PKGNAME="${PNAME}-${PVER}-${CHOST%%-*}-${PBUILD}"
813 MD5DIR="$(dirname ${SMAGENAME})/md5"
814
815 xtitle "Compiling ${PKGNAME}"
816 echo "Compiling ${PKGNAME}"
817
818 # auto regen mage tree if requested
819 regen_mage_tree
820
821 # download sources
822 download_sources
823
824 # fixes some issues with these functions
825 export -f src_prepare || die "src_prepare export failed"
826 export -f src_compile || die "src_compile export failed"
827 export -f src_install || die "src_install export failed"
828
829 # fixes some compile issues
830 export CHOST="${CHOST}" || die "CHOST export failed"
831 export CFLAGS="${CFLAGS}" || die "CFLAGS export failed"
832 export CXXFLAGS="${CFLAGS}" || die "CXXFLAGS export failed"
833 export BINDIR="${BINDIR}" || die "BINDIR export failed"
834 export MAKEOPTS="${MAKEOPTS}" || die "MAKEOPTS export failed"
835
836
837 # setup distcc
838 # distcc mus be setup *before* ccache, as ccache need to be before distcc in path
839 if [ "${SMAGE_USE_DISTCC}" == "true" ]
840 then
841 setup_distcc_environment
842 fi
843
844 # setup ccache
845 if [ "${SMAGE_USE_CCACHE}" == "true" ]
846 then
847 setup_ccache_environment
848 fi
849
850
851 # small sleep to show our settings
852 sleep 1
853
854 #debug
855 #echo "CC=${CC}"
856 #echo "CXX=${CXX}"
857 #echo "DISTCC_DIR=${DISTCC_DIR}"
858 #echo "PATH: ${PATH}"
859 #echo "--------------------------------------"
860 #env
861 #echo "--------------------------------------"
862 #read
863 #debug end
864
865 # cleans up build if a previously one exists
866 if [ -d ${BUILDDIR} ]
867 then
868 rm -rf ${BUILDDIR}/* || die "couldn't cleanup \$BUILDDIR."
869 fi
870 install -d ${BUILDDIR} || die "couldn't create \$BUILDDIR."
871
872 # cleans up srcdir if a previously unpacked one exists
873 if [ -d ${SRCDIR} ]
874 then
875 rm -rf ${SRCDIR}
876 fi
877
878 # cleans up bindir if a previous build exists or creates a new one
879 if [ -d ${BINDIR} ]
880 then
881 rm -rf ${BINDIR}
882 fi
883 install -d ${BINDIR} || die "couldn't create \$BINDIR."
884
885 # cleans up package temp dir if a previous build exists
886 if [ -d ${BUILDDIR}/${PKGNAME} ]
887 then
888 rm -rf ${BUILDDIR}/${PKGNAME}
889 fi
890
891 # cleans up timestamp if one exists
892 if [ -f /var/tmp/timestamp ]
893 then
894 mage rmstamp
895 fi
896
897 src_prepare || die "src_prepare failed"
898 src_compile || die "src_compile failed"
899 src_install || die "src_install failed"
900
901
902 # compressing doc, info & man files
903 echo -e "Compressing man-pages ..."
904 if [ -d ${BUILDDIR}/builded/usr/share/man ]
905 then
906 ${MLIBDIR}/compressdoc -g -9 ${BUILDDIR}/builded/usr/share/man
907 fi
908
909 echo -e "Compressing info-pages ..."
910 if [ -d ${BUILDDIR}/builded/usr/share/info ]
911 then
912 ${MLIBDIR}/compressdoc -g -9 ${BUILDDIR}/builded/usr/share/info
913 fi
914
915 # stripping all bins and libs
916 case ${NOSTRIP} in
917 true|TRUE|yes|y)
918 echo -e "NOSTRIP=true detected; Package will not be stripped ..."
919 ;;
920 *)
921 echo -e "Stripping binaries ..."
922 mstripbins ${BINDIR}
923 echo -e "Stripping libraries ..."
924 mstriplibs ${BINDIR}
925 ;;
926 esac
927
928 # the new buildpkg command
929 case ${NOPKGBUILD} in
930 true|TRUE|yes|y)
931 echo -e "NOPGKBUILD=true detected; Package will not be build ..."
932 ;;
933 *)
934 # build serveral targets
935 if [ -n "${MAGE_TARGETS}" ]
936 then
937 for target in ${MAGE_TARGETS}
938 do
939 # check if an special target_pkgbuild exists
940 if typeset -f ${target}_pkgbuild > /dev/null
941 then
942 # run it
943 ${target}_pkgbuild
944 fi
945 # now create the target package
946 ${MLIBDIR}/pkgbuild_dir.sh \
947 "${PNAME}-${target}-${PVER}-${CHOST%%-*}-${PBUILD}" \
948 ${BINDIR} || die "target: ${target} package-build failed"
949 echo -e "\nPackage ${PNAME}-${target}-${PVER}-${CHOST%%-*}-${PBUILD} successfully builded.\n"
950 done
951 else
952 ${MLIBDIR}/pkgbuild_dir.sh ${PKGNAME} ${BINDIR} || die "package-build failed"
953 echo -e "\nPackage ${PKGNAME} successfully builded.\n"
954 fi
955 ;;
956 esac
957
958 # for sure
959 unset NOPKGBUILD
960 unset NOSTRIP
961
962 xtitleclean
963 #echo -e "\nPackage ${PKGNAME} successfully builded.\n"

Properties

Name Value
svn:executable *