diff options
author | B. Watson <yalhcru@gmail.com> | 2021-11-29 23:44:05 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-10 08:37:31 +0700 |
commit | 12b1a637209963505f7af97d7544e774e278d787 (patch) | |
tree | bf39d6a08e70f1d5efb7a934b76d2ce399f342ef /audio | |
parent | 44c82b263f4a73791c2458bf46e3ccb1dcd47c61 (diff) | |
download | slackbuilds-12b1a637209963505f7af97d7544e774e278d787.tar.gz |
audio/zita-rev1: New-style icons, man page.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/zita-rev1/README | 2 | ||||
-rw-r--r-- | audio/zita-rev1/doinst.sh | 6 | ||||
-rw-r--r-- | audio/zita-rev1/zita-rev1.1 | 45 | ||||
-rw-r--r-- | audio/zita-rev1/zita-rev1.SlackBuild | 36 | ||||
-rw-r--r-- | audio/zita-rev1/zita-rev1.desktop | 9 | ||||
-rw-r--r-- | audio/zita-rev1/zita-rev1.fr.1 | 49 | ||||
-rw-r--r-- | audio/zita-rev1/zita-rev1.png | bin | 0 -> 8608 bytes |
7 files changed, 137 insertions, 10 deletions
diff --git a/audio/zita-rev1/README b/audio/zita-rev1/README index d2c0b42843..ad44a3f960 100644 --- a/audio/zita-rev1/README +++ b/audio/zita-rev1/README @@ -1,3 +1,5 @@ +zita-rev1 (reverb audio effect) + zita-rev1 is a reworked version of the reverb originally developed for Aeolus. Its character is more 'hall' than 'plate', but it can be used on a wide variety of instruments or voices. It is not a spatialiser - diff --git a/audio/zita-rev1/doinst.sh b/audio/zita-rev1/doinst.sh index 5fb28930db..3e5691a052 100644 --- a/audio/zita-rev1/doinst.sh +++ b/audio/zita-rev1/doinst.sh @@ -1,3 +1,9 @@ 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/zita-rev1/zita-rev1.1 b/audio/zita-rev1/zita-rev1.1 new file mode 100644 index 0000000000..0a720cedcf --- /dev/null +++ b/audio/zita-rev1/zita-rev1.1 @@ -0,0 +1,45 @@ +.TH ZITA-REV1 "1" "May 2011" +.SH NAME +zita-rev1 \- pro-audio reverb effect +.SH SYNOPSIS +.B zita-rev1 +.RI [ options ] +.SH DESCRIPTION +REV1 is a reworked version of the reverb originally developed for Aeolus. +Its character is more 'hall' than 'plate', but it can be used on a wide +variety of instruments or voices. It is not a spatialiser \- the early +reflections are different for the L and R inputs, but do not correspond +to any real room. They have been tuned to match left and right sources to +some extent. +.PP +In Stereo mode a dry/wet mix control is provided, so it can be used either +as an insert or in send/return mode. For mono just connect one of the +two channels. +.PP +In Ambisonic mode (selected by the \-B command line option) the only option +is the send/return mode. +.SH OPTIONS +.TP +\fB\-B\fR +Ambisonic mode +.TP +\fB\-name\fR name +Jack client name +.TP +\fB\-s\fR server +Jack server name +.TP +\fB\-g\fR geometry +Window position +.TP +\fB\-h\fR +Display this text +.PP +.SH "SEE ALSO" +A quick guide is available at +<http://kokkinizita.linuxaudio.org/linuxaudio/zita-rev1-doc/quickguide.html> +.SH "AUTHOR" +zita-rev1 was written by Fons Adriaensen <fons@linuxaudio.org>. +.PP +This manual page was written by Alessio Treglia <alessio@debian.org> +for the Debian project (but may be used by others). diff --git a/audio/zita-rev1/zita-rev1.SlackBuild b/audio/zita-rev1/zita-rev1.SlackBuild index e85fd22bfb..48a3eb4dec 100644 --- a/audio/zita-rev1/zita-rev1.SlackBuild +++ b/audio/zita-rev1/zita-rev1.SlackBuild @@ -6,11 +6,13 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211129 bkw: BUILD=2, new-style icons. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=zita-rev1 VERSION=${VERSION:-0.2.2} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -22,9 +24,6 @@ if [ -z "$ARCH" ]; then 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 @@ -65,13 +64,34 @@ make -C source CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" PREFIX=/usr make -C source install DESTDIR=$PKG PREFIX=/usr strip $PKG/usr/bin/$PRGNAM -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING doc/* $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +# 20211129 bkw: man pages taken from Debian. +mkdir -p $PKG/usr/man/man1 $PKG/usr/man/fr_FR.UTF-8/man1 +gzip -9c < $CWD/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz +gzip -9c < $CWD/$PRGNAM.fr.1 > $PKG/usr/man/fr_FR.UTF-8/man1/$PRGNAM.1.gz + +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC +cp -a AUTHORS COPYING doc/* $PKGDOC +cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild + +# 20211129 bkw: redzita.png in the docdir isn't a png, it's a gif! +mv $PKGDOC/redzita.png $PKGDOC/redzita.gif +sed -i 's,redzita\.png,redzita.gif,g' $PKGDOC/*.html + +# zita-rev1.png made with "convert -background none -extent 128x128 +# -gravity center", then superimposing a pixellated letter R on top. +# Debian has an SVG icon, but I think mine looks a lot nicer. +for px in 16 32 48 64 128; do + size=${px}x${px} + dir=$PKG/usr/share/icons/hicolor/$size/apps + mkdir -p $dir + convert -resize $size $CWD/$PRGNAM.png $dir/$PRGNAM.png +done mkdir -p $PKG/usr/share/pixmaps -ln -s ../../doc/$PRGNAM-$VERSION/redzita.png $PKG/usr/share/pixmaps/$PRGNAM.png +ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png +# .desktop taken from Debian. mkdir -p $PKG/usr/share/applications cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop diff --git a/audio/zita-rev1/zita-rev1.desktop b/audio/zita-rev1/zita-rev1.desktop index 6e9c63dd54..8d56fb7c67 100644 --- a/audio/zita-rev1/zita-rev1.desktop +++ b/audio/zita-rev1/zita-rev1.desktop @@ -1,6 +1,11 @@ [Desktop Entry] -Name=Zita REV1 -Comment=Digital Reverb +Version=1.0 +Name=Zita-Rev1 +GenericName=standalone JACK reverb +Comment=amazing reverb by kokkinizita - more bang per byte +GenericName[fr]=réverbération JACK autonome +Comment[fr]=réverbération extraordinaire par kokkinizita - davantage de boum par bit +Keywords=audio;sound;jackd;reverb Exec=zita-rev1 Icon=zita-rev1 Terminal=false diff --git a/audio/zita-rev1/zita-rev1.fr.1 b/audio/zita-rev1/zita-rev1.fr.1 new file mode 100644 index 0000000000..48efabefe0 --- /dev/null +++ b/audio/zita-rev1/zita-rev1.fr.1 @@ -0,0 +1,49 @@ +.TH ZITA-REV1 "1" "Mai 2011" +.SH NOM +zita-rev1 \- effet de réverbération audio-pro +.SH SYNOPSIS +.B zita-rev1 +.RI [ options ] +.SH DESCRIPTION +REV1 est une version retravaillée de la réverb développée à l'origine pour +Aeolus. Son caractère est davantage 'hall' que 'plate', mais elle peut être +utilisée pour une grande variété d'instruments ou de voix. Ce n'est pas un +spatialiseur \- les premières réflexions sont are differentes pour les entrées +gauche et droite, mais ne correspondent à aucune pièce réelle. Elles ont été +réglées pour correspondre aux sources droite et gauche dans une certaine +mesure. +.PP +En mode stéréo, un contrôle de mixage originel/traité est fourni, il peut donc +être utilisé soit comme un insert, soit comme un mode envoi/retour. Pour le +mono, connecter simplement un des deux canaux. +.PP +En mode ambisonie (sélectionné par l'option de ligne de commande \-B), la seule +option est le mode envoi/retour. +.SH OPTIONS +.TP +\fB\-B\fR +Mode ambisonie +.TP +\fB\-name\fR nom +Nom du clien jack +.TP +\fB\-s\fR serveur +Nom du serveur jack +.TP +\fB\-g\fR géometrie +Position de la fenêtre +.TP +\fB\-h\fR +Affiche ce texte +.PP +.SH "VOIR ÉGALEMENT" +Un guide rapide (en anglais) est disponible à +<http://kokkinizita.linuxaudio.org/linuxaudio/zita-rev1-doc/quickguide.html> +.SH "AUTEUR" +zita-rev1 fut écrit par Fons Adriaensen <fons@linuxaudio.org>. +.PP +Cette page de manuel (en anglais) a été écrite par Alessio Treglia +<alessio@debian.org> pour le projet Debian (mais peut être utilisé par +d'autres), et a été traduite en français par Olivier Humbert +<trebmuh@tuxfamily.org> pour le projet LibraZiK (et peut également être +utilisée par d'autres). diff --git a/audio/zita-rev1/zita-rev1.png b/audio/zita-rev1/zita-rev1.png Binary files differnew file mode 100644 index 0000000000..4bfc74e9fd --- /dev/null +++ b/audio/zita-rev1/zita-rev1.png |