summaryrefslogtreecommitdiff
path: root/audio/rexima
diff options
context:
space:
mode:
authorwiz <wiz>2004-10-23 09:24:54 +0000
committerwiz <wiz>2004-10-23 09:24:54 +0000
commita547d9ea202706a7f3bf65d399ea32cbd338ca75 (patch)
tree905163f1532f44e996cb1f50ad866b6a08501f9f /audio/rexima
parent3d9f022974802869b4782b4a6de5806d147423bb (diff)
downloadpkgsrc-a547d9ea202706a7f3bf65d399ea32cbd338ca75.tar.gz
Initial import of rexima-1.4:
rexima is a curses-based interactive mixer which can also be used from the command-line. It runs on any terminal with a screen size of 80x24 or greater. It's intended to be a simple, general, usable mixer without all the chrome usually present in other mixers.
Diffstat (limited to 'audio/rexima')
-rw-r--r--audio/rexima/DESCR4
-rw-r--r--audio/rexima/Makefile16
-rw-r--r--audio/rexima/PLIST3
-rw-r--r--audio/rexima/distinfo5
-rw-r--r--audio/rexima/patches/patch-aa39
5 files changed, 67 insertions, 0 deletions
diff --git a/audio/rexima/DESCR b/audio/rexima/DESCR
new file mode 100644
index 00000000000..3a79c871f08
--- /dev/null
+++ b/audio/rexima/DESCR
@@ -0,0 +1,4 @@
+rexima is a curses-based interactive mixer which can also be used
+from the command-line. It runs on any terminal with a screen size
+of 80x24 or greater. It's intended to be a simple, general, usable
+mixer without all the chrome usually present in other mixers.
diff --git a/audio/rexima/Makefile b/audio/rexima/Makefile
new file mode 100644
index 00000000000..61c58afcdd7
--- /dev/null
+++ b/audio/rexima/Makefile
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/10/23 09:24:54 wiz Exp $
+#
+
+DISTNAME= rexima-1.4
+CATEGORIES= audio
+MASTER_SITES= ftp://ftp.ibiblio.org/pub/Linux/apps/sound/mixers/
+
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://rus.members.beeb.net/rexima.html
+COMMENT= Curses-based interactive mixer
+
+USE_BUILDLINK3= yes
+
+.include "../../devel/ncurses/buildlink3.mk"
+.include "../../mk/ossaudio.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/audio/rexima/PLIST b/audio/rexima/PLIST
new file mode 100644
index 00000000000..395bd2b0c69
--- /dev/null
+++ b/audio/rexima/PLIST
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/10/23 09:24:54 wiz Exp $
+bin/rexima
+man/man1/rexima.1
diff --git a/audio/rexima/distinfo b/audio/rexima/distinfo
new file mode 100644
index 00000000000..7d61781b257
--- /dev/null
+++ b/audio/rexima/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/10/23 09:24:54 wiz Exp $
+
+SHA1 (rexima-1.4.tar.gz) = 86dc739e1a14074c89b06ce5ac668d13ef824948
+Size (rexima-1.4.tar.gz) = 15903 bytes
+SHA1 (patch-aa) = ec9c0ebcbc85553dfc69535b8da19339e4db548b
diff --git a/audio/rexima/patches/patch-aa b/audio/rexima/patches/patch-aa
new file mode 100644
index 00000000000..639aa35f51d
--- /dev/null
+++ b/audio/rexima/patches/patch-aa
@@ -0,0 +1,39 @@
+$NetBSD: patch-aa,v 1.1.1.1 2004/10/23 09:24:55 wiz Exp $
+
+--- Makefile.orig 2003-06-30 14:45:27.000000000 +0200
++++ Makefile
+@@ -1,13 +1,13 @@
+ # Makefile - makefile for rexima
+
+-CC=gcc
+-CFLAGS=-O -Wall
++#CC=gcc
++#CFLAGS=-O -Wall
+
+ # Set BINDIR to directory for binary,
+ # MANDIR to directory for man page.
+ # Usually it will be simpler to just set PREFIX.
+ #
+-PREFIX=/usr/local
++#PREFIX=/usr/local
+ BINDIR=$(PREFIX)/bin
+ MANDIR=$(PREFIX)/man/man1
+
+@@ -17,14 +17,14 @@ MANDIR=$(PREFIX)/man/man1
+ all: rexima
+
+ rexima: rexima.o
+- $(CC) $(CFLAGS) -o rexima rexima.o -lncurses
++ $(CC) $(CFLAGS) -o rexima rexima.o -lncurses ${LIBOSSAUDIO}
+
+ installdirs:
+ /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR)
+
+ install: rexima installdirs
+- install -s -m 755 rexima $(BINDIR)
+- install -m 644 rexima.1 $(MANDIR)
++ ${BSD_INSTALL_PROGRAM} rexima $(BINDIR)
++ ${BSD_INSTALL_DATA} rexima.1 $(MANDIR)
+
+ uninstall:
+ $(RM) $(BINDIR)/rexima $(MANDIR)/rexima.1