summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-09-16 16:20:23 +0000
committerNick Hadaway <raker@gentoo.org>2002-09-16 16:20:23 +0000
commitba1078c25586e20828e32cabda9738793a0e8e1f (patch)
tree7f351d3342216cf5cd9487f9fa5d8f68cd927a36 /x11-plugins/wmix
parentDid it right this time. :) Moved app-misc/wmtimer to (diff)
downloadgentoo-2-ba1078c25586e20828e32cabda9738793a0e8e1f.tar.gz
gentoo-2-ba1078c25586e20828e32cabda9738793a0e8e1f.tar.bz2
gentoo-2-ba1078c25586e20828e32cabda9738793a0e8e1f.zip
Moved media-sound/wmix to x11-plugins/wmix.
Diffstat (limited to 'x11-plugins/wmix')
-rw-r--r--x11-plugins/wmix/ChangeLog15
-rw-r--r--x11-plugins/wmix/files/digest-wmix-3.0-r11
-rw-r--r--x11-plugins/wmix/wmix-3.0-r1.ebuild37
3 files changed, 53 insertions, 0 deletions
diff --git a/x11-plugins/wmix/ChangeLog b/x11-plugins/wmix/ChangeLog
new file mode 100644
index 000000000000..f4df764b6f1a
--- /dev/null
+++ b/x11-plugins/wmix/ChangeLog
@@ -0,0 +1,15 @@
+# ChangeLog for x11-plugins/wmix
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmix/ChangeLog,v 1.1 2002/09/16 16:20:23 raker Exp $
+
+*wmix-3.0-r1 (1 Feb 2002)
+
+ 16 Sep 2002; Nick Hadaway <raker@gentoo.org> :
+ Moved from media-sound to x11-plugins.
+
+ 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
diff --git a/x11-plugins/wmix/files/digest-wmix-3.0-r1 b/x11-plugins/wmix/files/digest-wmix-3.0-r1
new file mode 100644
index 000000000000..f96b91318ddf
--- /dev/null
+++ b/x11-plugins/wmix/files/digest-wmix-3.0-r1
@@ -0,0 +1 @@
+MD5 06d8542907f7174c108a1352817f332f wmix-3.0.tar.gz 20640
diff --git a/x11-plugins/wmix/wmix-3.0-r1.ebuild b/x11-plugins/wmix/wmix-3.0-r1.ebuild
new file mode 100644
index 000000000000..ef3d7a71dd68
--- /dev/null
+++ b/x11-plugins/wmix/wmix-3.0-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmix/wmix-3.0-r1.ebuild,v 1.1 2002/09/16 16:20:23 raker Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Dockapp mixer for OSS or ALSA"
+SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.gz"
+HOMEPAGE="http://www.ne.jp/asahi/linux/timecop/"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
+DEPEND="virtual/x11"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ cp Makefile Makefile.orig
+ sed -e "/^CFLAGS/d" Makefile.orig > Makefile
+}
+
+src_compile() {
+
+ try emake
+
+}
+
+src_install () {
+
+ exeinto /usr/bin
+ doexe wmix
+ gzip -cd wmix.1x.gz > wmix.1
+ doman wmix.1
+ dodoc README COPYING INSTALL NEWS BUGS AUTHORS sample.wmixrc
+
+}