summaryrefslogtreecommitdiff
path: root/multimedia/fpc-libvlc/files
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2015-12-05 23:29:36 +0000
committerJohn Marino <marino@FreeBSD.org>2015-12-05 23:29:36 +0000
commitf01cba6e50575183cf50dc87ded17319b63e1a14 (patch)
tree6ef0e1020a116341931d3335d3863622b9586ead /multimedia/fpc-libvlc/files
parentbsd.qt.mk: Move QT_NONSTANDARD check to the _POSTMKINCLUDED section. (diff)
FPC ecosystem: Upgrade version 2.6.4 => 3.0.0
This is the first major release of FreePascal in nearly four years. There are a ton of new features, way more to list here. see: http://wiki.freepascal.org/FPC_New_Features_3.0 Several new unit ports were added, some were contracted. Most of those were absorbed into the main FPC packages, but two units are no longer supported: sndfile and matroshka. All 99 remaining ports (including Lazarus ports) were build tested on FreeBSD i386 and amd64 Release 10.2
Notes
Notes: svn path=/head/; revision=403082
Diffstat (limited to 'multimedia/fpc-libvlc/files')
-rw-r--r--multimedia/fpc-libvlc/files/patch-packages_libvlc_fpmake.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/multimedia/fpc-libvlc/files/patch-packages_libvlc_fpmake.pp b/multimedia/fpc-libvlc/files/patch-packages_libvlc_fpmake.pp
new file mode 100644
index 000000000000..03387d043616
--- /dev/null
+++ b/multimedia/fpc-libvlc/files/patch-packages_libvlc_fpmake.pp
@@ -0,0 +1,21 @@
+--- packages/libvlc/fpmake.pp.orig 2015-08-07 13:22:31 UTC
++++ packages/libvlc/fpmake.pp
+@@ -15,15 +15,15 @@ begin
+ {$ifdef ALLPACKAGES}
+ P.Directory:=ADirectory;
+ {$endif ALLPACKAGES}
+- P.OSes := [win32, win64, linux, freebsd];
++ P.OSes := [win32, win64, linux, dragonfly, freebsd];
+ P.Dependencies.Add('fcl-base');
+ P.Version:='3.0.0';
+ P.License := 'LGPL with modification';
+ P.HomepageURL := 'www.freepascal.org';
+ P.Email := 'michael@freepascal.org';
+ P.Description := 'VLC library (version 2 or higher) interface and component.';
+- T:=P.Targets.AddUnit('src/libvlc.pp',[linux,win32,win64]);
+- T:=P.Targets.AddUnit('src/vlc.pp',[linux,win32,win64]);
++ T:=P.Targets.AddUnit('src/libvlc.pp',[linux,win32,win64,dragonfly,freebsd]);
++ T:=P.Targets.AddUnit('src/vlc.pp',[linux,win32,win64,dragonfly,freebsd]);
+ with T.Dependencies do
+ begin
+ AddUnit('libvlc');