#!/bin/sh

. /etc/init.d/tc-functions

checkroot

export CFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe -fno-exceptions -fno-rtti"
export CPPFLAGS="-I/usr/local/include"
export LDFLAGS="-L/usr/local/lib"
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig

TODAY=`date +%Y/%m/%d`
PACKAGE="denemo"
SEP="-"
VERSION="0.8.20"
MIRROR="ftp://ftp.gnu.org/gnu/${PACKAGE}/"
DESCRIPTION="music notation editor"
AUTHORS="?"
HOMEPAGE="http://denemo.org/"
LICENSE="GPL"
ME="jls_legalize (unsenepopiu at tin dot it)"
DEPS="guile.tcz \
aubio.tcz \
libportaudio.tcz \
libxml2.tcz \
fftw.tcz \
gtksourceview.tcz \
jack.tcz \
fluidsynth.tcz"
BUILDDEPS="aubio-dev.tcz \
gtk2-dev.tcz \
gtksourceview-dev.tcz \
guile-dev.tcz \
libportaudio.tcz \
libxcb-dev.tcz \
fftw-dev.tcz
fluidsynth.tcz"
FLAGS="--prefix=/usr/local --enable-jack"
DOCS="usr/local/share/denemo/manual"


TCUSER=`cat /etc/sysconfig/tcuser`
SRC="${PACKAGE}${SEP}${VERSION}.tar.gz"
THISDIR=`pwd`
PKGDIR="${THISDIR}/${PACKAGE}"
SRCDIR="${PKGDIR}/${PACKAGE}${SEP}${VERSION}"
TCEDIR="$(cat /opt/.tce_dir)"

clean(){
	rm -rf ${THISDIR}/${PACKAGE}
}
environment(){
	for each in compiletc.tcz squashfs-tools-4.x.tcz ${DEPS} ${BUILDDEPS}; do
		APPNAME=$(getbasefile "$each" 1)
		if [ ! -f /usr/local/tce.installed/"${APPNAME}" ]; then
			if [ ! -e ${TCEDIR}/optional/${each} ]; then
				sudo -u ${TCUSER} tce-load -w ${each}
			fi
			sudo -u ${TCUSER} tce-load -i ${TCEDIR}/optional/${each}
		fi
	done
	#[ -d "${PKGDIR}" ] && rm -rf ${PKGDIR}
	#mkdir -p ${PKGDIR}/tmp
	#echo ${MIRROR}${SRC}
	#cd ${PKGDIR} && wget ${MIRROR}${SRC}
	#tar xzf ${SRC}
}

buildit(){
	cd ${SRCDIR}
	#make clean
	./configure ${FLAGS} 
	make
	touch /tmp/mark
	make DESTDIR=${PKGDIR}/tmp install
}

workit(){
	if [ "`ls -A ${PKGDIR}/tmp`" ]; then
		rm /tmp/mark
	else
		cd /
		find usr/ -newer /tmp/mark -not -type d > /tmp/${PACKAGE}.list
		tar czO -T /tmp/${PACKAGE}.list | tar xzf - -C ${PKGDIR}/tmp
		rm /tmp/${PACKAGE}.list
	fi


	cd ${PKGDIR}/tmp

	#rm -rf ${DOCS}

	mkdir -p usr/local/share/doc/License
	cp ${SRCDIR}/COPYING usr/local/share/doc/License/${PACKAGE}.txt

	find usr/ | xargs file | grep "executable" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
	find usr/ | xargs file | grep "shared object" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip -g 2> /dev/null

	echo "X-FullPathIcon=/usr/local/share/pixmaps/${PACKAGE}.png" >> usr/local/share/applications/${PACKAGE}.desktop

	#package specific stuff
	#locale
	mkdir -p ../locale/usr/local/share/locale
	mv usr/local/share/locale ../locale/usr/local/share
	
	#dev
	for I in $(find `ls` -name *.h); do 
		export DIR=`dirname "$I"`; 
		[ -d ../dev/"$DIR" ] || mkdir -p ../dev/"$DIR"; 
		mv "$I" ../dev/"$DIR"/; 
	done

	for I in $(find `ls` -name *.a); do 
		export DIR=`dirname "$I"`; 
		[ -d ../dev/"$DIR" ] || mkdir -p ../dev/"$DIR"; 
		mv "$I" ../dev/"$DIR"/; 
	done

	for I in $(find `ls` -name *.la); do 
		export DIR=`dirname "$I"`; 
		[ -d ../dev/"$DIR" ] || mkdir -p ../dev/"$DIR"; 
		mv "$I" ../dev/"$DIR"/; 
	done
	
	for I in $(find `ls` -name *.pc); do 
		export DIR=`dirname "$I"`; 
		[ -d ../dev/"$DIR" ] || mkdir -p ../dev/"$DIR"; 
		mv "$I" ../dev/"$DIR"/; 
	done

	rm -rf usr/local/include
	rm -rf usr/local/lib/pkgconfig

	#doc
	mkdir -p ../doc/${DOCS}
	mv ${DOCS} ../doc/
}

packageit(){
   cd ${PKGDIR}/tmp
   for dir in `ls -A`; do
      find ${dir} -not -type d | sort >> ../${PACKAGE}.tcz.list
   done

   mksquashfs . ../${PACKAGE}.tcz

   cd ${PKGDIR}
   md5sum ${PACKAGE}.tcz > ${PACKAGE}.tcz.md5.txt

   for each in ${DEPS}; do echo ${each} >> ${PACKAGE}.tcz.dep; done

   size=`du -h ${PACKAGE}.tcz | cut -f 1`

cat <<EOF> ${PACKAGE}.tcz.info
Title:		${PACKAGE}.tcz
Description:	${DESCRIPTION}
Version:	${VERSION}
Author:		${AUTHORS}
Original-site:	${HOMEPAGE}
Copying-policy:	${LICENSE}
Size:		${size}
Extension_by:	${ME}
Comments:	This extension is PPI compatible
Change-log:	2010/09/19 First version 0.8.18
Current:	${TODAY} updated to ${VERSION}
EOF

   #locale
   cd ${PKGDIR}/locale
   for dir in `ls -A`; do
      find ${dir} -not -type d | sort >> ../${PACKAGE}-locale.tcz.list
   done

   mksquashfs . ../${PACKAGE}-locale.tcz

   cd ${PKGDIR}
   md5sum ${PACKAGE}-locale.tcz > ${PACKAGE}-locale.tcz.md5.txt

   echo ${PACKAGE}.tcz > ${PACKAGE}-locale.tcz.dep
   
   size=`du -h ${PACKAGE}-locale.tcz | cut -f 1`

   cat <<EOF> ${PACKAGE}-locale.tcz.info
Title:		${PACKAGE}-locale.tcz
Description:	${DESCRIPTION} locale files
Version:	${VERSION}
Author:		${AUTHORS}
Original-site:	${HOMEPAGE}
Copying-policy:	${LICENSE}
Size:		${size}
Extension_by:	${ME}
Comments:	locale files
				
		This extension is PPI compatible
Change-log:	2010/09/19 First version 0.8.18
Current:	${TODAY} First version ${VERSION}
EOF

   #doc
   cd ${PKGDIR}/doc
   for dir in `ls -A`; do
      find ${dir} -not -type d | sort >> ../${PACKAGE}-doc.tcz.list
   done

   mksquashfs . ../${PACKAGE}-doc.tcz

   cd ${PKGDIR}
   md5sum ${PACKAGE}-doc.tcz > ${PACKAGE}-doc.tcz.md5.txt

   size=`du -h ${PACKAGE}-doc.tcz | cut -f 1`

   cat <<EOF> ${PACKAGE}-doc.tcz.info
Title:		${PACKAGE}-doc.tcz
Description:	${DESCRIPTION} doc files
Version:	${VERSION}
Author:		${AUTHORS}
Original-site:	${HOMEPAGE}
Copying-policy:	${LICENSE}
Size:		${size}
Extension_by:	${ME}
Comments:	doc files
				
		This extension is PPI compatible
Change-log:	2010/09/19 First version 0.8.18
Current:	${TODAY} Fisrt Version ${VERSION}
EOF
}
tarit(){	
	cd ${PKGDIR}
	rm ${PACKAGE}.tar.bz2
	cp ../${PACKAGE}.tcbuild .
	tar	cjvf ${PACKAGE}.tar.bz2 \
		${PACKAGE}.tcz* \
		${PACKAGE}-locale.tcz* \
		${PACKAGE}.tcbuild \
		${SRC}
}
#here we go
#clean
#environment
#buildit
#workit
#packageit
tarit
