FreeBSD Bugzilla – Attachment 156484 Details for
Bug 200039
[PATCH] comms/fldigi: Convert to OptionsNG
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
fldigi.patch
fldigi.patch (text/x-c), 9.79 KB, created by
takefu
on 2015-05-08 01:09:14 UTC
(
hide
)
Description:
fldigi.patch
Filename:
MIME Type:
Creator:
takefu
Created:
2015-05-08 01:09:14 UTC
Size:
9.79 KB
patch
obsolete
>diff -ruN /usr/ports/comms/fldigi/Makefile ./Makefile >--- /usr/ports/comms/fldigi/Makefile 2015-05-03 08:14:16.000000000 +0900 >+++ ./Makefile 2015-05-07 17:49:43.000000000 +0900 >@@ -38,64 +38,33 @@ > HAMLIB_DESC= Support rig control via hamlib > > OPTIONS_DEFAULT= FLARQ OSS HAMLIB >+OPTIONS_SUB= yes >+ >+NATIVE_OPT_CONFIGURE_ON= --enable-optimizations=native >+NATIVE_OPT_CONFIGURE_OFF= --enable-optimizations=none >+FLARQ_CONFIGURE_ENABLE= flarq >+OSS_CONFIGURE_ENABLE= oss >+SNDFILE_CONFIGURE_WITH= sndfile >+SNDFILE_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile >+PORTAUDIO_CONFIGURE_WITH= portaudio >+PORTAUDIO_BUILD_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio2 >+PORTAUDIO_RUN_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio2 >+PULSEAUDIO_CONFIGURE_WITH= pulseaudio >+PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio >+HAMLIB_CONFIGURE_WITH= hamlib >+HAMLIB_LIB_DEPENDS= libhamlib.so:${PORTSDIR}/comms/hamlib >+NLS_CONFIGURE_ENABLE= nls >+NLS_USES= gettext > > .include <bsd.port.pre.mk> > > .if ${ARCH} == "sparc64" > BROKEN= Fails to install > .endif >-.if ${PORT_OPTIONS:MNATIVE_OPT} >-CONFIGURE_ARGS+=--enable-optimizations=native >-.else >-CONFIGURE_ARGS+=--enable-optimizations=none >-.endif > .if ${PORT_OPTIONS:MFLARQ} >-CONFIGURE_ARGS+=--enable-flarq > MAN1+= flarq.1 >-PLIST_SUB+= FLARQ="" >-.else >-CONFIGURE_ARGS+=--disable-flarq >-PLIST_SUB+= FLARQ="@comment " > .endif > PLIST_SUB+= XMLRPC="" >-.if ${PORT_OPTIONS:MOSS} >-CONFIGURE_ARGS+=--enable-oss >-.else >-CONFIGURE_ARGS+=--disable-oss >-.endif >-.if ${PORT_OPTIONS:MSNDFILE} >-CONFIGURE_ARGS+=--with-sndfile >-LIB_DEPENDS+= libsndfile.so:${PORTSDIR}/audio/libsndfile >-.else >-CONFIGURE_ARGS+=--without-sndfile >-.endif >-.if ${PORT_OPTIONS:MPORTAUDIO} >-CONFIGURE_ARGS+=--with-portaudio >-BUILD_DEPENDS+= ${LOCALBASE}/lib/portaudio2/libportaudio.so:${PORTSDIR}/audio/portaudio2 >-RUN_DEPENDS+= ${LOCALBASE}/lib/portaudio2/libportaudio.so:${PORTSDIR}/audio/portaudio2 >-.else >-CONFIGURE_ARGS+=--without-portaudio >-.endif >-.if ${PORT_OPTIONS:MPULSEAUDIO} >-CONFIGURE_ARGS+=--with-pulseaudio >-LIB_DEPENDS+= libpulse.so:${PORTSDIR}/audio/pulseaudio >-.else >-CONFIGURE_ARGS+=--without-pulseaudio >-.endif >-.if ${PORT_OPTIONS:MHAMLIB} >-CONFIGURE_ARGS+=--with-hamlib >-LIB_DEPENDS+= libhamlib.so:${PORTSDIR}/comms/hamlib >-.else >-CONFIGURE_ARGS+=--without-hamlib >-.endif >-.if ${PORT_OPTIONS:MNLS} >-USES+= gettext >-CONFIGURE_ARGS+=--enable-nls >-PLIST_SUB+= NLS="" >-.else >-CONFIGURE_ARGS+=--disable-nls >-PLIST_SUB+= NLS="@comment " >-.endif > # Always need asciidoc for man pages > CONFIGURE_ARGS+=--with-asciidoc > >diff -ruN /usr/ports/comms/fldigi/files/patch-Makefile.in ./files/patch-Makefile.in >--- /usr/ports/comms/fldigi/files/patch-Makefile.in 2014-01-23 02:40:44.000000000 +0900 >+++ ./files/patch-Makefile.in 2015-05-08 10:07:04.000000000 +0900 >@@ -1,6 +1,6 @@ >---- Makefile.in.orig 2013-02-08 22:19:37.000000000 -0500 >-+++ Makefile.in 2013-03-31 19:02:18.000000000 -0500 >-@@ -145,7 +145,7 @@ >+--- Makefile.in.orig 2015-04-24 12:55:28 UTC >++++ Makefile.in >+@@ -145,7 +145,7 @@ CC = @CC@ > CCDEPMODE = @CCDEPMODE@ > CFLAGS = @CFLAGS@ > CPP = @CPP@ >diff -ruN /usr/ports/comms/fldigi/files/patch-misc_newinstall.cxx ./files/patch-misc_newinstall.cxx >--- /usr/ports/comms/fldigi/files/patch-misc_newinstall.cxx 2015-01-12 10:09:17.000000000 +0900 >+++ ./files/patch-misc_newinstall.cxx 2015-05-07 16:57:48.000000000 +0900 >@@ -1,6 +1,6 @@ >---- src/misc/newinstall.cxx.orig 2014-03-21 11:25:57.000000000 -0500 >-+++ src/misc/newinstall.cxx 2014-03-21 18:19:24.000000000 -0500 >-@@ -84,7 +84,7 @@ >+--- src/misc/newinstall.cxx.orig 2015-03-21 00:29:03 UTC >++++ src/misc/newinstall.cxx >+@@ -84,7 +84,7 @@ Age: \n\ > Rig: \n\ > Pwr: \n\ > Ant: \n\ >diff -ruN /usr/ports/comms/fldigi/files/patch-src_data_io.h ./files/patch-src_data_io.h >--- /usr/ports/comms/fldigi/files/patch-src_data_io.h 2014-11-27 18:47:05.000000000 +0900 >+++ ./files/patch-src_data_io.h 2015-05-07 16:58:34.000000000 +0900 >@@ -1,5 +1,5 @@ >---- src/include/data_io.h.orig 2014-11-27 01:39:00.000000000 -0800 >-+++ src/include/data_io.h 2014-11-27 01:39:29.000000000 -0800 >+--- src/include/data_io.h.orig 2015-04-18 13:26:19 UTC >++++ src/include/data_io.h > @@ -27,6 +27,8 @@ > #ifndef fldigi_data_io_h > #define fldigi_data_io_h >diff -ruN /usr/ports/comms/fldigi/files/patch-src_dialogs_fl_digi.cxx ./files/patch-src_dialogs_fl_digi.cxx >--- /usr/ports/comms/fldigi/files/patch-src_dialogs_fl_digi.cxx 2014-01-23 02:40:44.000000000 +0900 >+++ ./files/patch-src_dialogs_fl_digi.cxx 2015-05-07 16:57:33.000000000 +0900 >@@ -1,5 +1,5 @@ >---- src/dialogs/fl_digi.cxx.orig 2012-07-07 09:01:19.000000000 -0500 >-+++ src/dialogs/fl_digi.cxx 2012-07-21 15:24:09.000000000 -0500 >+--- src/dialogs/fl_digi.cxx.orig 2015-04-23 11:39:24 UTC >++++ src/dialogs/fl_digi.cxx > @@ -26,6 +26,7 @@ > #include <config.h> > >diff -ruN /usr/ports/comms/fldigi/files/patch-src_dominoex_dominoex.cxx ./files/patch-src_dominoex_dominoex.cxx >--- /usr/ports/comms/fldigi/files/patch-src_dominoex_dominoex.cxx 2014-03-31 12:30:22.000000000 +0900 >+++ ./files/patch-src_dominoex_dominoex.cxx 2015-05-07 16:57:26.000000000 +0900 >@@ -1,6 +1,6 @@ >---- src/dominoex/dominoex.cxx.orig 2014-03-21 11:25:57.000000000 -0500 >-+++ src/dominoex/dominoex.cxx 2014-03-21 18:19:42.000000000 -0500 >-@@ -63,7 +63,7 @@ >+--- src/dominoex/dominoex.cxx.orig 2015-04-22 15:17:06 UTC >++++ src/dominoex/dominoex.cxx >+@@ -63,7 +63,7 @@ void dominoex::tx_init(SoundBase *sc) > > strSecXmtText = progdefaults.secText; > if (strSecXmtText.length() == 0) >diff -ruN /usr/ports/comms/fldigi/files/patch-src_include_qrunner.h ./files/patch-src_include_qrunner.h >--- /usr/ports/comms/fldigi/files/patch-src_include_qrunner.h 2014-11-27 18:47:05.000000000 +0900 >+++ ./files/patch-src_include_qrunner.h 2015-05-07 16:58:15.000000000 +0900 >@@ -1,5 +1,5 @@ >---- src/include/qrunner.h.orig 2014-11-27 01:43:12.000000000 -0800 >-+++ src/include/qrunner.h 2014-11-27 01:43:46.000000000 -0800 >+--- src/include/qrunner.h.orig 2015-03-21 00:29:03 UTC >++++ src/include/qrunner.h > @@ -32,6 +32,7 @@ > #include <cerrno> > #include <stdexcept> >diff -ruN /usr/ports/comms/fldigi/files/patch-src_logbook_lookupcall.cxx ./files/patch-src_logbook_lookupcall.cxx >--- /usr/ports/comms/fldigi/files/patch-src_logbook_lookupcall.cxx 2014-03-31 12:30:22.000000000 +0900 >+++ ./files/patch-src_logbook_lookupcall.cxx 2015-05-07 16:57:40.000000000 +0900 >@@ -1,6 +1,6 @@ >---- src/logbook/lookupcall.cxx.orig 2014-03-21 11:25:57.000000000 -0500 >-+++ src/logbook/lookupcall.cxx 2014-03-21 18:19:53.000000000 -0500 >-@@ -1188,7 +1188,7 @@ >+--- src/logbook/lookupcall.cxx.orig 2015-04-23 11:39:24 UTC >++++ src/logbook/lookupcall.cxx >+@@ -1188,7 +1188,7 @@ static void *EQSL_loop(void *args) > return NULL; > > size_t p; >diff -ruN /usr/ports/comms/fldigi/files/patch-src_qrunner_qrunner.cxx ./files/patch-src_qrunner_qrunner.cxx >--- /usr/ports/comms/fldigi/files/patch-src_qrunner_qrunner.cxx 2014-11-22 00:29:34.000000000 +0900 >+++ ./files/patch-src_qrunner_qrunner.cxx 2015-05-07 16:58:09.000000000 +0900 >@@ -1,6 +1,6 @@ >---- src/qrunner/qrunner.cxx.orig 2014-10-14 21:19:37.000000000 -0400 >-+++ src/qrunner/qrunner.cxx 2014-10-24 14:39:00.000000000 -0400 >-@@ -103,7 +103,7 @@ >+--- src/qrunner/qrunner.cxx.orig 2015-03-21 00:29:04 UTC >++++ src/qrunner/qrunner.cxx >+@@ -103,7 +103,7 @@ void qrunner::execute(int fd, void *arg) > return; > qr->inprog = true; > >diff -ruN /usr/ports/comms/fldigi/files/patch-src_spot_pskrep.cxx ./files/patch-src_spot_pskrep.cxx >--- /usr/ports/comms/fldigi/files/patch-src_spot_pskrep.cxx 2014-07-08 03:27:22.000000000 +0900 >+++ ./files/patch-src_spot_pskrep.cxx 2015-05-07 16:58:02.000000000 +0900 >@@ -1,5 +1,5 @@ >---- src/spot/pskrep.cxx.orig 2014-07-04 15:11:14.000000000 -0700 >-+++ src/spot/pskrep.cxx 2014-07-04 15:13:32.000000000 -0700 >+--- src/spot/pskrep.cxx.orig 2015-03-21 00:29:04 UTC >++++ src/spot/pskrep.cxx > @@ -50,7 +50,7 @@ > #include <algorithm> > #include <fstream> >diff -ruN /usr/ports/comms/fldigi/files/patch-src_thor_thor.cxx ./files/patch-src_thor_thor.cxx >--- /usr/ports/comms/fldigi/files/patch-src_thor_thor.cxx 2015-01-12 10:09:17.000000000 +0900 >+++ ./files/patch-src_thor_thor.cxx 2015-05-07 16:58:21.000000000 +0900 >@@ -1,6 +1,6 @@ >---- src/thor/thor.cxx.orig 2013-11-16 11:12:26.140977946 -0500 >-+++ src/thor/thor.cxx 2013-11-16 11:13:27.127067530 -0500 >-@@ -63,7 +63,7 @@ >+--- src/thor/thor.cxx.orig 2015-04-22 15:17:06 UTC >++++ src/thor/thor.cxx >+@@ -63,7 +63,7 @@ void thor::tx_init(SoundBase *sc) > videoText(); > strSecXmtText = progdefaults.THORsecText; > if (strSecXmtText.length() == 0) >diff -ruN /usr/ports/comms/fldigi/files/patch-src_wefax_wefax.cxx ./files/patch-src_wefax_wefax.cxx >--- /usr/ports/comms/fldigi/files/patch-src_wefax_wefax.cxx 2014-01-23 02:40:44.000000000 +0900 >+++ ./files/patch-src_wefax_wefax.cxx 2015-05-07 16:58:28.000000000 +0900 >@@ -1,6 +1,6 @@ >---- src/wefax/wefax.cxx.orig 2013-11-18 09:29:13.581496108 -0500 >-+++ src/wefax/wefax.cxx 2013-11-18 09:38:30.354457373 -0500 >-@@ -556,7 +556,7 @@ >+--- src/wefax/wefax.cxx.orig 2015-04-22 15:17:06 UTC >++++ src/wefax/wefax.cxx >+@@ -556,7 +556,7 @@ private: > = wf->powerDensity(m_carrier - 2 * m_apt_start_freq, bandwidth_apt_start) > + wf->powerDensity(m_carrier - m_apt_start_freq, bandwidth_apt_start) > + wf->powerDensity(m_carrier , bandwidth_apt_start) >diff -ruN /usr/ports/comms/fldigi/files/patch-src_xmrpcpp_XmlRpcBase64.h ./files/patch-src_xmrpcpp_XmlRpcBase64.h >--- /usr/ports/comms/fldigi/files/patch-src_xmrpcpp_XmlRpcBase64.h 2015-05-03 08:14:16.000000000 +0900 >+++ ./files/patch-src_xmrpcpp_XmlRpcBase64.h 2015-05-07 16:57:11.000000000 +0900 >@@ -1,5 +1,5 @@ >---- src/xmlrpcpp/XmlRpcBase64.h.orig 2015-04-27 22:16:11.000000000 -0700 >-+++ src/xmlrpcpp/XmlRpcBase64.h 2015-04-27 22:16:22.000000000 -0700 >+--- src/xmlrpcpp/XmlRpcBase64.h.orig 2015-04-23 11:39:24 UTC >++++ src/xmlrpcpp/XmlRpcBase64.h > @@ -18,6 +18,7 @@ > #if !defined(__BASE64_H_INCLUDED__) > #define __BASE64_H_INCLUDED__ 1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 200039
: 156484