aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/synaesthesia
ModeNameSize
-rw-r--r--Makefile865logstatsplainblame
-rw-r--r--distinfo140logstatsplainblame
d---------files43logstatsplain
-rw-r--r--pkg-descr669logstatsplainblame
16dinoex2016-12-261-1/+1 | | | | - bump API change * Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.tijl2016-10-012-11/+20 | | | | | | | | | | | | | | | | | | | USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS appears too early on the command line causing some ports to link with their own libraries in LOCALBASE (if installed) instead of WRKSRC. Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as possible after anything a port Makefile might set. Use _USES_POST instead of .include in libedit.mk and libarchive.mk so things like 'USES=libedit localbase:ldflags' work correctly. Fix some issues with LIBS in some ports. Switch ports that don't support LIBS to localbase:ldflags. PR: 212987 Exp-run by: antoine Approved by: portmgr (antoine) * net-p2p/transmission-cli: update mirrorsjbeich2016-09-281-2/+2 | * Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.mat2016-04-011-10/+10 | | | | | With hat: portmgr Sponsored by: Absolight * net-p2p/transmission-*: update to 2.92jbeich2016-03-082-3/+3 | | | | | | Changes: https://trac.transmissionbt.com/wiki/Changes#version-2.92 PR: 207772 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> * net-p2p/transmission-*: update to 2.90jbeich2016-03-037-88/+48 | | | | | | | | | | | - Add POLARSSL and WOLFSSL support (like ftp/curl) - Hide LITE (unused) and DOCS (redundant) options from -web slave - Simplify r398996 and move to CONFIGURE_ENV - Drop r369657 hacks after upstream integration [1] - As implied by r378806 transfer maintainership back to crees Changes: https://trac.transmissionbt.com/wiki/Changes#version-2.90 PR: 194029 [1] * Clarify LICENSEjbeich2016-02-081-1/+1 | * net-p2p/transmission-cli: chase r399209jbeich2015-10-142-1/+19 | | | | | | | | | | https://github.com/miniupnp/miniupnp/commit/1da63faa4fff5cb30e5d4b848ceef80a292382b9 PR: 203768 Reported by: many Obtained from: upstream MFH: 2015Q4 X-MFH-With: r399209 * Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.tijl2015-10-101-1/+7 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine) * Remove trailing whitespace from Makefiles, M-X.olgeni2015-10-081-1/+1 | * Convert my ports to USES=localbasejbeich2015-09-271-3/+2 | * net-p2p/transmission-*: minor cleanupjbeich2015-08-301-12/+5 | | | | | | | o -cli slave still uses libtransmission under GPLv2 o Chase r313708 in COMMENT for -gtk slave o Convert LITE to option helpers o Drop duplicate USES=tar (r362505 vs. r362522) * Don't depend on base OpenSSL when using WITH_OPENSSL_PORT.crees2015-07-042-4/+15 | | | | | PR: ports/186978 Submitted by: Bernard Spil * Improve style/consistency among the ports I maintainjbeich2015-02-161-4/+2 | | | | | | | | | | | - Convert to COPYTREE_SHARE - Drop unnecessary MKDIR before COPYTREE_SHARE - Drop bsd.port.options.mk if only DOCS requires it without dependencies - Use separate backup if several REINPLACE_CMD against the same file - audio/alsa-utils: convert to LIBS Differential Revision: https://reviews.freebsd.org/D1851 Approved by: bapt (mentor) * - Add CPE information for Transmission ports [1]jbeich2015-02-111-3/+5 | | | | | | | | | | | | | | | | | | - Take maintainership [2] as the next update may require partially reverting r369657 hacks in favor of upstream support - Disable devel/libinotify: * used only by transmission-daemon's watch-dir * maybe less stable than readdir() fallback * disabled by other ports e.g., devel/glib20 * completely different from devel/libnotify [3] - Belatedly bump PORTREVISION PR: 197065 [1] Differential Revision: https://reviews.freebsd.org/D1806 Suggested by: crees [2] Pointy hat: crees (r287179) [3] Approved by: crees (maintainer) [1][2] Approved by: bapt (mentor) * Allow use of reload rc commandcrees2014-11-251-0/+1 | | | | | PR: ports/195341 Submitted by: joshruehlig@gmail.com * Cleanup plistantoine2014-11-131-1/+0 | * Unbundle libs.crees2014-10-011-3/+27 | | | | | | | | | PR: ports/194029 Submitted by: Jan Beich Also, don't extract the third-party directory if we're not using it here. Submitted by: mi * Fix problems with missing libs when the linker enforces explicit linkingtijl2014-08-121-11/+6 | | | | | | | | | | | (ports that are dependencies of other ports) net-p2p/transmission-cli: add USES=libtool and remove PTHREAD_LIBS sysutils/deltup: simplify patch by using MAKE_ARGS x11-fm/rox-filer: convert to USES=shared-mime-info x11-wm/emerald: remove PTHREAD_LIBS PR: 192062 * Fix transmission-cli,-gtk on some platforms after openssl updatemarino2014-08-041-1/+1 | | | | | | | | | | | | At least on some releases, transmission-cli and transmission-gtk now need -lcypto in LDFLAGS to build. Additionally transmission-gtk needed an update of the inotify configure argument. The latter requires a revbump because it seems possible that it could have been built with the bad argument somewhere. PR: 192319 Submitted by: Ivan Klymenko Approved by: "Just Fix It" blanket, but maintainer was in copy on PR * Only use libevent2bapt2014-07-241-2/+2 | | | | | | | | | | | | Remove libevent as libevent2 is providing a good compatibility interface as well as providing better performances. Remove custom patches from libevent2 and install libevent2 the regular way Mark ports abusing private fields of the libevent1 API as broken Import a patch from fedora to have honeyd working with libevent2 Remove most of the patches necessary to find the custom installation we used to have for libevent2 With hat: portmgr * Fix clang build on 9.xcrees2014-07-231-2/+6 | | | | | | | | Apparently this version doesn't understand empty arguments in CFLAGS using commas; i.e. ,-I/usr/local/include throws an error about nonexisting file ,- Reported by: Kenta S (kentas@hush.com) * Fix transmission-web buildcrees2014-07-221-0/+2 | | | | Submitted by: gblach, rakuco * Unbreakantoine2014-07-221-1/+3 | | | | Pointy hat: crees * Update to 2.84crees2014-07-216-61/+30 | | | | | PR: ports/191592 Submitted by: Andrew Berg