wok-undigest rev 2

Add dovecot, vsftpd, evolution*
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Mar 19 19:01:07 2010 +0100 (2010-03-19)
parents de3424a293fd
children edd98143a7c9
files dovecot/receipt evolution-data-server-dev/receipt evolution-data-server/receipt evolution-mapi/receipt evolution-plugin/receipt evolution/receipt vsftpd/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dovecot/receipt	Fri Mar 19 19:01:07 2010 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dovecot"
     1.7 +VERSION=""
     1.8 +CATEGORY=""
     1.9 +SHORT_DESC=""
    1.10 +MAINTAINER=""
    1.11 +DEPENDS=""
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE=""
    1.14 +WGET_URL=""
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	./configure \
    1.21 +		--prefix=/usr \
    1.22 +		--infodir=/usr/share/info \
    1.23 +		--mandir=/usr/share/man \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make && make DESTDIR=$PWD/_pkg install
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	mkdir -p $fs/usr
    1.32 +	cp -a $_pkg/usr/bin $fs/usr
    1.33 +}
    1.34 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/evolution-data-server-dev/receipt	Fri Mar 19 19:01:07 2010 +0100
     2.3 @@ -0,0 +1,27 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="evolution-data-server-dev"
     2.7 +VERSION="2.28.1"
     2.8 +CATEGORY="developemet"
     2.9 +SHORT_DESC=""
    2.10 +MAINTAINER="erjo@slitaz.org"
    2.11 +DEPENDS="evolution-data-server"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.13 +WEB_SITE="http://projects.gnome.org/evolution/download.shtml"
    2.14 +WANTED="evolution-data-server"
    2.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.16 +genpkg_rules()
    2.17 +{
    2.18 +	mkdir -p $fs/usr/lib
    2.19 +	
    2.20 +	cp -a $_pkg/usr/include $fs/usr 
    2.21 +	
    2.22 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    2.23 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    2.24 +	cp -a $_pkg/usr/lib/evolution-data-server-1.2 $fs/usr/lib
    2.25 +	
    2.26 +		# Clean unwated files
    2.27 +	cd $fs/usr/lib  ; find . -name "*.so*" -exec rm -f {} \;
    2.28 +
    2.29 +}
    2.30 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/evolution-data-server/receipt	Fri Mar 19 19:01:07 2010 +0100
     3.3 @@ -0,0 +1,54 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="evolution-data-server"
     3.7 +VERSION="2.28.1"
     3.8 +CATEGORY="internet"
     3.9 +SHORT_DESC=""
    3.10 +MAINTAINER="erjo@slitaz.org"
    3.11 +DEPENDS="libgnomeui libsoup"
    3.12 +BUILD_DEPENDS="libglade-dev libsoup-dev gtk+-dev ORBit2-dev libbonobo-dev gconf-dev libical-dev
    3.13 + firefox-dev db-dev libxcb-dev"
    3.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.15 +WEB_SITE="http://projects.gnome.org/evolution/download.shtml"
    3.16 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/${VERSION%.*}/$TARBALL"
    3.17 +
    3.18 +# Rules to configure and make the package.
    3.19 +compile_rules()
    3.20 +{
    3.21 +	cd $src
    3.22 +	./configure \
    3.23 +		--prefix=/usr \
    3.24 +		--infodir=/usr/share/info \
    3.25 +		--libexecdir=/usr/lib/evolution-data-server-1.2 \
    3.26 +		--mandir=/usr/share/man \
    3.27 +		--without-weather \
    3.28 +		--enable-ipv6=no \
    3.29 +		--enable-libdb \
    3.30 +		--with-db=/usr/lib \
    3.31 +		--with-nspr-include=/usr/include/firefox-3.5.3/stable \
    3.32 +		--with-nspr-libs=/usr/lib/firefox-devel-3.5.3/sdk/lib \
    3.33 +		$CONFIGURE_ARGS &&
    3.34 +	make && make DESTDIR=$PWD/_pkg install
    3.35 +}
    3.36 +
    3.37 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.38 +genpkg_rules()
    3.39 +{
    3.40 +	mkdir -p $fs/usr/lib $fs/usr/share
    3.41 +
    3.42 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    3.43 +	cp -a $_pkg/usr/share/evolution-data-server-2.28 $fs/usr/share
    3.44 +	cp -a $_pkg/usr/share/idl $fs/usr/share
    3.45 +	
    3.46 +	cp -a $_pkg/usr/lib/bonobo $fs/usr/lib
    3.47 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    3.48 +	cp -a $_pkg/usr/lib/evolution-data-server-1.2 $fs/usr/lib
    3.49 +	
    3.50 +		# Clean unwated files
    3.51 +	cd $fs/usr/lib  ; find . -name "*.*a" -exec rm -f {} \;
    3.52 +	
    3.53 +	# Stripping all
    3.54 +	find . -name "*.so" -exec strip -s {} \;
    3.55 +	
    3.56 +}
    3.57 +
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/evolution-mapi/receipt	Fri Mar 19 19:01:07 2010 +0100
     4.3 @@ -0,0 +1,32 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="evolution-mapi"
     4.7 +VERSION="0.28.1"
     4.8 +CATEGORY="internet"
     4.9 +SHORT_DESC=""
    4.10 +MAINTAINER="erjo@slitaz.org"
    4.11 +DEPENDS=""
    4.12 +BUILD_DEPENDS="evolution-data-server-dev"
    4.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    4.14 +WEB_SITE="http://projects.gnome.org/evolution/download.shtml"
    4.15 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/${VERSION%.*}/$TARBALL"
    4.16 +
    4.17 +# Rules to configure and make the package.
    4.18 +compile_rules()
    4.19 +{
    4.20 +	cd $src
    4.21 +	./configure \
    4.22 +		--prefix=/usr \
    4.23 +		--infodir=/usr/share/info \
    4.24 +		--mandir=/usr/share/man \
    4.25 +		$CONFIGURE_ARGS &&
    4.26 +	make && make DESTDIR=$PWD/_pkg install
    4.27 +}
    4.28 +
    4.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.30 +genpkg_rules()
    4.31 +{
    4.32 +	mkdir -p $fs/usr
    4.33 +	cp -a $_pkg/usr/bin $fs/usr
    4.34 +}
    4.35 +
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/evolution-plugin/receipt	Fri Mar 19 19:01:07 2010 +0100
     5.3 @@ -0,0 +1,31 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="evolution-plugin"
     5.7 +VERSION=""
     5.8 +CATEGORY=""
     5.9 +SHORT_DESC=""
    5.10 +MAINTAINER=""
    5.11 +DEPENDS=""
    5.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    5.13 +WEB_SITE=""
    5.14 +WGET_URL=""
    5.15 +
    5.16 +# Rules to configure and make the package.
    5.17 +compile_rules()
    5.18 +{
    5.19 +	cd $src
    5.20 +	./configure \
    5.21 +		--prefix=/usr \
    5.22 +		--infodir=/usr/share/info \
    5.23 +		--mandir=/usr/share/man \
    5.24 +		$CONFIGURE_ARGS &&
    5.25 +	make && make DESTDIR=$PWD/_pkg install
    5.26 +}
    5.27 +
    5.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.29 +genpkg_rules()
    5.30 +{
    5.31 +	mkdir -p $fs/usr
    5.32 +	cp -a $_pkg/usr/bin $fs/usr
    5.33 +}
    5.34 +
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/evolution/receipt	Fri Mar 19 19:01:07 2010 +0100
     6.3 @@ -0,0 +1,32 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="evolution"
     6.7 +VERSION="2.28.1"
     6.8 +CATEGORY="network"
     6.9 +SHORT_DESC=""
    6.10 +MAINTAINER="erjo@slitaz.org"
    6.11 +DEPENDS=""
    6.12 +BUILD_DEPENDS="shared-mime-info-dev"
    6.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    6.14 +WEB_SITE="http://projects.gnome.org/evolution/"
    6.15 +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    6.16 +
    6.17 +# Rules to configure and make the package.
    6.18 +compile_rules()
    6.19 +{
    6.20 +	cd $src
    6.21 +	./configure \
    6.22 +		--prefix=/usr \
    6.23 +		--infodir=/usr/share/info \
    6.24 +		--mandir=/usr/share/man \
    6.25 +		$CONFIGURE_ARGS &&
    6.26 +	make && make DESTDIR=$PWD/_pkg install
    6.27 +}
    6.28 +
    6.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.30 +genpkg_rules()
    6.31 +{
    6.32 +	mkdir -p $fs/usr
    6.33 +	cp -a $_pkg/usr/bin $fs/usr
    6.34 +}
    6.35 +
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/vsftpd/receipt	Fri Mar 19 19:01:07 2010 +0100
     7.3 @@ -0,0 +1,28 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="vsftpd"
     7.7 +VERSION="2.2.0"
     7.8 +CATEGORY="network"
     7.9 +SHORT_DESC="Secure FTP server"
    7.10 +MAINTAINER="erjo@slitaz.org	"
    7.11 +DEPENDS=""
    7.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    7.13 +WEB_SITE="http://vsftpd.beasts.org/"
    7.14 +WGET_URL="ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.2.0.tar.gz"
    7.15 +
    7.16 +# Rules to configure and make the package.
    7.17 +compile_rules()
    7.18 +{
    7.19 +	cd $src
    7.20 +	make 
    7.21 +	#&& make DESTDIR=$PWD/_pkg install
    7.22 +}
    7.23 +
    7.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.25 +genpkg_rules()
    7.26 +{
    7.27 +	mkdir -p $fs/usr/bin $fs/etc
    7.28 +	cp -a $src/vsftpd $fs/usr/bin
    7.29 +	cp -a $src/vsftpd.conf $fs/etc
    7.30 +}
    7.31 +