summaryrefslogtreecommitdiff
path: root/x11-plugins/wmix/files
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /x11-plugins/wmix/files
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'x11-plugins/wmix/files')
-rw-r--r--x11-plugins/wmix/files/fix-wmix-3.1-version-number.patch11
-rw-r--r--x11-plugins/wmix/files/wmix-fix-free.patch11
-rw-r--r--x11-plugins/wmix/files/wmix.168
3 files changed, 90 insertions, 0 deletions
diff --git a/x11-plugins/wmix/files/fix-wmix-3.1-version-number.patch b/x11-plugins/wmix/files/fix-wmix-3.1-version-number.patch
new file mode 100644
index 00000000000..65b7ac9688e
--- /dev/null
+++ b/x11-plugins/wmix/files/fix-wmix-3.1-version-number.patch
@@ -0,0 +1,11 @@
+--- wmix.c 2004-07-19 10:37:58.999866344 +0200
++++ wmix.c 2004-07-19 10:38:11.541959656 +0200
+@@ -38,7 +38,7 @@
+ #include "include/misc.h"
+ #include "include/ui_x.h"
+
+-#define VERSION "3.0"
++#define VERSION "3.1"
+
+ static Display *display;
+ static char *display_name = NULL;
diff --git a/x11-plugins/wmix/files/wmix-fix-free.patch b/x11-plugins/wmix/files/wmix-fix-free.patch
new file mode 100644
index 00000000000..340f91771fa
--- /dev/null
+++ b/x11-plugins/wmix/files/wmix-fix-free.patch
@@ -0,0 +1,11 @@
+--- wmix.c.orig 2004-05-12 21:30:53.000000000 -0300
++++ wmix.c 2009-07-08 00:20:28.000000000 -0300
+@@ -134,7 +134,7 @@
+ }
+
+ /* handle writing PID file, silently ignore if we can't do it */
+- pid = calloc(1, strlen(home) + 10);
++ pid = calloc(1, strlen(home) + 11);
+ sprintf(pid, "%s/.wmix.pid", home);
+ fp = fopen(pid, "w");
+ if (fp) {
diff --git a/x11-plugins/wmix/files/wmix.1 b/x11-plugins/wmix/files/wmix.1
new file mode 100644
index 00000000000..afd65224bbe
--- /dev/null
+++ b/x11-plugins/wmix/files/wmix.1
@@ -0,0 +1,68 @@
+.\" Hey, EMACS: -*- nroff -*-
+.\"
+.\" This documentation may be distributed under the terms of
+.\" the GNU General Public Licence version 2.
+.\"
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH wmix 1 "Jul 19, 2004" "Michele Noberasco"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh disable hyphenation
+.\" .hy enable hyphenation
+.\" .ad l left justify
+.\" .ad b justify to both left and right margins
+.\" .nf disable filling
+.\" .fi enable filling
+.\" .br insert line break
+.\" .sp <n> insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+wmix \- Dockapp mixer for OSS or ALSA
+
+
+.SH SYNOPSIS
+.B wmix
+.RI "{ " options " }"
+
+
+.SH DESCRIPTION
+.B wmix
+Dockapp mixer for OSS or ALSA. Allows toggling record source,
+muting individual channels, adjusting volume and balance, all in a
+compact dockapp size, with TV\-like on\-screen\-display for volume levels.
+.LP
+Supports mousewheel to adjust current channelvolume
+and can be controlled remotely with SIGUSR1 / SIGUSR2 to adjust the volume.
+Keeps a simple configuration file for user\-defined settings.
+
+
+.SH OPTIONS
+.TP
+.BI "\-d " dsp
+Connect to remote X display.
+.TP
+.BI "\-f " file
+Use alternate config file (default is \fI~/.wmixrc\fP)
+.TP
+.BI "\-m " dev
+Use this mixer device (default is \fI/dev/mixer\fP)
+.TP
+.BI "\-h"
+Display list of command line options.
+.TP
+.BI "\-v"
+Use verbose output messages.
+.TP
+.BI "\-e " name
+Exclude a channel, can be used many times.
+
+
+.SH AUTHORS
+wmix was written by <timecop@japan.co.jp> and <skunk@mit.edu>
+.LP
+This man page was written by Fredrik Steen <stone@debian.org> for the Debian
+distribution. Updated and fixed by Michele Noberasco <s4t4n@gentoo.org>
+for the Gentoo distribution.