*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2018-01-08 13:44:41 +01:00
parent 1471db1f7b
commit d92f6bb96e
957 changed files with 18387 additions and 10207 deletions

View File

@ -25,6 +25,7 @@
SUBDIR += py-papi
SUBDIR += py-speech-dispatcher
SUBDIR += qt4-accessible
SUBDIR += qt5-speech
SUBDIR += redshift
SUBDIR += rubygem-atk
SUBDIR += speech-dispatcher

View File

@ -3,7 +3,7 @@
PORTNAME= accessible
DISTVERSION= ${QT4_VERSION}
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= accessibility
PKGNAMEPREFIX= qt4-
@ -12,6 +12,7 @@ COMMENT= Qt accessibility widgets
USE_QT4= qmake_build moc_build qt3support corelib gui network sql xml
QT_DIST= yes
USE_CXXSTD= gnu++98
HAS_CONFIGURE= yes

View File

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= speech
DISTVERSION= ${QT5_VERSION}
CATEGORIES= accessibility
PKGNAMEPREFIX= qt5-
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibilty features for Qt5
LIB_DEPENDS= libspeechd.so:accessibility/speech-dispatcher
USES= pkgconfig qmake:outsource
USE_QT5= core gui buildtools_build qmake_build
QT_DIST= ${PORTNAME}
.include <bsd.port.mk>

View File

@ -0,0 +1,28 @@
%%QT_INCDIR%%/QtTextToSpeech/%%FULLVER%%/QtTextToSpeech/private/qtexttospeech_p.h
%%QT_INCDIR%%/QtTextToSpeech/%%FULLVER%%/QtTextToSpeech/private/qvoice_p.h
%%QT_INCDIR%%/QtTextToSpeech/QTextToSpeech
%%QT_INCDIR%%/QtTextToSpeech/QTextToSpeechEngine
%%QT_INCDIR%%/QtTextToSpeech/QTextToSpeechPlugin
%%QT_INCDIR%%/QtTextToSpeech/QVoice
%%QT_INCDIR%%/QtTextToSpeech/QtTextToSpeech
%%QT_INCDIR%%/QtTextToSpeech/QtTextToSpeechDepends
%%QT_INCDIR%%/QtTextToSpeech/QtTextToSpeechVersion
%%QT_INCDIR%%/QtTextToSpeech/qtexttospeech.h
%%QT_INCDIR%%/QtTextToSpeech/qtexttospeech_global.h
%%QT_INCDIR%%/QtTextToSpeech/qtexttospeechengine.h
%%QT_INCDIR%%/QtTextToSpeech/qtexttospeechplugin.h
%%QT_INCDIR%%/QtTextToSpeech/qttexttospeechversion.h
%%QT_INCDIR%%/QtTextToSpeech/qvoice.h
%%QT_CMAKEDIR%%/Qt5TextToSpeech/Qt5TextToSpeechConfig.cmake
%%QT_CMAKEDIR%%/Qt5TextToSpeech/Qt5TextToSpeechConfigVersion.cmake
%%QT_CMAKEDIR%%/Qt5TextToSpeech/Qt5TextToSpeech_QTextToSpeechPluginSpeechd.cmake
%%QT_LIBDIR%%/libQt5TextToSpeech.prl
%%QT_LIBDIR%%/libQt5TextToSpeech.so
%%QT_LIBDIR%%/libQt5TextToSpeech.so.5
%%QT_LIBDIR%%/libQt5TextToSpeech.so.%%SHORTVER%%
%%QT_LIBDIR%%/libQt5TextToSpeech.so.%%FULLVER%%
%%DEBUG%%%%QT_LIBDIR%%/libQt5TextToSpeech.so.%%FULLVER%%.debug
%%QT_MKSPECDIR%%/modules/qt_lib_texttospeech.pri
%%QT_MKSPECDIR%%/modules/qt_lib_texttospeech_private.pri
%%QT_PLUGINDIR%%/texttospeech/libqtexttospeech_speechd.so
libdata/pkgconfig/Qt5TextToSpeech.pc

View File

@ -0,0 +1,33 @@
This fixes the build with Clang 6.0:
../../../../CPP/Windows/ErrorMsg.cpp:24:10: error: case value evaluates to -2147024809, which cannot be narrowed to type 'DWORD' (aka 'unsigned int') [-Wc++11-narrowing]
case E_INVALIDARG : txt = "E_INVALIDARG"; break ;
^
../../../../CPP/Common/MyWindows.h:89:22: note: expanded from macro 'E_INVALIDARG'
#define E_INVALIDARG ((HRESULT)0x80070057L)
^
The HRESULT cast in the macro causes the value to be read as signed int.
--- CPP/Windows/ErrorMsg.cpp.orig 2015-01-18 18:20:28 UTC
+++ CPP/Windows/ErrorMsg.cpp
@@ -15,13 +15,13 @@ UString MyFormatMessage(DWORD errorCode)
switch(errorCode) {
case ERROR_NO_MORE_FILES : txt = "No more files"; break ;
- case E_NOTIMPL : txt = "E_NOTIMPL"; break ;
- case E_NOINTERFACE : txt = "E_NOINTERFACE"; break ;
- case E_ABORT : txt = "E_ABORT"; break ;
- case E_FAIL : txt = "E_FAIL"; break ;
- case STG_E_INVALIDFUNCTION : txt = "STG_E_INVALIDFUNCTION"; break ;
- case E_OUTOFMEMORY : txt = "E_OUTOFMEMORY"; break ;
- case E_INVALIDARG : txt = "E_INVALIDARG"; break ;
+ case (DWORD)(E_NOTIMPL) : txt = "E_NOTIMPL"; break ;
+ case (DWORD)(E_NOINTERFACE) : txt = "E_NOINTERFACE"; break ;
+ case (DWORD)(E_ABORT) : txt = "E_ABORT"; break ;
+ case (DWORD)(E_FAIL) : txt = "E_FAIL"; break ;
+ case (DWORD)(STG_E_INVALIDFUNCTION) : txt = "STG_E_INVALIDFUNCTION"; break ;
+ case (DWORD)(E_OUTOFMEMORY) : txt = "E_OUTOFMEMORY"; break ;
+ case (DWORD)(E_INVALIDARG) : txt = "E_INVALIDARG"; break ;
case ERROR_DIRECTORY : txt = "Error Directory"; break ;
default:
txt = strerror(errorCode);

View File

@ -54,7 +54,6 @@
SUBDIR += baresip
SUBDIR += baudline
SUBDIR += bcg729
SUBDIR += beast
SUBDIR += beep
SUBDIR += beets
SUBDIR += blop

View File

@ -1,85 +0,0 @@
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
# $FreeBSD$
PORTNAME= beast
PORTVERSION= 0.7.8
PORTREVISION= 9
CATEGORIES= audio
MASTER_SITES= https://beast.testbit.org/pub/v0/
MAINTAINER= ports@FreeBSD.org
COMMENT= Powerful music composition and modular synthesis application
LICENSE= LGPL21
DEPRECATED= 4.5 years old version, six versions behind, requires old toolchain, and unmaintained.
EXPIRATION_DATE=2018-01-04
LIB_DEPENDS= libasound.so:audio/alsa-lib \
libmad.so:audio/libmad \
libvorbisfile.so:audio/libvorbis \
libguile.so:lang/guile
RUN_DEPENDS= xdg-open:devel/xdg-utils
BROKEN_armv6= fails to package: bseblockutils.SSE.so: No such file or directory
BROKEN_armv7= fails to package: bseblockutils.SSE.so: No such file or directory
BROKEN_powerpc64= fails to package: bseblockutils.SSE.so: No such file or directory
USE_HARDENING= pie:off relro:off
USES= desktop-file-utils gettext gmake libtool pathfix pkgconfig \
shared-mime-info shebangfix tar:bzip2
SHEBANG_FILES= autotools/intltool-merge
# Fails to build with GCC 4.9, cf. PR 196849.
USE_GCC= 4.8
USE_GNOME= intltool libgnomecanvas
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-osspcm=/dev/dsp \
--enable-ossmidi=/dev/midi
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
CXXFLAGS+= -fpermissive
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_SUB= VERSION="${PORTVERSION}"
OPTIONS_SUB= yes
OPTIONS_DEFINE= DEBUG
OPTIONS_DEFINE_i386= SSE
OPTIONS_DEFINE_amd64= SSE
OPTIONS_DEFAULT_i386= ${MACHINE_CPU:Msse:tu}
OPTIONS_DEFAULT_amd64= SSE
DEBUG_CONFIGURE_ENABLE= debug
SSE_VARS= SSE_FLAGS="-mmmx -msse"
.include <bsd.port.pre.mk>
MAKE_JOBS_UNSAFE= yes
.if ${ARCH} != amd64 && ${ARCH} != i386
SSE_FLAGS=
SSE_VARS=
.endif
post-patch:
@${REINPLACE_CMD} -e \
'/^[[:space:]].*FLAGS -[Ofgp].*"/s|^|#| ; \
s|-mmmx -msse \(-ftree-vectorize\)|${SSE_FLAGS} \1| ; \
s|\(if test 0\) ==|\1 -eq| ; \
s|\(bseladspapath=\)$${|\1\\\$${| ; \
s|\(LDFLAGS=\)""|\1"$$LDFLAGS"|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
's|/bin/bash|${SH}|' ${WRKSRC}/mkrelease.sh
@${REINPLACE_CMD} -e \
's|BIRNET_.*_UINT == 0|1|' ${WRKSRC}/birnet/birnetcdefs.h
@${REINPLACE_CMD} -e \
's|; q|;| ; \
s|-o \(pipefail\)|\1|' ${WRKSRC}/docs/Makefile.in
@${REINPLACE_CMD} -e \
's|-DG_DISABLE_DEPRECATED||' ${WRKSRC}/bse/Makefile.am \
${WRKSRC}/bse/Makefile.in
.include <bsd.port.post.mk>

View File

@ -1,2 +0,0 @@
SHA256 (beast-0.7.8.tar.bz2) = ffcf8e3b6f8728d0d07b3c4cf314286d9e88dd427d4bd3584372ab90dc14e8eb
SIZE (beast-0.7.8.tar.bz2) = 6293313

View File

@ -1,11 +0,0 @@
--- birnet/birnetcpu.cc.orig 2013-01-19 00:23:42 UTC
+++ birnet/birnetcpu.cc
@@ -174,7 +174,7 @@ get_x86_cpu_features (CPUInfo *ci,
struct sigaction action, old_action;
action.sa_handler = cpu_info_sigill_handler;
sigemptyset (&action.sa_mask);
- action.sa_flags = SA_NOMASK;
+ action.sa_flags = SA_NODEFER;
sigaction (SIGILL, &action, &old_action);
if (setjmp (cpu_info_jmp_buf) == 0)
{

View File

@ -1,20 +0,0 @@
--- tools/bseloopfuncs.cc.orig 2013-01-19 00:23:42 UTC
+++ tools/bseloopfuncs.cc
@@ -469,7 +469,7 @@ gsl_data_find_loop2 (GslDataHandle *
ep = sp + minll;
{
gdouble score = score_headloop (dhandle, sp, ep - sp, config->block_length / 2, G_MAXDOUBLE);
- g_print ("%u %.17g\n", sp - block, score);
+ g_print ("%lu %.17g\n", sp - block, score);
continue;
if (score <= config->score)
{
@@ -496,7 +496,7 @@ gsl_data_find_loop2 (GslDataHandle *
for (ep = sp + minll; ep < cstart; ep++)
{
gdouble score = score_headloop (dhandle, sp, ep - sp, config->block_length / 2, config->score);
- g_print ("%u %.17g\n", ep - sp, score);
+ g_print ("%lu %.17g\n", ep - sp, score);
continue;
if (score <= config->score)
{

View File

@ -1,13 +0,0 @@
Beast is a powerful music composition and modular synthesis
application. It supports a wide range of standards in the field, such
as MIDI, WAV/AIFF/MP3/OggVorbis/etc audio files and LADSPA modules. It
has excellent technical abilities like multitrack editing, unlimited
undo/redo support, real-time synthesis support, 32bit audio rendering,
full duplex support, multiprocessor support, precise timing down to
sample granularity, on demand loading of partial wave files, on the
fly decoding and full scriptability in scheme. The plugins, synthesis
core and the user interface are actively being developed and
translated into a variety of languages, regularly assimilating user
feedback such as from our FeatureRequests page.
WWW: https://beast.testbit.org/

View File

@ -1,281 +0,0 @@
bin/beast
bin/beast-%%VERSION%%
bin/bsescm
bin/bsescm-%%VERSION%%
bin/bsewavetool
bin/sfidl
man/man1/beast.1.gz
man/man1/bsescm.1.gz
man/man1/bsewavetool.1.gz
man/man1/sfidl.1.gz
man/man5/bse.5.gz
include/birnet/birnet.hh
include/birnet/birnetcdefs.h
include/birnet/birnetconfig.h
include/birnet/birnetcpu.hh
include/birnet/birnetdebugtools.hh
include/birnet/birnetmath.hh
include/birnet/birnetmsg.hh
include/birnet/birnettests.h
include/birnet/birnetthread.hh
include/birnet/birnetutf8.hh
include/birnet/birnetutils.hh
include/bse/bse.hh
include/bse/bse.idl
include/bse/bsebiquadfilter.hh
include/bse/bseblockutils.hh
include/bse/bsebus.hh
include/bse/bsebusmodule.idl
include/bse/bsecategories.hh
include/bse/bsecompat.hh
include/bse/bseconfig.h
include/bse/bseconstant.hh
include/bse/bseconstvalues.hh
include/bse/bsecontainer.hh
include/bse/bsecontextmerger.hh
include/bse/bsecore.genidl.hh
include/bse/bsecore.idl
include/bse/bsecsynth.hh
include/bse/bsecxxarg.hh
include/bse/bsecxxbase.hh
include/bse/bsecxxbase.idl
include/bse/bsecxxclosure.hh
include/bse/bsecxxmodule.hh
include/bse/bsecxxmodule.idl
include/bse/bsecxxplugin.hh
include/bse/bsecxxutils.hh
include/bse/bsecxxvalue.hh
include/bse/bsedatapocket.hh
include/bse/bsedefs.hh
include/bse/bsedevice.hh
include/bse/bseeditablesample.hh
include/bse/bseengine.hh
include/bse/bseenginemaster.hh
include/bse/bseenginenode.hh
include/bse/bseengineschedule.hh
include/bse/bseengineutils.hh
include/bse/bseenums.hh
include/bse/bseexports.hh
include/bse/bsefilter.hh
include/bse/bsegconfig.hh
include/bse/bsegenclosures.hh
include/bse/bsegentypes.h
include/bse/bseglobals.hh
include/bse/bseglue.hh
include/bse/bsehack.idl
include/bse/bseieee754.hh
include/bse/bseincluder.hh
include/bse/bseinstrumentinput.hh
include/bse/bseinstrumentoutput.hh
include/bse/bseitem.hh
include/bse/bsejanitor.hh
include/bse/bseladspa.hh
include/bse/bseladspamodule.hh
include/bse/bseloader.hh
include/bse/bsemain.hh
include/bse/bsemath.hh
include/bse/bsemathsignal.hh
include/bse/bsemidicontroller.hh
include/bse/bsemididecoder.hh
include/bse/bsemididevice-null.hh
include/bse/bsemididevice-oss.hh
include/bse/bsemididevice.hh
include/bse/bsemidievent.hh
include/bse/bsemidifile.hh
include/bse/bsemidiinput.hh
include/bse/bsemidinotifier.hh
include/bse/bsemidireceiver.hh
include/bse/bsemidisynth.hh
include/bse/bsemidivoice.hh
include/bse/bsenote.hh
include/bse/bseobject.hh
include/bse/bseparam.hh
include/bse/bseparasite.hh
include/bse/bsepart.hh
include/bse/bsepcmdevice-null.hh
include/bse/bsepcmdevice-oss.hh
include/bse/bsepcmdevice.hh
include/bse/bsepcminput.hh
include/bse/bsepcmoutput.hh
include/bse/bsepcmwriter.hh
include/bse/bseplugin.hh
include/bse/bseprobe.idl
include/bse/bseprocedure.hh
include/bse/bseproject.hh
include/bse/bseresampler.hh
include/bse/bseresamplerimpl.hh
include/bse/bsescripthelper.hh
include/bse/bsesequencer.hh
include/bse/bseserver.hh
include/bse/bsesnet.hh
include/bse/bsesnooper.hh
include/bse/bsesong.hh
include/bse/bsesource.hh
include/bse/bsestandardosc.hh
include/bse/bsestandardsynths.hh
include/bse/bsestorage.hh
include/bse/bsesubiport.hh
include/bse/bsesuboport.hh
include/bse/bsesubsynth.hh
include/bse/bsesuper.hh
include/bse/bsetrack.hh
include/bse/bsetype.hh
include/bse/bseundostack.hh
include/bse/bseutils.hh
include/bse/bsewave.hh
include/bse/bsewaveosc.hh
include/bse/bsewaverepo.hh
include/bse/gslcommon.hh
include/bse/gsldatacache.hh
include/bse/gsldatahandle-mad.hh
include/bse/gsldatahandle-vorbis.hh
include/bse/gsldatahandle.hh
include/bse/gsldatautils.hh
include/bse/gsldefs.hh
include/bse/gslfft.hh
include/bse/gslfilehash.hh
include/bse/gslfilter.hh
include/bse/gslmagic.hh
include/bse/gsloscillator.hh
include/bse/gslosctable.hh
include/bse/gslvorbis-cutter.hh
include/bse/gslvorbis-enc.hh
include/bse/gslwavechunk.hh
include/bse/gslwaveosc.hh
include/bse/ladspa.hh
include/sfi/glib-extra.hh
include/sfi/sfi.hh
include/sfi/sficomport.hh
include/sfi/sficomwire.hh
include/sfi/sficxx.hh
include/sfi/sfifilecrawler.hh
include/sfi/sfiglue.hh
include/sfi/sfigluecodec.hh
include/sfi/sfiglueproxy.hh
include/sfi/sfimemory.hh
include/sfi/sfinote.hh
include/sfi/sfiparams.hh
include/sfi/sfiprimitives.hh
include/sfi/sfiring.hh
include/sfi/sfiserial.hh
include/sfi/sfistore.hh
include/sfi/sfitests.hh
include/sfi/sfitime.hh
include/sfi/sfitypes.hh
include/sfi/sfiustore.hh
include/sfi/sfivalues.hh
include/sfi/sfivmarshal.hh
include/sfi/sfiwrapper.hh
lib/bse/v%%VERSION%%/drivers/bsemididevice-alsa.so
lib/bse/v%%VERSION%%/drivers/bsepcmdevice-alsa.so
%%SSE%%lib/bse/v%%VERSION%%/plugins/bseblockutils.SSE.so
lib/bse/v%%VERSION%%/plugins/bseplugins.FPU.so
%%SSE%%lib/bse/v%%VERSION%%/plugins/bseplugins.SSE.so
lib/bse/v%%VERSION%%/plugins/cxxplugins.FPU.so
lib/bse/v%%VERSION%%/plugins/cxxplugins.SSE.so
lib/bse/v%%VERSION%%/plugins/freeverb.so
lib/libbse-0.7.so.8.0.0
lib/libbse-0.7.so.8
lib/libbse.so
libdata/pkgconfig/bse.pc
share/application-registry/beast.applications
share/applications/beast.desktop
%%DATADIR%%/v%%VERSION%%/docs/html/Beast-Quickstart.html
%%DATADIR%%/v%%VERSION%%/docs/html/Beast_FAQ.html
%%DATADIR%%/v%%VERSION%%/docs/html/beast-index.html
%%DATADIR%%/v%%VERSION%%/docs/html/beast.1.html
%%DATADIR%%/v%%VERSION%%/docs/html/bse.5.html
%%DATADIR%%/v%%VERSION%%/docs/html/bsescm.1.html
%%DATADIR%%/v%%VERSION%%/docs/html/bsewavetool.1.html
%%DATADIR%%/v%%VERSION%%/docs/html/news-file.txt
%%DATADIR%%/v%%VERSION%%/docs/html/sfidl.1.html
%%DATADIR%%/v%%VERSION%%/images/beast-components.png
%%DATADIR%%/v%%VERSION%%/images/beast-mime.png
%%DATADIR%%/v%%VERSION%%/images/beast-progs.png
%%DATADIR%%/v%%VERSION%%/images/beast-splash.png
%%DATADIR%%/v%%VERSION%%/images/bse-mime.png
%%DATADIR%%/v%%VERSION%%/images/module-voices.png
%%DATADIR%%/v%%VERSION%%/keys/keyrc.de
%%DATADIR%%/v%%VERSION%%/keys/keyrc.us
%%DATADIR%%/v%%VERSION%%/skins/biogreen.skin
%%DATADIR%%/v%%VERSION%%/skins/blueimpress.skin
%%DATADIR%%/v%%VERSION%%/skins/brownforms.skin
%%DATADIR%%/v%%VERSION%%/skins/images/biogreen.jpg
%%DATADIR%%/v%%VERSION%%/skins/images/blueimpress.jpg
%%DATADIR%%/v%%VERSION%%/skins/images/brownforms.jpg
%%DATADIR%%/v%%VERSION%%/skins/images/moonpaper.png
%%DATADIR%%/v%%VERSION%%/skins/images/silvervein.png
%%DATADIR%%/v%%VERSION%%/skins/moonpaper.skin
%%DATADIR%%/v%%VERSION%%/skins/silvervein.skin
%%DATADIR%%/v%%VERSION%%/skins/white.skin
share/bse/v%%VERSION%%/demo/partymonster.bse
share/bse/v%%VERSION%%/demo/stereo-through.bse
share/bse/v%%VERSION%%/demo/x2-midi-test.bse
share/bse/v%%VERSION%%/effects/atan-canyon.bse
share/bse/v%%VERSION%%/effects/bqs-compressor.bse
share/bse/v%%VERSION%%/effects/bqs-reverb.bse
share/bse/v%%VERSION%%/effects/bqs-saturation-and-reverb.bse
share/bse/v%%VERSION%%/instruments/bqs-bass-drum-e8012.bse
share/bse/v%%VERSION%%/instruments/bqs-fretless-bass.bse
share/bse/v%%VERSION%%/instruments/bqs-merp-pad.bse
share/bse/v%%VERSION%%/instruments/bqs-moog-saw-bass.bse
share/bse/v%%VERSION%%/instruments/bqs-organ.bse
share/bse/v%%VERSION%%/instruments/bqs-queek-synth.bse
share/bse/v%%VERSION%%/instruments/bqs-slow-hum.bse
share/bse/v%%VERSION%%/instruments/bqs-syndrum.bse
share/bse/v%%VERSION%%/instruments/fsm-fresh-water-bass.bse
share/bse/v%%VERSION%%/instruments/fsm-growl-bass.bse
share/bse/v%%VERSION%%/instruments/fsm-synth-string-sweep.bse
share/bse/v%%VERSION%%/instruments/illus-vtremolo.bse
share/bse/v%%VERSION%%/instruments/stw-iron-string.bse
share/bse/v%%VERSION%%/samples/retrokit.bsewave
share/bse/v%%VERSION%%/scripts/bse-scm-glue.boot
share/bse/v%%VERSION%%/scripts/mixer-splitup-by-track.scm
share/bse/v%%VERSION%%/scripts/modules2grid.scm
share/bse/v%%VERSION%%/scripts/part-harmonic-transposer.scm
share/bse/v%%VERSION%%/scripts/progressor-example.scm
share/bse/v%%VERSION%%/scripts/record-midi.scm
share/bse/v%%VERSION%%/scripts/song-parts-operations.scm
share/locale/ar/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/az/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/bg/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/ca/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/cs/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/da/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/de/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/el/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/en_CA/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/en_GB/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/eo/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/es/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/eu/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/fi/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/fr/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/hr/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/it/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/ja/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/mn/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/nb/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/ne/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/nl/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/oc/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/pa/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/pt/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/pt_BR/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/ru/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/rw/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/sl/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/sq/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/sr/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/sr@Latn/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/sv/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/te/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/uk/LC_MESSAGES/beast-v%%VERSION%%.mo
share/locale/zh_CN/LC_MESSAGES/beast-v%%VERSION%%.mo
share/mime-info/bse.keys
share/mime-info/bse.mime
share/mime/audio/x-bse.xml
share/mime/audio/x-bsewave.xml
share/mime/packages/beast.xml
share/pixmaps/beast-audio-x-bse.png
share/pixmaps/beast.png

View File

@ -0,0 +1,25 @@
libc++ doesn't like "using namespace std" in C++11
eca-neteci-server.cpp:179:11: error: assigning to 'int' from incompatible type '__bind<int &,
sockaddr *, unsigned long>'
res = bind(srvfd_rep, (struct sockaddr*)&addr_un_rep, sizeof(addr_un_rep));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
eca-neteci-server.cpp:181:11: error: assigning to 'int' from incompatible type '__bind<int &,
sockaddr *, unsigned long>'
res = bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--- ecasound/eca-neteci-server.cpp.orig 2011-04-05 20:36:01 UTC
+++ ecasound/eca-neteci-server.cpp
@@ -176,9 +176,9 @@ void ECA_NETECI_SERVER::open_server_socket(void)
int res = 0;
if (unix_sockets_rep == true)
- res = bind(srvfd_rep, (struct sockaddr*)&addr_un_rep, sizeof(addr_un_rep));
+ res = ::bind(srvfd_rep, (struct sockaddr*)&addr_un_rep, sizeof(addr_un_rep));
else
- res = bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep));
+ res = ::bind(srvfd_rep, (struct sockaddr*)&addr_in_rep, sizeof(addr_in_rep));
if (res == 0) {
res = listen(srvfd_rep, 5);

View File

@ -0,0 +1,18 @@
libc++ doesn't like "using namespace std" in C++11
server.cc:125:68: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned
long>' and 'int')
if (bind(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) != 0)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~
--- festival/src/arch/festival/server.cc.orig 2005-10-26 19:44:06 UTC
+++ festival/src/arch/festival/server.cc
@@ -122,7 +122,7 @@ int festival_start_server(int port)
serv_addr.sin_port = htons(port);
serv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
- if (bind(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) != 0)
+ if (::bind(fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) != 0)
{
cerr << "socket: bind failed" << endl;
festival_error();

View File

@ -0,0 +1,15 @@
sig2fv_main.cc:190:18: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
" default: "DEFAULT_WINDOW"\n\n"
^
--- speech_tools/main/sig2fv_main.cc.orig 2010-11-05 14:12:43 UTC
+++ speech_tools/main/sig2fv_main.cc
@@ -187,7 +187,7 @@ int main(int argc, char *argv[])
"-window_type <string> Type of window used on waveform. \n"
" Permissable types are: \n" +
EST_Window::options_supported() +
- " default: "DEFAULT_WINDOW"\n\n"
+ " default: " DEFAULT_WINDOW "\n\n"
"-lpc_order <int> Order of lpc analysis. \n\n"
"-ref_order <int> Order of lpc reflection coefficient analysis. \n\n"
"-cep_order <int> Order of lpc cepstral analysis.\n\n"

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= pacpl
PORTVERSION= 5.0.1
PORTREVISION= 15
PORTVERSION= 5.1.0
CATEGORIES= audio
MASTER_SITES= SF

View File

@ -1,2 +1,3 @@
SHA256 (pacpl-5.0.1.tar.gz) = 52d4373d76ba217293cd7a4d9513b0167f44281bebfe1d82b531fbf7e0828a65
SIZE (pacpl-5.0.1.tar.gz) = 144849
TIMESTAMP = 1515198471
SHA256 (pacpl-5.1.0.tar.gz) = 6ac3da0afa6fbe0c786176b288b065860b954a4b6a0094b208e062c43d334280
SIZE (pacpl-5.1.0.tar.gz) = 157551

View File

@ -3,7 +3,7 @@
PORTNAME= timidity++
PORTVERSION= 2.14.0
PORTREVISION?= 2
PORTREVISION?= 3
CATEGORIES+= audio
MASTER_SITES= SF/timidity/TiMidity%2B%2B/TiMidity%2B%2B-${PORTVERSION}
DISTNAME= TiMidity++-${PORTVERSION}
@ -15,7 +15,8 @@ LICENSE= GPLv2+
.if !defined(PKGNAMESUFFIX)
LIB_DEPENDS= libarc.so:archivers/libarc \
libvorbis.so:audio/libvorbis
libvorbis.so:audio/libvorbis \
libogg.so:audio/libogg
RUN_DEPENDS= eawpats>0:audio/eawpats
.endif
@ -81,6 +82,7 @@ post-install::
@${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}
(cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} ${DOCFILES} \
${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME})
@${RMDIR} ${STAGEDIR}${PREFIX}/share/timidity
.endif # PKGNAMESUFFIX
.include <bsd.port.mk>

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= fio
PORTVERSION= 3.1
PORTVERSION= 3.3
CATEGORIES= benchmarks
MASTER_SITES= http://brick.kernel.dk/snaps/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1506931281
SHA256 (fio-3.1.tar.bz2) = d0b72b0d5433c40f9b8581c7f9e00a940a463432b58dc2fe6df398cb2d61ebc6
SIZE (fio-3.1.tar.bz2) = 608658
TIMESTAMP = 1515272927
SHA256 (fio-3.3.tar.bz2) = 590d59c7242556fc578eb8f39a851995f385083f17e74bff73c6367ceaa43157
SIZE (fio-3.3.tar.bz2) = 619945

View File

@ -7,6 +7,7 @@ man/man1/fio_generate_plots.1.gz
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/backwards-read.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basic-verify.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/butterfly.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpp_null.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpuio.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dev-dax.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/disk-zone-profile.fio
@ -14,6 +15,13 @@ man/man1/fio_generate_plots.1.gz
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/e4defrag2.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enospc-pressure.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/falloc.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/filecreate-ioengine.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fio-rand-RW.job
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fio-rand-read.job
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fio-rand-write.job
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fio-seq-RW.job
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fio-seq-read.job
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fio-seq-write.job
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fixed-rate-submission.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fsx.fio
@ -26,6 +34,7 @@ man/man1/fio_generate_plots.1.gz
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jesd219.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/latency-profile.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libhdfs.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libpmem.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtd.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/netio.fio
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/netio_multicast.fio

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= polygraph
PORTVERSION= 4.9.0
PORTREVISION= 4
PORTVERSION= 4.11.0
DISTVERSIONSUFFIX= -src
CATEGORIES= benchmarks www
MASTER_SITES= http://www.web-polygraph.org/downloads/srcs/

View File

@ -1,2 +1,3 @@
SHA256 (polygraph-4.9.0-src.tgz) = 36af0031e15b0a123fecda2d74c36cbe632cd479bdb2c85c1b020d4e57ff6bf4
SIZE (polygraph-4.9.0-src.tgz) = 3371570
TIMESTAMP = 1515222711
SHA256 (polygraph-4.11.0-src.tgz) = 7add54d7ef560cc5151bacee3bd17769f079e70a4da740375738a13ba80726c6
SIZE (polygraph-4.11.0-src.tgz) = 3413931

View File

@ -1,18 +0,0 @@
commit a1b938b85e2b9aabb95fb09b9f7137b27135ea72
Author: Alex Rousskov <rousskov@measurement-factory.com>
Date: Thu Jan 7 08:20:34 2016 -0700
lp:1380660: Make failed if gcc 4.9 is used.
Merged POLY-43-lp1380660-make-failed-if-gcc-49-.
--- src/xstd/Ring.h.orig 2014-10-22 23:22:22 UTC
+++ src/xstd/Ring.h
@@ -19,6 +19,7 @@ class Ring: protected Array<Item> {
using Array<Item>::capacity;
using Array<Item>::size;
+ using Array<Item>::Value;
int count() const { return theInOff - theOutOff; }
bool empty() const { return theInOff <= theOutOff; }

View File

@ -0,0 +1,10 @@
--- src/plugins_3rdparty/phylip/src/phylip.h.orig 2017-12-30 19:54:56 UTC
+++ src/plugins_3rdparty/phylip/src/phylip.h
@@ -271,7 +271,6 @@ MALLOCRETURN *mymalloc(long);
#define MAXNCH 30 /* must be greater than or equal to nmlngth */
#define maxcategs 9 /* maximum number of site types */
#define maxcategs2 11 /* maximum number of site types + 2 */
-#define point "."
#define pointe '.'
#define down 2
#define MAXSHIMOTREES 100

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= gerbv
PORTVERSION= 2.6.1
PORTREVISION= 2
PORTVERSION= 2.6.2
CATEGORIES= cad
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

View File

@ -1,2 +1,3 @@
SHA256 (gerbv-2.6.1.tar.gz) = 7aa6a2c622dc9ff7acd88411dddf95ae25ae3b5d97020f3ea91e97d82bf0d96c
SIZE (gerbv-2.6.1.tar.gz) = 4432481
TIMESTAMP = 1515246425
SHA256 (gerbv-2.6.2.tar.gz) = f1049ba16e9a2acba0d39f838bf036c09ee90c52700ed014d7136110ad9988b3
SIZE (gerbv-2.6.2.tar.gz) = 2619053

View File

@ -3,7 +3,7 @@ include/gerbv-%%VERSION%%/gerbv.h
lib/libgerbv.a
lib/libgerbv.so
lib/libgerbv.so.1
lib/libgerbv.so.1.0.7
lib/libgerbv.so.1.0.8
libdata/pkgconfig/libgerbv.pc
man/man1/gerbv.1.gz
share/applications/gerbv.desktop
@ -18,14 +18,6 @@ share/applications/gerbv.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Mentor-BoardStation/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Mentor-BoardStation/artwork_1.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/am-test/am-test.gbx
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/1.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/full-ex.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/gerbv_am_expression_bug.ger
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/jj1.drl
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/jj1.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/limit-ex.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amacro-ref/stp0.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/cslk.gbx
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cslk/cslk.ps
@ -34,10 +26,6 @@ share/applications/gerbv.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dan/top_sr.gbx
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eaglecad1/top-cop.gbx
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eaglecad1/top-cop.pdf
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/README
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/ekf.gap
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/ekf_08.apt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf/l1.off
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/d1.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ekf2/drill0.exc
@ -61,14 +49,6 @@ share/applications/gerbv.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/example.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/exposure/example.jpg
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/README
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.back.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.fab.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.front.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.group1.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.group2.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.pcb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hellboard/hellboard.plated-drill.cnc
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/l1-1.grb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jj/l1-2.grb
@ -101,29 +81,6 @@ share/applications/gerbv.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pick-and-place/LED.xy
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarity/6_vbat.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/polarity/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Assembly_Drawings.pdf
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Final_Artwork_Prints.pdf
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Pick_Place_for_SE_SG_IF_V2.csv
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Pick_Place_for_SE_SG_IF_V2.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.DRL
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.DRR
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GBL
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GBO
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GBS
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GD1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GG1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GM1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GM2
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GTL
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GTO
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.GTS
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.LDP
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.REP
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.RUL
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.TXT
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/SE_SG_IF_V2.apr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protel-pnp/Status_Report.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/bpB.GP1
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thermal/bpB.png
@ -132,11 +89,6 @@ share/applications/gerbv.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/cd1r2.1_sieb0.off
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trailing/cd1r2.1_sieb1.off
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example-cairo.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example-gdk.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example-viewmate.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/example.gbr
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/uwe/mail.txt
%%DATADIR%%/scheme/gerb-debug.scm
%%DATADIR%%/scheme/gerb-ps.scm
%%DATADIR%%/scheme/init.scm

View File

@ -3,7 +3,7 @@
PORTNAME= qelectrotech
PORTVERSION= 0.5
PORTREVISION= 2
PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= cad
MASTER_SITES= http://download.tuxfamily.org/qet/tags/20151127/

View File

@ -1025,7 +1025,6 @@ share/mimelnk/application/x-qet-titleblock.desktop
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/beka/beka_2806_b_2_0_1_2_01_000.elmt
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/beka/beka_2806_b_2_0_1_4_01_000.elmt
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/beka/qet_directory
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/bosch_rexroth/.directory
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/bosch_rexroth/bosch_rexroth_cdb02.1b-et-ec-ec-nn-s4-s4-nn-nn-fw.elmt
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/bosch_rexroth/bosch_rexroth_hmd01.1n-w0036-a-07-nnnn.elmt
%%DATADIR%%/elements/10_electric/20_manufacturers_articles/bosch_rexroth/bosch_rexroth_hmv01.1r-w0018-a-07-nnnn.elmt

View File

@ -15,8 +15,9 @@
+INCS=-I../im-client -I$(prefix)/include -I$(prefix)/include/qt5 `pkg-config Qt5Core Qt5Gui Qt5DBus --cflags`
MODVERSION=`pkg-config --modversion Qt5Gui`
QTINC=`pkg-config --variable=includedir Qt5Gui`
INCS+=-I$(QTINC)/QtGui/$(MODVERSION)/QtGui
-INCS+=-I$(QTINC)/QtGui/$(MODVERSION)/QtGui
-#INCS+=-I/usr/include/i386-linux-gnu/qt5/QtGui/$(MODVERSION)/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtGui/$(MODVERSION)/QtGui
+INCS+=-I$(QTINC)/QtGui/$(MODVERSION) -I$(QTINC)/QtGui/$(MODVERSION)/QtGui -I$(QTINC)/QtCore/$(MODVERSION)
-CXXFLAGS=$(OPTFLAGS) $(INCS) -Wall -D_REENTRANT -DUNIX=1 -fPIC -DQT5 -DQT_SHARED -DQT_IMMODULE -DPIC -DDEBUG="0$(GCIN_DEBUG)"
+CXXFLAGS+=$(INCS) -Wall -D_REENTRANT -DUNIX=1 -fPIC -DQT5 -DQT_SHARED -DQT_IMMODULE -DPIC -DDEBUG="0$(GCIN_DEBUG)"

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gammu
PORTVERSION= 2.10
PORTVERSION= 2.11
CATEGORIES= comms python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1510119874
SHA256 (python-gammu-2.10.tar.gz) = 736893acb7ac52bf0cb681c60f2c992f50f65cbe1f87a695b7139dd517b5c63d
SIZE (python-gammu-2.10.tar.gz) = 135709
TIMESTAMP = 1515224617
SHA256 (python-gammu-2.11.tar.gz) = 25068fa060563920753cb3518dc7731b4db9cf62085edfe6711e9af9151e7d52
SIZE (python-gammu-2.11.tar.gz) = 135567

View File

@ -2,6 +2,7 @@
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/adapter_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/agent_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/androidbroadcastreceiver_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/bluetoothmanagement_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/bluez5_helper_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/bluez_data_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/device1_bluez5_p.h
@ -33,6 +34,7 @@
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtledeviceinquiry_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtnotifier_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtobexsession_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtperipheralmanager_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtrfcommchannel_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtsdpinquiry_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtservicerecord_p.h
@ -42,7 +44,6 @@
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/properties_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothaddress_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothdevicediscoveryagent_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothdevicediscoverytimer_osx_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothdeviceinfo_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothhostinfo_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothlocaldevice_p.h
@ -61,6 +62,8 @@
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergycontroller_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergyserviceprivate_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qprivatelinearbuffer_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qtbluetooth-config_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/remotedevicemanager_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/serveracceptancethread_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/service_p.h
%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/servicediscoverybroadcastreceiver_p.h
@ -118,6 +121,7 @@
%%QT_INCDIR%%/QtBluetooth/qlowenergydescriptordata.h
%%QT_INCDIR%%/QtBluetooth/qlowenergyservice.h
%%QT_INCDIR%%/QtBluetooth/qlowenergyservicedata.h
%%QT_INCDIR%%/QtBluetooth/qtbluetooth-config.h
%%QT_INCDIR%%/QtBluetooth/qtbluetoothversion.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/adapter_p.h
%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/agent_p.h

View File

@ -10,7 +10,7 @@ COMMENT= Qt sensors module
USE_QT5= core qml quick buildtools_build
QT_DIST= ${PORTNAME}
USES= qmake
USES= qmake:norecursive
USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}

View File

@ -6,7 +6,9 @@
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qdistancesensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qgyroscope_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qholstersensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qhumiditysensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qirproximitysensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qlidsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qlightsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qmagnetometer_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qorientationsensor_p.h
@ -19,6 +21,7 @@
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qsensorgesturemanagerprivate_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qtapsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qtiltsensor_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/qtsensors-config_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/sensorlog_p.h
%%QT_INCDIR%%/QtSensors/%%FULLVER%%/QtSensors/private/simulatorgesturescommon_p.h
%%QT_INCDIR%%/QtSensors/QAccelerometer
@ -45,9 +48,15 @@
%%QT_INCDIR%%/QtSensors/QHolsterFilter
%%QT_INCDIR%%/QtSensors/QHolsterReading
%%QT_INCDIR%%/QtSensors/QHolsterSensor
%%QT_INCDIR%%/QtSensors/QHumidityFilter
%%QT_INCDIR%%/QtSensors/QHumidityReading
%%QT_INCDIR%%/QtSensors/QHumiditySensor
%%QT_INCDIR%%/QtSensors/QIRProximityFilter
%%QT_INCDIR%%/QtSensors/QIRProximityReading
%%QT_INCDIR%%/QtSensors/QIRProximitySensor
%%QT_INCDIR%%/QtSensors/QLidFilter
%%QT_INCDIR%%/QtSensors/QLidReading
%%QT_INCDIR%%/QtSensors/QLidSensor
%%QT_INCDIR%%/QtSensors/QLightFilter
%%QT_INCDIR%%/QtSensors/QLightReading
%%QT_INCDIR%%/QtSensors/QLightSensor
@ -95,7 +104,9 @@
%%QT_INCDIR%%/QtSensors/qdistancesensor.h
%%QT_INCDIR%%/QtSensors/qgyroscope.h
%%QT_INCDIR%%/QtSensors/qholstersensor.h
%%QT_INCDIR%%/QtSensors/qhumiditysensor.h
%%QT_INCDIR%%/QtSensors/qirproximitysensor.h
%%QT_INCDIR%%/QtSensors/qlidsensor.h
%%QT_INCDIR%%/QtSensors/qlightsensor.h
%%QT_INCDIR%%/QtSensors/qmagnetometer.h
%%QT_INCDIR%%/QtSensors/qorientationsensor.h
@ -113,6 +124,7 @@
%%QT_INCDIR%%/QtSensors/qsensorsglobal.h
%%QT_INCDIR%%/QtSensors/qtapsensor.h
%%QT_INCDIR%%/QtSensors/qtiltsensor.h
%%QT_INCDIR%%/QtSensors/qtsensors-config.h
%%QT_INCDIR%%/QtSensors/qtsensorsversion.h
%%QT_CMAKEDIR%%/Qt5Sensors/Qt5SensorsConfig.cmake
%%QT_CMAKEDIR%%/Qt5Sensors/Qt5SensorsConfigVersion.cmake

View File

@ -2,7 +2,6 @@
PORTNAME= serialbus
DISTVERSION= ${QT5_VERSION}
PORTREVISION= 3
CATEGORIES= comms
PKGNAMEPREFIX= qt5-

View File

@ -1,5 +1,6 @@
%%QT_BINDIR%%/canbusutil
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qcanbusdevice_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qcanbusdeviceinfo_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbus_symbols_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusadu_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusclient_p.h
@ -10,9 +11,12 @@
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusserver_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbustcpclient_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbustcpserver_p.h
%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qtserialbus-config_p.h
%%QT_INCDIR%%/QtSerialBus/QCanBus
%%QT_INCDIR%%/QtSerialBus/QCanBusDevice
%%QT_INCDIR%%/QtSerialBus/QCanBusDeviceInfo
%%QT_INCDIR%%/QtSerialBus/QCanBusFactory
%%QT_INCDIR%%/QtSerialBus/QCanBusFactoryV2
%%QT_INCDIR%%/QtSerialBus/QCanBusFrame
%%QT_INCDIR%%/QtSerialBus/QModbusClient
%%QT_INCDIR%%/QtSerialBus/QModbusDataUnit
@ -34,6 +38,7 @@
%%QT_INCDIR%%/QtSerialBus/QtSerialBusVersion
%%QT_INCDIR%%/QtSerialBus/qcanbus.h
%%QT_INCDIR%%/QtSerialBus/qcanbusdevice.h
%%QT_INCDIR%%/QtSerialBus/qcanbusdeviceinfo.h
%%QT_INCDIR%%/QtSerialBus/qcanbusfactory.h
%%QT_INCDIR%%/QtSerialBus/qcanbusframe.h
%%QT_INCDIR%%/QtSerialBus/qmodbusclient.h
@ -48,6 +53,7 @@
%%QT_INCDIR%%/QtSerialBus/qmodbustcpclient.h
%%QT_INCDIR%%/QtSerialBus/qmodbustcpserver.h
%%QT_INCDIR%%/QtSerialBus/qserialbusglobal.h
%%QT_INCDIR%%/QtSerialBus/qtserialbus-config.h
%%QT_INCDIR%%/QtSerialBus/qtserialbusversion.h
%%QT_CMAKEDIR%%/Qt5SerialBus/Qt5SerialBusConfig.cmake
%%QT_CMAKEDIR%%/Qt5SerialBus/Qt5SerialBusConfigVersion.cmake

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= geoserver
PORTVERSION= 2.10.2
PORTVERSION= 2.12.1
CATEGORIES= databases geography java
MASTER_SITES= SF/${PORTNAME}/GeoServer/${PORTVERSION}/extensions
PKGNAMESUFFIX= -mysql-plugin
@ -21,7 +21,7 @@ NO_ARCH= yes
GSLIBDIR= geoserver/webapps/geoserver/WEB-INF/lib
SUB_FILES= pkg-message
PLIST_FILES= ${GSLIBDIR}/gt-jdbc-mysql-16.2.jar \
PLIST_FILES= ${GSLIBDIR}/gt-jdbc-mysql-18.1.jar \
${GSLIBDIR}/mysql-connector-java-5.1.17.jar
do-install:

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1488306716
SHA256 (geoserver-2.10.2-mysql-plugin.zip) = 68973706cd468995ce6e1738b0909e6a834c222f2c67c33d00b2eb51e71d392e
SIZE (geoserver-2.10.2-mysql-plugin.zip) = 774121
TIMESTAMP = 1515087580
SHA256 (geoserver-2.12.1-mysql-plugin.zip) = 65ba43bba9e4660bd508dbbe36c818a8728885e2de09b9d0247ee29b2dc9a0fb
SIZE (geoserver-2.12.1-mysql-plugin.zip) = 776226

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= mroonga
PORTVERSION= 7.06
PORTVERSION= 7.10
CATEGORIES= databases textproc
MASTER_SITES= http://packages.groonga.org/source/mroonga/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1505780202
SHA256 (mroonga-7.06.tar.gz) = 09c699223b7741e5a8ecd6274ed46841af97da91c409cc327f9f345d36344efb
SIZE (mroonga-7.06.tar.gz) = 2594551
TIMESTAMP = 1515047392
SHA256 (mroonga-7.10.tar.gz) = dc881bab1f360f0c621ab2030dd3c8c82788f4cc997ad8d540bc46f8d7e2163b
SIZE (mroonga-7.10.tar.gz) = 2636969

View File

@ -16,7 +16,7 @@ man/man1/mroonga.1.gz
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/down.png
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/favicon.ico
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/file.png
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/jquery-1.11.1.js
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/jquery-3.1.0.js
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/jquery.js
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/logo.png
%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/minus.png
@ -97,7 +97,7 @@ man/man1/mroonga.1.gz
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/down.png
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/favicon.ico
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/file.png
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/jquery-1.11.1.js
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/jquery-3.1.0.js
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/jquery.js
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/logo.png
%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/minus.png

View File

@ -2,12 +2,10 @@
# $FreeBSD$
PORTNAME= Dancer-Session-Memcached
PORTVERSION= 0.2.02
PORTREVISION= 1
PORTVERSION= 0.202
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
MAINTAINER= perl@FreeBSD.org
COMMENT= Memcached-based session backend for Dancer

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= citus
PORTVERSION= 7.1.1
PORTVERSION= 7.1.2
DISTVERSIONPREFIX= v
CATEGORIES= databases
PKGNAMEPREFIX= pg_

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1512236094
SHA256 (citusdata-citus-v7.1.1_GH0.tar.gz) = bd955eb7e5a57312ccffae3e9710dfa679ac29fc0626e54a9da901e1c74322cd
SIZE (citusdata-citus-v7.1.1_GH0.tar.gz) = 2601886
TIMESTAMP = 1515349672
SHA256 (citusdata-citus-v7.1.2_GH0.tar.gz) = f2e3247ed5732b9f2d2bb1cb298ab0b47e017e8f998dc5188c5827eb522d4cd7
SIZE (citusdata-citus-v7.1.2_GH0.tar.gz) = 2603021

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= pgtcl
PORTVERSION= 2.0.0
PORTREVISION= 1
PORTVERSION= 2.1.1
CATEGORIES= databases tcl
MASTER_SITES= SF/pgtclng/pgtclng/${PORTVERSION}
DISTNAME= ${PORTNAME}${PORTVERSION}
@ -28,7 +27,7 @@ USES+= tcl:tea
LIBDIR= ${PREFIX}/lib/${PORTNAME}
USE_LDCONFIG= ${LIBDIR}
PLIST_SUB+= PORTVERSION=${PORTVERSION}
MANUALREL= 20110918
MANUALREL= 20171113
.include <bsd.port.options.mk>

View File

@ -1,4 +1,5 @@
SHA256 (pgtcl2.0.0.tar.gz) = f3d8195ecc140837f77985186b8618bb0e9f00a2e1681a46afd8af065ff35db2
SIZE (pgtcl2.0.0.tar.gz) = 193257
SHA256 (pgtcldocs-20110918.zip) = 1a86f0909b19358f4ade768f850ad02b27bc06b4cec32486783e133e37e8f344
SIZE (pgtcldocs-20110918.zip) = 152847
TIMESTAMP = 1515323017
SHA256 (pgtcl2.1.1.tar.gz) = 1925d7cf9422f0213da725bbe245e065ab570b478881577c87ae714e18078208
SIZE (pgtcl2.1.1.tar.gz) = 196432
SHA256 (pgtcldocs-20171113.zip) = af61f95881b09ae552cf33358727250e99f0f5886c0b7051d369d3a8484e549f
SIZE (pgtcldocs-20171113.zip) = 164113

View File

@ -0,0 +1,23 @@
--- configure.orig 2014-09-12 22:03:04 UTC
+++ configure
@@ -4261,20 +4261,7 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confde
esac
if test "${TEA_PLATFORM}" = "unix" ; then
-
- #--------------------------------------------------------------------
- # On a few very rare systems, all of the libm.a stuff is
- # already in libc.a. Set compiler flags accordingly.
- # Also, Linux requires the "ieee" library for math to work
- # right (and it must appear before "-lm").
- #--------------------------------------------------------------------
-
ac_fn_c_check_func "$LINENO" "sin" "ac_cv_func_sin"
-if test "x$ac_cv_func_sin" = xyes; then :
- MATH_LIBS=""
-else
- MATH_LIBS="-lm"
-fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lieee" >&5
$as_echo_n "checking for main in -lieee... " >&6; }

View File

@ -2,4 +2,4 @@ A TCL extension for accessing PostgreSQL databases. This used
to come bunlded with PostgreSQL itself, but was split into a
separate project in more recent version (8+).
WWW: http://pgfoundry.org/projects/pgtclng/
WWW: http://sourceforge.net/projects/pgtclng/

View File

@ -20,6 +20,7 @@ CONFLICTS= postgresql[^${PORTVERSION:R:R}]?-client* \
USES= gmake readline
USE_LDCONFIG= yes
LLD_UNSAFE= yes
GNU_CONFIGURE= yes
INSTALL_TARGET= install-world

View File

@ -17,4 +17,10 @@ USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
post-configure:
.for d in src/sql
${MKDIR} ${WRKSRC}/${d}
cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d}
.endfor
.include <bsd.port.mk>

View File

@ -1,18 +1,10 @@
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_db2_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_ibase_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_mysql_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_oci_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_odbc_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_psql_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_sqlite2_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_sqlite_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsql_tds_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlcachedresult_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqldriver_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlnulldriver_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlquerymodel_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlresult_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqltablemodel_p.h
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qtsqlglobal_p.h
%%QT_INCDIR%%/QtSql/QSql
%%QT_INCDIR%%/QtSql/QSqlDatabase
%%QT_INCDIR%%/QtSql/QSqlDriver
@ -47,6 +39,7 @@
%%QT_INCDIR%%/QtSql/qsqlrelationaltablemodel.h
%%QT_INCDIR%%/QtSql/qsqlresult.h
%%QT_INCDIR%%/QtSql/qsqltablemodel.h
%%QT_INCDIR%%/QtSql/qtsqlglobal.h
%%QT_INCDIR%%/QtSql/qtsqlversion.h
%%QT_CMAKEDIR%%/Qt5Sql/Qt5SqlConfig.cmake
%%QT_CMAKEDIR%%/Qt5Sql/Qt5SqlConfigVersion.cmake

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= flipper-active_record
PORTVERSION= 0.11.0
PORTVERSION= 0.12.0
CATEGORIES= databases rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1510070371
SHA256 (rubygem/flipper-active_record-0.11.0.gem) = 2149c7b12eae097f64d8d84b71e276a5b576f3c2de8689595edfd06c03e4a12e
SIZE (rubygem/flipper-active_record-0.11.0.gem) = 9216
TIMESTAMP = 1515329579
SHA256 (rubygem/flipper-active_record-0.12.0.gem) = 11ae112549654ce16a62369b7b854bd80d0fd50b7b1d5f034b6b2020a8be157b
SIZE (rubygem/flipper-active_record-0.12.0.gem) = 9216

View File

@ -128,8 +128,8 @@
SUBDIR += kdeplasma-addons
SUBDIR += kruler
SUBDIR += ksshaskpass
SUBDIR += launchy
SUBDIR += latte-dock
SUBDIR += launchy
SUBDIR += libopensync-plugin-vformat-devel
SUBDIR += libstreamanalyzer
SUBDIR += libstreams

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= calibre
PORTVERSION= 3.14.0
PORTVERSION= 3.15.0
CATEGORIES= deskutils python
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/
@ -93,8 +93,12 @@ do-install:
${PYSETUP} install --prefix ${PREFIX} \
--staging-root ${STAGEDIR}${PREFIX})
@${RM} ${STAGEDIR}${PREFIX}/bin/calibre-uninstall \
${STAGEDIR}${PREFIX}/share/applications/defaults.list
@${RMDIR} ${STAGEDIR}${PREFIX}/share/desktop-directories
${STAGEDIR}${PREFIX}/share/applications/defaults.list \
${STAGEDIR}${PREFIX}/share/mime/application/* \
${STAGEDIR}${PREFIX}/share/mime/text/*
@${RMDIR} ${STAGEDIR}${PREFIX}/share/desktop-directories \
${STAGEDIR}${PREFIX}/share/mime/application \
${STAGEDIR}${PREFIX}/share/mime/text
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/calibre/calibre/plugins/*
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1513325134
SHA256 (calibre-3.14.0.tar.xz) = a14c37514850e5b9eedf53d5f80005e631cdf1f8ae82d1fca652c22a1094c78c
SIZE (calibre-3.14.0.tar.xz) = 38059200
TIMESTAMP = 1515144901
SHA256 (calibre-3.15.0.tar.xz) = 8746f52315561d606fd7120fec8284c2e4433f6ead14639c40b4b5f1522273ff
SIZE (calibre-3.15.0.tar.xz) = 38177684

View File

@ -1,11 +0,0 @@
--- setup/build_environment.py.orig 2017-06-16 04:00:12 UTC
+++ setup/build_environment.py
@@ -84,7 +84,7 @@ pyqt['sip_bin'] = os.environ.get('SIP_BIN', 'sip')
from PyQt5.QtCore import PYQT_CONFIGURATION
pyqt['sip_flags'] = PYQT_CONFIGURATION['sip_flags']
def get_sip_dir():
- q = os.environ.get('SIP_DIR', os.path.join(sys.prefix, 'share', 'sip') if iswindows else os.path.join(sys.prefix, 'share', 'sip'))
+ q = os.environ.get('SIP_DIR', os.path.join(sys.prefix, 'share', 'sip') if iswindows else os.path.join(sys.prefix, 'share', 'py-sip'))
for x in ('', 'Py2-PyQt5', 'PyQt5', 'sip/PyQt5'):
base = os.path.join(q, x)
if os.path.exists(os.path.join(base, 'QtWidgets')):

View File

@ -1,4 +1,4 @@
--- src/calibre/linux.py.orig 2017-07-28 04:07:52 UTC
--- src/calibre/linux.py.orig 2018-01-05 05:41:54 UTC
+++ src/calibre/linux.py
@@ -841,7 +841,7 @@ class PostInstall:
f.close()
@ -18,9 +18,9 @@
Icon=calibre-viewer
Categories=Graphics;Viewer;
'''
@@ -1021,7 +1021,7 @@ Name=Edit E-book
GenericName=Edit E-books
Comment=Edit e-books in various formats
@@ -1021,7 +1021,7 @@ Name=E-book Editor
GenericName=Editor for E-books
Comment=Edit E-books in various formats
TryExec=ebook-edit
-Exec=ebook-edit --detach %f
+Exec=ebook-edit %f

View File

@ -26,6 +26,30 @@ attack) add the following:
---
In addition to the above, for USB and MTP devices the user needs
to be able to access the device node in /dev.
to be aware of USB devices attached to the machine, the user needs
to be a member of the operator group:
# pw groupmod operator -m yourusername
Then, add the following to /etc/devfs.rules, or create this file
if it does not exist yet:
[system=10]
add path 'usb/*' mode 0660 group operator
To load these new rules, add the following to /etc/rc.conf:
devfs_system_ruleset="system"
Then, restart devfs
# service devfs restart
---
If you are using an Android device as your e-book reader, please note
that the stock Google Books app uses a storage format that is not
supported by calibre. The calibre FAQ recommends that either of the

View File

@ -1181,6 +1181,8 @@ lib/calibre/calibre/plugins/hunspell.so
lib/calibre/calibre/plugins/icu.so
lib/calibre/calibre/plugins/imageops.so
lib/calibre/calibre/plugins/libheadless.so
lib/calibre/calibre/plugins/libmtp.so
lib/calibre/calibre/plugins/libusb.so
lib/calibre/calibre/plugins/lzma_binding.so
lib/calibre/calibre/plugins/lzx.so
lib/calibre/calibre/plugins/matcher.so
@ -2087,12 +2089,4 @@ share/icons/hicolor/64x64/mimetypes/gnome-mime-application-x-mobipocket-ebook.pn
share/icons/hicolor/64x64/mimetypes/gnome-mime-application-x-topaz-ebook.png
share/icons/hicolor/64x64/mimetypes/gnome-mime-text-lrs.png
share/icons/hicolor/64x64/mimetypes/text-lrs.png
share/mime/application/epub+zip.xml
share/mime/application/x-kindle-application.xml
share/mime/application/x-mobi8-ebook.xml
share/mime/application/x-mobipocket-ebook.xml
share/mime/application/x-mobipocket-subscription.xml
share/mime/application/x-sony-bbeb.xml
share/mime/application/x-topaz-ebook.xml
share/mime/packages/calibre-mimetypes.xml
share/mime/text/lrs.xml

View File

@ -2,7 +2,7 @@
PORTNAME= libstreamanalyzer
PORTVERSION= ${STRIGI_VERSION}
PORTREVISION= 9
PORTREVISION= 10
CATEGORIES= deskutils
MASTER_SITES= ${STRIGI_MASTER_SITES}
@ -17,6 +17,7 @@ LIB_DEPENDS= libavcodec${FFMPEG_SUFFIX}.so:multimedia/ffmpeg${FFMPEG_SUFFIX} \
USES= pkgconfig iconv
USE_GNOME= libxml2
USE_LDCONFIG= yes
USE_CXXSTD= gnu++98
# supported versions: ffmpeg, ffmpeg1, ffmpeg-devel
# corresponding FFMPEG_SUFFIX: '', '1', '-devel'

View File

@ -2,7 +2,7 @@
PORTNAME= superkaramba
PORTVERSION= ${KDE4_VERSION}
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= deskutils kde kde-kde4
MAINTAINER= kde@FreeBSD.org
@ -12,5 +12,6 @@ USES= cmake:outsource kde:4 python:2 tar:xz
USE_KDE= kdelibs automoc4 qimageblitz
USE_QT4= qmake_build moc_build rcc_build uic_build
USE_LDCONFIG= yes
USE_CXXSTD= gnu++98
.include <bsd.port.mk>

View File

@ -2978,7 +2978,6 @@
SUBDIR += p5-MooseX-Role-Matcher
SUBDIR += p5-MooseX-Role-Parameterized
SUBDIR += p5-MooseX-Role-Strict
SUBDIR += p5-MooseX-Role-WithOverloading
SUBDIR += p5-MooseX-Runnable
SUBDIR += p5-MooseX-SemiAffordanceAccessor
SUBDIR += p5-MooseX-SetOnce
@ -3428,7 +3427,6 @@
SUBDIR += p5-Test-Benchmark
SUBDIR += p5-Test-BinaryData
SUBDIR += p5-Test-Bits
SUBDIR += p5-Test-Block
SUBDIR += p5-Test-CPAN-Meta
SUBDIR += p5-Test-CPAN-Meta-YAML
SUBDIR += p5-Test-CheckDeps

View File

@ -1,10 +1,11 @@
# $FreeBSD$
# This port opens too many files during build, more than the default setting. Its build is known to succeed with MAX_FILES=15000 in poudriere.conf
# This port opens too many files during build, more than the default setting.
# Its build is known to succeed with MAX_FILES_RStudio=2048 in poudriere.conf when ports-mgmt/poudriere-devel is used.
PORTNAME= RStudio
DISTVERSIONPREFIX= v
DISTVERSION= 1.1.405
DISTVERSION= 1.1.409
CATEGORIES= devel math java
MASTER_SITES= https://s3.amazonaws.com/rstudio-dictionaries/:dictionaries \
https://s3.amazonaws.com/rstudio-buildtools/:buildtools

View File

@ -1,4 +1,4 @@
TIMESTAMP = 1514017452
TIMESTAMP = 1514973738
SHA256 (core-dictionaries.zip) = 4341a9630efb9dcf7f215c324136407f3b3d6003e1c96f2e5e1f9f14d5787494
SIZE (core-dictionaries.zip) = 876339
SHA256 (gin-1.5.zip) = f561f4eb5d5fe1cff95c881e6aed53a86e9f0de8a52863295a8600375f96ab94
@ -7,8 +7,8 @@ SHA256 (gwt-2.7.0.zip) = aa65061b73836190410720bea422eb8e787680d7bc0c2b244ae6c9a
SIZE (gwt-2.7.0.zip) = 108818328
SHA256 (mathjax-26.zip) = 939a2d7f37e26287970be942df70f3e8f272bac2eb868ce1de18bb95d3c26c71
SIZE (mathjax-26.zip) = 3061588
SHA256 (RStudio-rstudio-v1.1.405_GH0.tar.gz) = 63dfe2ec083d52800e2e9780efefd7f7f607e9987e78ab2e10192162a2d21931
SIZE (RStudio-rstudio-v1.1.405_GH0.tar.gz) = 20198358
SHA256 (RStudio-rstudio-v1.1.409_GH0.tar.gz) = fc5773d128665d28674c540051437515c8eb49bb4f4ce000435bd4094acbfb3e
SIZE (RStudio-rstudio-v1.1.409_GH0.tar.gz) = 20195673
SHA256 (rstudio-rmarkdown-aed26ac_GH0.tar.gz) = b6f6f48dd9930514204739d8957c2737f0b1d110aebf9f89fa31de10598cb29b
SIZE (rstudio-rmarkdown-aed26ac_GH0.tar.gz) = 2087615
SHA256 (rstudio-rsconnect-03c379b_GH0.tar.gz) = d24b6ee49f32f650f6d10bbfc7b2f61aee258f2fbf45a43c006f9e0a726bcea6

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= codeblocks
PORTVERSION= 16.01
PORTREVISION= 8
PORTVERSION= 17.12
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/Sources/${PORTVERSION}
DISTNAME= ${PORTNAME}_${PORTVERSION}
@ -18,22 +17,23 @@ BUILD_DEPENDS= zip:archivers/zip
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libhunspell-1.6.so:textproc/hunspell
libhunspell-1.6.so:textproc/hunspell \
libtinyxml.so:textproc/tinyxml
USES= autoreconf compiler desktop-file-utils fam:gamin localbase \
USES= tar:xz autoreconf compiler desktop-file-utils fam:gamin localbase \
gettext-runtime libtool pathfix pkgconfig shared-mime-info
USE_WX= 2.8
USE_GNOME= gtk20 cairo
USE_XORG= x11
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} --with-contrib-plugins=all \
--disable-pch
--disable-pch --with-boost-system=boost_system
PKG_CONFIG_LIBDIR= ${LOCALBASE}/libdata/pkgconfig
INSTALLS_ICONS= yes
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.release
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
.include <bsd.port.pre.mk>

View File

@ -1,2 +1,3 @@
SHA256 (codeblocks_16.01.tar.gz) = 30fb9d206df4ab3c2e2fec2451a0a7c9723bfed9a673cc9be71e881c529d5a03
SIZE (codeblocks_16.01.tar.gz) = 20250097
TIMESTAMP = 1514861811
SHA256 (codeblocks_17.12.tar.xz) = 13881a0a72769694e82e531b8e7814d51fbf1fa122c73c5004e186560fbc57e0
SIZE (codeblocks_17.12.tar.xz) = 15725976

View File

@ -0,0 +1,12 @@
--- src/sdk/scripting/squirrel/sqvm.cpp.orig 2017-10-31 23:32:38 UTC
+++ src/sdk/scripting/squirrel/sqvm.cpp
@@ -1,8 +1,8 @@
/*
see copyright notice in squirrel.h
*/
-#include "sqpcheader.h"
#include <math.h>
+#include "sqpcheader.h"
#include <stdlib.h>
#include "sqopcodes.h"
#include "sqfuncproto.h"

View File

@ -1,11 +0,0 @@
--- src/sdk/wxscintilla/src/ScintillaWX.cpp.orig 2016-01-23 16:43:01 UTC
+++ src/sdk/wxscintilla/src/ScintillaWX.cpp
@@ -290,7 +290,7 @@ static int wxCountLines(const char* text
/* C::B begin */
// Constant ids for the timers used by every editor.
-const int timerIDs[ScintillaWX::timersCount] = { wxNewId(), wxNewId(), wxNewId(), wxNewId() };
+const int timerIDs[ScintillaWX::timersCount] = { static_cast<int>(wxNewId()), static_cast<int>(wxNewId()), static_cast<int>(wxNewId()), static_cast<int>(wxNewId()) };
/* C::B end */
//----------------------------------------------------------------------

View File

@ -71,14 +71,13 @@ include/codeblocks/ibaseloader.h
include/codeblocks/ibaseworkspaceloader.h
include/codeblocks/id.h
include/codeblocks/importers_globals.h
include/codeblocks/incrementalselectlistdlg.h
include/codeblocks/incremental_select_helper.h
include/codeblocks/infowindow.h
include/codeblocks/licenses.h
include/codeblocks/logger.h
include/codeblocks/loggers.h
include/codeblocks/logmanager.h
include/codeblocks/macrosmanager.h
include/codeblocks/managedthread.h
include/codeblocks/manager.h
include/codeblocks/menuitemsmanager.h
include/codeblocks/misctreeitemdata.h
@ -156,8 +155,8 @@ include/codeblocks/searchresultslog.h
include/codeblocks/selecttargetdlg.h
include/codeblocks/settings.h
include/codeblocks/templatemanager.h
include/codeblocks/tinywxuni.h
include/codeblocks/tinyxml/tinystr.h
include/codeblocks/tinyxml/tinywxuni.h
include/codeblocks/tinyxml/tinyxml.h
include/codeblocks/toolsmanager.h
include/codeblocks/uservarmanager.h
@ -324,6 +323,7 @@ include/wxsmith/wxwidgets/wxwidgetsguiappadoptingdlg.h
include/wxsmith/wxwidgets/wxwidgetsguiconfigpanel.h
include/wxsmith/wxwidgets/wxwidgetsres.h
include/wxsmith/wxwidgets/wxwidgetsresfactory.h
lib/codeblocks/plugins/libAstyle.so
lib/codeblocks/plugins/libAutoVersioning.so
lib/codeblocks/plugins/libBrowseTracker.so
lib/codeblocks/plugins/libCccc.so
@ -354,7 +354,6 @@ lib/codeblocks/plugins/libThreadSearch.so
lib/codeblocks/plugins/libToolsPlus.so
lib/codeblocks/plugins/libValgrind.so
lib/codeblocks/plugins/libabbreviations.so
lib/codeblocks/plugins/libastyle.so
lib/codeblocks/plugins/libautosave.so
lib/codeblocks/plugins/libbyogames.so
lib/codeblocks/plugins/libcb_koders.so
@ -414,7 +413,6 @@ lib/libcodeblocks.so.0.0.1
lib/libwxsmithlib.so
lib/libwxsmithlib.so.0
lib/libwxsmithlib.so.0.0.1
libdata/pkgconfig/codeblocks.pc
libdata/pkgconfig/cb_wxKWIC.pc
libdata/pkgconfig/cb_wxchartctrl.pc
libdata/pkgconfig/cb_wxcontrib.pc
@ -425,6 +423,7 @@ libdata/pkgconfig/cb_wxled.pc
libdata/pkgconfig/cb_wxmathplot.pc
libdata/pkgconfig/cb_wxspeedbutton.pc
libdata/pkgconfig/cb_wxtreelist.pc
libdata/pkgconfig/codeblocks.pc
libdata/pkgconfig/wxsmith-contrib.pc
libdata/pkgconfig/wxsmith.pc
libdata/pkgconfig/wxsmithaui.pc
@ -432,7 +431,10 @@ man/man1/cb_console_runner.1.gz
man/man1/cb_share_config.1.gz
man/man1/codeblocks.1.gz
man/man1/codesnippets.1.gz
share/appdata/codeblocks-contrib.metainfo.xml
share/appdata/codeblocks.appdata.xml
share/applications/codeblocks.desktop
%%DATADIR%%/Astyle.zip
%%DATADIR%%/AutoVersioning.zip
%%DATADIR%%/BrowseTracker.zip
%%DATADIR%%/Cccc.zip
@ -475,7 +477,6 @@ share/applications/codeblocks.desktop
%%DATADIR%%/ToolsPlus.zip
%%DATADIR%%/Valgrind.zip
%%DATADIR%%/abbreviations.zip
%%DATADIR%%/astyle.zip
%%DATADIR%%/autosave.zip
%%DATADIR%%/byogames.zip
%%DATADIR%%/cb_koders.zip
@ -484,6 +485,7 @@ share/applications/codeblocks.desktop
%%DATADIR%%/codesnippets.zip
%%DATADIR%%/codestat.zip
%%DATADIR%%/compiler.zip
%%DATADIR%%/compilers/compiler_android-gcc.xml
%%DATADIR%%/compilers/compiler_avr-gcc.xml
%%DATADIR%%/compilers/compiler_bcc.xml
%%DATADIR%%/compilers/compiler_bfin-elf-gcc.xml
@ -494,13 +496,16 @@ share/applications/codeblocks.desktop
%%DATADIR%%/compilers/compiler_lm32-gcc.xml
%%DATADIR%%/compilers/compiler_lm8-gcc.xml
%%DATADIR%%/compilers/compiler_msp430-gcc.xml
%%DATADIR%%/compilers/compiler_mw.xml
%%DATADIR%%/compilers/compiler_null.xml
%%DATADIR%%/compilers/compiler_pgifortran.xml
%%DATADIR%%/compilers/compiler_powerpc-eabi.xml
%%DATADIR%%/compilers/compiler_ppc-gcc.xml
%%DATADIR%%/compilers/compiler_sdcc.xml
%%DATADIR%%/compilers/compiler_tcc.xml
%%DATADIR%%/compilers/compiler_tricore-gcc.xml
%%DATADIR%%/compilers/compiler_zpu-gcc.xml
%%DATADIR%%/compilers/options_android-gcc.xml
%%DATADIR%%/compilers/options_arm-elf-gcc.xml
%%DATADIR%%/compilers/options_avr-gcc.xml
%%DATADIR%%/compilers/options_bcc.xml
@ -539,9 +544,11 @@ share/applications/codeblocks.desktop
%%DATADIR%%/compilers/options_msvc10.xml
%%DATADIR%%/compilers/options_msvc8.xml
%%DATADIR%%/compilers/options_msvctk.xml
%%DATADIR%%/compilers/options_mw.xml
%%DATADIR%%/compilers/options_null.xml
%%DATADIR%%/compilers/options_ow.xml
%%DATADIR%%/compilers/options_pgifortran.xml
%%DATADIR%%/compilers/options_powerpc-eabi.xml
%%DATADIR%%/compilers/options_ppc-gcc.xml
%%DATADIR%%/compilers/options_sdcc.xml
%%DATADIR%%/compilers/options_tcc.xml
@ -1150,6 +1157,8 @@ share/applications/codeblocks.desktop
%%DATADIR%%/lexers/lexer_ada.xml
%%DATADIR%%/lexers/lexer_angelscript.sample
%%DATADIR%%/lexers/lexer_angelscript.xml
%%DATADIR%%/lexers/lexer_autotools.sample
%%DATADIR%%/lexers/lexer_autotools.xml
%%DATADIR%%/lexers/lexer_bash.sample
%%DATADIR%%/lexers/lexer_bash.xml
%%DATADIR%%/lexers/lexer_batch.sample
@ -1168,6 +1177,8 @@ share/applications/codeblocks.desktop
%%DATADIR%%/lexers/lexer_cpp.xml
%%DATADIR%%/lexers/lexer_css.sample
%%DATADIR%%/lexers/lexer_css.xml
%%DATADIR%%/lexers/lexer_cu.sample
%%DATADIR%%/lexers/lexer_cu.xml
%%DATADIR%%/lexers/lexer_d.sample
%%DATADIR%%/lexers/lexer_d.xml
%%DATADIR%%/lexers/lexer_diff.sample
@ -1188,6 +1199,8 @@ share/applications/codeblocks.desktop
%%DATADIR%%/lexers/lexer_html.xml
%%DATADIR%%/lexers/lexer_ihex.sample
%%DATADIR%%/lexers/lexer_ihex.xml
%%DATADIR%%/lexers/lexer_inno.sample
%%DATADIR%%/lexers/lexer_inno.xml
%%DATADIR%%/lexers/lexer_java.sample
%%DATADIR%%/lexers/lexer_java.xml
%%DATADIR%%/lexers/lexer_javascript.sample
@ -1214,6 +1227,8 @@ share/applications/codeblocks.desktop
%%DATADIR%%/lexers/lexer_perl.xml
%%DATADIR%%/lexers/lexer_postscript.sample
%%DATADIR%%/lexers/lexer_postscript.xml
%%DATADIR%%/lexers/lexer_powershell.sample
%%DATADIR%%/lexers/lexer_powershell.xml
%%DATADIR%%/lexers/lexer_prg.sample
%%DATADIR%%/lexers/lexer_prg.xml
%%DATADIR%%/lexers/lexer_properties.sample
@ -1261,7 +1276,6 @@ share/applications/codeblocks.desktop
%%DATADIR%%/scripts/plugin_find_broken_files.script
%%DATADIR%%/scripts/sample_plugin.script
%%DATADIR%%/scripts/startup.script
%%DATADIR%%/scripts/stl-views-1.0.3.gdb
%%DATADIR%%/scripts/tests/menu_test_plugin.script
%%DATADIR%%/scripts/tests/script_test_plugin.script
%%DATADIR%%/scripts/tests/test_base.script
@ -1300,6 +1314,10 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/sdl-cb.bmp
%%DATADIR%%/templates/sdl-main.cpp
%%DATADIR%%/templates/sdl.png
%%DATADIR%%/templates/sdl2-main.cpp
%%DATADIR%%/templates/sdl2.png
%%DATADIR%%/templates/sdl2app.cbp
%%DATADIR%%/templates/sdl2app.template
%%DATADIR%%/templates/sdlapp.cbp
%%DATADIR%%/templates/sdlapp.template
%%DATADIR%%/templates/sfml-cb.bmp
@ -1313,6 +1331,29 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/staticlib-sample.c
%%DATADIR%%/templates/staticlib.cbp
%%DATADIR%%/templates/staticlib.template
%%DATADIR%%/templates/wizard/arduino/files/cores/CDC.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/HID.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/HardwareSerial.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/IPAddress.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/Print.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/Stream.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/Tone.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/USBCore.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/WInterrupts.c
%%DATADIR%%/templates/wizard/arduino/files/cores/WMath.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/WString.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/libraries.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/main.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/new.cpp
%%DATADIR%%/templates/wizard/arduino/files/cores/wiring.c
%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_analog.c
%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_digital.c
%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_pulse.c
%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_shift.c
%%DATADIR%%/templates/wizard/arduino/files/sketch.cpp
%%DATADIR%%/templates/wizard/arduino/logo.png
%%DATADIR%%/templates/wizard/arduino/wizard.png
%%DATADIR%%/templates/wizard/arduino/wizard.script
%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/h/evaluator7t.h
%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/ld/target.ld
%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/src/main.c
@ -1392,6 +1433,9 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/wizard/d/logo.png
%%DATADIR%%/templates/wizard/d/wizard.png
%%DATADIR%%/templates/wizard/d/wizard.script
%%DATADIR%%/templates/wizard/d_source/logo.png
%%DATADIR%%/templates/wizard/d_source/wizard.png
%%DATADIR%%/templates/wizard/d_source/wizard.script
%%DATADIR%%/templates/wizard/directx/dx8/main.cpp
%%DATADIR%%/templates/wizard/directx/dx9/main.cpp
%%DATADIR%%/templates/wizard/directx/logo.png
@ -1449,6 +1493,13 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/wizard/irrlicht/logo.png
%%DATADIR%%/templates/wizard/irrlicht/wizard.png
%%DATADIR%%/templates/wizard/irrlicht/wizard.script
%%DATADIR%%/templates/wizard/java/file/logo.png
%%DATADIR%%/templates/wizard/java/file/wizard.png
%%DATADIR%%/templates/wizard/java/file/wizard.script
%%DATADIR%%/templates/wizard/java/files/Main.java
%%DATADIR%%/templates/wizard/java/logo.png
%%DATADIR%%/templates/wizard/java/wizard.png
%%DATADIR%%/templates/wizard/java/wizard.script
%%DATADIR%%/templates/wizard/lf/files/quick/main.cpp
%%DATADIR%%/templates/wizard/lf/files/structured/CMain.cpp
%%DATADIR%%/templates/wizard/lf/files/structured/CMain.h
@ -1457,9 +1508,9 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/wizard/lf/wizard.png
%%DATADIR%%/templates/wizard/lf/wizard.script
%%DATADIR%%/templates/wizard/lf/wizard.xrc
%%DATADIR%%/templates/wizard/matlab_csf/files/lccstub.c
%%DATADIR%%/templates/wizard/matlab_csf/files/mexversion.rc
%%DATADIR%%/templates/wizard/matlab_csf/files/sfuntmpl.c
%%DATADIR%%/templates/wizard/matlab_csf/lccstub/lccstub.c
%%DATADIR%%/templates/wizard/matlab_csf/logo.png
%%DATADIR%%/templates/wizard/matlab_csf/wizard.png
%%DATADIR%%/templates/wizard/matlab_csf/wizard.script
@ -1469,11 +1520,16 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/wizard/mcs51/wizard.png
%%DATADIR%%/templates/wizard/mcs51/wizard.script
%%DATADIR%%/templates/wizard/mcs51/wizard.xrc
%%DATADIR%%/templates/wizard/msp430/files/main.c
%%DATADIR%%/templates/wizard/msp430/logo.png
%%DATADIR%%/templates/wizard/msp430/wizard.png
%%DATADIR%%/templates/wizard/msp430/wizard.script
%%DATADIR%%/templates/wizard/msp430/wizard.xrc
%%DATADIR%%/templates/wizard/ogre/files/main.cpp
%%DATADIR%%/templates/wizard/ogre/logo.png
%%DATADIR%%/templates/wizard/ogre/wizard.png
%%DATADIR%%/templates/wizard/ogre/wizard.script
%%DATADIR%%/templates/wizard/opencv/files/lena.jpg
%%DATADIR%%/templates/wizard/opencv/files/arnold_schwarzenegger.jpg
%%DATADIR%%/templates/wizard/opencv/files/main.cpp
%%DATADIR%%/templates/wizard/opencv/logo.png
%%DATADIR%%/templates/wizard/opencv/wizard.png
@ -1513,11 +1569,23 @@ share/applications/codeblocks.desktop
%%DATADIR%%/templates/wizard/qt4/logo.png
%%DATADIR%%/templates/wizard/qt4/wizard.png
%%DATADIR%%/templates/wizard/qt4/wizard.script
%%DATADIR%%/templates/wizard/qt4dll/files/main.cpp
%%DATADIR%%/templates/wizard/qt4dll/logo.png
%%DATADIR%%/templates/wizard/qt4dll/wizard.png
%%DATADIR%%/templates/wizard/qt4dll/wizard.script
%%DATADIR%%/templates/wizard/qt5/files/main.cpp
%%DATADIR%%/templates/wizard/qt5/logo.png
%%DATADIR%%/templates/wizard/qt5/wizard.png
%%DATADIR%%/templates/wizard/qt5/wizard.script
%%DATADIR%%/templates/wizard/sdl/files/cb.bmp
%%DATADIR%%/templates/wizard/sdl/files/main.cpp
%%DATADIR%%/templates/wizard/sdl/logo.png
%%DATADIR%%/templates/wizard/sdl/wizard.png
%%DATADIR%%/templates/wizard/sdl/wizard.script
%%DATADIR%%/templates/wizard/sdl2/files/main.cpp
%%DATADIR%%/templates/wizard/sdl2/logo.png
%%DATADIR%%/templates/wizard/sdl2/wizard.png
%%DATADIR%%/templates/wizard/sdl2/wizard.script
%%DATADIR%%/templates/wizard/sfml/logo.png
%%DATADIR%%/templates/wizard/sfml/sfml1/cb.bmp
%%DATADIR%%/templates/wizard/sfml/sfml1/main.cpp

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= grpc
PORTVERSION= 1.8.2
PORTVERSION= 1.8.3
DISTVERSIONPREFIX= v
CATEGORIES= devel

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1513859545
SHA256 (grpc-grpc-v1.8.2_GH0.tar.gz) = ad58a5004242a865108f60f6348e677a1ffc8f99dd60e35d6a6cb6d809ae0769
SIZE (grpc-grpc-v1.8.2_GH0.tar.gz) = 4629711
TIMESTAMP = 1515235459
SHA256 (grpc-grpc-v1.8.3_GH0.tar.gz) = c14bceddc6475a09927a815811a8161cdfa7acb445262835da6bc24da9842c92
SIZE (grpc-grpc-v1.8.3_GH0.tar.gz) = 4629844
SHA256 (google-benchmark-v1.3.0_GH0.tar.gz) = f19559475a592cbd5ac48b61f6b9cedf87f0b6775d1443de54cfe8f53940b28d
SIZE (google-benchmark-v1.3.0_GH0.tar.gz) = 105485

View File

@ -1,34 +1,40 @@
# $FreeBSD$
PORTNAME= icmake
PORTVERSION= 7.22.01
PORTVERSION= 9.02.04
CATEGORIES= devel
MASTER_SITES= SF
DISTNAME= ${PORTNAME}_${PORTVERSION}
EXTRACT_SUFX= .orig.tar.gz
MAINTAINER= bofh@FreeBSD.org
COMMENT= Intelligent C-like Maker
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= bash:shells/bash \
gsed:textproc/gsed
WRKSRC_SUBDIR= ${PORTNAME}
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
PORTDOCS= *
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
REINPLACE_ARGS= -I ""
USES= shebangfix
SHEBANG_FILES= icm_bootstrap icm_install icm_prepare scripts/convert
SHEBANG_FILES= build comp/build comp/icm_bootstrap comp/updategrammar \
comp/updateparser comp/updatescanner dep/build dep/icm_bootstrap \
exec/build exec/icm_bootstrap exec/list/test/build exec/string/test/build \
icm_bootstrap icm_github icm_install icm_prepare icmake/build \
icmake/icm_bootstrap icmake/setlinks icmbuild/build icmbuild/icm_bootstrap \
iuo/bootstrapinstall iuo/install iuo/uninstall pp/build pp/icm_bootstrap \
rss/build rss/icm_bootstrap scripts/convert un/build un/icm_bootstrap
USE_GITHUB= yes
GH_ACCOUNT= fbb-git
post-patch:
@${REINPLACE_CMD} -e 's|find|find .|g' \
${WRKSRC}/icm_prepare
@${REINPLACE_CMD} -e 's|sed|gsed|g' \
${WRKSRC}/scripts/conversions \
${WRKSRC}/scripts/convert
@ -39,16 +45,6 @@ post-patch:
s|"usr/share/doc/icmake"|"share/doc/icmake-${PORTVERSION}"| ; \
s|"usr/share/doc/icmake-doc"|"share/doc/icmake-${PORTVERSION}/doc"|' \
${WRKSRC}/INSTALL.im
@${REINPLACE_CMD} -e '\
s|"ar"|"${AR}"| ; \
s|"rsv"|"${ARFLAGS}"| ; \
s|"gcc"|"${CC}"| ; \
s|"gzip"|"${GZIP_CMD}"| ; \
s|"cp"|"${CP}"| ; \
s|"mkdir"|"${MKDIR}"| ; \
s|"rm"|"${RM}"| ; \
s|"strip"|"${STRIP_CMD}"|' \
${WRKSRC}/def/programs
@${REINPLACE_CMD} -e 's|cp -r|cp -R|' \
${WRKSRC}/icm_bootstrap \
${WRKSRC}/icm_install
@ -58,44 +54,34 @@ post-patch:
${WRKSRC}/doc/manpage/icmake.yo \
${WRKSRC}/doc/manpage/build \
${WRKSRC}/examples/am \
${WRKSRC}/examples/bup \
${WRKSRC}/examples/defines \
${WRKSRC}/examples/ds \
${WRKSRC}/examples/ftpxfer \
${WRKSRC}/examples/idir \
${WRKSRC}/examples/initialization \
${WRKSRC}/examples/killprog \
${WRKSRC}/examples/nesteddirectives \
${WRKSRC}/examples/r \
${WRKSRC}/examples/tolower \
${WRKSRC}/exec/build \
${WRKSRC}/make/build \
${WRKSRC}/pp/build \
${WRKSRC}/rss/build \
${WRKSRC}/un/build
${WRKSRC}/rss/build
@${REINPLACE_CMD} -e 's|"gcc"|"${CC}"|g; s|-Wall -O2|${CFLAGS}|g' \
${WRKSRC}/comp/build \
${WRKSRC}/def/programs \
${WRKSRC}/doc/icmake.doc \
${WRKSRC}/exec/icmconf \
${WRKSRC}/usr/share/icmake/icmconf \
${WRKSRC}/exec/build \
${WRKSRC}/make/build \
${WRKSRC}/pp/build \
${WRKSRC}/rss/build \
${WRKSRC}/un/build
@${REINPLACE_CMD} -e '\
s|/usr/lib/icmake|${PREFIX}/lib/icmake-${PORTVERSION}|g; \
s|/usr/share/icmake|${PREFIX}/share/icmake-${PORTVERSION}|g; \
s|/etc/icmake/icmake.cf|${PREFIX}/etc/icmake/icmake.rc|g' \
${WRKSRC}/etc/icmake/icmake.rc
do-build:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_bootstrap ${PREFIX}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_prepare ${PREFIX}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_bootstrap x
do-install:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install strip progs ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install scripts ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install skel ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install etc ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install man ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install doc ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install docdoc ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install strip all ${STAGEDIR}
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (icmake_7.22.01.orig.tar.gz) = b522e7937e9d4f0bec738dfce371673e3c4a8bc9f4d209a51631e5ed59ba66c7
SIZE (icmake_7.22.01.orig.tar.gz) = 331750
TIMESTAMP = 1515357723
SHA256 (fbb-git-icmake-9.02.04_GH0.tar.gz) = 611ef06fb15b1f4ab3b258395020fc88ed555b4d8934fa66a1ec8fe863f049c8
SIZE (fbb-git-icmake-9.02.04_GH0.tar.gz) = 372166

View File

@ -1,10 +1,10 @@
--- exec/bootstrap.orig 2012-07-15 13:24:41 UTC
--- exec/bootstrap.orig 2018-01-07 21:36:21 UTC
+++ exec/bootstrap
@@ -1,6 +1,6 @@
echo Creating icm-exec
-gcc -O2 -g -Wall -DHAVE_GLOB -c *.c
+${CC} ${CFLAGS} -g -DHAVE_GLOB -c *.c
+${CC} ${CFLAGS} -g -DHAVE_GLOB -c *.c
mkdir -p tmp/bin

View File

@ -1,15 +0,0 @@
--- icm_install.orig 2015-05-25 19:37:41 UTC
+++ icm_install
@@ -19,11 +19,7 @@ if [ "$1" == "strip" ] ; then
shift
fi
-if [ "$2" != "" ] ; then
- INSTALLDIR=$2
-else
- INSTALLDIR=${ROOT}
-fi
+INSTALLDIR=$2
try()
{

View File

@ -4,4 +4,4 @@ automatic program maintenance and system administrative tasks on MS-DOS
platforms. Later on, Icmake was eventually ported to Unix platforms
(SCO and Linux). By now Icmake also runs on a HP-Unix platform.
WWW: http://icmake.sourceforge.net/
WWW: https://fbb-git.github.io/icmake/

View File

@ -1,23 +1,25 @@
bin/icmake
bin/icmbuild
bin/icmstart
bin/icmun
etc/icmake/icmake.rc
etc/icmake/icmstart.rc
%%ETCDIR%%/icmstart.rc
lib/icmake-%%PORTVERSION%%/icm-comp
lib/icmake-%%PORTVERSION%%/icm-dep
lib/icmake-%%PORTVERSION%%/icm-exec
lib/icmake-%%PORTVERSION%%/icm-pp
lib/icmake-%%PORTVERSION%%/icmbuild
lib/icmake-%%PORTVERSION%%/icmun
man/man1/icmake.1.gz
man/man1/icmbuild.1.gz
man/man1/icmstart.1.gz
man/man7/icmconf.7.gz
man/man7/icmstart.rc.7.gz
share/icmake-%%PORTVERSION%%/parser/grammar
share/icmake-%%PORTVERSION%%/scanner/lexer
share/icmake-%%PORTVERSION%%/scanner/scanner.ih
share/icmake-%%PORTVERSION%%/CLASSES
share/icmake-%%PORTVERSION%%/icmconf
share/icmake-%%PORTVERSION%%/main.cc
share/icmake-%%PORTVERSION%%/main.ih
share/icmake-%%PORTVERSION%%/usage.cc
share/icmake-%%PORTVERSION%%/version.cc
%%DATADIR%%-%%PORTVERSION%%/frame
%%DATADIR%%-%%PORTVERSION%%/icmconf
%%DATADIR%%-%%PORTVERSION%%/main.cc
%%DATADIR%%-%%PORTVERSION%%/main.ih
%%DATADIR%%-%%PORTVERSION%%/parser/grammar
%%DATADIR%%-%%PORTVERSION%%/scanner/lexer
%%DATADIR%%-%%PORTVERSION%%/scanner/scanner.ih
%%DATADIR%%-%%PORTVERSION%%/usage.cc
%%DATADIR%%-%%PORTVERSION%%/version.cc
%%DATADIR%%-%%PORTVERSION%%/CLASSES

View File

@ -12,7 +12,7 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= C++ library for easily serializing a wide variety of objects
USES= uidfix zip
WRKSRC= ${WRKDIR}/${DISTNAME}/src
WRKSRC_SUBDIR= src
USE_LDCONFIG= yes
.if defined(NO_PROFILE)

View File

@ -0,0 +1,30 @@
libc++ doesn't like "using namespace std" in C++11
bind_test.cc:24:17: error: no viable conversion from '__bind<SigC::Slot1<void, int>, int>' to 'Slot0<void>'
Slot0<void> s=bind(slot(&foo),1);
^ ~~~~~~~~~~~~~~~~~~
../sigc++/slot.h:207:7: note: candidate constructor not viable: no known conversion from '__bind<SigC::Slot1<void, int>, int>' to 'const SigC::Slot0<void> &' for 1st argument
Slot0(const Slot0& s)
^
../sigc++/slot.h:210:7: note: candidate constructor not viable: no known conversion from '__bind<SigC::Slot1<void, int>, int>' to 'SigC::SlotNode *' for 1st argument
Slot0(SlotNode* node)
^
../sigc++/slot.h:213:7: note: candidate constructor not viable: no known conversion from '__bind<SigC::Slot1<void, int>, int>' to 'SigC::Slot0<void>::Callback' (aka 'void (*)()') for 1st argument
Slot0(Callback callback)
^
--- tests/bind_test.cc.orig 2002-10-11 12:42:15 UTC
+++ tests/bind_test.cc
@@ -21,10 +21,10 @@ void foo2(A) { cout << "foo2(A)" <<endl; result+=3;}
int main()
{
cout << ">>test 1"<<endl;
- Slot0<void> s=bind(slot(&foo),1);
+ Slot0<void> s=SigC::bind(slot(&foo),1);
s();
cout << ">>test 2"<<endl;
- s=bind(slot(&foo2),1);
+ s=SigC::bind(slot(&foo2),1);
s();
cout << ">>test 3"<<endl;
s.clear();

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= log4cpp
PORTVERSION= 1.1.2
PORTVERSION= 1.1.3
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}.x%20%28new%29/${PORTNAME}-${PORTVERSION:R}
@ -25,8 +25,8 @@ REINPLACE_ARGS= -i ""
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
OPTIONS_DEFINE= DOXYGEN
OPTIONS_SUB= yes
OPTIONS_DEFINE= DOXYGEN
OPTIONS_SUB= yes
DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen
DOXYGEN_CONFIGURE_ENABLE= doxygen

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1492786380
SHA256 (log4cpp-1.1.2.tar.gz) = a92bb210cddca7a1d6e7ea89f52b6eecbee7c3e7c1bc22a6e2593ef46fe8798b
SIZE (log4cpp-1.1.2.tar.gz) = 595666
TIMESTAMP = 1515310743
SHA256 (log4cpp-1.1.3.tar.gz) = 2cbbea55a5d6895c9f0116a9a9ce3afb86df383cd05c9d6c1a4238e5e5c8f51d
SIZE (log4cpp-1.1.3.tar.gz) = 595639

View File

@ -2,13 +2,11 @@
# $FreeBSD$
PORTNAME= App-CLI-Extension
PORTVERSION= 1.42.1
PORTREVISION= 2
PORTVERSION= 1.421
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:HOLLY
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
MAINTAINER= perl@FreeBSD.org
COMMENT= Extension for App::CLI extension module

View File

@ -2,11 +2,10 @@
# $FreeBSD$
PORTNAME= CPAN-Changes
PORTVERSION= 0.40.0002
PORTVERSION= 0.400002
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
MAINTAINER= perl@FreeBSD.org
COMMENT= Read and write CPAN Changes files

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Class-Base
PORTVERSION= 0.08
PORTVERSION= 0.09
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -13,6 +13,9 @@ COMMENT= Useful base class for deriving other modules
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone
RUN_DEPENDS:= ${BUILD_DEPENDS}
NO_ARCH= yes
USES= perl5
USE_PERL5= configure

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1491601044
SHA256 (Class-Base-0.08.tar.gz) = 666964cc44fa860d87e1fdfcff54f567ae30a3da0bdeb64faed88aec1ca00df1
SIZE (Class-Base-0.08.tar.gz) = 15890
TIMESTAMP = 1515159225
SHA256 (Class-Base-0.09.tar.gz) = e1a5bdde52505802664a9108a515c9e8e502cb7229a49de94f4081b1b2aeed84
SIZE (Class-Base-0.09.tar.gz) = 33597

View File

@ -1,12 +1,11 @@
# $FreeBSD$
PORTNAME= Coro
PORTVERSION= 6.51.3
PORTVERSION= 6.513
PORTEPOCH= 1
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
MAINTAINER= perl@FreeBSD.org
COMMENT= Coroutine process abstraction for perl

View File

@ -3,7 +3,7 @@
PORTNAME= Eval-Context
PORTVERSION= 0.09.11
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:NKH
@ -15,21 +15,15 @@ COMMENT= Evaluate Perl code in context wrapper
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Test-Output>=0:devel/p5-Test-Output \
p5-Package-Generator>=0:devel/p5-Package-Generator \
p5-Test-Spelling>=0:devel/p5-Test-Spelling \
p5-Test-Block>=0:devel/p5-Test-Block \
p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \
p5-Test-Distribution>=0:devel/p5-Test-Distribution \
p5-Test-Warn>=0:devel/p5-Test-Warn \
p5-Test-Pod>=0:devel/p5-Test-Pod \
p5-Test-Dependencies>=0:devel/p5-Test-Dependencies \
p5-Test-Strict>=0:devel/p5-Test-Strict \
BUILD_DEPENDS= p5-Package-Generator>=0:devel/p5-Package-Generator \
p5-Directory-Scratch-Structured>=0:devel/p5-Directory-Scratch-Structured \
p5-Data-TreeDumper>=0:devel/p5-Data-TreeDumper \
p5-Data-Compare>=0:devel/p5-Data-Compare \
p5-File-Slurp>=0:devel/p5-File-Slurp
RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \
p5-Test-Output>=0:devel/p5-Test-Output \
p5-Test-Warn>=0:devel/p5-Test-Warn
USES= perl5
USE_PERL5= modbuild

View File

@ -20,7 +20,6 @@ BUILD_DEPENDS= p5-Module-Runtime>=0:devel/p5-Module-Runtime \
p5-namespace-clean>=0.19:devel/p5-namespace-clean
RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-CPAN-Meta-Check>=0.011:devel/p5-CPAN-Meta-Check \
p5-MooseX-Role-WithOverloading>=0:devel/p5-MooseX-Role-WithOverloading \
p5-Test-Fatal>=0:devel/p5-Test-Fatal \
p5-Test-Requires>=0:devel/p5-Test-Requires

View File

@ -1,33 +0,0 @@
# Created by: Wen Heping <wen@FreeBSD.org>
# $FreeBSD$
PORTNAME= MooseX-Role-WithOverloading
PORTVERSION= 0.17
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:ETHER
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Roles which support overloading
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Moose>=1.15:devel/p5-Moose \
p5-MooseX-Types>=0:devel/p5-MooseX-Types \
p5-aliased>=0:devel/p5-aliased \
p5-namespace-autoclean>=0.16:devel/p5-namespace-autoclean \
p5-namespace-clean>=0.19:devel/p5-namespace-clean
RUN_DEPENDS:= ${BUILD_DEPENDS}
DEPRECATED= deprecated by upstream (obsolete with modern Moose)
EXPIRATION_DATE= 2017-03-01
USES= perl5
USE_PERL5= configure
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/MooseX/Role/WithOverloading/WithOverloading.so
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (MooseX-Role-WithOverloading-0.17.tar.gz) = 92b095d73f1220f9c2ed2d3aaa5ba072eb5aa2de209b7c455da5a8701b986865
SIZE (MooseX-Role-WithOverloading-0.17.tar.gz) = 32308

View File

@ -1,6 +0,0 @@
MooseX::Role::WithOverloading allows you to write a Moose::Role which
defines overloaded operators and allows those operator overloadings
to be composed into the classes/roles/instances it's compiled to,
while plain Moose::Roles would lose the overloading.
WWW: http://search.cpan.org/dist/MooseX-Role-WithOverloading/

View File

@ -1,15 +0,0 @@
%%SITE_ARCH%%/MooseX/Role/WithOverloading.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/Composite.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/Composite/ToClass.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/Composite/ToInstance.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/Composite/ToRole.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/FixOverloadedRefs.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/ToClass.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/ToInstance.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Application/ToRole.pm
%%SITE_ARCH%%/MooseX/Role/WithOverloading/Meta/Role/Composite.pm
%%SITE_ARCH%%/auto/MooseX/Role/WithOverloading/WithOverloading.so
%%PERL5_MAN3%%/MooseX::Role::WithOverloading.3.gz
%%PERL5_MAN3%%/MooseX::Role::WithOverloading::Meta::Role::Application.3.gz

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= OOTools
PORTVERSION= 2.30
PORTREVISION= 1
PORTVERSION= 2.40
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:SKNPP
@ -13,6 +12,12 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/0$//}
MAINTAINER= perl@FreeBSD.org
COMMENT= Perl module collection to easily create constructors methods
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
TEST_DEPENDS= p5-CGI>=0:www/p5-CGI
NO_ARCH= yes
USES= perl5
USE_PERL5= configure

View File

@ -1,2 +1,3 @@
SHA256 (OOTools-2.3.tar.gz) = 563a1d2047946ef86fb39366efbad9dd771002bf88f64c28a98d99f29b7eada9
SIZE (OOTools-2.3.tar.gz) = 34416
TIMESTAMP = 1515275274
SHA256 (OOTools-2.4.tar.gz) = 33d52208b4bdfdd0d160a450da616b99ba2f5f3c34eac447f74527cbd4fa7aea
SIZE (OOTools-2.4.tar.gz) = 32542

View File

@ -1,12 +1,3 @@
%%PERL5_MAN3%%/Class::Error.3.gz
%%PERL5_MAN3%%/Class::Util.3.gz
%%PERL5_MAN3%%/Class::constr.3.gz
%%PERL5_MAN3%%/Class::groups.3.gz
%%PERL5_MAN3%%/Class::props.3.gz
%%PERL5_MAN3%%/Object::groups.3.gz
%%PERL5_MAN3%%/Object::props.3.gz
%%PERL5_MAN3%%/Package::groups.3.gz
%%PERL5_MAN3%%/Package::props.3.gz
%%SITE_PERL%%/Class/Error.pm
%%SITE_PERL%%/Class/Util.pm
%%SITE_PERL%%/Class/constr.pm
@ -16,3 +7,12 @@
%%SITE_PERL%%/Object/props.pm
%%SITE_PERL%%/Package/groups.pm
%%SITE_PERL%%/Package/props.pm
%%PERL5_MAN3%%/Class::Error.3.gz
%%PERL5_MAN3%%/Class::Util.3.gz
%%PERL5_MAN3%%/Class::constr.3.gz
%%PERL5_MAN3%%/Class::groups.3.gz
%%PERL5_MAN3%%/Class::props.3.gz
%%PERL5_MAN3%%/Object::groups.3.gz
%%PERL5_MAN3%%/Object::props.3.gz
%%PERL5_MAN3%%/Package::groups.3.gz
%%PERL5_MAN3%%/Package::props.3.gz

View File

@ -17,8 +17,7 @@ BUILD_DEPENDS= p5-Moose>=2.1300:devel/p5-Moose \
p5-Pod-Coverage>=0:devel/p5-Pod-Coverage \
p5-namespace-autoclean>=0.08:devel/p5-namespace-autoclean
RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-MooseX-Role-WithOverloading>=0:devel/p5-MooseX-Role-WithOverloading \
p5-Test-Requires>=0:devel/p5-Test-Requires
TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires
NO_ARCH= yes
USES= perl5

View File

@ -1,24 +0,0 @@
# Created by: Lars Thegler <lth@FreeBSD.org>
# $FreeBSD$
PORTNAME= Test-Block
PORTVERSION= 0.13
PORTREVISION= 1
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Specify fine granularity test plans
DEPRECATED= Marked as depreciated upstream
EXPIRATION_DATE= 2017-03-01
BUILD_DEPENDS= p5-Test-Exception>=0.15:devel/p5-Test-Exception \
p5-Test-Simple>=0.47:devel/p5-Test-Simple
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
.include <bsd.port.mk>

Some files were not shown because too many files have changed in this diff Show More