diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2001-07-18 23:46:57 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2001-07-18 23:46:57 +0000 |
commit | 0d9485e40a46a3bb621c2a9ef484380cbcc5e9b5 (patch) | |
tree | 00670929b65fa5e8e19fd46a1616f62418788769 /app-misc | |
parent | updated to 1.0.7 and fixed a typo on libtool in 1.0.6 (diff) | |
download | gentoo-2-0d9485e40a46a3bb621c2a9ef484380cbcc5e9b5.tar.gz gentoo-2-0d9485e40a46a3bb621c2a9ef484380cbcc5e9b5.tar.bz2 gentoo-2-0d9485e40a46a3bb621c2a9ef484380cbcc5e9b5.zip |
New ebuild from default3. I fixed the src_uri to be correct!
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/wmix/files/digest-wmix-3.0 | 1 | ||||
-rw-r--r-- | app-misc/wmix/wmix-3.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-misc/wmix/files/digest-wmix-3.0 b/app-misc/wmix/files/digest-wmix-3.0 new file mode 100644 index 000000000000..55ffa651d8e2 --- /dev/null +++ b/app-misc/wmix/files/digest-wmix-3.0 @@ -0,0 +1 @@ +MD5 06d8542907f7174c108a1352817f332f wmix-3.0.tar.gz diff --git a/app-misc/wmix/wmix-3.0.ebuild b/app-misc/wmix/wmix-3.0.ebuild new file mode 100644 index 000000000000..6814b687aef8 --- /dev/null +++ b/app-misc/wmix/wmix-3.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later + +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 + +} |