wok rev 41

Add : osmo, pidgin, poedit, transmission, xpad
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 14:13:35 2007 +0100 (2007-12-18)
parents 0fcd9fbe553c
children 8e742fadbc43
files osmo/receipt pidgin/receipt poedit/receipt transmission/receipt transmission/stuff/transmission.png xpad/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/osmo/receipt	Tue Dec 18 14:13:35 2007 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="osmo"
     1.7 +VERSION="0.1.2"
     1.8 +CATEGORY="extra"
     1.9 +SHORT_DESC="A handy personal organizer using GTK+."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="gtk+ libxml2"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://clay.ll.pl/osmo/"
    1.14 +WGET_URL="$SF_MIRROR/$PACKAGE-pim/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	./configure --prefix=/usr $CONFIGURE_ARGS
    1.21 +	make
    1.22 +	make DESTDIR=$PWD/_pkg install
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	mkdir -p $fs/usr/share/pixmaps $fs/usr/share/locale
    1.29 +	cp -a $_pkg/usr/bin $fs/usr
    1.30 +	cp -a $_pkg/usr/share/pixmaps/osmo.png $fs/usr/share/pixmaps
    1.31 +	#cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.32 +	strip -s $fs/usr/bin/*
    1.33 +}
    1.34 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pidgin/receipt	Tue Dec 18 14:13:35 2007 +0100
     2.3 @@ -0,0 +1,42 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="pidgin"
     2.7 +VERSION="2.3.0"
     2.8 +CATEGORY="extra"
     2.9 +SHORT_DESC="Instant messaging client using GTK+."
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +DEPENDS="gtk+"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.13 +WEB_SITE="http://www.pidgin.im/"
    2.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.15 +
    2.16 +# Rules to configure and make the package.
    2.17 +compile_rules()
    2.18 +{
    2.19 +	cd $src
    2.20 +	./configure --prefix=/usr --infodir=/usr/share/info \
    2.21 +	--mandir=/usr/share/man --disable-perl $CONFIGURE_ARGS
    2.22 +	make
    2.23 +	make DESTDIR=$PWD/_pkg install
    2.24 +}
    2.25 +
    2.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.27 +genpkg_rules()
    2.28 +{
    2.29 +	mkdir -p $fs/usr/lib $fs/usr/share/locale $fs/usr/share/pixmaps
    2.30 +    cp -a $_pkg/usr/bin $fs/usr
    2.31 +    cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.32 +    cp -a $_pkg/usr/lib/pidgin $fs/usr/lib
    2.33 +    cp -a $_pkg/usr/lib/purple-2 $fs/usr/lib
    2.34 +    rm $fs/usr/lib/pidgin/*.la
    2.35 +    rm $fs/usr/lib/purple-2/*.la
    2.36 +    cp -a $_pkg/usr/share/purple $fs/usr/share
    2.37 +    cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    2.38 +    strip -s $fs/usr/bin/*
    2.39 +    strip --strip-unneeded $fs/usr/lib/*.so*
    2.40 +    strip --strip-unneeded $fs/usr/lib/pidgin/*
    2.41 +    strip --strip-unneeded $fs/usr/lib/purple-2/*
    2.42 +    cp -a $_pkg/usr/share/pixmaps/pidgin $fs/usr/share/pixmaps
    2.43 +    cp -a $_pkg/usr/share/icons/hicolor/24x24/apps/* $fs/usr/share/pixmaps
    2.44 +}
    2.45 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/poedit/receipt	Tue Dec 18 14:13:35 2007 +0100
     3.3 @@ -0,0 +1,33 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="poedit"
     3.7 +VERSION="1.3.7"
     3.8 +CATEGORY="extra"
     3.9 +SHORT_DESC="Editor for i18n po files."
    3.10 +MAINTAINER="pankso@slitaz.org"
    3.11 +DEPENDS="xorg wxWidgets pango gettext"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WEB_SITE="http://www.poedit.net/"
    3.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    3.15 +
    3.16 +# Rules to configure and make the package.
    3.17 +compile_rules()
    3.18 +{
    3.19 +	cd $src
    3.20 +	./configure --prefix=/usr --infodir=/usr/share/info \
    3.21 +	--mandir=/usr/share/man $CONFIGURE_ARGS
    3.22 +	make
    3.23 +	make DESTDIR=$PWD/_pkg install
    3.24 +}
    3.25 +
    3.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.27 +genpkg_rules()
    3.28 +{
    3.29 +	mkdir -p $fs/usr/share/locale
    3.30 +	cp -a $_pkg/usr/bin $fs/usr
    3.31 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    3.32 +	cp -a $_pkg/usr/share/poedit $fs/usr/share
    3.33 +    cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    3.34 +	strip -s $fs/usr/bin/*
    3.35 +}
    3.36 +
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/transmission/receipt	Tue Dec 18 14:13:35 2007 +0100
     4.3 @@ -0,0 +1,40 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="transmission"
     4.7 +VERSION="0.82"
     4.8 +CATEGORY="extra"
     4.9 +SHORT_DESC="Light and easy to use BitTorrent client."
    4.10 +MAINTAINER="pankso@slitaz.org"
    4.11 +DEPENDS="gtk+"
    4.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.13 +WEB_SITE="http://transmission.m0k.org/"
    4.14 +WGET_URL="http://download.m0k.org/transmission/files/$TARBALL"
    4.15 +
    4.16 +# Rules to configure and make the package.
    4.17 +compile_rules()
    4.18 +{
    4.19 +	# Upstream did a funny tarball...
    4.20 +	mkdir -p $PACKAGE-$VERSION
    4.21 +	tar xzf $SOURCES_REPOSITORY/$TARBALL -C $PACKAGE-$VERSION
    4.22 +	
    4.23 +	# For 0.92 (need openssl lib).
    4.24 +	#bzip2 -d -c "$SOURCES_REPOSITORY/$TARBALL" | tar -xf -
    4.25 +	
    4.26 +	cd $src
    4.27 +	./configure --prefix=/usr  --disable-openssl \
    4.28 +	$CONFIGURE_ARGS
    4.29 +	make
    4.30 +	strip gtk/transmission-gtk
    4.31 +	strip cli/transmissioncli
    4.32 +}
    4.33 +
    4.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.35 +genpkg_rules()
    4.36 +{
    4.37 +	mkdir -p $fs/usr/bin $fs/usr/share/locale/fr/LC_MESSAGES \
    4.38 +	$fs/usr/share/pixmaps
    4.39 +	cp -a $src/gtk/transmission-gtk $fs/usr/bin
    4.40 +	# Resized pixmap and French locale.
    4.41 +	cp -a stuff/transmission.png $fs/usr/share/pixmaps
    4.42 +	cp -a $src/gtk/po/fr.mo $fs/usr/share/locale/fr/LC_MESSAGES/transmission-gtk.mo
    4.43 +}
     5.1 Binary file transmission/stuff/transmission.png has changed
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/xpad/receipt	Tue Dec 18 14:13:35 2007 +0100
     6.3 @@ -0,0 +1,31 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="xpad"
     6.7 +VERSION="2.12"
     6.8 +CATEGORY="extra"
     6.9 +SHORT_DESC="Desktop note pad using GTK+ toolkit."
    6.10 +MAINTAINER="pankso@slitaz.org"
    6.11 +DEPENDS="gtk+"
    6.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    6.13 +WEB_SITE="http://xpad.sourceforge.net/"
    6.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    6.15 +
    6.16 +# Rules to configure and make the package.
    6.17 +compile_rules()
    6.18 +{
    6.19 +	cd $src
    6.20 +	./configure --prefix=/usr --mandir=/usr/share/man \
    6.21 +	$CONFIGURE_ARGS
    6.22 +	make
    6.23 +	make DESTDIR=$PWD/_pkg install
    6.24 +}
    6.25 +
    6.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.27 +genpkg_rules()
    6.28 +{
    6.29 +	mkdir -p $fs/usr/share/locale/fr
    6.30 +	cp -a $_pkg/usr/bin $fs/usr
    6.31 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    6.32 +	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    6.33 +	strip -s $fs/usr/bin/*
    6.34 +}