diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-16 19:03:11 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-16 19:03:11 +0800 |
commit | 08318b845eab89637c43c860dcdb1bf119fd71a4 (patch) | |
tree | ff36334af5d53e4b8cad05feb50f0580a7843833 /audio/rexima | |
parent | 0ceaef9382f2c372d9086970c15acc9ae40055d0 (diff) | |
download | freebsd-ports-gnome-08318b845eab89637c43c860dcdb1bf119fd71a4.tar.gz freebsd-ports-gnome-08318b845eab89637c43c860dcdb1bf119fd71a4.tar.zst freebsd-ports-gnome-08318b845eab89637c43c860dcdb1bf119fd71a4.zip |
- Support staging
- Add LICENSE
Diffstat (limited to 'audio/rexima')
-rw-r--r-- | audio/rexima/Makefile | 8 | ||||
-rw-r--r-- | audio/rexima/files/patch-Makefile | 19 |
2 files changed, 21 insertions, 6 deletions
diff --git a/audio/rexima/Makefile b/audio/rexima/Makefile index 25fa9142f68e..23558e8d5e36 100644 --- a/audio/rexima/Makefile +++ b/audio/rexima/Makefile @@ -4,14 +4,14 @@ PORTNAME= rexima PORTVERSION= 1.4 CATEGORIES= audio -MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITES= SUNSITE MASTER_SITE_SUBDIR= apps/sound/mixers MAINTAINER= jerry@freebsd.se COMMENT= A ncurses-based console mixer -MAN1= rexima.1 -PLIST_FILES= bin/rexima -NO_STAGE= yes +LICENSE= GPLv2 + +PLIST_FILES= bin/rexima man/man1/rexima.1.gz .include <bsd.port.mk> diff --git a/audio/rexima/files/patch-Makefile b/audio/rexima/files/patch-Makefile index 85b7577ce6af..8def897e94d9 100644 --- a/audio/rexima/files/patch-Makefile +++ b/audio/rexima/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Apr 7 06:51:06 2003 -+++ Makefile Wed Oct 22 16:41:57 2003 +--- Makefile.orig 2003-06-30 14:45:27.000000000 +0200 ++++ Makefile 2014-02-16 12:01:21.454847187 +0100 @@ -1,13 +1,12 @@ # Makefile - makefile for rexima @@ -16,3 +16,18 @@ BINDIR=$(PREFIX)/bin MANDIR=$(PREFIX)/man/man1 +@@ -20,11 +19,11 @@ + $(CC) $(CFLAGS) -o rexima rexima.o -lncurses + + installdirs: +- /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR) ++ /bin/sh ./mkinstalldirs $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR) + + install: rexima installdirs +- install -s -m 755 rexima $(BINDIR) +- install -m 644 rexima.1 $(MANDIR) ++ install -s -m 755 rexima $(DESTDIR)$(BINDIR) ++ install -m 644 rexima.1 $(DESTDIR)$(MANDIR) + + uninstall: + $(RM) $(BINDIR)/rexima $(MANDIR)/rexima.1 |