diff options
Diffstat (limited to 'audio/quelcom/files')
-rw-r--r-- | audio/quelcom/files/patch-aa | 38 | ||||
-rw-r--r-- | audio/quelcom/files/patch-ab | 27 | ||||
-rw-r--r-- | audio/quelcom/files/patch-ac | 10 | ||||
-rw-r--r-- | audio/quelcom/files/patch-ad | 10 | ||||
-rw-r--r-- | audio/quelcom/files/patch-ae | 10 | ||||
-rw-r--r-- | audio/quelcom/files/patch-af | 10 |
6 files changed, 105 insertions, 0 deletions
diff --git a/audio/quelcom/files/patch-aa b/audio/quelcom/files/patch-aa new file mode 100644 index 000000000000..b7201eeb8a37 --- /dev/null +++ b/audio/quelcom/files/patch-aa @@ -0,0 +1,38 @@ +--- makefile.orig Tue Dec 26 18:55:29 2000 ++++ makefile Wed Dec 27 13:55:29 2000 +@@ -3,17 +3,18 @@ + # + + # change these variables to fit your needs +-MANDIR=/usr/local/man ++MANDIR=${PREFIX}/man + #BINDIR=/usr/local/bin + # you should change BINDIR in src/makefile + + VERSION=0.2.0 ++INSTALL_P=/usr/bin/install + + all: +- cd src; make ++ cd src; ${MAKE} + + clean: +- cd src; make clean ++ cd src; ${MAKE} clean + + html: man/* + mkdir -p ./html +@@ -24,11 +25,10 @@ + done + + install: all +- cd src; make install ++ cd src; ${MAKE} install + for i in man/*; \ + do \ +- mkdir -p $(MANDIR)/man1; \ +- cp $$i $(MANDIR)/man1; \ ++ $(INSTALL_P) -c -o root -g wheel -m 444 $$i ${PREFIX}/man/man1; \ + done + + package: html diff --git a/audio/quelcom/files/patch-ab b/audio/quelcom/files/patch-ab new file mode 100644 index 000000000000..3784ace199c5 --- /dev/null +++ b/audio/quelcom/files/patch-ab @@ -0,0 +1,27 @@ +--- src/makefile.orig Tue Dec 26 18:55:30 2000 ++++ src/makefile Wed Dec 27 13:54:07 2000 +@@ -1,9 +1,11 @@ + TARGETS=qmp3check qwavsilence qwavinfo qwavjoin qwavcut qmp3info qmp3join qmp3cut + ++INSTALL_P=/usr/bin/install ++ + all: $(TARGETS) + strip $(TARGETS) + +-BINDIR=/usr/local/bin ++BINDIR=${PREFIX}/bin + VERSION=\"0.2.0\" + CXX=g++ + CXXFLAGS=-Wall -DQVERSION=$(VERSION) #-DQVERBOSE# -g -pg -fprofile-ar=cs -ftest-coverage +@@ -21,7 +23,10 @@ + $(CXX) $(CXXFLAGS) -c $< -o $*.o + + install: +- cp $(TARGETS) $(BINDIR) ++ for i in $(TARGETS); \ ++ do \ ++ $(INSTALL_P) -c -o root -g wheel -m 555 $$i $(BINDIR); \ ++ done + + qwavinfo: qwavinfo.o $(OBJECTS) + $(CXX) -o qwavinfo qwavinfo.o $(OBJECTS) $(LDFLAGS) diff --git a/audio/quelcom/files/patch-ac b/audio/quelcom/files/patch-ac new file mode 100644 index 000000000000..52ee6a9d4c36 --- /dev/null +++ b/audio/quelcom/files/patch-ac @@ -0,0 +1,10 @@ +--- src/qmisc.cc.orig Tue Dec 26 18:55:29 2000 ++++ src/qmisc.cc Wed Dec 27 13:21:23 2000 +@@ -1,6 +1,6 @@ + # include <string> + # include <stdio.h> +- ++# include "qmisc.hh" + + string uint2string (uint ui) { + diff --git a/audio/quelcom/files/patch-ad b/audio/quelcom/files/patch-ad new file mode 100644 index 000000000000..e95b0f1a8095 --- /dev/null +++ b/audio/quelcom/files/patch-ad @@ -0,0 +1,10 @@ +--- src/qmp3.cc.orig Tue Dec 26 18:55:29 2000 ++++ src/qmp3.cc Wed Dec 27 13:24:32 2000 +@@ -346,6 +346,7 @@ + + qfile::cut(offset_first,offset_last+length_last-1); + // remapejar ++ return 0; + } + + // provar donant l'@ de mem=F2ria... diff --git a/audio/quelcom/files/patch-ae b/audio/quelcom/files/patch-ae new file mode 100644 index 000000000000..6e1f49d011b3 --- /dev/null +++ b/audio/quelcom/files/patch-ae @@ -0,0 +1,10 @@ +--- src/qmp3info.cc.orig Tue Dec 26 18:55:29 2000 ++++ src/qmp3info.cc Wed Dec 27 13:23:36 2000 +@@ -2,6 +2,7 @@ + # include "qmp3.hh" + # include "qexception.hh" + ++typedef unsigned long ulong; + + void usage () { + diff --git a/audio/quelcom/files/patch-af b/audio/quelcom/files/patch-af new file mode 100644 index 000000000000..7428612561df --- /dev/null +++ b/audio/quelcom/files/patch-af @@ -0,0 +1,10 @@ +--- src/qwavinfo.cc.orig Tue Dec 26 18:55:30 2000 ++++ src/qwavinfo.cc Wed Dec 27 13:22:42 2000 +@@ -2,6 +2,7 @@ + # include "qwav.hh" + # include "qexception.hh" + ++typedef unsigned long ulong; + + void usage () { + |