From a547d9ea202706a7f3bf65d399ea32cbd338ca75 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 23 Oct 2004 09:24:54 +0000 Subject: 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. --- audio/rexima/DESCR | 4 ++++ audio/rexima/Makefile | 16 ++++++++++++++++ audio/rexima/PLIST | 3 +++ audio/rexima/distinfo | 5 +++++ audio/rexima/patches/patch-aa | 39 +++++++++++++++++++++++++++++++++++++++ 5 files changed, 67 insertions(+) create mode 100644 audio/rexima/DESCR create mode 100644 audio/rexima/Makefile create mode 100644 audio/rexima/PLIST create mode 100644 audio/rexima/distinfo create mode 100644 audio/rexima/patches/patch-aa (limited to 'audio/rexima') 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 -- cgit v1.2.3