head 1.3; access; symbols pkgsrc-2019Q3:1.2.0.4 pkgsrc-2019Q3-base:1.2 pkgsrc-2019Q2:1.2.0.2 pkgsrc-2019Q2-base:1.2; locks; strict; comment @# @; 1.3 date 2019.10.21.23.08.52; author gutteridge; state dead; branches; next 1.2; commitid KFUPbJ7ypyLlZMHB; 1.2 date 2019.05.31.04.45.20; author gutteridge; state Exp; branches; next 1.1; commitid gf1xp9DfAEVZsjpB; 1.1 date 2019.04.07.01.02.35; author gutteridge; state Exp; branches; next ; commitid m7gBun1ccsH5ZliB; desc @@ 1.3 log @mate-media: update to 1.22.2 Change log: ### mate-media 1.22.2 * Translations update * applet: Update default output * gvc applet: add missing translations (i18n) * Add scroll interface tabs with mouse wheel * configure.ac: fix typos in var names, portability fixes, etc. @ text @$NetBSD: patch-configure,v 1.2 2019/05/31 04:45:20 gutteridge Exp $ Fix non-portable uses of test, typos in variable names, etc. --- configure.orig 2019-04-01 10:25:27.200097504 +0000 +++ configure @@@@ -14654,9 +14654,11 @@@@ fi # Check whether --enable-statusicon was given. if test "${enable_statusicon+set}" = set; then : enableval=$enable_statusicon; +else + enable_statusicon=yes fi -if (test "${enable-statusicon}" == "no"); then +if test "x$enable_statusicon" = "xno"; then $as_echo "#define ENABLE_STATUSICON 0" >>confdefs.h @@@@ -14666,7 +14668,7 @@@@ else $as_echo "#define ENABLE_STATUSICON 1" >>confdefs.h fi - if test "${enable_statusicon}" != "no"; then + if test "x$enable_statusicon" != "xno"; then ENABLE_STATUSICON_TRUE= ENABLE_STATUSICON_FALSE='#' else @@@@ -14684,9 +14686,11 @@@@ fi # Check whether --enable-panelapplet was given. if test "${enable_panelapplet+set}" = set; then : enableval=$enable_panelapplet; +else + enable_panelapplet=yes fi -if (test "${enable-panelapplet}" == "no"); then +if test "x$enable_panelapplet" = "xno"; then $as_echo "#define ENABLE_PANELAPPLET 0" >>confdefs.h @@@@ -14695,7 +14699,7 @@@@ else $as_echo "#define ENABLE_PANELAPPLET 1" >>confdefs.h fi - if test "${enable_panelapplet}" != "no"; then + if test "x$enable_panelapplet" != "xno"; then ENABLE_PANELAPPLET_TRUE= ENABLE_PANELAPPLET_FALSE='#' else @@@@ -14708,7 +14712,7 @@@@ fi # Sanity check: must build either status icon or panel applet #============================================================================ -if test "x$enable_statusicon" == "xno" && test "x$enable_panelapplet" == "xno"; then +if test "x$enable_statusicon" = "xno" && test "x$enable_panelapplet" = "xno"; then as_fn_error $? "must build either volume control status icon or volume control applet" "$LINENO" 5 fi @ 1.2 log @mate-media: amend patch-configure (NFC) While preparing to send patch-configure upstream, I noticed there were more issues present. None would affect how the package builds as we've defined it, but I'm aligning this patch with what I've sent upstream, for consistency. (pkgsrc's check-portability.awk doesn't catch incorrect expressions of test[1] if they're [unnecessarily] enclosed in parentheses, so some of this didn't get automatically flagged when I originally updated the package.) @ text @d1 1 a1 1 $NetBSD: patch-configure,v 1.1 2019/04/07 01:02:35 gutteridge Exp $ @ 1.1 log @mate-media: update to 1.22.1 ### mate-media 1.22.1 * Translations update * add widget name volume-applet to panel-applet * enable/disable StatusIcon applet in XDG dir * Allow disabling either statusicon or panelapplet * edit desktop file for GtkStatusIcon applet * travis: add libmate-panel dependency * Re-enable old GtkStatusIcon * Enable a mute menuitem for the output * Ensure volume slider is always perpendicular to the panel * Ensure volume icon is always correctly scaled * Convert GtkStatusIcon to real applet @ text @d1 3 a3 1 $NetBSD$ d7 45 a51 1 @@@@ -14708,7 +14708,7 @@@@ fi @