diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-19 23:17:04 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-19 23:17:04 -0400 |
commit | 0947058f30a16a1fa35706bd954be6339e3518d9 (patch) | |
tree | ead53dfe2441eb8463675f59fae2c66bcf842956 /libraries/mysqltcl | |
parent | f5cfb47978ed35594aeb0dc4235ae791bfdcba8e (diff) |
libraries/mysqltcl: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/mysqltcl')
-rw-r--r-- | libraries/mysqltcl/mysqltcl.SlackBuild | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/libraries/mysqltcl/mysqltcl.SlackBuild b/libraries/mysqltcl/mysqltcl.SlackBuild index 3f50b4fb267f..79a85a4fc248 100644 --- a/libraries/mysqltcl/mysqltcl.SlackBuild +++ b/libraries/mysqltcl/mysqltcl.SlackBuild @@ -22,25 +22,27 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220419 bkw: Modified by SlackBuilds.org, BUILD=4: +# - fix doc permissions. +# - install the generated docs only, not the source + generation script. +# - i486 => i586. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=mysqltcl VERSION=${VERSION:-3.052} -BUILD=${BUILD:-3} +BUILD=${BUILD:-4} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -50,8 +52,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -75,9 +77,9 @@ cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -94,19 +96,18 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +gzip -9 $PKG/usr/man/man*/* +strip $PKG/usr/lib*/$PRGNAM-$VERSION/*.so # Remove empty directories rmdir $PKG/usr/include $PKG/usr/bin +# 20220419 bkw: don't install doc/*: it includes the source for the +# man and html pages, plus the script used to generate them. the +# man page is already installed, just include the html page. mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING ChangeLog README README-msqltcl doc \ +install -m0644 \ + AUTHORS COPYING ChangeLog README README-msqltcl doc/*.html \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |