summaryrefslogtreecommitdiff
path: root/multimedia/handbrake/files/patch-Jamrules
diff options
context:
space:
mode:
authorMichael Johnson <ahze@FreeBSD.org>2004-11-22 20:26:08 +0000
committerMichael Johnson <ahze@FreeBSD.org>2004-11-22 20:26:08 +0000
commit36f202a25988a8a1e7b0388eedc23ab6b1d4c108 (patch)
treebaf33e4d173d580b96190032480fbed7f724480e /multimedia/handbrake/files/patch-Jamrules
parentFixed memory leak. (diff)
HandBrake is a GPL'd multi-platform, multithreaded DVD to MPEG-4 ripper and
converter. HandBrake was originally available on the BeOS, but now has been ported over to MacOS X, GNU/Linux and FreeBSD. Features: * Can encode directly from DVDs (even encrypted ones) or from VIDEO_TS folders * Supports AC3, LPCM and MPEG audio tracks * Outputs MP4, AVI or OGM files * Outputs AAC, MP3 or Vorbis audio * Supports 2-pass encoding * Supports encoding of two audio tracks * Includes a bitrate calculator * Supports picture deinterlacing, cropping and scaling Known limitations: * Does not handle DTS audio tracks * Does not handle single VOB files or any other file format WWW: http://handbrake.m0k.org/ PR: 74214 Submitted by: Andrew Thompson Approved by: adamw (mentor)
Notes
Notes: svn path=/head/; revision=122167
Diffstat (limited to 'multimedia/handbrake/files/patch-Jamrules')
-rw-r--r--multimedia/handbrake/files/patch-Jamrules29
1 files changed, 29 insertions, 0 deletions
diff --git a/multimedia/handbrake/files/patch-Jamrules b/multimedia/handbrake/files/patch-Jamrules
new file mode 100644
index 000000000000..5483bf3d2e54
--- /dev/null
+++ b/multimedia/handbrake/files/patch-Jamrules
@@ -0,0 +1,29 @@
+--- Jamrules.orig Tue May 25 13:51:32 2004
++++ Jamrules Mon Nov 22 12:57:16 2004
+@@ -8,11 +8,11 @@
+ LANGUAGES = fr de it pl ru nl es pt ja ;
+
+ # Compilers & flags
+-CC = gcc ;
+-C++ = g++ ;
++CC = %%CC%% ;
++C++ = %%CXX%% ;
+ AS = nasm ;
+-LINK = g++ ;
+-OPTIM = -O3 -funroll-loops ;
++LINK = %%CXX%% ;
++OPTIM = %%CFLAGS%% ;
+ DEFINES = HB_$(OS) HB_VERSION=\\\"$(HB_VERSION)\\\" ;
+
+ if $(OS) = BEOS
+@@ -32,6 +32,10 @@
+ if $(OS) = LINUX
+ {
+ ASFLAGS = -f elf ;
++}
++if $(OS) = FREEBSD
++{
++ OPTIM = %%CFLAGS%% ;
+ }
+ if $(OS) = CYGWIN
+ {