aboutsummaryrefslogtreecommitdiffstats
path: root/comms
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicate plistantoine2014-11-161-3/+0
|
* (Attempt to) fix build on head after removal of @ symlink. (r274184)nox2014-11-151-8/+16
| | | | Submitted by: beefy1 via pkg-fallout
* Cleanup plistantoine2014-11-134-11/+4
|
* - Don't use a strange prefixantoine2014-11-122-11/+10
| | | | - Strip shared libraries
* Update to latest (3.1)shurd2014-11-092-4/+4
| | | | | | | | | | | | | 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
* - Update to 2.9p8ak2014-11-084-88/+18
| | | | | | | | | - Add OWMUTEXDEBUG option - Add USE_LDCONFIG - Fix USES=tk syntax PR: 194261 Submitted by: johan@stromnet.se (maintainer)
* Replace some occurences of mach with PERL_ARCH (and a couple of other small ↵mat2014-11-071-1/+1
| | | | | | | noop fixes.) With hat: perl@ Sponsored by: Absolight
* Update to 3.6.19.shurd2014-11-073-15/+3
| | | | | | | | | | | 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
* Fix INDEX after r372179.rakuco2014-11-051-0/+1
| | | | | | | | | | - 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
* Update Qt5 ports to 5.3.2.rakuco2014-11-052-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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]
* Horde package update:mm2014-11-052-3/+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
* (Attempt to) fix build on head.nox2014-10-311-0/+20
| | | | Submitted by: beefy1 via pkg-fallout
* Horde package update:mm2014-10-302-3/+3
| | | | | | | | | | | | | | | | | | | | 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
* Drop maintainership of all remaining ports where I am listed.anders2014-10-301-1/+1
| | | | No time for this unfortunately.
* Mark BROKEN: Fails to configureantoine2014-10-301-0/+2
| | | | | | | | | | | | | | | | | | | | 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
* comms/gqrx: update 20140313 -> 2.3.1robak2014-10-254-37/+33
| | | | | | | | | | | | | - 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)
* - libirman is no longer only a static lib so move it from build to libnox2014-10-251-3/+3
| | | | | | | depends. - Bump PORTREVISION. Reported by: Henry Hu <henry.hu.sh@gmail.com> (via private email)
* Fix compilation after recent numpy patch.demon2014-10-232-0/+2
| | | | Patch by thierry@FreeBSD.org, pointed out by antoine.
* Horde package update:mm2014-10-202-3/+3
| | | | | | | | | | | 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
* Cleanup plistbapt2014-10-20100-591/+17
|
* Add USES=alias to several portsmarino2014-10-202-2/+2
| | | | | | | | 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)
* KDE/FreeBSD team presents KDE SC 4.14.2 and KDE Workspace 4.11.13!makc2014-10-193-13/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* - Convert ports from cad/, chinese/, comms/ and converters/ to newmva2014-10-1910-25/+17
| | | | | | USES=python Approved by: portmgr (implicit)
* Ignore on the package builders when the default version of python is differentantoine2014-10-181-0/+4
| | | | | | from the requested one Reported by: pkg-fallout
* - Update to 1.3.17shurd2014-10-182-5/+4
| | | | | | | | - 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
* - modernise Makefile, fix pkg-descrdb2014-10-155-19/+16
| | | | | | | | - 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.
* Remove @dirrm/@dirrmty from my portsmartymac2014-10-132-10/+0
|
* - delete bogus old patchdb2014-10-091-11/+0
|
* Clean up pkg-plist of my ports.rene2014-10-091-2/+0
|
* comms/wsjt: switch from py-imaging to py-pillowwg2014-10-091-2/+2
| | | | | With hat: python Approved by: portmgr (bdrewery, implicit)
* Fix build with gmake 4.1bapt2014-10-081-0/+1
|
* - update to the version 4 branchdb2014-10-088-132/+494
| | | | - add LICENSE
* - Remove USE_AUTOTOOLStijl2014-10-052-14/+14
| | | | | - Replace CONFIGURE_ARGS with CPPFLAGS/LIBS - Use default do-install
* comms/wspr: switch from py-imaging to py-pillowwg2014-10-042-4/+14
| | | | | | | - USES python With hat: python Reviewed by: portmgr (bdrewery, implicit)
* - Remove :build from USES=libtool because this port does not needtijl2014-10-011-3/+3
| | | | | /usr/local/bin/libtool - Don't replace -lpthread with -pthread because they are the same
* Convert to USES=hordebapt2014-10-012-6/+4
| | | | | Fix pear-Horde_core options Use options helpers where possible
* - Update libplist to 1.11.avilla2014-09-2915-117/+121
| | | | | | | | | | | - 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.
* - Don't remove mtree directoryamdmi32014-09-261-1/+0
| | | | Approved by: portmgr blanket
* - Set CPPFLAGS and LIBS in a number of ports so configure can find libintl.htijl2014-09-251-2/+4
| | | | | | | | | | | | | | | | | | 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)
* comms/libmodbus: strip a library while install and remove @dirrmtry'sbsam2014-09-222-2/+1
|
* Simplify plistbapt2014-09-221-5/+4
|
* - Update to version 0.8pawel2014-09-212-5/+5
| | | | | | | - Give maintainership to submitter PR: ports/193635 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
* Remove expired portsrene2014-09-204-32/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* - Update comms/dcf77pi to version 3.2.0rene2014-09-184-27/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* Convert to USES=autoreconftijl2014-09-181-4/+2
|
* Remove old libtool patchtijl2014-09-181-3/+0
|
* Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.tijl2014-09-171-1/+2
| | | | | | | There are only 60 such ports so there doesn't need to be a separate keyword or USES for this. Approved by: portmgr (bapt)
* comms/spandsp-devel:tijl2014-09-144-16/+9
| | | | | | | | - 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
* Use default LIBTOOLIZE_ARGStijl2014-09-143-3/+0
|
* devel/glib12 x11-toolkits/gtk12:tijl2014-09-131-1/+1
| | | | | | | - 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
* - Remove USE_AUTOTOOLS=libtooltijl2014-09-121-5/+3
| | | | - Convert to USES=python
* Update the default version of GCC in the Ports Collection from GCC 4.7.4gerald2014-09-1122-11/+22
| | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
* - Allow staging as a regular userantoine2014-09-102-3/+8
| | | | - Shebangfix
* Horde package update:mm2014-09-092-3/+3
| | | | | | | 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
* Allow staging as a regular userantoine2014-09-091-1/+0
|
* comms/ncid: Upgrade version 0.89 => 1.0marino2014-09-072-7/+9
| | | | | PR: 193345 Submitted by: maintainer (Carlos JPM)
* Stage comms/pr and assign maintainership to submittermarino2014-09-073-16/+38
| | | | | | | | The source files were no longer available, so the submitter is also hosting those. PR: 192878 Submitted by: Chris Hutchinson
* Horde package update:mm2014-09-062-3/+3
| | | | | | | | | | 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
* Allow staging as a regular userantoine2014-09-061-1/+1
|
* Change INSTALL_DATA to install with mode 644antoine2014-09-051-4/+0
| | | | | | | | | | 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
* Fix packagingantoine2014-09-032-1/+2
|
* Switch to USES=python for my portsmartymac2014-09-031-2/+1
|
* Simplify plistbapt2014-09-031-2/+1
|
* Replace @exec/unexec by @dirrmtry which does the same jobbapt2014-09-031-2/+1
|
* Fix packaging as a userbapt2014-09-022-11/+6
|
* Add USES=libtool to accessibility/atkmm and bump dependent portstijl2014-09-021-0/+1
|
* Remove non staged ports without pending PR from c*bapt2014-09-0111-336/+0
|
* - Update to 3.7.4db2014-09-0116-814/+991
| | | | | | | | | | | | | | - 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
* math/fftw3:tijl2014-09-018-6/+8
| | | | | | | - Add USES=libtool and bump dependent ports - Add INSTALL_TARGET=install-strip - Remove PTHREAD_CFLAGS and PTHREAD_LIBS - Use MAKE_CMD
* - Switch comms/spandsp-devel to USES=libtool, drop .la filesamdmi32014-08-272-7/+5
| | | | | | | | - 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
* - Switch to USES=libtool, drop .la filesamdmi32014-08-272-3/+6
| | | | | | - Strip libraries Approved by: portmgr blanket
* Horde package update:mm2014-08-272-3/+3
| | | | | comms/pear-Horde_ActiveSync 2.17.0 -> 2.18.0 devel/pear-Horde_Core 2.13.0 -> 2.13.1
* - Fix missing library problems when the linker enforces explicit linkingtijl2014-08-261-1/+1
| | | | | | PR: 192062 Exp-run by: antoine Approved by: portmgr (antoine)
* - Update MAINTAINERsunpoet2014-08-231-1/+1
| | | | | PR: ports/192902 Submitted by: Carlos Jacobo Puga Medina <cpm@fbsd.es> (maintainer)
* Fix up missed or botched PORTREVISION bumps from r365599.mandree2014-08-221-0/+1
| | | | | | Apparently Tools/scripts/bump-revision.sh isn't too robust... PR: 192690
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.mandree2014-08-222-3/+4
| | | | | | | | | | | | | | | | | | | | | | - 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)
* Allow staging as a regular userantoine2014-08-221-0/+2
|
* Horde package update:mm2014-08-212-3/+3
| | | | | | 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
* - Drop .la files, no dependees require themamdmi32014-08-212-4/+2
| | | | Approved by: portmgr blanket
* - Drop .la files, no dependees require themamdmi32014-08-202-3/+2
| | | | Approved by: portmgr blanket
* many ruby/rubygem ports: death of rubyforge.orgswills2014-08-191-0/+3
| | | | | | | | | | | | | | | | | | 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)
* Convert most NO_INSTALL_MANPAGES to USES=imake:nomanantoine2014-08-191-7/+1
| | | | With hat: portmgr
* math/gsl:tijl2014-08-171-1/+1
| | | | | | | - Add USES=libtool and bump dependent ports - Add USES=pathfix and INSTALL_TARGET=install-strip Approved by: portmgr (implicit, bump unstage port)
* Fix build on -current.adamw2014-08-171-3/+12
|
* Add new port comms/owfsmarino2014-08-166-0/+386
| | | | | | | | | | | 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, ...
* Upgrade OpenEXR and ilmbase to 2.2.0.mandree2014-08-161-0/+1
| | | | | | | | | | | | | | | | | | | 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)
* - Switch comms/libmodbus to USES=libtool, drop .la filesamdmi32014-08-162-3/+4
| | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket
* - Drop .la files, no dependees require themamdmi32014-08-162-1/+3
| | | | Approved by: portmgr blanket
* Add new port comms/telldus-coremarino2014-08-1520-0/+380
| | | | | | | | | | | | | 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.
* Unbreakantoine2014-08-131-0/+1
| | | | Reported by: pkg-fallout since a few weeks
* Modernize USE_PYTHON to USES+=python.mandree2014-08-121-2/+1
| | | | Approved by: portmgr (implicit)
* - Switch back to CFLAGS/LDFLAGS to fix configure in py-libimobiledevicetijl2014-08-123-8/+10
| | | | | | | after r364564 [1] - Convert to USES=libtool Reported by: antoine [1]
* comms/lirc:tijl2014-08-113-19/+18
| | | | | | | | | - Fix missing -lusb [1] - Convert to USES=libtool and bump dependent ports - Add INSTALL_TARGET=install-strip - Use @sample Reported by: sbruno [1]
* Canonicalize some old USE_PY*antoine2014-08-111-6/+6
| | | | With hat: portmgr
* Fix problems with missing libs when the linker enforces explicit linkingtijl2014-08-113-16/+16
| | | | | | (a* to d* categories) PR: 192062
* Update devel/doxygen to 1.8.7antoine2014-08-106-361/+353
| | | | | | | | Update dependent ports to build with it Most of work by: pi@ Exp-run: self PR: ports/190943
* Stage comms/twpsk and assign maintainship to submittermarino2014-08-0910-158/+30
| | | | | PR: 192496 Submitted by: takefu (airport.fm)
* - Fix plistamdmi32014-08-071-5/+0
| | | | Approved by: portmgr blanket
* - Switch to USES=libtoolamdmi32014-08-062-3/+6
| | | | Approved by: portmgr blanket
* Horde package update:mm2014-08-052-3/+3
| | | | | | | | | | | | | | | | | | | | 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
* Fix build on newer FreeBSD versions, and with clang.adamw2014-08-052-12/+16
|
* - Switch graphics/GraphicsMagick to USES=libtool, drop .la filesamdmi32014-08-051-1/+1
| | | | | | | | - Bump dependent ports as .so version has changed - Fix distinfo for graphics/cmg - Fix shebang for graphics/vips Approved by: portmgr blanket
* devel/libftdi: USES=libtool, fix build, bump dependenciespi2014-08-032-1/+2
| | | | | | | | | | | comms/linrad comms/lirc devel/urjtag devel/openocd sysutils/lcdproc sysutils/flashrom devel/xc3sprog is already bumped via PR 188055
* comms/ncid: Upgrade version 0.84 => 0.89 and stagemarino2014-08-013-56/+112
| | | | | | | Also identify LICENSE and assign maintainership to submitter PR: 192179 Submitted by: Carlos JPM
* security/libgcrypt: 1.5.3_3 -> 1.6.1pi2014-07-301-0/+1
| | | | | | | | | | | | | | | | | | | | | - 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)
* Convert some more USE_BZIP2 to USES=tar:bzip2adamw2014-07-303-3/+3
| | | | Approved by: portmgr (not really, but touches unstaged ports)
* - Stage wsjtdb2014-07-305-11/+6154
| | | | - unbreak build
* Convert a bunch of EXTRACT_SUFX=... into USES=tar:...adamw2014-07-3010-20/+10
| | | | Approved by: portmgr (not really, but touches unstaged ports)
* Convert a bunch of USE_BZIP2 to USES=tar:bzip2adamw2014-07-307-14/+7
| | | | Approved by: portmgr (not really, but touches unstaged ports)
* Rename all patches that contain '::' as a path separator, and useadamw2014-07-3015-0/+0
| | | | '__' instead.
* Rename comms/ patch-xy patches to reflect the files they modify.adamw2014-07-2838-2/+2
|
* Stage comms/qpagemarino2014-07-275-17/+12
| | | | | | | | | | | | 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
* - Switch to USES=libtool, drop .la filesamdmi32014-07-241-1/+1
| | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket
* Reset maintainership for ports not staged with no pending PRbapt2014-07-245-5/+5
| | | | With hat: portmgr
* Fix LIB_DEPENDSantoine2014-07-221-1/+1
|
* Add USES=readline to fix configure.adamw2014-07-221-2/+1
|
* Fix build on head without shared readline.madpilot2014-07-211-1/+1
| | | | MFH: 2014Q3
* comms/dcf77pi: apply upstream patch to fix display bug when realfreq is resetrene2014-07-212-0/+24
|
* Fix LIB_DEPENDSantoine2014-07-211-1/+1
|
* Fix TQSL issues when build with Clang (previous patches were not enough)shurd2014-07-199-62/+204
| | | | | | | | | | | | | 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
* Copy the version matching the port to my public_distfilesshurd2014-07-171-1/+3
| | | | | | and set MASTER_SITES to local for now. Will fix this soon. PR: ports/191871
* Add OPTIONS_DEFINE=DOCS for ports with %%PORTDOCS%% in the plist.adamw2014-07-1619-5/+37
| | | | | | | 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.
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.adamw2014-07-156-5/+12
|
* comms/dcf77pi: update to 3.1.0, improve pkg-descrrene2014-07-143-4/+6
| | | | | | | | | | | | | | | | | | | | | | | 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
* Horde package update:mm2014-07-132-3/+3
| | | | | comms/pear-Horde_ActiveSync 2.16.9 -> 2.16.11 devel/pear-Horde_Core 2.12.4 -> 2.12.6
* Fix librtlsdr.pcmartymac2014-07-112-1/+10
| | | | Submitted by: David Bjornsson <dabb@lolnet.is>
* - Remove USE_AUTOTOOLS=libtoolsunpoet2014-07-111-1/+1
| | | | | | | - Bump PORTREVISION for package change - Bump PORTREVISION for graphics/gdal shlib change [1] Approved by: portmgr (implicit) [1]
* - Fix builddb2014-07-104-70/+51
| | | | | | | - stagify - reset MAINTAINER Approved by: adrian
* - Add USES=libtool to net/sofia-sip and bump dependent portstijl2014-07-101-1/+1
| | | | - Add INSTALL_TARGET=install-strip
* Horde package update:mm2014-07-082-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* QRLOG is an advanced ham radio logger based on MySQL database. It providesshurd2014-07-0817-0/+670
| | | | | | | | | | | 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
* Fix hashmap macro test to compile with Clangshurd2014-07-081-0/+11
| | | | | | | Reviewed by: db, skreuzer Approved by: db, skreuzer (mentors) MFH: 2014Q3 Differential Revision: https://phabric.freebsd.org/D362
* comms/gnuradio: use WX 3.0wg2014-07-061-3/+3
| | | | Approved by: portmgr (bapt, blanket)
* comms/quisk: use WX 3.0wg2014-07-061-4/+4
| | | | Approved by: portmgr (bapt, blanket)
* comms/hylafax: Add patch for DragonFly support (dports)marino2014-07-051-0/+11
|
* - Add WWW linkculot2014-07-041-0/+2
| | | | | PR: ports/191484 Submitted by: C. Hutchinson <portmaster@bsdforge.com> (maintainer)
* Remove NOPORTEXAMPLES.adamw2014-07-041-2/+2
|
* This is QUISK, a Software Defined Radio (SDR).shurd2014-07-046-0/+71
| | | | | | | | | | | | | | | | - 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
* - Switch to USES=libtool, drop .la filesamdmi32014-07-032-4/+3
| | | | | | - Convert USE_BZIP2 to USES Approved by: portmgr blanket
* - Convert USE_BZIP2 to USESamdmi32014-07-031-2/+1
| | | | Approved by: portmgr blanket
* - Switch to USES=libtool, drop .la filesamdmi32014-07-032-4/+4
| | | | | | - Convert USE_BZIP2 to USES Approved by: portmgr blanket
* - Update maintainer emaildanilo2014-07-032-5/+7
| | | | | | | - Add stage support PR: ports/191474 Submitted by: Sven Mohr <svmohr@gmail.com>
* - hamlib should have been hamradiodb2014-07-021-1/+1
|
* STAGEify and update to 4.00shurd2014-07-0213-72/+273
| | | | | | | | | | | Portaudio support Improved AGC Voice squelch Spur removal Support for the rtlsdr library Reviewed by: db, skreuzer Approved by: db, skreuzer (mentors)
* - Changed Maintainer to hamradio@xride2014-07-011-2/+3
| | | | | | - Added shebangfix to USES Approved by: maintainer (db@)
* - Add USES=libtool to x11-toolkits/xforms and bump dependent ports.tijl2014-07-011-1/+1
| | | | - Remove xforms dependency from graphics/qslim.
* - update to 3.21.83 Maintenance releasedb2014-06-283-16/+13
| | | | | | - fix LIB_DEPENDS to use new libFOO.so form hidden in OPTIONS - change to hamradio@ for MAINTAINER - use shebang fix
* I do hereby claim maintainership of this port on behalf of hamradio@shurd2014-06-281-1/+1
| | | | Approved by: db (mentor)
* - STAGEifyshurd2014-06-289-29/+511
| | | | | | | | | | | | - 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)
* STAGEifyshurd2014-06-287-30/+98
| | | | | | | | | | | 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)
* Fix perl module .packlist and remove perllocal.podshurd2014-06-281-1/+5
| | | | | | | Change maintainer to hamradio@ (per db@) Reviewed by: skreuzer Approved by: db, skreuzer (mentors)
* Update to version 1.3.15shurd2014-06-282-4/+4
| | | | | | | | | | | - FTdx1200, TT599, FT847, IC756 modes - RTS/DTR restore - TT550 split - Disable meter averaging - ic7000 improvements Reviewed by: skreuzer, db Approved by: db, skreuzer (mentors)
* - Chase database/sqlite3 slib bumpmiwi2014-06-281-1/+1
| | | | Approved by: portmgr (myself)
* - Fix builddb2014-06-272-9/+10
| | | | | - Stagify - change MAINTAINER to team hamradio@
* - Modify startup script to let smsd change user by itself [1]madpilot2014-06-274-16/+32
| | | | | | | | | | | | | | - 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
* - Reset maintainershipxride2014-06-261-1/+1
|
* Allow to build with texinfo from portsantoine2014-06-261-1/+1
| | | | With hat: portmgr
* Revive comms/sms_client with stage support and a new maintainermarino2014-06-2612-0/+466
| | | | | | | | | 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
* Convert GMAKE to MAKE_CMDbapt2014-06-251-4/+4
| | | | | | This ports needs way more work With hat: portmgr
* Use MAKE_CMD instead of GMAKEbapt2014-06-251-3/+3
|
* - Remove empty files and directoriesak2014-06-241-0/+0
|
* Update to 2.9.shurd2014-06-243-4/+28
| | | | | | | | 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)
* Add device ID for the Arduino Microrene2014-06-231-0/+1
| | | | | | PR: 191050 Submitted by: alfred@ Approved by: maintainer (Bob Frazier, <bobf@mrp3.com>
* comms/uarduno: modernize Makefile and add device IDs.rene2014-06-233-50/+23
| | | | | | | | | | | | | | | - 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>)
* Bump PORTREVISION for jbigkit library version bump.tijl2014-06-231-1/+1
| | | | Approved by: portmgr (implicit)
* Use plist directives instead of chown to allow build as non-rootjohans2014-06-222-11/+10
| | | | | | Resulting package is identical Submitted by: Kimmo Paasiala <kpaasial@icloud.com>
* Upstream modified the source archive with new features... from the ChangeLog:shurd2014-06-223-4/+4
| | | | | | | | | | | | | | | | | | | | | 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)
* - Switch to USES=libtool, drop .la filesamdmi32014-06-192-2/+3
| | | | Approved by: portmgr blanket
* Update my ports to use my shurd@FreeBSD.org accountshurd2014-06-1914-23/+23
| | | | Approved by: db, skreuzer (mentors)
* xnec2c is a GTK+ graphical interactive version of nec2c. It incorporates theshurd2014-06-189-0/+169
| | | | | | | | | | | | 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)
* - Now that we have more hamradio team members grab this onedb2014-06-181-1/+1
|
* - Now that we have more members in the hamradio team grab thisdb2014-06-181-1/+1
|
* - Now that we have more members on the hamradio@ team, grab this onedb2014-06-181-1/+1
|
* - update to latestdb2014-06-1810-102/+220
| | | | | | | - the ARRL licence is a 6 part BSD PR: ports/190172 Submitted by: shurd
* Update consumers of graphics/GraphicsMagick13 to use graphics/GraphicsMagickrene2014-06-181-2/+2
| | | | | | | instead, these two ports are now equal. Bump PORTREVISIONs Approved by: portmgr (antoine)
* Stagify.vanilla2014-06-132-9/+4
| | | | Approved by: portmgr@
* Stagify.vanilla2014-06-132-2/+1
| | | | Approved by: portmgr@
* Reset the 99 ports still listed under sylvio@marino2014-06-122-2/+2
| | | | | | | | | | | 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)
* Support LIBS like LDFLAGS.tijl2014-06-119-39/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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)
* Remove all the bootstrap files (.bs) from the plists.mat2014-06-102-2/+0
| | | | | | | | | | 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
* Remove indefinite articles and trailing periods from COMMENT, plusolgeni2014-06-097-7/+7
| | | | | | | minor COMMENT typos and surrounding whitespace fixes. Categories A-C. CR: D196 Approved by: portmgr (bapt)
* - Simple fix to unbreak this portdb2014-06-092-5/+13
|
* - Interim fix of wspr to fix builddb2014-06-082-15/+58
| | | | - add staging whilst here
* Allow staging as a regular userantoine2014-06-081-3/+3
|
* - Do not include bsd.port.pre.mk twiceantoine2014-06-061-4/+0
| | | | - Remove some PORT_OPTIONS conditionals not needed with staging
* - Switch to USES=libtool, drop .la filesamdmi32014-06-041-2/+1
| | | | Approved by: portmgr blanket
* - Update to latestmiwi2014-06-045-63/+19
| | | | | PR: 190598 Submitted by: maintainer
* - Stage supportmiwi2014-06-042-5/+21
| | | | PR: 189698
* - Stage supportmiwi2014-06-041-2/+2
| | | | PR: 189697
* - Update x11-toolkits/c++-gtk-utils to version 2.2.7pawel2014-06-041-0/+1
| | | | | - Needs USES=libtool, drop la file - Bump affected comms/efax-gtk (library name changed)
* lysdr, is a simple SDR program for amateur radio.miwi2014-06-0317-0/+472
| | | | | | | WWW: https://github.com/gordonjcp/lysdr PR: ports/190549 Submitted by: shurd@sasktel.net
* congruity is a GUI application for programming Logitech(R) Harmony(TM)miwi2014-06-036-0/+103
| | | | | | | | 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>
* The concordance software suite allows you to program your Logitech Harmonymiwi2014-06-035-0/+36
| | | | | | | | | | | 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>
* The concordance software suite allows you to program your Logitech Harmonymiwi2014-06-035-0/+44
| | | | | | | | | 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>
* The concordance software suite allows you to program your Logitech Harmonymiwi2014-06-036-0/+57
| | | | | | | | | | | 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>
* comms/dcf77pi: Update 3.0.0.1rene2014-06-013-6/+15
| | | | | | | | | | 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.
* - Add missing OPTIONS_DEFINEantoine2014-06-011-5/+3
| | | | - Fix a bug that didn't show up because bsd.port.pre.mk is not included
* comms/chu: Simplify port by eliminating custom extraction targetmarino2014-06-011-10/+3
| | | | | | | 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.
* Stagify.cy2014-05-303-16/+16
|
* Convert to USES=dos2unixbapt2014-05-262-4/+3
| | | | With hat: portmgr
* Multiple ports: reset maintainerseadler2014-05-261-1/+1
| | | | | | | | | | | | | | 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)
* - Stage supportmiwi2014-05-251-4/+2
| | | | | PR: 190188 Submitted by: maintainer
* - Stage supportmiwi2014-05-251-3/+2
| | | | | PR: 190187 Submitted by: maintainer
* LICENSE is actually GPLv2.olgeni2014-05-251-1/+1
|
* Horde package update:mm2014-05-242-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | 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 missing staged MAN pages.olgeni2014-05-232-1/+45
|
* - Add staging support.olgeni2014-05-236-123/+202
| | | | | - Add LICENSE. - Use @sample in plist.
* Bump version due pkg-plist changed.vanilla2014-05-231-0/+1
| | | | Submitted by: tijl@
* Stageify.vanilla2014-05-232-24/+22
| | | | Approved by: portmgr@
* Stageify.vanilla2014-05-232-8/+8
| | | | Approved by: portmgr@
* Stageify.vanilla2014-05-231-4/+3
| | | | Approved by: portmgr@
* Stageify.vanilla2014-05-234-25/+19
| | | | Approved by: portmgr@
* Stageify.vanilla2014-05-234-4/+50
| | | | Approved by: portmgr@
* Strip using INSTALL_TARGET=install-strip instead of post-install actionmartymac2014-05-211-3/+1
|
* - Update to 2.7sbz2014-05-214-10/+16
| | | | | PR: ports/190000 Submitted by: Bartek Rutkowski <ports at robakdesign.com>
* Pet check-plist.nox2014-05-211-2/+1
|
* Convert net-im/libpurple (and slave ports net-im/finch and net-im/pidgin)tijl2014-05-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* Horde package update:mm2014-05-172-3/+3
| | | | | | | 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
* Switch to USES=libtoolmartymac2014-05-162-3/+4
|
* From PR:bapt2014-05-121-13/+5
| | | | | | | | | | | | 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>
* comms/dcf77pi: update to 2.1.0rene2014-05-112-4/+4
| | | | | | | | | | | | | | | 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)
* Horde package update:mm2014-05-112-3/+3
| | | | | | | | | | | | | | | 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
* Fix pkg-install, forgotten in previous commit.madpilot2014-05-112-2/+2
|
* KDE/FreeBSD team presents KDE SC 4.12.5 and KDE Workspace 4.11.9!makc2014-05-111-2/+2
| | | | | | | 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.
* Convert to USES=tarmadpilot2014-05-111-2/+1
|
* - Add USES=libtoolmadpilot2014-05-112-7/+3
| | | | - Don't install .la files
* - Don't remove mtree directoriesamdmi32014-05-102-2/+0
| | | | Approved by: portmgr
* Convert to USES=pgsqlbapt2014-05-082-2/+2
|
* Support stagebapt2014-05-061-12/+4
| | | | | PR: ports/188593 Submitted by: Bartek Rutkowski <ports@robakdesign.com>
* Convert all :U to :tu and :L to :tlbapt2014-05-051-1/+1
| | | | | | | | | | | | | | 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
* These ports are no longer used or cared for.nemysis2014-04-291-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* - Stageswills2014-04-271-1/+0
| | | | | | PR: ports/188824 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: portmgr@ (blanket)
* Update to version 3.2.13pawel2014-04-262-6/+4
|
* The SvxLink project is a flexible, general purpose voice services system fordb2014-04-2422-0/+704
| | | | | | | | | | | | 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>
* Update gstreamer 1.0 ports to version 1.2.4.tijl2014-04-231-1/+1
|
* When linking a library libA with a library libB using libtool, if libB.latijl2014-04-235-7/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* USES=libtoolbapt2014-04-222-12/+8
| | | | Use options helpers
* Add two other manpages to plist.adamw2014-04-222-1/+3
| | | | Thanks to: swills
* STAGE support, replace pkg-install with some plistadamw2014-04-216-41/+36
| | | | | magic and a pkg-message. Rename patches to avoid forbidden characters. Use @sample.
* STAGE support. Corrected a typo in OPTIONS_DEFAULT, appliedadamw2014-04-212-360/+337
| | | | PORTEXAMPLES to examples, use WWWDIR, use @sample.
* - drop mainatinershipdinoex2014-04-211-1/+1
|
* - Update to version 0.4.5; define LICENSE; switch to .tar.bz2 distfiledanfe2014-04-196-81/+26
| | | | | | | - 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 package update:mm2014-04-172-3/+3
| | | | | | 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
* The FreeBSD x11@ and graphics team proudly presentszeising2014-04-173-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* - Stageswills2014-04-151-4/+2
| | | | | | PR: ports/188592 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: Craig Butler <craig@bsdtec.com> (maintainer, different email)
* - Remove GCC dependency which made qsstv crash with a clang-built world.db2014-04-141-1/+1
| | | | | PR: ports/188577 Submitted by: Stephen Hurd <shurd@sasktel.net> (maintainer)
* Upgrade from 1.8.6 to 1.8.7:db2014-04-142-3/+3
| | | | | | | | * 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)
* comms/dcf77pi: update to 2.0.3, use the new @sample keywordrene2014-04-143-7/+5
| | | | | | | - 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
* - Maintainer update: comms/fl_moxgen to latest (1.00)db2014-04-134-19/+51
| | | | | | | | | | | | | | - 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)
* - Removed unnecessary diffdb2014-04-133-40/+5
| | | | | | | | | | | | | | | | | | | | | =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