#!/bin/sh
#script by kingdomcome modified by jls_legalize <unsenepopiu@tin.it>

. /etc/init.d/tc-functions

checkroot

export CFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export LDFLAGS="-Wl,-O1"

TODAY=`date +%Y/%m/%d`
PACKAGE="connman"
SEP="-"
VERSION="0.77"
MIRROR="http://www.kernel.org/pub/linux/network/connman"
DESCRIPTION="a daemon for managing internet connections"
AUTHORS="Marcel Holtmann and Samuel Ortiz"
HOMEPAGE="http://connman.net"
LICENSE="GPLv2"
ME="jls_legalize <unsenepopiu at tin dot it>"
DEPS="dbus.tcz \
iptables.tcz \
glib2.tcz"
BUILDDEPS="dbus-dev.tcz \
wpa_supplicant.tcz \
glib2-dev.tcz \
gnutls-dev.tcz"
FLAGS="--enable-ethernet \
--enable-wifi \
--enable-bluetooth \
--enable-google \
--enable-ntpd \
--enable-client \
--enable-tools \
--enable-test"
DOCS="/usr/local/share/doc"
TCUSER=`cat /etc/sysconfig/tcuser`
SRC="${PACKAGE}${SEP}${VERSION}.tar.xz"
THISDIR=`pwd`
PKGDIR="${THISDIR}/${PACKAGE}"
SRCDIR="${PKGDIR}/${PACKAGE}${SEP}${VERSION}"
TCEDIR=/etc/sysconfig/tcedir
COPYING="COPYING"
CURRENT="${TODAY} Updated to ${VERSION}"

clean(){
	rm -rf ${THISDIR}/${PACKAGE}
}
environment(){
	for each in compiletc.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
	[ -e  ${PKGDIR}/tmp ]  || mkdir -p ${PKGDIR}/tmp
	cd ${PKGDIR} 

	[ -e  ${SRC} ] || (wget ${MIRROR}/${SRC} && xz -d ${SRC} && tar xf ${PACKAGE}${SEP}${VERSION}.tar) 
}
buildit(){
	cd ${SRCDIR}
	make clean
	./configure ${FLAGS} || exit 1 
	echo -n "Press Enter key."
	read gagme
	make || exit 1 
	make DESTDIR=${PKGDIR}/tmp install-strip || exit 1
}
workit(){
	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

	sed -i '17d' usr/local/etc/dbus-1/system.d/connman.conf 
	echo '    <policy group="staff">' >> usr/local/etc/dbus-1/system.d/connman.conf 
       	echo '       <allow own="net.connman"/>' >> usr/local/etc/dbus-1/system.d/connman.conf 
	echo '       <allow send_destination="net.connman"/>' >> usr/local/etc/dbus-1/system.d/connman.conf 
	echo '       <allow send_interface="net.connman.Agent"/>' >> usr/local/etc/dbus-1/system.d/connman.conf 
	echo '       <allow send_interface="net.connman.Counter"/>' >> usr/local/etc/dbus-1/system.d/connman.conf 
        echo '       <allow send_interface="net.connman.Notification"/>' >> usr/local/etc/dbus-1/system.d/connman.conf 
	echo '    </policy>' >> usr/local/etc/dbus-1/system.d/connman.conf 
	echo '</busconfig>' >> usr/local/etc/dbus-1/system.d/connman.conf 

	#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
}
getinfo(){
   cd ${PKGDIR}
   getMirror
   [ -e ${PACKAGE}.tcz.info ] && rm ${PACKAGE}.tcz.info
   busybox wget "$MIRROR/$PACKAGE.tcz.info"
   [ -e ${PACKAGE}-dev.tcz.info ] && rm ${PACKAGE}-dev.tcz.info
   busybox wget "$MIRROR/$PACKAGE-dev.tcz.info"
}
packageit(){
   if [ ! -f /usr/local/tce.installed/squashfs-tools-4.x ]; then
	if [ ! -e ${TCEDIR}/optional/squashfs-tools-4.x.tcz ]; then
		sudo -u ${TCUSER} tce-load -w squashfs-tools-4.x.tcz 
	fi
	su ${TCUSER} -c "tce-load -is squashfs-tools-4.x.tcz"
   fi

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

   [ -e ../${PACKAGE}.tcz ] && rm ../${PACKAGE}.tcz
   mksquashfs . ../${PACKAGE}.tcz

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

   [ -e ${PACKAGE}.tcz.dep ] && rm ${PACKAGE}.tcz.dep
   for each in ${DEPS}; do echo ${each} >> ${PACKAGE}.tcz.dep; done

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

   sed -i "s/Version:.*/Version:	${VERSION}/" ${PACKAGE}.tcz.info
   sed -i "s/Size:.*/Size:	${size}/" ${PACKAGE}.tcz.info
   sed -i "s/Current:/	/" $PACKAGE.tcz.info
   echo "Current:	$CURRENT" >> $PACKAGE.tcz.info

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

   [ -e ../${PACKAGE}-dev.tcz ] && rm ../${PACKAGE}-dev.tcz
   mksquashfs . ../${PACKAGE}-dev.tcz

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

   [ -f "${PACKAGE}-dev.tcz.dep" ] && rm -f ${PACKAGE}-dev.tcz.dep
   echo ${PACKAGE}.tcz > ${PACKAGE}-dev.tcz.dep
   for each in ${BUILDDEPS}; do echo ${each} >> ${PACKAGE}-dev.tcz.dep; done

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

   sed -i "s/Version:.*/Version:	${VERSION}/" ${PACKAGE}-dev.tcz.info
   sed -i "s/Size:.*/Size:	${size}/" ${PACKAGE}-dev.tcz.info
   sed -i "s/Current:/	/" $PACKAGE-dev.tcz.info
   echo "Current:	$CURRENT" >> $PACKAGE-dev.tcz.info
}

checkit(){
	sudo chown ${TCUSER}:staff ${THISDIR}
	cd ${PKGDIR}
	if [ ! -f /usr/local/tce.installed/submitqc4 ]; then
		if [ ! -e ${TCEDIR}/optional/submitqc4 ]; then
			sudo -u ${TCUSER} tce-load -w submitqc4
		fi
		su ${TCUSER} -c "tce-load -is submitqc4"
	fi
	submitqc4
}
tarit(){	
	cd ${PKGDIR}
	[ -f  ../${PACKAGE}$SEP$VERSION.tar.xz ] && rm ../${PACKAGE}$SEP$VERSION.tar.xz
	cp ../${PACKAGE}.tcbuild .

	if [ ! -f /usr/local/tce.installed/xz ]; then
		if [ ! -e ${TCEDIR}/optional/xz ]; then
			sudo -u ${TCUSER} tce-load -w xz
		fi
		su ${TCUSER} -c "tce-load -is xz"
	fi
	[ -e ../${PACKAGE}.tar ] && rm ../${PACKAGE}.tar
	tar	cvf ../${PACKAGE}$SEP$VERSION.tar \
		${PACKAGE}.tcz* \
		${PACKAGE}-dev.tcz* \
		${PACKAGE}.tcbuild \
		${PACKAGE}${SEP}${VERSION}.tar
	cd ${THISDIR}
	[ -e ${PACKAGE}.tar.xz ] && rm ${PACKAGE}.tar.xz
	xz ${PACKAGE}$SEP$VERSION.tar
}
#here we go

#clean
#environment
#echo -n "Next step buildit. Press Enter key."
#read gagme
#buildit
#echo -n "Next step workit. Press Enter key."
#read gagme
workit
echo -n "Next step getinfo. Press Enter key."
read gagme
getinfo
echo -n "Next step packageit. Press Enter key."
read gagme
packageit
echo -n "Next step checkit. Press Enter key."
read gagme
checkit
tarit
