diff options
author | marino <marino@FreeBSD.org> | 2016-01-30 22:54:44 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-01-30 22:54:44 +0800 |
commit | d5962ea5e72cbde95c76b5d7dbf460e7ef5ba7b0 (patch) | |
tree | 8edf3e7174631e16d437214726e0e8e905e6c003 /audio | |
parent | 4f884a11f76f384dcebf599accae14e5491d8f86 (diff) | |
download | freebsd-ports-gnome-d5962ea5e72cbde95c76b5d7dbf460e7ef5ba7b0.tar.gz freebsd-ports-gnome-d5962ea5e72cbde95c76b5d7dbf460e7ef5ba7b0.tar.zst freebsd-ports-gnome-d5962ea5e72cbde95c76b5d7dbf460e7ef5ba7b0.zip |
audio/timidy: Respect LDFLAGS, document ncurses requirement
Diffstat (limited to 'audio')
-rw-r--r-- | audio/timidity/Makefile | 2 | ||||
-rw-r--r-- | audio/timidity/files/patch-Makefile | 21 |
2 files changed, 16 insertions, 7 deletions
diff --git a/audio/timidity/Makefile b/audio/timidity/Makefile index 090ebf49fcd2..cfe7d394a903 100644 --- a/audio/timidity/Makefile +++ b/audio/timidity/Makefile @@ -16,7 +16,7 @@ CONFLICTS= timidity++-2.* LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= alias +USES= alias ncurses TIINS= goemon.tgz INSTALL_TARGET= install.all diff --git a/audio/timidity/files/patch-Makefile b/audio/timidity/files/patch-Makefile index d1c7db256a70..445aafad7d08 100644 --- a/audio/timidity/files/patch-Makefile +++ b/audio/timidity/files/patch-Makefile @@ -1,5 +1,5 @@ ---- ./Makefile.orig 1996-05-26 09:26:46.000000000 +0000 -+++ ./Makefile 2014-02-06 21:14:36.000000000 +0000 +--- Makefile.orig 1996-05-26 09:26:46 UTC ++++ Makefile @@ -24,22 +24,22 @@ # But where to change without revealing my secret identity? @@ -29,7 +29,7 @@ # Where to install the Tcl code, if you use the Tcl code that is. TCL_DIR = $(TIMID_DIR) -@@ -112,9 +112,9 @@ +@@ -112,9 +112,9 @@ EXTRALIBS += -lncurses #EXTRALIBS += -lgen # Select the Tcl/Tk interface @@ -42,7 +42,7 @@ #EXTRAINCS += #EXTRALIBS += -@@ -136,7 +136,7 @@ +@@ -136,7 +136,7 @@ DISTZIP = timid$(FNVERSION).zip SDIST = timidity-lib-$(SUPPVERSION).tar.gz SDISTZIP = tilib$(FNSUPPVERSION).zip @@ -51,7 +51,16 @@ -DTIMID_VERSION=\"$(VERSION)\" $(SYSTEM) $(EXTRAINCS) ########### All relevant files.. Anybody know autoconf? -@@ -228,10 +228,10 @@ +@@ -220,7 +220,7 @@ spotless: clean + $(CC) $(CFLAGS) -c $< + + $(PROJ): $(COBJS) +- $(CC) $(CFLAGS) -o $(PROJ) $(COBJS) $(EXTRALIBS) -lm ++ $(CC) $(CFLAGS) -o $(PROJ) $(COBJS) $(LDFLAGS) $(EXTRALIBS) -lm + + bag: bag.c + $(CC) $(CFLAGS) -o bag bag.c +@@ -228,10 +228,10 @@ bag: bag.c wav2pat: wav2pat.c $(CC) $(CFLAGS) -o wav2pat wav2pat.c @@ -66,7 +75,7 @@ ########### Installation targets -@@ -249,22 +249,22 @@ +@@ -249,22 +249,22 @@ install.all: install.bin install.man ins # install.bin: $(PROJ) Dumb make thinks it has to have $(COBJS) to install... install.bin: |