summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-06-18 20:55:28 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-06-18 20:55:28 +0000
commit1f6871a3cd6c48f1fcfc479851a7ee90c3aa472f (patch)
tree7bde80c4ae1a495e6c7242b6c7e5c02c7ea1e3b4 /media-sound/mix2000
parentNew version. (diff)
downloadgentoo-2-1f6871a3cd6c48f1fcfc479851a7ee90c3aa472f.tar.gz
gentoo-2-1f6871a3cd6c48f1fcfc479851a7ee90c3aa472f.tar.bz2
gentoo-2-1f6871a3cd6c48f1fcfc479851a7ee90c3aa472f.zip
New package. Fixes #3036
Diffstat (limited to 'media-sound/mix2000')
-rw-r--r--media-sound/mix2000/ChangeLog13
-rw-r--r--media-sound/mix2000/files/digest-mix2000-1.01
-rw-r--r--media-sound/mix2000/mix2000-1.0.ebuild30
3 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/mix2000/ChangeLog b/media-sound/mix2000/ChangeLog
new file mode 100644
index 000000000000..efc91a855e7e
--- /dev/null
+++ b/media-sound/mix2000/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for media-sound/mix2000
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mix2000/ChangeLog,v 1.1 2002/06/18 20:55:28 rphillips Exp $
+
+*mix2000-1.0 (18 Jun 2002)
+
+ 18 Jun 2002; Ryan Phillips <rphillips@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/media-sound/mix2000/files/digest-mix2000-1.0 b/media-sound/mix2000/files/digest-mix2000-1.0
new file mode 100644
index 000000000000..f3936d2c7dab
--- /dev/null
+++ b/media-sound/mix2000/files/digest-mix2000-1.0
@@ -0,0 +1 @@
+MD5 d461f6029103cb34fa6ce3cc29426b69 mix-2000-src.tar.gz 3471423
diff --git a/media-sound/mix2000/mix2000-1.0.ebuild b/media-sound/mix2000/mix2000-1.0.ebuild
new file mode 100644
index 000000000000..1f3dc579f188
--- /dev/null
+++ b/media-sound/mix2000/mix2000-1.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2001 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mix2000/mix2000-1.0.ebuild,v 1.1 2002/06/18 20:55:28 rphillips Exp $
+
+S=${WORKDIR}/mix-2000
+DESCRIPTION="The OSS sound mixer from the bcast2000 people; now orphaned."
+
+# This is an uglier version, without glib and png support
+#SRC_URI="http://www.tux.org/pub/packages/orphaned/broadcast2000/mix2000.tar.gz"
+SRC_URI="http://diddl.firehead.org/software/unix/media/heroine/mix-2000-src.tar.gz"
+
+DEPEND="virtual/glibc
+ virtual/x11
+ >=dev-libs/glib-1.2.0
+ >=media-libs/libpng-1.0.3
+ >=sys-libs/zlib-1.1.4"
+
+src_compile() {
+ cp configure configure.orig
+ sed -e '/^CFLAGS +=/s:$: -I/usr/X11R6/include:' \
+ -e '/^LIBS =/s/-lglib/$(glib-config --libs)/' \
+ < configure.orig > configure
+ ./configure || die
+ make || die
+}
+
+src_install () {
+ dodoc README COPYING
+ dobin mix/mix2000
+}