1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

audio/rexima: document ncurses rqmt (USES+=ncurses), respect LDFLAGS

approved by:	infrastructure blanket
This commit is contained in:
John Marino 2016-01-31 14:09:27 +00:00
parent 5d93ddcb62
commit c01550b3bf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=407640
2 changed files with 9 additions and 4 deletions

View File

@ -11,6 +11,7 @@ COMMENT= ncurses-based console mixer
LICENSE= GPLv2
USES= ncurses
PLIST_FILES= bin/rexima man/man1/rexima.1.gz
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- Makefile.orig 2003-06-30 14:45:27.000000000 +0200
+++ Makefile 2014-02-16 12:01:21.454847187 +0100
--- Makefile.orig 2003-06-30 12:45:27 UTC
+++ Makefile
@@ -1,13 +1,12 @@
# Makefile - makefile for rexima
@ -16,8 +16,12 @@
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/man/man1
@@ -20,11 +19,11 @@
$(CC) $(CFLAGS) -o rexima rexima.o -lncurses
@@ -17,14 +16,14 @@ MANDIR=$(PREFIX)/man/man1
all: rexima
rexima: rexima.o
- $(CC) $(CFLAGS) -o rexima rexima.o -lncurses
+ $(CC) $(CFLAGS) -o rexima rexima.o $(LDFLAGS) -lncurses
installdirs:
- /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR)