aboutsummaryrefslogtreecommitdiff
path: root/x11
Commit message (Collapse)AuthorAgeFilesLines
* Assign maintainership of x11/dzen2 to Zsolt Udvari per requestJohn Marino2014-07-271-1/+1
| | | | Notes: svn path=/head/; revision=363034
* x11/xcb: Fix incorrectly built app-defaults fileJohn Marino2014-07-272-1/+11
| | | | | | | | | | | | | | | The app-defaults file for xcb was not built correctly as a consequence of the switch to clang and replacement of gcc's cpp to tradcpp which is more strict about the order of the parameters. The filename must be last on the command line otherwise a zero-length file is created. Fixed by moving the filename parameter to the end of the cpp command PR: 188203 Submitted by: callum (omma.gibson.athome) Notes: svn path=/head/; revision=363029
* x11/dzen2: gadgets and docs supportJohn Marino2014-07-276-10/+88
| | | | | | | | | | | | | * Can build and install gadgets optionally * Install docs * minor fixes * Reset maintainer (two timeouts, not heard from since 2008) PR: 191128 Submitted by: Zsolt Udvari Notes: svn path=/head/; revision=363007
* - Convert texproc/uim and friends to USES=libtool, drop .la filesDmitry Marakasov2014-07-251-0/+1
| | | | | | | | | | - Bump ports dependent on uim as some .so versions have changed - While here, convert some USE_BZIP2 to USES=tar:bzip2 Approved by: portmgr blanket Notes: svn path=/head/; revision=362884
* Reset maintainership for ports not staged with no pending PRBaptiste Daroussin2014-07-242-2/+2
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=362828
* - Update to 0.6.2Guido Falsi2014-07-2412-25/+2487
| | | | | | | | | | | | | | | | | - Add devel/libsysinfo to LIB_DEPENDS - Add x11/xmessage to RUN_DEPENDS - Add netstatus, volumeasla, thermal, cpu, cpufreq, monitors and wnckpager plugins to CONFIGURE_ARGS - Add cpufreq, netstatus and thermal plugin patches - Add batt plugin patch - Remove -Wno-return-type from CFLAGS - Change ALSA_RUN_DEPENDS to ALSA_LIB_DEPENDS PR: 190362 Submitted by: Horia Racoviceanu <horia@racoviceanu.com> (maintainer) Notes: svn path=/head/; revision=362794
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-07-242-3/+18
| | | | | | | | - Strip binaries - Fix shebangs Notes: svn path=/head/; revision=362785
* Update PyQt to 4.11.1, QScintilla to 2.8.3 and SIP to 4.16.2.Raphael Kubo da Costa2014-07-233-49/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... And bump PORTREVISION on ports that depend on devel/qscintilla2 due to the shlib version change. This is brought to you by the KDE on FreeBSD team. Besides updating to newer upstream releases, this commit also contains a lot of under-the-hood changes to the PyQt/QScintilla/SIP ports. Their Makefiles had accumulated a lot of cruft over time, so it was time for some summer cleaning: - General, belated changes: * Use OPTIONS helpers wherever possible, stop including <bsd.port.options.mk> when not necessary, stop checking for ${PORT_OPTIONS:MDOCS} and ${PORT_OPTIONS:MEXAMPLES} when not necessary, add options such as DOCS and/or DEBUG where they were only checked for. - QScintilla ports: * Drop the API option from py-qt4-qscintilla2. It had been broken ever since staging support was added, and its existence does not make much sense: QScintilla is a hard dependency regardless of the state of this option anyway, they all come from the same tarball and the configuration script assumes the .api file will always be installed. - PyQt ports: * The configure.py patch shared by all PyQt ports has been trimmed down to the minimum. Changes for Qt3 compatibility or for things that are just not needed anymore have been removed. * Several post-configure targets in the PyQt ports have been removed, as they had no effect on the way the ports were built whatsoever. * In some cases, instead of calling Python's py_compile.py on `ls *.py */*.py */*/*.py` to generate .pyc and .pyo files, we just call compileall.py, which is made for this kind of task. * The patch + sed hack to build py-qt4-dbussupport has been replaced by only extracting the dbus/ directory for that port and excluding it from all others. * Move the bulk of the code in all Makefiles to bsd.pyqt.mk, like the non-Python Qt ports do with bsd.qt.mk and the QT_DIST variable. A large portion of all PyQt Makefiles were very similar and contained a lot of boilerplate code that can be shared among all of them since they all come from the same tarball. bsd.pyqt.mk now has a PYQT4_DIST variable that, when set, automatically sets several common variables and the do-configure target for a port. This allows us to considerably reduce the size of all the py-qt4-* Makefiles. * To make the above possible and also to allow us to use as many OPTIONS helpers as possible, the ARGS variable is now called CONFIGURE_ARGS. That's what it was used for anyway. PR: 191990 Notes: svn path=/head/; revision=362721
* Remove quotes that surrounded entire _DESC strings.Adam Weinberger2014-07-231-7/+7
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=362713
* - Fix the build across the gang; stagify and undeprecateAlexey Dokuchaev2014-07-232-27/+54
| | | | | | | - Update CONFLICTS, remove vestiges of Gnome 1.x support Notes: svn path=/head/; revision=362660
* Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always workTijl Coosemans2014-07-231-2/+0
| | | | | | | | | | | | | | | | | | | | | | | when an older version of a package is installed. This is the case when an executable links with installed libraries and with uninstalled libraries that link with other uninstalled libraries. For each of the directly linked libraries the executable will have an rpath (/usr/local/lib for the installed libraries and a path under WRKDIR for each of the uninstalled libraries), but not for the indirect libraries. Both ld(1) and rtld(1) search the rpath of the executable first before any rpath of libraries, so the indirectly linked libraries will be found in /usr/local/lib if they are installed instead of in WRKDIR. With this commit executables will overlink with uninstalled indirect libraries again so their location is added to the rpath of the executable. This partially reverts r358784. PR: 191611 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=362656
* - Fix shebangDmitry Marakasov2014-07-231-1/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=362643
* - Update to 0.85.0Dmitry Marakasov2014-07-222-6/+9
| | | | | | | | - Bring back xine support - Strip binaries Notes: svn path=/head/; revision=362595
* - Update to 0.6.2, Announce message:Rusmir Dusko2014-07-223-22/+31
| | | | | | | | | | | | | | | | | | | | | | | | | A lot of bug fixes. Add commands to the dbus interface. Add command line options to control the keyboard. Move at-spi2 handling to a new process in order to avoid deadlocks. Implement a floating icon for desktops with no systray. Fix gradients. remove deprecated GTK3 functions. - Remove BUILD_DEPENDS and RUN_DEPENDS, implicit - Add USES=libtool, .la - Change USE_GSTREAMER to USE_GSTREAMER1 - Add --disable-static to CONFIGURE_ARGS - Quote variable in CONFIGURE_ARGS - Add NLS_CONFIGURE_ENABLE=nls - Strip library - Change pkg-plist PR: 190363 Submitted by: maintainer (Horia Racoviceanu) Notes: svn path=/head/; revision=362577
* Update to 7.0.26Baptiste Daroussin2014-07-202-3/+3
| | | | Notes: svn path=/head/; revision=362393
* Update to 2.12Baptiste Daroussin2014-07-203-3/+5
| | | | | | | Strip binaries Notes: svn path=/head/; revision=362392
* Update to 1.0.6Baptiste Daroussin2014-07-202-3/+5
| | | | | | | Strip binaries Notes: svn path=/head/; revision=362391
* Update to 1.0.9Baptiste Daroussin2014-07-202-3/+4
| | | | | | | Strip binaries Notes: svn path=/head/; revision=362390
* Update to 0.4.2Baptiste Daroussin2014-07-202-5/+5
| | | | | | | Strip binaries Notes: svn path=/head/; revision=362389
* Update to 1.7.4Baptiste Daroussin2014-07-202-5/+5
| | | | | | | Strip binaries Notes: svn path=/head/; revision=362388
* Update to 1.0.9Baptiste Daroussin2014-07-202-4/+4
| | | | | | | strip binaries Notes: svn path=/head/; revision=362387
* Update to 2.3.1Baptiste Daroussin2014-07-202-3/+3
| | | | Notes: svn path=/head/; revision=362386
* New port: x11/leechcraftVeniamin Gvozdikov2014-07-208-0/+2668
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LeechCraft is a free open source cross-platform modular live environment. It has modules for everything: * Full-featured web-browser with support for all major web-standards. * Advanced multiprotocol modular IM client currently supporting XMPP (Jabber), IRC, WLM/MSN, MRIM and quite a few other protocols and with a bunch of features from metacontacts and Off-The-Record support to audio calls. * Collection-oriented media player with a lot of features from gapless playback and transcoding for removable devices to social features like recommended artists and nearby events. * Efficient and fast BitTorrent client with full support for the BitTorrent protocol and all its widespread extensions and magnet links. * Modular document viewer supporting PDF, DjVu, PostScript, MOBI and other formats. * RSS feed reader supporting common feed formats with extensions like MediaRSS or GeoRSS as well as with extensive support for Broadcatching and podcasts and their automatic retrieval. * User-space package manager with its own repository of plugins, themes, icons and much more. * A bunch of Desktop Environment-enabling modules from window manager controller to power manager, taskbar, tray and a customizable panel. * The "Summary" tab that displays all your downloads, updates and statuses. PR: 170571 Submitted by: myself Notes: svn path=/head/; revision=362332
* - Add radio-style selection of Xaw3d/Xaw3dxft/neXtawEmanuel Haupt2014-07-181-3/+17
| | | | | | | | | - Add option to enable the logging function of xterm Submitted by: "S. Wall" <xterm-user@wallfamily.us> (based on) Notes: svn path=/head/; revision=362186
* Add patch to fix a SSL MITM vulnerability in the POP3 ioslave.Raphael Kubo da Costa2014-07-162-1/+57
| | | | | | | | MFH: 2014Q3 Security: 4a114331-0d24-11e4-8dd2-5453ed2e2b49 Notes: svn path=/head/; revision=362104
* Fix some non default LIB_DEPENDSBaptiste Daroussin2014-07-164-10/+10
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=362053
* Add DOCS option to the remaining staged ports where PORTDOCS appearsAdam Weinberger2014-07-165-1/+9
| | | | | | | in the plist. Notes: svn path=/head/; revision=362026
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-152-1/+3
| | | | Notes: svn path=/head/; revision=361981
* Remove patches that are not functionally relevant (accidentally imported withEmanuel Haupt2014-07-156-100/+0
| | | | | | | the previous commit). Notes: svn path=/head/; revision=361912
* Add an Xaw 3d xft library support option.Emanuel Haupt2014-07-158-1/+120
| | | | Notes: svn path=/head/; revision=361911
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-5/+5
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361820
* Update to 309Emanuel Haupt2014-07-142-3/+3
| | | | Notes: svn path=/head/; revision=361759
* Convert to new LIB_DEPENDSBaptiste Daroussin2014-07-135-14/+10
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361696
* Fix xshmfence_alloc_shm() on 8.3 and 9.x. O_CLOEXEC is available on allJung-uk Kim2014-07-082-11/+10
| | | | | | | | supported versions but mkostemp(3) is only available from 10.0. Therfore, the fd was not properly initialized on them. Notes: svn path=/head/; revision=361292
* Fix typo in pkgplist for options XDMSHELLSean Bruno2014-07-081-1/+1
| | | | | | | | | PR: 186391 Submitted by: elrond@phoe.frmug.org Reviewed by: kwm Notes: svn path=/head/; revision=361259
* Move include of float.h to enable build on armv6Sean Bruno2014-07-052-1/+17
| | | | | | | | | PR: 190983 Submitted by: andrew@freebsd.org Reviewed by: mat@freebsd.org Notes: svn path=/head/; revision=360840
* Fix the way --with-mmx is passed to configure.Raphael Kubo da Costa2014-07-051-2/+2
| | | | | | | | | | | <OPTION>_CONFIGURE_ARGS does not exist, so the option was not being passed at all. We need <OPTION>_CONFIGURE_WITH here. CR: D357 Approved by: olgeni (maintainer) Notes: svn path=/head/; revision=360812
* Bump more ports that depend on libsqlite3.so:Tijl Coosemans2014-07-052-2/+2
| | | | | | | | | | - ports that set USE_SQLITE with the *_USE option helper - ports that depend on libsqlite3 indirectly as reported by pkg rquery Approved by: portmgr (implicit) Notes: svn path=/head/; revision=360738
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-049-56/+31
| | | | Notes: svn path=/head/; revision=360682
* Remove expired ports:Rene Ladan2014-07-045-133/+0
| | | | | | | | 2014-07-04 x11-clocks/wmitime 2014-07-04 x11/xorg-edit: Depends on older version of wxGTK Notes: svn path=/head/; revision=360648
* Add dependency on perl (run)Baptiste Daroussin2014-07-041-11/+5
| | | | | | | | Use options helpers Use modern lib_depends Notes: svn path=/head/; revision=360590
* - Update from 1.2.0 to 1.2.1Danilo Egea Gondolfo2014-07-043-28/+15
| | | | | | | | | | | | | | - Add libtoolize:env to USE_AUTOTOOLS - Add static libraries to Options, remove from default - Add nls to CONFIGURE_ARGS while here - Use @sample in pkg-plist PR: ports/191589 Submitted by: Horia Racoviceanu <horia@racoviceanu.com> Notes: svn path=/head/; revision=360539
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-07-032-4/+3
| | | | | | | | | - Convert USE_BZIP2 to USES Approved by: portmgr blanket Notes: svn path=/head/; revision=360355
* Mark as broken and set deprecation date to stage EOLBaptiste Daroussin2014-07-021-0/+5
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=360146
* - New LIB_DEPENDS syntaxTijl Coosemans2014-07-013-8/+11
| | | | | | | - Add USES=libtool Notes: svn path=/head/; revision=360105
* Add USES=libtoolTijl Coosemans2014-07-012-5/+4
| | | | Notes: svn path=/head/; revision=360098
* - Convert to USES=libtoolTijl Coosemans2014-07-013-19/+7
| | | | | | | - Rearrange Makefile a bit Notes: svn path=/head/; revision=360097
* - Fix problems with the location of the locale directory by settingTijl Coosemans2014-07-013-22/+10
| | | | | | | | | CPPFLAGS and LIBS instead of using a patch - Use option helpers for NLS option - Add USES=libtool Notes: svn path=/head/; revision=360094
* - Install documentation in standard locationTijl Coosemans2014-07-012-39/+22
| | | | | | | | - Add USES=libtool and bump dependent ports - Use OPTIONS_SUB Notes: svn path=/head/; revision=360090
* - USES=libtool tar:bzip2Tijl Coosemans2014-07-013-18/+3
| | | | | | | - Remove pthread patches Notes: svn path=/head/; revision=360087