forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Taken from: HardenedBSD
- Loading branch information
Showing
333 changed files
with
2,360 additions
and
1,227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
PORTNAME= kmousetool | ||
DISTVERSION= ${KDE_APPLICATIONS_VERSION} | ||
PORTREVISION= 1 | ||
CATEGORIES= accessibility kde kde-applications | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
PORTNAME= marble | ||
PORTVERSION= ${KDE4_VERSION} | ||
PORTREVISION= 4 | ||
PORTREVISION= 5 | ||
CATEGORIES= astro kde kde-kde4 | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
PORTNAME= marble | ||
DISTVERSION= ${KDE_APPLICATIONS_VERSION} | ||
PORTREVISION= 1 | ||
CATEGORIES= astro kde kde-applications | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
PORTNAME= audiocd-kio | ||
DISTVERSION= ${KDE_APPLICATIONS_VERSION} | ||
PORTREVISION= 1 | ||
CATEGORIES= audio kde kde-applications | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
TIMESTAMP = 1528565114 | ||
SHA256 (tomszilagyi-ir.lv2-1.3.3-2-gb94bc67_GH0.tar.gz) = c6a5c907e74ad649af5a845ecf88bc9af285975ed8a712ec85dbd8187c6cbdd7 | ||
SIZE (tomszilagyi-ir.lv2-1.3.3-2-gb94bc67_GH0.tar.gz) = 126424 | ||
TIMESTAMP = 1529568477 | ||
SHA256 (tomszilagyi-ir.lv2-1.3.3-8-g0a36907_GH0.tar.gz) = 707ab1577c8da41ccf0a92880552adec80e0d8b64daeff98eb49755e658921b5 | ||
SIZE (tomszilagyi-ir.lv2-1.3.3-8-g0a36907_GH0.tar.gz) = 126563 | ||
SHA256 (3c892744fce01661293a5e466d341d4f0e852f22.patch) = 5653babe7cca78f381d5969a268c0b3272b7a7e73cef5e66d47bb014c304fe6a | ||
SIZE (3c892744fce01661293a5e466d341d4f0e852f22.patch) = 2468 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,11 @@ | ||
--- Makefile.orig 2018-01-03 15:11:45 UTC | ||
--- Makefile.orig 2018-06-21 08:16:45 UTC | ||
+++ Makefile | ||
@@ -27,31 +27,31 @@ C4LIBS = -lsndfile `pkg-config --libs gt | ||
all: ir.so ir_gui.so | ||
|
||
ir.o: ir.cc ir.h ir_utils.h | ||
- g++ ir.cc $(CPPFLAGS) -c -fPIC -o ir.o | ||
+ $(CXX) ir.cc $(CPPFLAGS) -c -fPIC -o ir.o | ||
|
||
ir_gui.o: ir_gui.cc ir.h ir_utils.h ir_wavedisplay.h | ||
- g++ ir_gui.cc $(CPPFLAGS) -c -fPIC -o ir_gui.o | ||
+ $(CXX) ir_gui.cc $(CPPFLAGS) -c -fPIC -o ir_gui.o | ||
|
||
ir_utils.o: ir_utils.cc ir_utils.h ir.h | ||
- g++ ir_utils.cc $(CPPFLAGS) -c -fPIC -o ir_utils.o | ||
+ $(CXX) ir_utils.cc $(CPPFLAGS) -c -fPIC -o ir_utils.o | ||
|
||
ir_meter.o: ir_meter.cc ir_meter.h ir.h ir_utils.h | ||
- g++ ir_meter.cc $(CPPFLAGS) -c -fPIC -o ir_meter.o | ||
+ $(CXX) ir_meter.cc $(CPPFLAGS) -c -fPIC -o ir_meter.o | ||
|
||
ir_modeind.o: ir_modeind.cc ir_modeind.h ir.h ir_utils.h | ||
- g++ ir_modeind.cc $(CPPFLAGS) -c -fPIC -o ir_modeind.o | ||
+ $(CXX) ir_modeind.cc $(CPPFLAGS) -c -fPIC -o ir_modeind.o | ||
|
||
ir_wavedisplay.o: ir_wavedisplay.cc ir_wavedisplay.h ir.h ir_utils.h | ||
- g++ ir_wavedisplay.cc $(CPPFLAGS) -c -fPIC -o ir_wavedisplay.o | ||
+ $(CXX) ir_wavedisplay.cc $(CPPFLAGS) -c -fPIC -o ir_wavedisplay.o | ||
|
||
ir.so: ir.o ir_utils.o | ||
- g++ $(LDFLAGS) ir.o ir_utils.o $(LIBS) -shared -o ir.so | ||
+ $(CXX) $(LDFLAGS) ir.o ir_utils.o $(LIBS) -shared -o ir.so | ||
@@ -58,7 +58,7 @@ ir.so: ir.o ir_utils.o | ||
$(CXX) $(LDFLAGS) ir.o ir_utils.o $(LIBS) -shared -o ir.so | ||
|
||
ir_gui.so: ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o | ||
- g++ $(LDFLAGS) ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o $(LIBS) -shared -z nodelete -o ir_gui.so | ||
- $(CXX) $(LDFLAGS) ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o $(LIBS) -shared -z nodelete -o ir_gui.so | ||
+ $(CXX) $(LDFLAGS) ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o $(LIBS) -shared -o ir_gui.so | ||
|
||
convert4chan: convert4chan.c | ||
- gcc $(C4CFLAGS) $(CPPFLAGS) $(LDFLAGS) convert4chan.c $(C4LIBS) -o convert4chan | ||
+ $(CC) $(C4CFLAGS) $(CPPFLAGS) $(LDFLAGS) convert4chan.c $(C4LIBS) -o convert4chan | ||
|
||
install: all | ||
mkdir -p $(INSTDIR) | ||
$(CC) $(C4CFLAGS) $(CPPFLAGS) $(LDFLAGS) convert4chan.c $(C4LIBS) -o convert4chan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
PORTNAME= juk | ||
DISTVERSION= ${KDE_APPLICATIONS_VERSION} | ||
PORTREVISION= 1 | ||
CATEGORIES= audio kde kde-applications | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
PORTNAME= kmix | ||
PORTVERSION= ${KDE4_VERSION} | ||
PORTREVISION= 4 | ||
PORTREVISION= 5 | ||
CATEGORIES= audio kde kde-kde4 | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
PORTNAME= kscd | ||
PORTVERSION= ${KDE4_VERSION} | ||
PORTREVISION= 3 | ||
PORTREVISION= 4 | ||
CATEGORIES= audio kde kde-kde4 | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
PORTNAME= lastfm-desktop | ||
PORTVERSION= 2.1.36 | ||
PORTREVISION= 6 | ||
PORTREVISION= 7 | ||
CATEGORIES= audio | ||
|
||
MAINTAINER= [email protected] | ||
|
@@ -39,7 +39,7 @@ OPTIONS_DEFAULT= VLC | |
GSTREAMER_DESC= Multimedia via Phonon-GStreamer | ||
GSTREAMER_USE= QT4=phonon-gst_run | ||
VLC_DESC= Multimedia via Phonon-VLC | ||
VLC_RUN_DEPENDS= phonon-vlc>=0.6.1:multimedia/phonon-vlc | ||
VLC_RUN_DEPENDS= phonon-vlc-qt4>=0.6.1:multimedia/phonon-vlc@qt4 | ||
|
||
do-install: | ||
@${MKDIR} ${STAGEDIR}${DATADIR} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
PORTNAME= libkcompactdisc | ||
PORTVERSION= ${KDE4_VERSION} | ||
PORTREVISION= 5 | ||
PORTREVISION= 6 | ||
CATEGORIES= audio kde kde-kde4 | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
PORTNAME= libkcompactdisc | ||
DISTVERSION= ${KDE_APPLICATIONS_VERSION} | ||
PORTREVISION= 1 | ||
CATEGORIES= audio kde kde-applications | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Prefer sndio over OSS when it's enabled. | ||
|
||
--- Alc/ALc.c.orig 2018-06-21 02:27:21 UTC | ||
+++ Alc/ALc.c | ||
@@ -69,14 +69,14 @@ static struct BackendInfo BackendList[] = { | ||
#ifdef HAVE_COREAUDIO | ||
{ "core", ALCcoreAudioBackendFactory_getFactory }, | ||
#endif | ||
-#ifdef HAVE_OSS | ||
- { "oss", ALCossBackendFactory_getFactory }, | ||
-#endif | ||
#ifdef HAVE_SOLARIS | ||
{ "solaris", ALCsolarisBackendFactory_getFactory }, | ||
#endif | ||
#ifdef HAVE_SNDIO | ||
{ "sndio", ALCsndioBackendFactory_getFactory }, | ||
+#endif | ||
+#ifdef HAVE_OSS | ||
+ { "oss", ALCossBackendFactory_getFactory }, | ||
#endif | ||
#ifdef HAVE_QSA | ||
{ "qsa", ALCqsaBackendFactory_getFactory }, |
Oops, something went wrong.