diff options
author | Donny Davies <woodchip@gentoo.org> | 2001-08-31 01:24:30 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2001-08-31 01:24:30 +0000 |
commit | 5bd3618056d359de4c9f6a9fea280279ce058bcc (patch) | |
tree | 50ebef653f937845b92f993a329d218ffbbce719 /media-sound/wmix | |
parent | moved to media-sound (diff) | |
download | gentoo-2-5bd3618056d359de4c9f6a9fea280279ce058bcc.tar.gz gentoo-2-5bd3618056d359de4c9f6a9fea280279ce058bcc.tar.bz2 gentoo-2-5bd3618056d359de4c9f6a9fea280279ce058bcc.zip |
migrated from app-misc
Diffstat (limited to 'media-sound/wmix')
-rw-r--r-- | media-sound/wmix/files/digest-wmix-3.0 | 1 | ||||
-rw-r--r-- | media-sound/wmix/wmix-3.0.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/media-sound/wmix/files/digest-wmix-3.0 b/media-sound/wmix/files/digest-wmix-3.0 new file mode 100644 index 000000000000..55ffa651d8e2 --- /dev/null +++ b/media-sound/wmix/files/digest-wmix-3.0 @@ -0,0 +1 @@ +MD5 06d8542907f7174c108a1352817f332f wmix-3.0.tar.gz diff --git a/media-sound/wmix/wmix-3.0.ebuild b/media-sound/wmix/wmix-3.0.ebuild new file mode 100644 index 000000000000..cec3d1c730b2 --- /dev/null +++ b/media-sound/wmix/wmix-3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Jano (default3) <your email> +# $Header: /var/cvsroot/gentoo-x86/media-sound/wmix/wmix-3.0.ebuild,v 1.1 2001/08/31 01:24:30 woodchip 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/" + +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/X11R6/bin + doexe wmix + gzip -cd wmix.1x.gz > wmix.1 + doman wmix.1 + dodoc README COPYING INSTALL NEWS BUGS AUTHORS sample.wmixrc + +} |