summaryrefslogtreecommitdiff
path: root/x11
AgeCommit message (Collapse)Author
2015-10-19Improve shebangfix frameworkDmitry Marakasov
- Support multiple values in *_OLD_CMD, i.e. we can now fix both "/usr/bin/python" and "/usr/bin/env python" at the same time - Default *_OLD_CMD values are now always appended, so you don't need to specify them in individual ports - Add lua support (depends on USES=lua) - Add more default values, such as "/usr/bin/env foo" for python, perl, bash, ruby and lua - Shebangfix now matches whole words, e.g. we will no longer (erroneously) replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is still (correctly) replaced with "${perl_CMD} -tt") Note that *_OLD_CMD items containing spaces must now be quoted (e.g. perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl") Update shebangfix usage according to new rules in many ports: - Remove *_OLD_CMD for patterns now replaced by default - Quote custom *_OLD_CMD which contain spaces Fix shebangfix usage in many ports (irrelevant to infrastructure change): - Remove redundant SHEBANG_LANG (no need to duplicate default langs) - Remove redundant *_CMD (such as python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present) - Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for exact string Approved by: portmgr (bapt) Differential Revision: D3756
2015-10-19- Switch to options helpersDmitry Marakasov
- Fix WWW: Approved by: portmgr blanket
2015-10-18- Unbreak the build on -CURRENT by explicitly linking against libm as aAlexey Dokuchaev
remedy to the following error: [100%] Linking C executable bmpanel2 /usr/bin/ld: undefined reference to symbol `truncf@@FBSD_1.0' (try adding -lm) //lib/libm.so.5: could not read symbols: Bad value - While here fix long standing issue of -L${LOCALBASE}/lib being required in LDFLAGS while USES=pkgconfig due to missing LINK_DIRECTORIES() call in the top-level `CMakeLists.txt'
2015-10-15Drop 8 support.Mathieu Arnold
With hat: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3694
2015-10-14- Clarify LICENSEDmitry Marakasov
- Add LICENSE_FILE - Drop unneeded WX_UNICODE - Don't install empty and unneeded (INSTALL) docs - Switch to options helpers - Pet portlint
2015-10-13Remove the 173.14.39 nvidia-driver. it doesn't support a xorg-server newerKoop Mast
then 1.15. And also marked forbidden. (MOVED entry snuck in the xserver update itself).
2015-10-10x11/xvkbd: Upgrade version 3.6 => 3.7John Marino
PR: 203486 submitted by: ports fury
2015-10-10Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans
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)
2015-10-09- Update to 0.31.2Danilo Egea Gondolfo
2015-10-09Properly check for the charging flag in the returned battery statusJohn Baldwin
to determine if the battery is charging. Reviewed by: bapt (maintainer) Differential Revision: https://reviews.freebsd.org/D3849
2015-10-08- Fix buildDmitry Marakasov
Approved by: portmgr blanket
2015-10-08Remove trailing whitespace from Makefiles, M-X.Jimmy Olgeni
2015-10-08Add a way to cleanly handle terminfo.db file used by devel/ncursesDmitry Marakasov
This database contains compiled terminfo entries and is merged from a large part which comes with ncurses themselves and compiled .terminfo files installed by other ports (currently only rxvt-unicode and jfbterm) - Now the database is always kept up to date, regardless of port installation order (both ncurses installed before .terminfo files and the other way around work as expected) - All affected ports now support clean deinstallation and do not produce stage-qa errors - Affected ports are simplified, as they now only need to define USES=terminfo - rxvt-unicode no longer pulls in ncurses: the dependency is not really needed for anything beside updating it's own database - The patch contains Q/A test to check whether a port needs, or needs not USES=terminfo Approved by: portmgr (mat, bapt) Differential Revision: D3747
2015-10-07- Drop 8.x supportDmitry Marakasov
Approved by: portmgr blanket
2015-10-07- Switch to options helpersDmitry Marakasov
- Only use pkg-message specific to WCHAR option when the option is enabled - Drop 8.x support Approved by: portmgr blanket
2015-10-03- Add empty directories to plistDmitry Marakasov
Approved by: portmgr blanket
2015-10-02- Update to 5.33Guido Falsi
- Resolves the obnoxious startup message issue [1] - Add options NLS and XFT - Convert to USES=autoreconf - Don't install pam file when PAM option is disabled - Regenerate patches PR: 201254 Submitted by: Will B. <will_brokenbourgh at yahoo.com> Approved by: Maintainer timeout MFH: 2015Q4 [1]
2015-10-01- Update to 0.31.1Danilo Egea Gondolfo
2015-10-01- Drop 8.x supportDmitry Marakasov
Approved by: portmgr blanket
2015-09-30- Drop 8.x supportDmitry Marakasov
- Switch to options helpers - Fix installation command Approved by: portmgr blanket
2015-09-30- Switch to options helpersDmitry Marakasov
2015-09-30- Fix plist for WITHOUT=PAM caseDmitry Marakasov
- Drop @dirrm* from plist Approved by: portmgr blanket
2015-09-27- Switch to options helpersDmitry Marakasov
Approved by: portmgr blanket
2015-09-27Remove expired port:Rene Ladan
2015-09-26 x11/xlogout: Useless cruft from 1989
2015-09-26Update to 355.11Alexander Nedotsukov
2015-09-26Update to 355.11Alexander Nedotsukov
PR: 203323
2015-09-26Ensure terminfo registration is done during post installationBaptiste Daroussin
2015-09-26Convert to @sampleBaptiste Daroussin
Use options helpers
2015-09-25Convert a bunch of @exec into proper @postexecBaptiste Daroussin
2015-09-25Fix a typo for x11/nvidia-driver-304.Jung-uk Kim
Spotted by: Lena at lena dot kiev dot ua Approved by: danfe (maintainer, implicit)
2015-09-25- Drop 8.x supportDmitry Marakasov
- Switch to options helpers Approved by: portmgr blanket
2015-09-25Lists DOCS in OPTIONS_DEFINE, fix typo in RUN_DEPENDS for the MAPI option.Koop Mast
Submitted by: truckman@
2015-09-24- Update x11/nvidia-driver to 346.96.Jung-uk Kim
- Update x11/nvidia-driver-340 to 340.93. - Update x11/nvidia-driver-304 to 304.128. Approved by: danfe (maintainer)
2015-09-21- Update to 1.5.1Olivier Duchateau
- Sort USES - Add patch, which disables Mugshot (utility to edit user profile), and MenuLibre (menu editor), they are not yet present in ports tree
2015-09-20Typos, whitespace and capitalization fixes (S-X).Jimmy Olgeni
2015-09-20x11/virtualgl: minor cleanupJan Beich
- Convert to USE_GL - Convert to USE_XORG Approved by: portmgr blanket
2015-09-19Make all GNUstep ports install into the System domain so that the Local ↵David Chisnall
domain is available for stuff built from source. Some ports were already installing in the System domain, for these just remove the Makefile lines explicitly specifying the install domain. The rest are installed in the Local domain, remove any overrides, update their pkg-plists and any explicit paths in the Makefiles and then bump port revision. Approved by: bapt (mentor) Differential Revision: https://reviews.freebsd.org/D2977
2015-09-18- Add missing USES=pkgconfig, fix build with LIBRSVG2Dmitry Marakasov
- Switch to options helpers Approved by: portmgr blanket
2015-09-18Update to 0.9.1Grzegorz Blach
2015-09-17- Switch to options helpersDmitry Marakasov
- Make imlib2 support non-optional, port doesn't build with it disabled
2015-09-16Remove ansi version fo wxGTK 2.8 and only keep the unicode versionBaptiste Daroussin
All applications in the ports tree works correctly with unicode version of wxGTK Newer version of wxGTK are unicode only (3.0+) Note that now WX_UNICODE macro is noop
2015-09-16Update the Qt4 ports to 4.8.7.Raphael Kubo da Costa
According to upstream, this is the last planned Qt4 release. A list of changes since 4.8.6 can be found here: <http://download.qt.io/official_releases/qt/4.8/4.8.7/changes-4.8.7> Porting notes and changes: - Remove several patches that have been upstreamed. - Make Uses/qmake.mk pass the contents of LIBS to the qmake environment. [1] - Repurpose devel/qt4/files/extrapatch-src-corelib-global-qglobal.h now the original patch is part of the release (curiously enough, the original patch was never actually used, as the ?= assignment in r362837 after r362770 was never possible). This works around the way compiler support for C++11 features is detected in Qt 4.8.7: while it originally only uses the compiler to determine if something is supported or not, the initializer lists feature also depends on the C++ standard library being used. It's a problem in FreeBSD 9.x, where USES=compiler:c++0x or USES=compiler:c++11-lang means we will use clang to build a port but use libstdc++ from base (GCC 4.2). The latter obviously does not support initializer lists, and the build fails because Qt tries to include headers that do not exist (<initializer_list>). Since detecting libstdc++'s version is not trivial (we need to include a non-lightweight header like cstdio and then check for __GLIBCXX__), we just enable Q_COMPILER_INITIALIZER_LISTS support only when libc++ is used (there should be no reason for someone to be using clang with GCC 4.8's libstdc++, for example). x11/kdelibs4's FindQt4.cmake had to include a backported change from the upstream FindQt4.cmake in CMake itself to use a C++ compiler to detect flags like Q_WS_X11, otherwise the inclusion of <ciso646> in qglobal.h makes the build fail. This patch contains changes by me, makc@ and alonso@. PR: 202552 [1] PR: 202808 [exp-run] Submitted by: pawel@ [1]
2015-09-14- Switch to options helpersDmitry Marakasov
- Fix build without NLS Approved by: portmgr blanket
2015-09-14Update to 0.15.6.Jung-uk Kim
2015-09-14Update to 0.10.7 (bugfix)Olivier Duchateau
2015-09-14Make it so that the default Perl is always called perl5.Mathieu Arnold
- Move Perl's man1 files along with its man3 files. - Move where Perl installs its modules man1 pages. - Convert the ports installing man1 pages. - Make different Perl versions installable at the same time. Though you should note that only the default version can be used to install Perl modules, and the non default Perl versions cannot use the modules installed via ports if they contain .so as they are installed in a version specific directory. Reviewed by: bapt (the Mk bits) Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3542
2015-09-13Mark as broken: does not fetchBaptiste Daroussin
2015-09-13- Update to 0.31.0Danilo Egea Gondolfo
2015-09-13Clean options by using options helpersBaptiste Daroussin
Remove gtk1 option Nuke usage of HAVE_GOME. Please notice that the port is stil wrong as it still relies on the configure script to autodetect things instead of controling it depending on options. At least it is now a bit cleaner
2015-09-12Fix build on 9.xGrzegorz Blach