# HG changeset patch # User Pascal Bellard # Date 1376559766 0 # Node ID 20b9600c7f0c0b1618772b864a0fc23704a9f261 # Parent d925fb3ac2bd0e45345d37379a69354931ec6812 scim-*: add LICENSE diff -r d925fb3ac2bd -r 20b9600c7f0c scim-dev/receipt --- a/scim-dev/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-dev/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -3,17 +3,19 @@ CATEGORY="development" SHORT_DESC="Smart Common Input Method (SCIM) development files." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim" +LICENSE="LGPL2.1" WEB_SITE="http://www.scim-im.org/" WANTED="scim" +DEPENDS="scim" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/usr/include $fs/usr + cp -a $install/usr/lib $fs/usr + cp -a $install/usr/include $fs/usr find $fs/usr/lib -type f -not -name '*a' -exec rm {} \; find $fs/usr/lib -type l -exec rm {} \; - cp -a $_pkg/usr/lib/pkgconfig/* $fs/usr/lib/pkgconfig + cp -a $install/usr/lib/pkgconfig/* $fs/usr/lib/pkgconfig } diff -r d925fb3ac2bd -r 20b9600c7f0c scim-pinyin/receipt --- a/scim-pinyin/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-pinyin/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="utilities" SHORT_DESC="Chinese PinYin input for SCIM." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim" -BUILD_DEPENDS="scim-dev gtk+-dev" +LICENSE="LGPL2.1" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.scim-im.org/" WGET_URL="$SF_MIRROR/scim/$TARBALL" #WGET_URL="http://kent.dl.sourceforge.net/sourceforge/scim/$TARBALL" +DEPENDS="scim" +BUILD_DEPENDS="scim-dev gtk+-dev" + # Rules to configure and make the package. compile_rules() { @@ -30,14 +32,14 @@ --disable-static \ $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/usr/share/scim $fs/usr/share + cp -a $install/usr/lib $fs/usr + cp -a $install/usr/share/scim $fs/usr/share find $fs/usr/lib -name '*.la' -exec rm {} \; } diff -r d925fb3ac2bd -r 20b9600c7f0c scim-tables-additional/receipt --- a/scim-tables-additional/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-tables-additional/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,15 +5,17 @@ CATEGORY="x-window" SHORT_DESC="Miscellaneous input method data tables for SCIM platform." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim-tables-base" +LICENSE="GPL2" WANTED="scim-tables" WEB_SITE="http://www.scim-im.org/" +DEPENDS="scim-tables-base" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/share/scim $fs/usr/share + cp -a $install/usr/share/scim $fs/usr/share if false; then # spurrious things... # Rm ja files. diff -r d925fb3ac2bd -r 20b9600c7f0c scim-tables-base/receipt --- a/scim-tables-base/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-tables-base/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,14 +5,16 @@ CATEGORY="x-window" SHORT_DESC="SCIM Generic Table Input Method base module." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim" +LICENSE="GPL2" WANTED="scim-tables" WEB_SITE="http://www.scim-im.org/" +DEPENDS="scim" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr find $fs/usr/lib -name '*.la' -exec rm {} \; } diff -r d925fb3ac2bd -r 20b9600c7f0c scim-tables-ja/receipt --- a/scim-tables-ja/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-tables-ja/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,16 +5,18 @@ CATEGORY="x-window" SHORT_DESC="Japanese input method data tables for SCIM platform." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim-tables-base" +LICENSE="GPL2" WANTED="scim-tables" WEB_SITE="http://www.scim-im.org/" +DEPENDS="scim-tables-base" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share/scim/icons $fs/usr/share/scim/tables for file in `cat stuff/wanted-files.list` do - cp -a ${_pkg}$file ${fs}$file + cp -a $install$file ${fs}$file done } diff -r d925fb3ac2bd -r 20b9600c7f0c scim-tables-ko/receipt --- a/scim-tables-ko/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-tables-ko/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,16 +5,18 @@ CATEGORY="x-window" SHORT_DESC="Korean input method data tables for SCIM platform." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim-tables-base" +LICENSE="GPL2" WANTED="scim-tables" WEB_SITE="http://www.scim-im.org/" +DEPENDS="scim-tables-base" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share/scim/icons $fs/usr/share/scim/tables for file in `cat stuff/wanted-files.list` do - cp -a ${_pkg}$file ${fs}$file + cp -a $install$file ${fs}$file done } diff -r d925fb3ac2bd -r 20b9600c7f0c scim-tables-zh/receipt --- a/scim-tables-zh/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-tables-zh/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,16 +5,18 @@ CATEGORY="x-window" SHORT_DESC="Chinese input method data tables for SCIM platform." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim-tables-base wqy-bitmapfont" +LICENSE="GPL2" WANTED="scim-tables" WEB_SITE="http://www.scim-im.org/" +DEPENDS="scim-tables-base wqy-bitmapfont" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share/scim/icons $fs/usr/share/scim/tables for file in `cat stuff/wanted-files.list` do - cp -a ${_pkg}$file ${fs}$file + cp -a $install$file ${fs}$file done } diff -r d925fb3ac2bd -r 20b9600c7f0c scim-tables/receipt --- a/scim-tables/receipt Thu Aug 15 09:36:30 2013 +0000 +++ b/scim-tables/receipt Thu Aug 15 09:42:46 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="meta" SHORT_DESC="SCIM Generic Table Input Method module meta package." MAINTAINER="rocky@slitaz.org" -DEPENDS="scim scim-tables-base scim-tables-ja scim-tables-ko scim-tables-zh scim-tables-additional" -BUILD_DEPENDS="scim-dev expat-dev gtk+-dev" +LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.scim-im.org/" WGET_URL="$SF_MIRROR/scim/$TARBALL" LOCALE="" +DEPENDS="scim scim-tables-base scim-tables-ja scim-tables-ko scim-tables-zh scim-tables-additional" +BUILD_DEPENDS="scim-dev expat-dev gtk+-dev" + # Rules to configure and make the package. compile_rules() { @@ -21,7 +23,7 @@ --disable-static \ $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg.