| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Submitted by: beefy1 via pkg-fallout
|
| |
|
|
|
|
| |
- Strip shared libraries
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Change maintainership to hamradio@
From the changelog:
- Support both . and , as the decimal point in NEC2 files
- Fix memory leak
- Faster animation on some projections
- Faster drag performance on some models
- Lower minimum window size for small displays
Submitted by: shurd
|
|
|
|
|
|
|
|
|
| |
- Add OWMUTEXDEBUG option
- Add USE_LDCONFIG
- Fix USES=tk syntax
PR: 194261
Submitted by: johan@stromnet.se (maintainer)
|
|
|
|
|
|
|
| |
noop fixes.)
With hat: perl@
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
|
| |
From the changelog:
I added device names to PulseAudio. The PulseAudio name "pulse" still refers
to the default device. Otherwise, enter a PulseAudio name such as
"pulse:alsa_input.pci-0000_00_1b.0.analog-stereo".
PulseAudio support enables you to connect to recent versions of wsjt-x.
To turn this off, set show_pulse_audio_devices = False in your config file.
Submitted by: shurd
|
|
|
|
|
|
|
|
|
|
| |
- Remove devel/qt5-qmldevtools from devel/Makefile.
- Hook devel/qt5-qdoc to devel/Makefile.
- Hook comms/qt5-serialport to comms/Makefile.
I knew I would forget something...
Submitted by: antoine
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Proudly presented by the KDE on FreeBSD team, with several guest stars.
This update took way longer than initially expected due to us previously
accumulating assumptions and changes to Qt's build system that finally bit
us back with the 5.3 release series, so we had to do a fair amount of
cleanup.
New ports:
- comms/qt5-serialport: Qt functions to access serial ports, originally
based on work by Fernando Apesteguia. [1]
- devel/qt5-qdoc: Qt documentation generator, the Qt5 equivalent of
devel/qt4-qdoc3. Originally worked on by Tobias Berner.
It had already been half-split from devel/qt5-buildtools,
we just needed to finish the work.
Dead ports:
- devel/qt5-qmldevtools: Merged into lang/qt5-qml.
Minor changes:
- devel/qt5: Add x11/qt5-x11extras and the new ports to the dependency list.
- graphics/qt5-imageformats: The port now supports the JPEG2000, WEBP,
Direct Draw Surface and ICNS formats.
- multimedia/qt5-multimedia: The ALSA and PULSEAUDIO options are now
mutually exclusive due to changes introduced in
Qt 5.3.0 (the ALSA code is now a proper plugin
that is only built if PulseAudio is not used).
- x11/qt5-x11extras: Add USE_LDCONFIG since the port installs a shared
library.
The big changes:
- bsd.qt.mk: Set QMAKESPEC instead of QMAKEPATH. [3]
QMAKEPATH does much more than we want now that we call qmake from the top
of ${WRKSRC}. qmake uses QMAKEPATH when evaluating the QMAKE_MKSPECS
property, which is in turn used by qt_config.pri to load the .pri files in
mkspecs/modules.
In practice, this means that if people have an older Qt installation those
files will be used and QT_CONFIG will have values such as "gui" even if
one is building a port like textproc/qt5-xml, which passes -no-gui to the
configure script. Consequently, unintended code paths may be enabled or
the configuration step can just fail if the .pro files expect values that
are not present in the system-wide, older .pri files.
We avoid all those problems if we use QMAKESPEC, as qmake does not take
its value into account when evaluating the QMAKE_MKSPECS property and will
only parse the files in the mkspec's directory (mkspecs/freebsd-clang, for
example, instead of all the files in mkspecs).
- Stop explicitly passing ${LOCALBASE} to the compiler. [3]
qmake's behavior has changed in Qt 5, and the paths set in QMAKE_INCDIR
and QMAKE_LIBDIR in the mkspecs are passed before any others, such as the
ones in the build directory themselves.
In practice, this means that we end up with linker calls like this:
c++ -o libfoo.so foo.o bar.o -L/usr/local/lib -L/wrkdir/build/lib
-lQt5Gui -lQt5Core
So if one already has Qt installed in the system, the older, already
present version of the libraries in /usr/local/lib will be used instead of
the newly-built ones in /wrkdir/build/lib.
QTBUG-40825 discusses this behavior upstream, but there has been no
agreement on a solution yet.
For now, the solution adopted is to make the compiler and the linker aware
of those paths but only try them last after all others, and this is
achieved by setting the CPATH and LIBRARY_PATH environment variables when
qmake is being used.
In addition to setting them in CONFIGURE_ENV and MAKE_ENV, we also need to
stop changing QMAKE_INCDIR and QMAKE_LIBDIR as well as filter those paths
from the pkg-config calls qtbase's configure script makes.
- Call qmake from the root of the ${WRKSRC}.
In Qt 5.3, Qt's build infrastructure has undergone some changes that make
our previous approach of calling qmake from the directories we want to
build stop working. Things would break even more in Qt 5.4, in which
qtbase's configure script does not accept the -process, -fully-process and
-dont-process arguments anymore (it always behaves as if -process had been
used).
Bite the bullet and start calling qmake from ${WRKSRC}. The largest part of
this change involves changing lines in Makefiles from
WRKSRC_SUBDIR= foo/bar
to
BUILD_WRKSRC= ${WRKSRC}/foo/bar
INSTALL_WRKSRC= ${WRKSRC}/foo/bar
as well as adding patches to .pro files to avoid entering other
subdirectories and removing post-configure targets that are not necessary
anymore.
Since qmake needs to be called from the top of ${WRKSRC} anyway, we can
also simplify the configuration process for the qtbase ports a little.
Looking at r10019 it is not clear why we started calling qmake in the
pre-configure target in addition to the post-configure one (while also
skipping it in do-configure), but we can now drop this call since letting
configure behave as if -process had been passed means it will call qmake
on its own and overwrite the files generated by the pre-configure call. We
still need to call qmake in post-configure though, as the configure script
does not pass -recursive when calling qmake and we need to be able to call
make from any subdirectory when building.
PR: 194762 [1]
PR: 194566 # exp-run with base GCC and clang
PR: 194088 [3]
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.19.4 -> 2.20.0
devel/pear-Horde_Core 2.15.0 -> 2.16.0
archivers/pear-Horde_Pack 1.0.4 -> 1.0.5
|
|
|
|
| |
Submitted by: beefy1 via pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.19.3 -> 2.19.4
devel/pear-Horde_Alarm 2.2.1 -> 2.2.2
www/pear-Horde_Dav 1.1.0 -> 1.1.1
databases/pear-Horde_Db 2.1.4 -> 2.1.5
devel/pear-Horde_History 2.3.1 -> 2.3.2
security/pear-Horde_Secret 2.0.3 -> 2.0.4
www/horde-base 5.2.1 -> 5.2.2
mail/horde-imp 6.2.2 -> 6.2.3
mail/horde-ingo 3.2.1 -> 3.2.2
deskutils/horde-kronolith 4.2.2 -> 4.2.3
deskutils/horde-mnemo 4.2.1 -> 4.2.2
deskutils/horde-nag 4.2.1 -> 4.2.2
mail/horde-turba 4.2.2 -> 4.2.3
deskutils/horde-groupware 5.2.2 -> 5.2.3
mail/horde-webmail 5.2.2 -> 5.2.3
www/horde-wicked 2.0.1 -> 2.0.2
devel/horde-whups 3.0.0 -> 3.0.1
|
|
|
|
| |
No time for this unfortunately.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
With gcc:
configure: loading site script /usr/ports/Templates/config.site
checking for gcc... cc
checking whether the C compiler works... no
configure: error: in `/wrkdirs/usr/ports/comms/wsjt/work/wsjt-r2511':
configure: error: C compiler cannot create executables
With clang:
configure: loading site script /usr/ports/Templates/config.site
checking for gcc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... configure: error: in `/wrkdirs/usr/ports/comms/wsjt/work/wsjt-r2511':
configure: error: cannot run C compiled programs.
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Set PORTEPOCH
- Update COMMENT and pkg-descr
- Add LICENSE_FILE
- Remove obsolete dependency
- Mantainer approved
PR: 193404
Submitted by: Kevin Zheng <kevinz5000@gmail.com>
Reviewed by: martymac (maintainer)
Approved by: mentors (implicit), martymac (maintainer)
|
|
|
|
|
|
|
| |
depends.
- Bump PORTREVISION.
Reported by: Henry Hu <henry.hu.sh@gmail.com> (via private email)
|
|
|
|
| |
Patch by thierry@FreeBSD.org, pointed out by antoine.
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.19.0 -> 2.19.3
devel/pear-Horde_Core 2.14.0 -> 2.15.0
textproc/pear-Horde_CssMinify 1.0.1 -> 1.0.2
www/pear-Horde_Dav 1.0.7 -> 1.1.0
databases/pear-Horde_Db 2.1.3 -> 2.1.4
mail/pear-Horde_Imap_Client 2.25.0 -> 2.25.2
archivers/pear-Horde_Pack 1.0.3 -> 1.0.4
devel/pear-Horde_Timezone 1.0.7 -> 1.0.8
|
| |
|
|
|
|
|
|
|
|
| |
Alias is a new USES tool that allows DragonFly to masquerade as FreeBSD
by setting CFLAGS+= -D__FreeBSD__. For some ports, this fixes the build
without the need for additional patches.
Approved by: portmgr (bapt, blanket)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
USE_KDE4=kdehier component has been deprecated, new components added:
baloo - Baloo core libraries
baloo-widgets - Baloo widgets library
kfilemetadata - KDE library for extracting file metadata
New ports:
graphics/kqtquickcharts - QtQuick plugin to render interactive charts
misc/artikulate - Pronunciation trainer for KDE
(not usable currently, links to both
GStreamer 1.x and 0.10.x via dependencies)
sysutils/baloo[-widgets] - KDE framework for searching and
managing user metadata
sysutils/kfilemetadata - Library for extracting file metadata
l10n ports:
- Farsi (Persian) and Indonesian translations has been readded
- Vietnamese didn't pass threshold for inclusion into release
astro/kstars:
- switch dependency from math/eigen2 to math/eigen3
- add PYKDE option for updating supernovae data
deskutils/kdepim4:
- update dependencies: add libkgapi and baloo,
remove now needless clucene, link-grammar, strigi
- add patch to fix build with gcc42
- update COMMENT and description for all KDE PIM ports
devel/ruby-krossruby:
- remove BROKEN, it builds with ruby 2.x now
editors/kate:
- add patch to disable memory-hungry build of the kate tests [1]
graphics/okular:
- add dependency on graphics/libkscreen
math/cantor:
- add optional dependency on lang/luajit for LuaJIT backend
- fix gfortran detection [2]
misc/kdehier4:
- adapt to new pkg world. Now the purpose of kdehier4 only
to link some stuff between KDE4_PREFIX and LOCALBASE.
science/kalzium:
- switch dependency from math/eigen2 to math/eigen3
- add dependence on science/chemical-mime-data
x11-themes/kdeartwork4
- switch dependency from math/eigen2 to math/eigen3
among other changes:
- drop deprecated USE_KDE4=kdehier
- drop @dirrm from plist
- clean up pkg-descr
- convert to options helpers
- other portlint fixes
The area51 repository features commits by alonso, rakuco and myself.
PR: 187150 [1]
Reported by: pe.freethread@live.com
Patch by: Tobias Berner <tcberner@gmail.com>
PR: 180674 [2]
Reported by: torsten.eichstaedt@web.de
PR: 194316
Exp-run: antoine
|
|
|
|
|
|
| |
USES=python
Approved by: portmgr (implicit)
|
|
|
|
|
|
| |
from the requested one
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
| |
- Set Maintainer to hamradio@
From ChangeLog:
FT450D Notch, IC-9100 update, Power meter remote, Smeter remote,
touch panel, xml-fix, FT450D, Freq Control, IC 7410
|
|
|
|
|
|
|
|
| |
- change Maintainer to hamradio group
- update to chirp 0.4.1
Version 0.4.1 contains a special backport for Baofeng users to work
around a firmware incompatibility issue.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
With hat: python
Approved by: portmgr (bdrewery, implicit)
|
| |
|
|
|
|
| |
- add LICENSE
|
|
|
|
|
| |
- Replace CONFIGURE_ARGS with CPPFLAGS/LIBS
- Use default do-install
|
|
|
|
|
|
|
| |
- USES python
With hat: python
Reviewed by: portmgr (bdrewery, implicit)
|
|
|
|
|
| |
/usr/local/bin/libtool
- Don't replace -lpthread with -pthread because they are the same
|
|
|
|
|
| |
Fix pear-Horde_core options
Use options helpers where possible
|
|
|
|
|
|
|
|
|
|
|
| |
- Split libusbmuxd.so into comms/libusbmuxd and update to 1.0.9.
- Update libimobiledevice to 1.1.6.
- Update usbmuxd to Git snapshot (~1.0.9).
- Document usbmuxd upgrade process.
This marks an important refactoring effort for proper iOS 7 support.
It's packed with new features, tools, speed improvements, code
refactoring, crash fixes, memory leak fixes and much more.
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
and libintl.so. This fixes a problem where DATADIRNAME gets an incorrect
value which causes locale files to be installed in the wrong place.
- The only configure checks that still need to be patched are related
to intltool so move DATADIRNAME patching from USES=pathfix to
USE_GNOME=intlhack.
- games/klavaro: remove excessive dependencies
- japanese/libskk: add INSTALL_TARGET=install-strip
- math/libqalculate: add INSTALL_TARGET=install-strip and remove pthread
patching
- multimedia/freetuxtv: remove excessive dependencies
- science/gramps: fix shared-mime-info use
Exp-run by: antoine
Approved by: portmgr (antoine)
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Give maintainership to submitter
PR: ports/193635
Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Keep some which are optional dependencies of non-expired ports
2014-09-18 sysutils/moreutils-parallel: Use moreutils-parallel in sysutils/moreutils instead
2014-09-20 science/ruby-netcdf: Depends on deprecated math/ruby-narray
2014-09-20 x11-toolkits/ruby-fox16: RubyForge shutdown May 15 2014
2014-09-20 math/ruby-gnuplot: Depends on deprecated math/ruby-narray
2014-09-20 science/ruby-gphys: Depends on deprecated math/ruby-narray
2014-09-20 math/ruby-fftw3: Depends on deprecated math/ruby-narray
2014-09-20 science/ruby-dcl: Depends on deprecated math/ruby-narray
2014-09-20 math/ruby-numru_misc: Depends on deprecated math/ruby-narray
2014-09-20 math/ruby-narray: RubyForge shutdown May 15 2014
2014-09-20 textproc/ruby-liquid: RubyForge shutdown May 15 2014
2014-09-20 comms/callsign: RubyForge shutdown May 15 2014
2014-09-20 misc/ruby-vpim: RubyForge shutdown May 15 2014
2014-09-20 net/ruby-ldap: RubyForge shutdown May 15 2014
2014-09-20 devel/rubygem-echoe: Depends on deprecated rubyforge
2014-09-20 www/ruby-borges: RubyForge shutdown May 15 2014
2014-09-20 www/ruby-fcgiwrap: RubyForge shutdown May 15 2014
2014-09-20 www/rubygem-scrubyt: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-multi: RubyForge shutdown May 15 2014
2014-09-20 databases/ruby-dbd_sqlite3: RubyForge shutdown May 15 2014
2014-09-20 math/ruby-gsl: RubyForge shutdown May 15 2014
2014-09-20 security/ruby-gpgme: RubyForge shutdown May 15 2014
2014-09-20 multimedia/vodcatcher: RubyForge shutdown May 15 2014
2014-09-20 japanese/ruby-ming: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-statgrab: RubyForge shutdown May 15 2014
2014-09-20 security/ruby-crypt: RubyForge shutdown May 15 2014
2014-09-20 sysutils/philesight: Depends on deprecated devel/ruby-locale2
2014-09-20 multimedia/podcatcher: RubyForge shutdown May 15 2014
2014-09-20 audio/ruby-mp3info: RubyForge shutdown May 15 2014
2014-09-20 multimedia/ruby-flvtool2: RubyForge shutdown May 15 2014
2014-09-20 audio/ruby-freedb: RubyForge shutdown May 15 2014
2014-09-20 graphics/ruby-ming: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-locale2: RubyForge shutdown May 15 2014
2014-09-20 devel/rubygem-rubyforge: RubyForge shutdown May 15 2014
2014-09-20 databases/ruby-dbd_odbc: RubyForge shutdown May 15 2014
2014-09-20 devel/ruby-fastri: RubyForge shutdown May 15 2014
2014-09-20 devel/ri-emacs: RubyForge shutdown May 15 2014
2014-09-20 security/p5-openxpki-client-html-mason: security/p5-openxpki-0.15+ abandoned Mason UI technology in favor of FastCGI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Use USE_LDCONFIG
Overall changes:
- Compile with -fpic instead of -fPIC (potentially smaller code size)
- Add a schematics file for the hardware receiver in FidoCadJ format
- Language and typographical updates to README.md
- Several signed/unsigned/size fixes
Library changes:
- Extract generic third-party code for bits 1..14 from decode_alarm.h into a
new file bits1to14.h
- Convert almost all calculations for decoding the live signal into integer
operations, drop fields 'a', 'frac', and 'maxone' from struct bitinfo.
- New function setclock_ok() in setclock.h
- New functions get_acc_minlen(), add_acc_minlen(), reset_acc_minlen() in
decode_time.h. The accumulated minute length is now a first-class entity.
When decoding the live signal, increment it more precisely than just 1000 ms/s
to prevent drift during bad radio reception.
- New functions dcftime() and isotime() in decode_time.h. Use the latter in
setclock.c
- Check input values of etc/config.txt:
- hw.active_high must be 0 or 1
- hw.freq must be even between 10 and 666666
- Reset the values of bit0 and bit20 if the latter becomes smaller than the
former, show this in the log file using a '!'
- Compact the signal buffer, it now stores 8 pulses per byte instead of just 1.
Client changes:
- Make dcf77pi and dcf77pi-analyze more agnostic of the contents of the
third-party contents
- Update display code of dcf77pi and readpin for the updates to the live signal
decoding
- Show in dcf77pi when the value of bit20 underflows
- Update the code to display the signal buffer in readpin
- Fix readpin to properly clean up when receiving a SIGINT
|
| |
|
| |
|
|
|
|
|
|
|
| |
There are only 60 such ports so there doesn't need to be a separate
keyword or USES for this.
Approved by: portmgr (bapt)
|
|
|
|
|
|
|
|
| |
- Fix installation of lib/libspandsp.so.2 (when patching configure.ac
almost all USE_AUTOTOOLS are needed)
- Replace CONFIGURE_ARGS with CPPFLAGS/LIBS
Reported by: antoine
|
| |
|
|
|
|
|
|
|
| |
- Convert to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove patches that renamed include directories and libraries so they
didn't conflict with early development versions of glib/gtk 2.0
|
|
|
|
| |
- Convert to USES=python
|
|
|
|
|
|
|
|
|
|
| |
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
|
|
|
|
| |
- Shebangfix
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.18.1 -> 2.19.0
devel/pear-Horde_Core 2.13.1 -> 2.14.0
mail/horde-webmail 5.2.1 -> 5.2.2
deskutils/horde-groupware 5.2.1 -> 5.2.2
|
| |
|
|
|
|
|
| |
PR: 193345
Submitted by: maintainer (Carlos JPM)
|
|
|
|
|
|
|
|
| |
The source files were no longer available, so the submitter is also
hosting those.
PR: 192878
Submitted by: Chris Hutchinson
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.18.0 -> 2.18.1
mail/pear-Horde_Imap_Client 2.24.2 -> 2.25.0
mail/horde-imp 6.2.1 -> 6.2.2
mail/horde-ingo 3.2.0 -> 3.2.1
deskutils/horde-kronolith 4.2.1 -> 4.2.2
www/horde-passwd 5.0.1 -> 5.0.2
mail/horde-turba 4.2.1 -> 4.2.2
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user
Differential Revision: https://reviews.freebsd.org/D703
Reviewed by and discussed with: bapt
With hat: portmgr
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Important Bug Fixes and Additions
Fixed shutdown in message passing apps
Fixed PortAudio detection during configuration
Fixed QWT detection during configuration
Fixed gr::analog::agc3 volk kernel alignment
Fixed/improved support of audio on OSX
Improved performance on network-based sources and sinks
Fixed pfb_arb_resampler tag propagation
Fixed segfault in fast_atan2f
Updated codec2 support to latest standard and support all rates
New HDLC codec blocks in gr::digital
|
|
|
|
|
|
|
| |
- Add USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- Use MAKE_CMD
|
|
|
|
|
|
|
|
| |
- Bump dependent ports as .so version has changed
- Use install-strip target instead of STRIP_CMD
- Add/fix libspandsp.so versions in LIB_DEPENDS to differentiate between spandsp and spandsp-devel
Approved by: portmgr blanket
|
|
|
|
|
|
| |
- Strip libraries
Approved by: portmgr blanket
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.17.0 -> 2.18.0
devel/pear-Horde_Core 2.13.0 -> 2.13.1
|
|
|
|
|
|
| |
PR: 192062
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
| |
PR: ports/192902
Submitted by: Carlos Jacobo Puga Medina <cpm@fbsd.es> (maintainer)
|
|
|
|
|
|
| |
Apparently Tools/scripts/bump-revision.sh isn't too robust...
PR: 192690
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
for new Berkeley DB, but are untested.
NOTE: please read UPDATING and the Wiki page before proceeding!
Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR: 192690
Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports)
|
| |
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.16.11 -> 2.17.0
mail/pear-Horde_Imap_Client 2.24.0 -> 2.24.2
devel/pear-Horde_Util 2.4.0 -> 2.5.1
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
rubyforge.org shutdown on May 15, 2014. This commit accounts for that by doing
several things:
- Deprecate ruby that had only rubyforge.org as MASTER_SITES (and so are now
only fetchable via our cache)
- Deprecate ports that depend on those
- Update the WWW pkg-descr line that points to rubyforge.org for rubygem ports
(which are still fetchable from rubygems.org)
The next step will be to remove rubyforge.org from bsd.sites.mk, after these
deprecated ports are deleted.
Phabric: D591
With hat: ruby
Approved by: portmgr (because of committing to unstaged graphics/mingplot port)
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
| |
- Add USES=libtool and bump dependent ports
- Add USES=pathfix and INSTALL_TARGET=install-strip
Approved by: portmgr (implicit, bump unstage port)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
PR: 189222
Submitted by: Johan (stromnet.se)
OWFS -- 1-Wire file system.
OWFS is an easy way to use the powerful 1-wire system of Dallas/Maxim.
OWFS is a simple and flexible program to monitor and control the physical
environment. You can write scripts to read temperature, flash lights, write
to an LCD, log and graph, ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so
GCC-based systems will upgrade to the default ports compiler (GCC 4.7
currently.)
Add two patches to OpenEXR to permit building it in a live system with
the older OpenEXR version installed. Bug report filed to upstream Github
at https://github.com/openexr/openexr/issues/130
Couple OpenEXR more tightly to ilmbase and require its exact .so
version.
Add UPDATING note, and bump PORTREVISION of all dependent ports.
Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer.
Approved by: portmgr (implicit for bumping PORTREVISION on unstaged ports)
|
|
|
|
|
|
| |
- Bump dependent ports as .so version has changed
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
PR: 189221
Submitted by: johan (stromnet.se)
Allows access to Telldus Tellstick USB dongles for communicating with
433MHz devices in your home.
Provides "telldusd", the daemon which keeps track of your tellstick
devices. Through a UNIX socket, the sensors and devices can be used/
controlled from the command line tool "tdtool", or via the libtelldus-core
C client library.
|
|
|
|
| |
Reported by: pkg-fallout since a few weeks
|
|
|
|
| |
Approved by: portmgr (implicit)
|
|
|
|
|
|
|
| |
after r364564 [1]
- Convert to USES=libtool
Reported by: antoine [1]
|
|
|
|
|
|
|
|
|
| |
- Fix missing -lusb [1]
- Convert to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Use @sample
Reported by: sbruno [1]
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
| |
(a* to d* categories)
PR: 192062
|
|
|
|
|
|
|
|
| |
Update dependent ports to build with it
Most of work by: pi@
Exp-run: self
PR: ports/190943
|
|
|
|
|
| |
PR: 192496
Submitted by: takefu (airport.fm)
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
devel/pear-Horde_Core 2.12.6 -> 2.13.0
devel/pear-Horde_Date 2.0.11 -> 2.0.12
databases/pear-Horde_HashTable 1.1.3 -> 1.2.0
mail/pear-Horde_Imap_Client 2.23.2 -> 2.24.0
mail/pear-Horde_Mail 2.3.0 -> 2.4.0
mail/pear-Horde_Mime 2.4.3 -> 2.4.4
mail/pear-Horde_Smtp 1.5.2 -> 1.6.0
comms/pear-Horde_SyncMl 2.0.3 -> 2.0.4
ftp/horde-gollem 3.0.2 -> 3.0.3
www/horde-base 5.2.0 -> 5.2.1
mail/horde-imp 6.2.0 -> 6.2.1
deskutils/horde-groupware 5.2.0 -> 5.2.1
deskutils/horde-kronolith 4.2.0 -> 4.2.1
deskutils/horde-mnemo 4.2.0 -> 4.2.1
deskutils/horde-nag 4.2.0 -> 4.2.1
mail/horde-turba 4.2.0 -> 4.2.1
mail/horde-webmail 5.2.0 -> 5.2.1
|
| |
|
|
|
|
|
|
|
|
| |
- Bump dependent ports as .so version has changed
- Fix distinfo for graphics/cmg
- Fix shebang for graphics/vips
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
| |
comms/linrad
comms/lirc
devel/urjtag
devel/openocd
sysutils/lcdproc
sysutils/flashrom
devel/xc3sprog is already bumped via PR 188055
|
|
|
|
|
|
|
| |
Also identify LICENSE and assign maintainership to submitter
PR: 192179
Submitted by: Carlos JPM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
security/shishi with PR 192164 is already committed
[1] devel/ccrtp
[2] editors/abiword
[3] security/p5-Crypt-GCrypt
PR: 191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit)
|
|
|
|
| |
Approved by: portmgr (not really, but touches unstaged ports)
|
|
|
|
| |
- unbreak build
|
|
|
|
| |
Approved by: portmgr (not really, but touches unstaged ports)
|
|
|
|
| |
Approved by: portmgr (not really, but touches unstaged ports)
|
|
|
|
| |
'__' instead.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The PR wasn't quite right with regards to stage support, so I had to modify
it further. The post-install configure file handling was focused on the
wrong file. I updated the default name of the qpage configure file in
order to use the @sample keyword. I added an entry in UPDATING to let
users know they may need to move an existing configure file accordingly.
PR: 192120
Submitted by: maintainer (Jeff Blank)
Changes by: marino
|
|
|
|
|
|
| |
- Bump dependent ports as .so version has changed
Approved by: portmgr blanket
|
|
|
|
| |
With hat: portmgr
|
| |
|
| |
|
|
|
|
| |
MFH: 2014Q3
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Update to 2.0.3
Add options for the extra (deprecated) command-line utilities
From ChangeLog.txt:
- Fix defect that doesn't allow adding station locations if only a single
callsign certificate is installed.
Thanks Kenji!
PR: ports/191871
|
|
|
|
|
|
| |
and set MASTER_SITES to local for now. Will fix this soon.
PR: ports/191871
|
|
|
|
|
|
|
| |
Where possible, correct a few instances where PORTDOCS was being used
to flag stuff in EXAMPLESDIR. For some ports, mostly those owned by
ruby@, PORTDOCS is applied to pretty much everything whether it's
documentation or example.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
General:
- add partial support for OSX and Cygwin
- add bitinfo.last0 field which represents the last pulse where the radio signal was 0
- store radio signal into a new field bitinfo.signal
- more robust handling of radio signal glitches
- improve realfreq by approximately 7% on a non-optimized standard build
- simplify code for handling DST changes and leap seconds
- defer assigning the decoded time until the minute length has been checked
to match the exact expected value (i.e. 59 unless a leap second occurs)
- code cleanups
README:
- mention supported platforms
dcf77pi:
- display updates, show last0
readpin:
- overhaul to make more use of libdcf77
- drop -t parameter
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.16.9 -> 2.16.11
devel/pear-Horde_Core 2.12.4 -> 2.12.6
|
|
|
|
| |
Submitted by: David Bjornsson <dabb@lolnet.is>
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for package change
- Bump PORTREVISION for graphics/gdal shlib change [1]
Approved by: portmgr (implicit) [1]
|
|
|
|
|
|
|
| |
- stagify
- reset MAINTAINER
Approved by: adrian
|
|
|
|
| |
- Add INSTALL_TARGET=install-strip
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.16.1 -> 2.16.9
security/pear-Horde_Auth 2.1.4 -> 2.1.5
devel/pear-Horde_Core 2.11.1 -> 2.11.2
security/pear-Horde_Crypt 2.4.3 -> 2.5.0
devel/pear-Horde_Data 2.0.5 -> 2.1.0
devel/pear-Horde_Date 2.0.10 -> 2.0.11
www/pear-Horde_Dav 1.0.6 -> 1.0.7
databases/pear-Horde_Db 2.1.2 -> 2.1.3
security/pear-Horde_Group 2.0.3 -> 2.0.4
databases/pear-Horde_HashTable 1.1.2 -> 1.1.3
devel/pear-Horde_Icalendar 2.0.8 -> 2.0.9
graphics/pear-Horde_Image 2.0.8 -> 2.1.0
mail/pear-Horde_Imap_Client 2.20.0 -> 2.23.1
mail/pear-Horde_ListHeaders 1.1.2 -> 1.1.5
mail/pear-Horde_Mapi 1.0.2 -> 1.0.3
mail/pear-Horde_Mime 2.3.5 -> 2.4.2
security/pear-Horde_Secret 2.0.2 -> 2.0.3
mail/pear-Horde_Smtp 1.5.0 -> 1.5.2
net/pear-Horde_Socket_Client 1.1.1 -> 1.1.2
textproc/pear-Horde_Text_Diff 2.0.2 -> 2.1.0
net/pear-Horde_Url 2.2.2 -> 2.2.3
devel/horde-content 2.0.3 -> 2.0.4
www/horde-base 5.1.6 -> 5.1.7
mail/horde-imp 6.1.7 -> 6.1.8
mail/horde-ingo 3.1.4 -> 3.1.5
deskutils/horde-kronolith 4.1.5 -> 4.1.6
deskutils/horde-nag 4.1.4 -> 4.1.5
mail/horde-turba 4.1.4 -> 4.1.5
mail/horde-webmail 5.1.4 -> 5.1.5
deskutils/horde-groupware 5.1.4 -> 5.1.5
|
|
|
|
|
|
|
|
|
|
|
| |
radio control based on hamlib libraries, DX cluster connection, band map,
QRZ.com/HamQTH.com callbook (XML access), IOTA support, a grayliner,
propagation indicator, xplanet support (maps in azimuthal projection centered
in your QTH), OK1RR free QSL manager database etc.
Reviewed by: db, skreuzer
Approved by: db, skreuzer (mentors)
Differential Revision: https://phabric.freebsd.org/D313
|
|
|
|
|
|
|
| |
Reviewed by: db, skreuzer
Approved by: db, skreuzer (mentors)
MFH: 2014Q3
Differential Revision: https://phabric.freebsd.org/D362
|
|
|
|
| |
Approved by: portmgr (bapt, blanket)
|
|
|
|
| |
Approved by: portmgr (bapt, blanket)
|
| |
|
|
|
|
|
| |
PR: ports/191484
Submitted by: C. Hutchinson <portmaster@bsdforge.com> (maintainer)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Quisk can control the HiQSDR.
- As a receiver it can use the SDR-IQ by RfSpace as a sample source.
- As a receiver it can use your soundcard as a sample source.
- Quisk can control SoftRock hardware for both receive and transmit.
- As a transmitter it can accept microphone input and send that to your
transmitter for SSB operation. For CW, QUISK can mute the audio and
substitute a side tone.
PR: ports/190366
Submitted by: Stephen Hurd <shurd@FreeBSD.org>
Reviewed by: db, skreuzer
Approved by: db, skreuzer (mentors)
Differential Revision: https://phabric.freebsd.org/D301
|
|
|
|
|
|
| |
- Convert USE_BZIP2 to USES
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
| |
- Convert USE_BZIP2 to USES
Approved by: portmgr blanket
|
|
|
|
|
|
|
| |
- Add stage support
PR: ports/191474
Submitted by: Sven Mohr <svmohr@gmail.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Portaudio support
Improved AGC
Voice squelch
Spur removal
Support for the rtlsdr library
Reviewed by: db, skreuzer
Approved by: db, skreuzer (mentors)
|
|
|
|
|
|
| |
- Added shebangfix to USES
Approved by: maintainer (db@)
|
|
|
|
| |
- Remove xforms dependency from graphics/qslim.
|
|
|
|
|
|
| |
- fix LIB_DEPENDS to use new libFOO.so form hidden in OPTIONS
- change to hamradio@ for MAINTAINER
- use shebang fix
|
|
|
|
| |
Approved by: db (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Make build with Clang
- Add LICENSE
- USES_GNOME=gnomehack -> USES=pathfix
- Bump PORTREVISION
PR: 191241
Submitted by: shurd
Reviewed by: skreuzer
Approved by: db, skreuzer (mentors)
|
|
|
|
|
|
|
|
|
|
|
| |
Switch to USE= libtool
Switch from CONFIGURE_ARGS to CFLAGS
Update MAINTAINER to hamradio@
PR: 191242
Submitted by: shurd
Reviewed by: skreuzer
Approved by: sb, skreuzer (mentors)
|
|
|
|
|
|
|
| |
Change maintainer to hamradio@ (per db@)
Reviewed by: skreuzer
Approved by: db, skreuzer (mentors)
|
|
|
|
|
|
|
|
|
|
|
| |
- FTdx1200, TT599, FT847, IC756 modes
- RTS/DTR restore
- TT550 split
- Disable meter averaging
- ic7000 improvements
Reviewed by: skreuzer, db
Approved by: db, skreuzer (mentors)
|
|
|
|
| |
Approved by: portmgr (myself)
|
|
|
|
|
| |
- Stagify
- change MAINTAINER to team hamradio@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Change the sample configuration file to have same behaviour as
old startup script did by default
While here:
- Make strip command silent
- Fix some staging glitches
- Use new @sample directive
PR: 191361 [1]
Submitted by: timp87@gmail.com
|
| |
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
|
|
| |
This port was removed August 2011 for lack of a public distfile. It's
been cleaned up and the distfile has a new home. Pass maintainership
to submitter.
PR: 188971
Submitted by: Chris Hutchinson
|
|
|
|
|
|
| |
This ports needs way more work
With hat: portmgr
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This release only adds a useless manpage (not installed).
Added a DOCS option to install the documentation (previously not installed)
Reviewed by: skreuzer
Approved by: db, skreuzer (mentors)
|
|
|
|
|
|
| |
PR: 191050
Submitted by: alfred@
Approved by: maintainer (Bob Frazier, <bobf@mrp3.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Use kmod, so add staging support.
- Fix license support (BSD2CLAUSE)
- Fix packaging as user
- Add support for device IDs 0x0010, 0x0042, 0x0043
- Remove superfluous Makefile variables (NO_PACKAGE, SSP_UNSAFE, MAKE_ENV,
PREFIX, SRCPREFIX, NO_MTREE)
- Remove support for FreeBSD < 8
- Fix WWW line in pkg-descr
- Bump PORTREVISION
PR: ports/189621
Submitted by: maintainer (Bob Frazier, <bobf@mrp3.com>)
|
|
|
|
| |
Approved by: portmgr (implicit)
|
|
|
|
|
|
| |
Resulting package is identical
Submitted by: Kimmo Paasiala <kpaasial@icloud.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When run in command line "-n" mode (display new program and/or configuration
files), TQSL could exit before the hheck was completed. Change the behavior
so the program waits for the check to complete.
Signing a log with a location that points to an incomplete certificate
request would cause an "Invalid argument" error rather than the expected
error message notify the user that they have no valid callsign certificates
for that callsign. TQSL now properly displays the error.
Don't display the main TQSL window when requesting the user enter
the password for their callsign certificate when in batch mode.
Add timestamps to diagnostic log entries.
PR: 191233
Submitted by: shurd
Reviewed by: skreuzer
Approved by: db, skreuzer (mentors)
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
Approved by: db, skreuzer (mentors)
|
|
|
|
|
|
|
|
|
|
|
|
| |
nec2c core which it uses for reading input files and calculating output data,
but it does not need and indeed does not produce an output file by default.
Graphs of frequency-related data and the current or charge distribution
evolve as the frequency loop progresses, and radiation patterns (far and
near field) are sequentially drawn for each frequency step.
PR: ports/190815
Submitted by: shurd@FreeBSD.org
Approved by: db, skreuzer (mentors)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
- the ARRL licence is a 6 part BSD
PR: ports/190172
Submitted by: shurd
|
|
|
|
|
|
|
| |
instead, these two ports are now equal.
Bump PORTREVISIONs
Approved by: portmgr (antoine)
|
|
|
|
| |
Approved by: portmgr@
|
|
|
|
| |
Approved by: portmgr@
|
|
|
|
|
|
|
|
|
|
|
| |
Sylvio's last commit was 17 months ago, a full 5 months after all of his
ports could have been reset per policy. Given the push to complete
staging (48 ports are still unstaged, something like 70+ have already
been staged by other committers) and given that PRs are automatically
assigned but never addressed, it's better just to reset all the ports and
PRs so that it's clear to others that these ports are free to maintain.
Approved by: portmgr (implicit)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS. Also remove references to
PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
required additional patches.
Somewhat simplified a linker command line looks like:
${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}
where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us. If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.
Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.
PR: 190592
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
|
|
|
| |
Starting with perl 5.20, they're not installed any more if empty,
and on FreeBSD, they're (always ?) empty.
PR: 190681
Submitted by: mat
Exp-Run by: antoine
Sponsored by: Absolight
|
|
|
|
|
|
|
| |
minor COMMENT typos and surrounding whitespace fixes. Categories A-C.
CR: D196
Approved by: portmgr (bapt)
|
| |
|
|
|
|
| |
- add staging whilst here
|
| |
|
|
|
|
| |
- Remove some PORT_OPTIONS conditionals not needed with staging
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
| |
PR: 190598
Submitted by: maintainer
|
|
|
|
| |
PR: 189698
|
|
|
|
| |
PR: 189697
|
|
|
|
|
| |
- Needs USES=libtool, drop la file
- Bump affected comms/efax-gtk (library name changed)
|
|
|
|
|
|
|
| |
WWW: https://github.com/gordonjcp/lysdr
PR: ports/190549
Submitted by: shurd@sasktel.net
|
|
|
|
|
|
|
|
| |
remote controls. congruity builds upon the work of the concordance project,
which provides the underlying communication.
PR: ports/190548
Submitted by: Stephen Hurd <shurd@sasktel.net>
|
|
|
|
|
|
|
|
|
|
|
| |
remote using a configuration object retreived from the harmony website. The
Logitech Harmony is a highly configuration universal remote than can control
most multimedia devices.
This port contains the Python bindings for the concordance framework.
PR: ports/190547
Submitted by: Stephen Hurd <shurd@sasktel.net>
|
|
|
|
|
|
|
|
|
| |
remote using a configuration object retreived from the harmony website. The
Logitech Harmony is a highly configuration universal remote than can control
most multimedia devices.
PR: ports/190546
Submitted by: Stephen Hurd <shurd@sasktel.net>
|
|
|
|
|
|
|
|
|
|
|
| |
remote using a configuration object retreived from the harmony website. The
Logitech Harmony is a highly configuration universal remote than can control
most multimedia devices.
This port contains the C Libraries for the concordance framework.
PR: ports/190545
Submitted by: Stephen Hurd <shurd@sasktel.net>
|
|
|
|
|
|
|
|
|
|
| |
The code to decode the radio signal, date/time, and civil warnings is now
provided in a library libdcf77.so together with the relevant header files.
dcf77pi is now split up into dcf77pi (the live client) and dcf77pi-analyze
(the client to analyze log files). The -f parameter of dcf77pi is dropped.
Apply minor lint(1) fixes.
|
|
|
|
| |
- Fix a bug that didn't show up because bsd.port.pre.mk is not included
|
|
|
|
|
|
|
| |
The default extract target can be used if NO_WRKSUBDIR is set. The
only unique command is the gunzip, which works well as a post-extract
target. This eliminates the undefined use of EXTRACT_CMD to ensure
the port keeps working in the future.
|
| |
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Maintainers for these ports have been notified on 5 separate occasions
over the course of several months about pending actions required.
We really appreciate the time and effort you put in to maintain
these ports.
If you are still interested in helping to maintain these ports just
reply to me or file a PR and I will happily assign the port to you
again.
Approved by: portmgr (implicit)
|
|
|
|
|
| |
PR: 190188
Submitted by: maintainer
|
|
|
|
|
| |
PR: 190187
Submitted by: maintainer
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.15.1 -> 2.16.1
devel/pear-Horde_Alarm 2.2.0 -> 2.2.1
devel/pear-Horde_Argv 2.0.8 -> 2.0.9
security/pear-Horde_Auth 2.1.3 -> 2.1.4
archivers/pear-Horde_Compress 2.0.7 -> 2.0.8
security/pear-Horde_Crypt 2.4.2 -> 2.4.3
devel/pear-Horde_Data 2.0.4 -> 2.0.5
devel/pear-Horde_Date 2.0.9 -> 2.0.10
www/pear-Horde_Dav 1.0.4 -> 1.0.6
databases/pear-Horde_Db 2.1.1 -> 2.1.2
devel/pear-Horde_History 2.3.0 -> 2.3.1
graphics/pear-Horde_Image 2.0.7 -> 2.0.8
mail/pear-Horde_Imap_Client 2.19.6 -> 2.20.0
devel/pear-Horde_Itip 2.0.5 -> 2.0.6
mail/pear-Horde_ListHeaders 1.1.1 -> 1.1.2
devel/pear-Horde_Lock 2.1.0 -> 2.1.1
mail/pear-Horde_Mail 2.2.0 -> 2.3.0
mail/pear-Horde_Mime 2.3.4 -> 2.3.5
mail/pear-Horde_Mime_Viewer 2.0.6 -> 2.0.7
devel/pear-Horde_Nls 2.0.3 -> 2.0.4
mail/pear-Horde_Smtp 1.4.1 -> 1.5.0
devel/pear-Horde_Token 2.0.4 -> 2.0.5
|
| |
|
|
|
|
|
| |
- Add LICENSE.
- Use @sample in plist.
|
|
|
|
| |
Submitted by: tijl@
|
|
|
|
| |
Approved by: portmgr@
|
|
|
|
| |
Approved by: portmgr@
|
|
|
|
| |
Approved by: portmgr@
|
|
|
|
| |
Approved by: portmgr@
|
|
|
|
| |
Approved by: portmgr@
|
| |
|
|
|
|
|
| |
PR: ports/190000
Submitted by: Bartek Rutkowski <ports at robakdesign.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to "USES=libtool tar:bzip2". Bump PORTREVISION on all dependent ports
and modernise them as well (USES, LIB_DEPENDS, staging).
audio/pidgin-musictracker:
- Replace LIBS with LDFLAGS.
- Disable static plugin.
net/online-desktop: Remove obsolete patches.
net-im/mbpurple:
- Drop pkgconf dependency.
- Replace post-patch with MAKE_ARGS.
- Use standard do-build.
net-im/pidgin-audacious-remote: Disable static plugin.
net-im/pidgin-birthday-reminder: Disable static plugin.
net-im/pidgin-fetion: Replace pkg-plist with PLIST_FILES.
net-im/pidgin-guifications:
- Drop USE_GNOME=gnomeprefix.
- Replace LIBS with LDFLAGS.
net-im/pidgin-hotkeys:
- Drop CFLAGS=-fPIC.
- Fix build on systems without gcc.
net-im/pidgin-libnotify:
- Use option helpers.
- Drop references to PTHREAD_CFLAGS and PTHREAD_LIBS.
net-im/pidgin-manualsize: Fix build on systems without gcc.
net-im/pidgin-privacy-please:
- Replace a patch with CPPFLAGS and LDFLAGS.
- Don't use USE_LDCONFIG for a plugin.
net-im/pidgin-sipe:
- Don't use USE_LDCONFIG for a plugin.
- Drop PORTDOCS that don't contain useful documentation.
- Patch configure with s/LDLAGS/LDFLAGS/ so LDFLAGS can replace LIBS.
- Use option helpers and fix Kerberos option.
- Remove obsolete CONFIGURE_ENV.
security/pidgin-encryption:
- Drop references to PTHREAD_CFLAGS and PTHREAD_LIBS.
- Disable static plugin.
- Use option helpers.
security/pidgin-otr:
- Drop redundant comment about PORTREVISION.
- Add USE_GNOME=gtk20.
- Drop references to PTHREAD_CFLAGS and PTHREAD_LIBS.
- Port uses stack protector unconditionally so link with -lssp_nonshared
when necessary like Mk/bsd.ssp.mk does.
Approved by: portmgr (PORTREVISION bump on unstaged port)
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.14.1 -> 2.15.1
devel/pear-Horde_Icalendar 2.0.7 -> 2.0.8
mail/pear-Horde_Imap_Client 2.19.5 -> 2.19.6
devel/pear-Horde_View 2.0.3 -> 2.0.4
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Stage support,
Update master site
From me:
Convert to USES=tgz
Remove check for unsupported FreeBSD version
PR: ports/189640
Submitted by: Nicole Reid <root@cooltrainer.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
General:
- the maxzero and maxone parameters are now determined dynamically, remove
them from config.txt and README.md
- Do not consider time offset jumps if bit 17 and 18 are equal
readpin:
- add a -q parameter to suppress displaying of the raw signal (default off)
- display updates
dcf77pi:
- display updates/fixes, show radio state
(OK if no receive/transmit/random errors)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.14.0 -> 2.14.1
www/pear-Horde_Browser 2.0.6 -> 2.0.7
devel/pear-Horde_Cache 2.4.2 -> 2.5.0
www/pear-Horde_Feed 2.0.1 -> 2.0.2
www/pear-Horde_Http 2.1.0 -> 2.1.1
mail/pear-Horde_Imap_Client 2.19.2 -> 2.19.5
mail/pear-Horde_Mail 2.1.6 -> 2.2.0
mail/pear-Horde_Mime 2.3.0 -> 2.3.4
devel/pear-Horde_Prefs 2.5.2 -> 2.6.0
textproc/pear-Horde_Text_Filter 2.2.0 -> 2.2.1
devel/pear-Horde_Util 2.3.0 -> 2.4.0
devel/horde-timeobjects 2.0.4 -> 2.1.0
|
| |
|
|
|
|
|
|
|
| |
deskutils/kdepim4:
- Remove no longer needed patch, the problem was fixed since Qt 4.8.4.
The area51 repository features commits by rakuco and makc.
|
| |
|
|
|
|
| |
- Don't install .la files
|
|
|
|
| |
Approved by: portmgr
|
| |
|
|
|
|
|
| |
PR: ports/188593
Submitted by: Bartek Rutkowski <ports@robakdesign.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/spandsp-devel
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Strip library
- Fix typo
deskutils/kupfer
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Change install, cosmetical changes
deskutils/rubrica
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use tar:bzip2 instead of USE_BZIP2=yes
- Strip libraries
- Change REINPLACE and install, cosmetical changes
graphics/Hermes
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use tar:bzip2 instead of USE_BZIP2=yes
- Don't silence warnings
- Remove TODO and TODO.conversion from DOCS
- Strip library
graphics/aoi
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/autoq3d
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/box
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS
graphics/boxer
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
graphics/cbrpager
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/cbview
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/cbviewer
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/eos-movrec
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Change pkg-plist, remove mtree
graphics/evolvotron
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Break lines around 80 characters
graphics/fracplanet
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS
- Change Desktop entry file
- Break lines around 80 characters
graphics/gnofract4d
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/icon-slicer
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use the new format for LIB_DEPENDS
- Remove TODO from DOCS
graphics/lcdtest
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Simplify dependency for x11-fonts/liberation-fonts-ttf
graphics/multican
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS
graphics/photopc
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
graphics/pngcheck
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/pngwriter
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
graphics/pstoedit
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Strip libraries
graphics/skencil
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
- Strip libraries
misc/boxes
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
- Mute RM and MKDIR
misc/explosions
- Bump PORTREVISION for MAINTAINER change
- Remove FTP master site
- Reset maintainer to ports@
misc/wmweather+
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Use the new format for LIB_DEPENDS
multimedia/dvdauthor
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Remove TODO from DOCS
multimedia/dvdid
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Strip library
multimedia/freetuxtv
- Change Makefile header, use my name and @FreeBSD.org email
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
multimedia/gtk-youtube-viewer
- Change Makefile header, use my name and @FreeBSD.org email
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Break lines around 80 characters
net/wlan2eth
- Bump PORTREVISION for MAINTAINER change
- Reset maintainer to ports@
- Cosmetical changes
|
|
|
|
|
|
| |
PR: ports/188824
Submitted by: Bartek Rutkowski <ports@robakdesign.com>
Approved by: portmgr@ (blanket)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
ham radio use. The project also includes Qtel, an EchoLink client GUI
application.
WWW: http://sourceforge.net/apps/trac/svxlink/
This replaces the earlier and removed comms/qtel port.
PR: ports/188452
Submitted by: Stephen Hurd <shurd@sasktel.net>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la. So everything that subsequently links with libA will also
link to these extra libraries. This causes too much overlinking.
This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging. However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.
So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).
PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries. Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field. In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.
PR: ports/188759
Exp-run: bdrewery
Approved by: portmgr (bdrewery)
|
|
|
|
| |
Use options helpers
|
|
|
|
| |
Thanks to: swills
|
|
|
|
|
| |
magic and a pkg-message. Rename patches to avoid
forbidden characters. Use @sample.
|
|
|
|
| |
PORTEXAMPLES to examples, use WWWDIR, use @sample.
|
| |
|
|
|
|
|
|
|
| |
- Provide a better fix for staging (r345307): passing --prefix is redundant
as configure script is actually autotools-generated one (HAS_CONFIGURE was
wrongly used instead of GNU_CONFIGURE)
- Make use of the new @sample keyword in pkg-plist; kill unneeded patches
|
|
|
|
|
|
| |
Horde_ActiveSync 2.13.4 -> 2.14.0
Horde_Image 2.0.6 -> 2.0.7
Horde_Mime_Viewer 2.0.5 -> 2.0.6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.
Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.
Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.
Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.
Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics
Thanks to: all testers, bdrewery and the FreeBSD x11@ team
exp-run by: bdrewery [1]
PR: ports/187602 [1]
Approved by: portmgr (bdrewery), core (jhb)
|
|
|
|
|
|
| |
PR: ports/188592
Submitted by: Bartek Rutkowski <ports@robakdesign.com>
Approved by: Craig Butler <craig@bsdtec.com> (maintainer, different email)
|
|
|
|
|
| |
PR: ports/188577
Submitted by: Stephen Hurd <shurd@sasktel.net> (maintainer)
|
|
|
|
|
|
|
|
| |
* bug fixed system segfault when BSR is activated when no BSR was received
* bug fixed in FTP upload when using Filezilla ftp server
PR: ports/188571
Submitted by: Stephen Hurd <shurd@sasktel.net> (maintainer)
|
|
|
|
|
|
|
| |
- Mention the "backspace" key in README.md
- Reset DST and leap second announcements at the next hour
- Detect sudden jumps to non-DST
- Relax conditions for processing a DST change
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- stage support
Version 1.00 - 20-JUL-2013
* Minor updates to the documentation
* Fixed Makefile problem with fl_moxgen_defines.h
* Be sure Calculate was pressed before generating outputs
* Be sure wire size input was entered prior to Calculate
* Check legal value of AWG input
PR: ports/188538
Submitted by: Stephen Hurd <shurd@sasktel.net> (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
=Version 1.3.15=
2013-12-02 David Freese <w1hkj@w1hkj.com>
3422195: 64 bit void pointer
fa317c3: tty search
7732b22: TT566
6964cb6: TS590S/TS990S/TS2000 controls
5b340a9: FTdx1200
e199a62: Send cmd debug
718f46f: TS-990
05898d5: Sliders
c13a20e: Notch controls
86f1d0b: 7600 split
9f08704: Restore debug
PR: ports/188537
Submitted by: maintainer
|