From 8497b24819ae3217a23a81e02feced95dc33178e Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 13 Jul 2011 04:32:49 -0400 Subject: audio/waon: Added (Wave-to-Notes transcriber) Signed-off-by: dsomero --- audio/waon/README | 3 ++ audio/waon/doinst.sh | 10 +++++ audio/waon/slack-desc | 19 ++++++++++ audio/waon/waon.SlackBuild | 91 +++++++++++++++++++++++++++++++++++++++++++++ audio/waon/waon.desktop | 8 ++++ audio/waon/waon.info | 10 +++++ audio/waon/waon.png | Bin 0 -> 4059 bytes 7 files changed, 141 insertions(+) create mode 100644 audio/waon/README create mode 100644 audio/waon/doinst.sh create mode 100644 audio/waon/slack-desc create mode 100644 audio/waon/waon.SlackBuild create mode 100644 audio/waon/waon.desktop create mode 100644 audio/waon/waon.info create mode 100644 audio/waon/waon.png (limited to 'audio/waon') diff --git a/audio/waon/README b/audio/waon/README new file mode 100644 index 0000000000..85f3d2af19 --- /dev/null +++ b/audio/waon/README @@ -0,0 +1,3 @@ +WaoN is a Wave-to-Notes transcriber, that is, the inverse of timidity +by Tuukka Toivonen (and its descendants timidity++). ("WaoN" also has +a meaning of harmony of notes or chord in Japanese!) diff --git a/audio/waon/doinst.sh b/audio/waon/doinst.sh new file mode 100644 index 0000000000..1f8ff67ded --- /dev/null +++ b/audio/waon/doinst.sh @@ -0,0 +1,10 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + diff --git a/audio/waon/slack-desc b/audio/waon/slack-desc new file mode 100644 index 0000000000..e0ed8ea516 --- /dev/null +++ b/audio/waon/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +waon: WaoN (Wave-to-Notes transcriber) +waon: +waon: WaoN is a Wave-to-Notes transcriber, that is, the inverse of timidity +waon: by Tuukka Toivonen (and its descendants timidity++). ("WaoN" also +waon: has a meaning of harmony of notes or chord in Japanese!) +waon: +waon: +waon: +waon: +waon: +waon: diff --git a/audio/waon/waon.SlackBuild b/audio/waon/waon.SlackBuild new file mode 100644 index 0000000000..09577e782c --- /dev/null +++ b/audio/waon/waon.SlackBuild @@ -0,0 +1,91 @@ +#!/bin/bash + +# Slackware build script for waon + +# Written by B. Watson (yalhcru@gmail.com) + +PRGNAM=waon +VERSION=${VERSION:-0.9} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# We will install pv as waon-pv, to avoid clashing with the existing SBo pv +# package, so change references in all man pages from pv to waon-pv. +sed -i -e 's/\.B pv/.B waon-pv/' -e 's/\.TH PV/.TH WAON-PV/' pv.1 +sed -i -e 's/\/waon-pv/' $PRGNAM.1 g$PRGNAM.1 + +sed -i "s,-O3,$SLKCFLAGS," Makefile +make + +# No 'make install' rule, just stick everything where it goes. +mkdir -p $PKG/usr/{bin,man/man1} +install -s -m0755 $PRGNAM $PKG/usr/bin +install -s -m0755 g$PRGNAM $PKG/usr/bin +install -s -m0755 pv $PKG/usr/bin/$PRGNAM-pv +gzip -9c $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz +gzip -9c g$PRGNAM.1 > $PKG/usr/man/man1/g$PRGNAM.1.gz +gzip -9c pv.1 > $PKG/usr/man/man1/$PRGNAM-pv.1.gz + +# desktop file written for this SlackBuild +mkdir -p $PKG/usr/share/applications +cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop + +# Icon converted from WaoN.gif in the source (anyone care to design a better +# looking icon & send it upstream?) +mkdir -p $PKG/usr/share/pixmaps +cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + README COPYING ChangeLog TIPS TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/audio/waon/waon.desktop b/audio/waon/waon.desktop new file mode 100644 index 0000000000..0d8dda7b1e --- /dev/null +++ b/audio/waon/waon.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=WaoN +Comment=Wave to Note Converter +Exec=gwaon +Icon=waon +Terminal=false +Type=Application +Categories=AudioVideo;Audio; diff --git a/audio/waon/waon.info b/audio/waon/waon.info new file mode 100644 index 0000000000..108883bc40 --- /dev/null +++ b/audio/waon/waon.info @@ -0,0 +1,10 @@ +PRGNAM="waon" +VERSION="0.9" +HOMEPAGE="http://waon.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/project/waon/waon/0.9/waon-0.9.tar.gz" +DOWNLOAD_x86_64="" +MD5SUM="b31538d1b38f5234a922001c08037c18" +MD5SUM_x86_64="" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" +APPROVED="dsomero" diff --git a/audio/waon/waon.png b/audio/waon/waon.png new file mode 100644 index 0000000000..a25a6a89ac Binary files /dev/null and b/audio/waon/waon.png differ -- cgit v1.2.3-65-gdbad