# HG changeset patch # User Aleksej Bobylev # Date 1373295228 -10800 # Node ID 00c51b3a010b45ac38845b1e2d32c6eb620f349a # Parent a5f6371c3254aa6c7290b91b5ba53c4aa985e59d Normalize ownership and permissions: caps, catfish, cdparanoia-III-dev, cgames, chemtool. diff -r a5f6371c3254 -r 00c51b3a010b caps/receipt --- a/caps/receipt Mon Jul 08 17:09:45 2013 +0300 +++ b/caps/receipt Mon Jul 08 17:53:48 2013 +0300 @@ -5,11 +5,12 @@ CATEGORY="multimedia" SHORT_DESC="The CAPS Audio Plugin Suite." MAINTAINER="paul@slitaz.org" +WEB_SITE="http://quitte.de/dsp/caps.html" +TARBALL="${PACKAGE}_${VERSION}.tar.gz" +WGET_URL="http://quitte.de/dsp/$TARBALL" + DEPENDS="" BUILD_DEPENDS="python" -TARBALL="${PACKAGE}_${VERSION}.tar.gz" -WEB_SITE="http://quitte.de/dsp/caps.html" -WGET_URL="http://quitte.de/dsp/$TARBALL" # Rules to configure and make the package. compile_rules() @@ -24,7 +25,6 @@ genpkg_rules() { mkdir -p $fs/usr/lib/ladspa $fs/usr/share/ladspa/rdf - cp -a $src/caps.rdf $fs/usr/share/ladspa/rdf + cp $src/caps.rdf $fs/usr/share/ladspa/rdf cp -a $src/caps.so $fs/usr/lib/ladspa } - diff -r a5f6371c3254 -r 00c51b3a010b catfish/receipt --- a/catfish/receipt Mon Jul 08 17:09:45 2013 +0300 +++ b/catfish/receipt Mon Jul 08 17:53:48 2013 +0300 @@ -55,4 +55,9 @@ cp -a $install/usr/share/locale $fs/usr/share ln -s ../locale locale + + chown -R root:root $fs + for ext in glade svg; do + find $fs -type f -name '*.'$ext -exec 644 \{\} \; + done } diff -r a5f6371c3254 -r 00c51b3a010b cdparanoia-III-dev/receipt --- a/cdparanoia-III-dev/receipt Mon Jul 08 17:09:45 2013 +0300 +++ b/cdparanoia-III-dev/receipt Mon Jul 08 17:53:48 2013 +0300 @@ -5,9 +5,10 @@ CATEGORY="development" SHORT_DESC="CMDline CD ripper used by Asunder." MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://www.xiph.org/paranoia/" + DEPENDS="cdparanoia-III" WANTED="cdparanoia-III" -WEB_SITE="http://www.xiph.org/paranoia/" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() @@ -16,8 +17,11 @@ cp -a $src/interface/libcdda_interface.a $fs/usr/lib cp -a $src/paranoia/libcdda_paranoia.a $fs/usr/lib - + cp -a $src/interface/cdda_interface.h $fs/usr/include cp -a $src/paranoia/cdda_paranoia.h $fs/usr/include cp -a $src/utils.h $fs/usr/include + + chown -R root:root $fs + find $fs -type f -exec chmod 644 \{\} \; } diff -r a5f6371c3254 -r 00c51b3a010b cgames/receipt --- a/cgames/receipt Mon Jul 08 17:09:45 2013 +0300 +++ b/cgames/receipt Mon Jul 08 17:53:48 2013 +0300 @@ -5,9 +5,10 @@ CATEGORY="games" SHORT_DESC="Games for the Linux Console." MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://www.muppetlabs.com/~breadbox/software/cgames.html" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.muppetlabs.com/~breadbox/software/cgames.html" WGET_URL="http://www.muppetlabs.com/~breadbox/pub/software/$TARBALL" + DEPENDS="ncurses" BUILD_DEPENDS="ncurses-dev" @@ -33,8 +34,9 @@ genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/games $fs/usr - cp -a $_pkg/usr/share/cblocks $fs/usr/share - cp -a $_pkg/usr/share/csokoban $fs/usr/share + cp -a $install/usr/games $fs/usr + cp -a $install/usr/share/cblocks $fs/usr/share + cp -a $install/usr/share/csokoban $fs/usr/share + + find $fs -type f -name '*.txt' -exec chmod a-x \{\} \; } - diff -r a5f6371c3254 -r 00c51b3a010b chemtool/receipt --- a/chemtool/receipt Mon Jul 08 17:09:45 2013 +0300 +++ b/chemtool/receipt Mon Jul 08 17:53:48 2013 +0300 @@ -5,12 +5,13 @@ CATEGORY="graphics" SHORT_DESC="Small program for drawing chemical structures." MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE$TARBALL" +TAGS="chemistry" + DEPENDS="gtk+ xorg-libXdamage" BUILD_DEPENDS="gtk+-dev xorg-xproto" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/" -WGET_URL="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/$TARBALL" -TAGS="chemistry" # Rules to configure and make the package. compile_rules() @@ -41,4 +42,6 @@ cp -a $src/examples/c*.cht $fs/usr/share/examples/chemtool cp -a $src/examples/p*.cht $fs/usr/share/examples/chemtool cp -a $src/examples/t*.cht $fs/usr/share/examples/chemtool + + chown -R root:root $fs }