#!/bin/sh

. /etc/init.d/tc-functions

checkroot

export CFLAGS="-march=i486 -mtune=i686 -Os -pipe -liconv"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipei -fno-exceptions -fno-rtti"
export CPPFLAGS="-I/usr/local/include"
export LDFLAGS="-Wl,-O1"
 
TODAY=`date +%Y/%m/%d`
PACKAGE="transmission"
SEP="-"
VERSION="2.13+"
TRUNK="trunk-r11648"
#MIRROR="http://mirrors.m0k.org/transmission/files/"
MIRROR="https://build.transmissionbt.com/job/trunk-linux/lastBuild/artifact/trunk/"
DESCRIPTION="GTK2 Bittorrent client"
AUTHORS="Charles Kerr, Mitchell Livingston"
HOMEPAGE="www.transmissionbt.com"
LICENSE="GPL/MIT"
ME="jls_legalize (unsenepopiu at tin dot it)"
DEPS="curl.tcz \
gtk2.tcz \
libevent.tcz \
libiconv.tcz \
hicolor-icon-theme.tcz" 
BUILDEPS="acpid.tcz \
curl-dev.tcz \
gettext.tcz \
gtk2-dev.tcz \
intltool.tcz \
libiconv.tcz \
libiconv-dev.tcz \
libxcb-dev.tcz \
openssl-0.9.8-dev.tcz \
perl5.tcz \
libevent-dev.tcz \
xfsprogs-dev.tcz" 
FLAGS="--enable-gtk"
#--disable-cli \
#--disable-daemon" 
DOCS="usr/local/share/man"
TCUSER=`cat /etc/sysconfig/tcuser`
SRC="${PACKAGE}${SEP}${TRUNK}.tar.xz"
THISDIR=`pwd`
PKGDIR="${THISDIR}/${PACKAGE}"
SRCDIR="${PKGDIR}/${PACKAGE}${SEP}${VERSION}"
TCEDIR="$(cat /opt/.tce_dir)"

clean(){
	rm -rf ${THISDIR}/${PACKAGE}
}
environment(){
	#for each in squashfs-tools-4.x.tcz compiletc.tcz ${DEPS} ${BUILDEPS}; do
	for each in wget.tcz squashfs-tools-4.x.tcz compiletc.tcz ${DEPS} ${BUILDEPS}; 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
	cd ${PKGDIR} 
	#wget ${MIRROR}${SRC}
	wget --no-check-certificate ${MIRROR}${SRC}
	xz -d ${SRC}
	tar xf ${PACKAGE}${SEP}${TRUNK}.tar

	ln -s /usr/local/include/event2/event-config.h /usr/local/include/
}

buildit(){
	cd ${SRCDIR}
	./configure ${FLAGS} || exit 1
	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

	mv  usr/local/share/applications/${PACKAGE}-gtk.desktop usr/local/share/applications/${PACKAGE}.desktop     
 	echo "X-FullPathIcon=/usr/local/share/icons/hicolor/24x24/apps/${PACKAGE}.png" >> usr/local/share/applications/${PACKAGE}.desktop
	cd usr/local/share/pixmaps
       	ln -s ../icons/hicolor/24x24/apps/${PACKAGE}.png
	cd ${PKGDIR}/tmp

	#package specific stuff
	#locale
	mkdir -p ../locale/usr/local/share/locale
	mv usr/local/share/locale ../locale/usr/local/share
}

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:	Jason W,  ${ME}
Comments:	This extension contains the gtk bittorrent app
		(transmission) as well as transmission-cli,
		transmission-daemon, and transmission-remote.
		Depends on GTK2 and it's dependencies, curl.tcz,
		openssl-0.9.8.tcz.
		-----------------------------
		This extension is PPI compatible.
Change-log:	2009/05/17 First version 1.61
		2009/09/11 UPdated to 1.74.
		2010/02/25 Updated to 1.91 
		2010/03/04 recompiled with tc 2.9 
		2010/03/21 Updated to 1.92 
		2010/06/18 Updated to 1.93 
		2010/06/21 Updated to 2.00 
		2010/07/02 Updated to 2.01 
		2010/08/12 Updated to 2.04
		2010/10/13 Updated to 2.10
		2010/10/22 Updated to 2.11
		2010/12/30 Updated to 2.13
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:	Jason W, ${ME}	
Comments:	locale files
		----------------------------------------	
		This extension is PPI compatible
Change-log:	2009/05/17 First version 1.61
		2009/09/11 Updated to 1.74
		2010/02/25 Updated to 1.91 
		2010/03/04 recompiled with tc 2.9
		2010/03/21 Updated to 1.92 
		2010/06/18 Updated to 1.93 
		2010/06/21 Updated to 2.00 
		2010/07/02 Updated to 2.01 
		2010/08/12 Updated to 2.04
		2010/10/13 Updated to 2.10
		2010/10/22 Updated to 2.11
		2010/11/17 Updated to 2.12
		2010/12/30 Updated to 2.13
Current:	${TODAY} Updated to ${VERSION}
EOF
}
tarit(){	
	cd ${PKGDIR}
	rm ${PACKAGE}.tar.bz2
	cp ../${PACKAGE}.tcbuild .
	tar	cjvf ${PACKAGE}.tar.bz2 \
		${PACKAGE}.tcz* \
		${PACKAGE}-locale.tcz* \
		${PACKAGE}.tcbuild \
		${PACKAGE}${SEP}${TRUNK}.tar
}
#here we go
clean
environment
buildit
workit
packageit
tarit
