Commit graph

7027 commits

Author SHA1 Message Date
Antoine Brodin
493b60ceb5 Stage support 2013-12-27 21:48:55 +00:00
Antoine Brodin
00c0eef853 Stage support 2013-12-27 21:35:41 +00:00
Antoine Brodin
dd3c0327f0 Stage support 2013-12-27 21:11:24 +00:00
Koop Mast
2a51b2182a Update poppler to 0.24.4.
Update comment.
Use new LIB_DEPENDS syntax, use USES=pathfix.
Stagify.

Bump portrevision of all affected ports, and Update poppler* LIB_DEPENDS to
new syntax.
2013-12-27 16:54:21 +00:00
Koop Mast
b1bf1620a6 Update freetype to 2.5.2.
Remove patch to add -I/usr/local/include in freetype-config --cflags. If
ports need extra headers they should look for them, and not get them via
a side-effect.

Freetype had a header resuffle in 2.5.1, patch ports to use the new header
style.

Thanks go to bdrewery for the two exp-runs and rakuco for helping me with
some troublesome cmake ports.

PR:		ports/184587
2013-12-24 21:22:21 +00:00
Dmitry Marakasov
a58bf8b68d - Support staging
- Use new LIB_DEPENDS syntax
2013-12-23 13:59:27 +00:00
Koop Mast
371438e01a Enable explicit depends, this will record X depends in gdk-2.0.pc. This
should fix the build of ports that use X libraries but don't explicitly depend
on X libraries.
2013-12-20 21:17:13 +00:00
Rene Ladan
97f8402e5f Remove expired ports:
2013-12-18 x11-fonts/ppantsfonts: Broken for more than 6 month
2013-12-19 x11-toolkits/gtksourceview-sharp: Depends on expired devel/mono-tools
2013-11-18 devel/mono-tools: Broken for more than 6 month
2013-12-19 textproc/p5-XML-SAXDriver-Sablotron: Depends on expired textproc/p5-XML-Sablotron
2013-11-18 textproc/p5-XML-Sablotron: Broken for more than 6 month
2013-11-18 net/freeswitch-core: Broken for more than 6 month
2013-12-19 misc/freeswitch-pizzademo: Depends on expired net/freeswitch-core
2013-12-19 misc/freeswitch-scripts: Depends on expired net/freeswitch-core
2013-12-19 www/p5-HTML-Webmake: Depends on expired textproc/p5-XML-Sablotron
2013-12-20 19:02:51 +00:00
Steve Wills
0f750f1ee2 - Drop maintainership at maintainer request
PR:		ports/185029
Submitted by:	"H. Wade Minter" <minter@lunenburg.org> (maintainer)
2013-12-20 15:24:45 +00:00
Pawel Pekala
c5143b3635 - Needs root during stage
- Improve COMMENT and pkg-descr
2013-12-19 20:48:17 +00:00
David Naylor
22674eaebe Move x11-toolkits/py-kivy to using auto-plist.
Although this port does not support python>=3, the next release is expected
to do so.
2013-12-19 15:15:56 +00:00
Steve Wills
26add8dbcb - Update to 1.249
- Add LICENSE
- Update and sort *_DEPENDS
- Use USES=gmake
- Sort make knobs
- Support STAGEDIR

PR:		ports/184700
Submitted by:	sunpoet
2013-12-18 17:02:13 +00:00
Steve Wills
e195a4fac8 - Update to 1.224
- Add LICENSE
- Support STAGEDIR

PR:		ports/184702
Submitted by:	sunpoet
2013-12-18 15:49:52 +00:00
Rusmir Dusko
a4baad5f5a - Change maintainer email of my ports to @FreeBSD.org
Approved by:	pawel / wg (mentors, implicit)
2013-12-18 10:20:48 +00:00
Dennis Herrmann
bd9fb955f0 - Update to 0.17 2013-12-18 08:51:57 +00:00
David Naylor
c0f8e218dc Fix build of x11-toolkits/py-kivy on some systems (pygame.joystick related).
On some systems pygame.joystick does not import into python preventing some
documentation from being built, thus some missing files on install.

For documentation building prevent any attempt to import pygame.joystick as
a work-around.
2013-12-17 03:32:45 +00:00
Niclas Zeising
47be7a61c9 Switch FreeBSD CURRENT to use the new xorg stack (WITH_NEW_XORG=) [0]
If the old xorg stack is still needed, it is possible to add WITHOUT_NEW_XORG=
to /etc/make.conf to get the old version.

Update several xorg related ports, including:
x11/libxcb 1.9.1 -> 1.9.3
graphics/libdrm 2.4.46 -> 2.4.50
x11/pixman 0.30.2 -> 0.32.4
x11/xkeyboard-config 2.9 -> 2.10.1
x11-drivers/xf86-input-keyboard 1.7.0 -> 1.8.0

Fix dissapearing cursor in xf86-video-vmware [2]

Stagify all x11@-owned ports

Bump portrevisions for xf86-* ports due to xserver version change.

Fix fallout from updates where needed.

Thanks to:	all testersi, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/184684 [1], ports/181385 [2]
Submitted by:	Douglas Carmichael <dcarmich@dcarmichael.net> [2]
Approved by:	portmgr (bdrewery), core (jhb) [0]
2013-12-16 11:11:09 +00:00
William Grzybowski
1e34739b64 Use setuptools for all Python ports.
Setuptools is the preferred method to manage Python distributions after
many changes to the packaging ecosystem over the past couple of years.

Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using
USE_PYDISTUTILS= easy_install remains the same however this usage is now
deprecated and should be converted to USE_PYDISTUTILS= yes.

Some Python distributions do not work with setuptools out of the box because
they extend the install command from distutils and not setuptools, and
so they need to be patched accordingly.

pip (which leverages setuptools) works around the issue by using eggs, however
we want to get rid of those as well, as support for "flat" installation is
unavailable or has other issues associated with it.

This work allows us to unify how python packages are built, ensure that Python
distributions are installed consistently, reduces complexity for Python port
maintainers and paves the way for simplifying the Python ports framework in
the future.

With hat on:	python
Reviewed by:	koobs, antoine
Exp-run:	bdrewery
Approved by:	bdrewery (portmgr)
2013-12-15 16:22:17 +00:00
Koop Mast
f61444b07a Update to 2.4.22.
USE_GNOME=gnomehack ->USES=pathfix.
Stageify, use new LIB_DEPEND syntax, switch to libtool less ltverhack.
Merge new gtk-query-immodules handling from gtk30 ports in our dev repo [1]

Obtained from:	FreeBSD gnome dev repo [1]
2013-12-14 19:25:33 +00:00
Antoine Brodin
2ba5243c8c - Remove dependency on infozip
- Package man pages, I couldn't find any conflit in the ports tree
2013-12-13 22:20:35 +00:00
Sunpoet Po-Chuan Hsieh
7887566ea3 - Use tar to extract zipball 2013-12-13 01:41:13 +00:00
Baptiste Daroussin
4c9e6f67a4 Convert LIB_DEPENDS for ports depending on boost 2013-12-12 15:24:47 +00:00
Baptiste Daroussin
44e9f64a27 Convert LIB_DEPENDS for ports depending on boost 2013-12-12 14:15:03 +00:00
Dirk Meyer
edc24021b2 - update LIB_DEPENDS 2013-12-11 21:54:33 +00:00
Sunpoet Po-Chuan Hsieh
cefe32b9dc - Update to 1.045
- Add CPAN to MASTER_SITES

Changes:	http://search.cpan.org/dist/Gnome2/NEWS
2013-12-11 19:42:51 +00:00
Pietro Cerutti
e0c8e69d96 - Update to snapshot 10022 2013-12-11 13:35:11 +00:00
Antoine Brodin
a8dfb6bee8 - Stage support for all -reference ports
- Nuke NOPORTDOCS, those ports are already IGNOREd with NOPORTDOCS

Approved by:	kwm (maintainer)
2013-12-09 18:41:16 +00:00
Pietro Cerutti
efaeacdd63 - Update to 1.7.44
Changes:

  * Updated FXJSON JavaScript Object Notation I/O class:- removed limits to
    token size in both input and output operations (formerly limited to
    buffersize).
  * Minor changes to FXVariant:- added some missing API's, removed toChar()
    as its useless. Added has() to determine if key is present in case
    FXVariant is a map.
  * Simplified FXFile and other FXIO subclasses a bit to remove redundant
    implementations.
  * Added FXIOBuffer, an FXIO device that serializes to/from a memory
    buffer.
  * FXRanged, FXRangef: now check intersect() results a bit differently.
  * Ray to FXSpheref, FXSphered intersection test changed to allow origin
    inside sphere possibility.
  * Fixed small bug in wc2nc().
  * Possible buffer overrun in FXDir fixed.
  * Added class FXStringMap.
  * Changed some API's in FXDictionary. Added erase() API to allow removal
    of slot already located. This is faster, and needed for successful
    subclassing.
  * FXStat problem fixed on Windows.
2013-12-09 10:21:55 +00:00
Oliver Lehmann
3e6d897e86 remove GCC version check to support GCC versions 4.7 and up
PR:		184577, 183342
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net>
2013-12-08 18:50:51 +00:00
Koop Mast
430957572e Add vte3, the Gtk 3 version of the vte terminal widget.
Split off gnome-pty-helper from vte to allow both versions of vte to be
installed at the same time.
Update comment to make it clearer which gtk+ version it is for.
Enable introspection bindings in vte.

Obtained from:	GNOME dev repo.
2013-12-08 09:55:41 +00:00
Rene Ladan
928ab73709 Set expiration date to 2013-12-19, depends on expired devel/mono-tools
PR:		ports/184081
Submitted by:	myself
Approved by:	maintainer timeout (mono@, 16 days)
2013-12-06 08:11:51 +00:00
Max Brazhnikov
f5da498b50 - Respect CMAKE_BUILD_TYPE (and fix packaging with non-default build settings)
Approved by:	maintainter
2013-12-03 11:30:55 +00:00
Koop Mast
61d058ea1e Set portscout to ignore this port.
While here stagify, and use new lib_depend syntax.
2013-12-03 09:32:32 +00:00
Wen Heping
90bdd33711 - Mark BROKEN
- Reset maintainer to ports@
2013-12-01 03:45:46 +00:00
Rene Ladan
39edf56f09 Remove expired ports:
2013-12-01 x11-fm/xnc: Latest release from 2005, upstream disappeared, does not build
2013-12-01 audio/liteamp: Dead upstream since 2004, does not build with clang
2013-12-01 net-im/tapioca-qt: Unmaintained upstream since 2007, not used by anything
2013-12-01 net-im/telepathy-qt: Unmaintained upstream since 2007, use net-im/telepathy-qt4
2013-12-01 x11-toolkits/linux-f10-gtk: GTK1 is deprecated
2013-12-01 net-im/linux-ymessenger: Depends on deprecated Linux GTK1
2013-12-01 emulators/linux-pete-mesagpu: Depends on deprecated Linux GTK1
2013-12-01 emulators/linux-pete-xgl2gpu: Depends on deprecated Linux GTK1
2013-12-01 emulators/linux-peops-softgpu: Depends on deprecated Linux GTK1
2013-12-01 finance/eqonomize-kde4: No upstream releases since 2008, does not build on FreeBSD 10 and 11
2013-12-01 comms/uhso-kmod: included in base system on all supported releases
2013-12-01 deskutils/ecru: No longer maintained upstream
2013-12-01 editors/gphpedit: No longer maintaned upstream
2013-12-01 irc/inspircd12: No upstream support; known vulnerable. Please use irc/inspircd
2013-12-01 graphics/py-clutter: Broken for more than 6 month
2013-12-01 graphics/py-clutter-gtk: depends on expired graphics/py-clutter
2013-12-01 00:37:20 +00:00
Pawel Pekala
595698acb3 Update to version 2.2.4 2013-11-30 09:58:08 +00:00
Marcelo Araujo
dcc5f1aa94 - Return almost all of my ports back to the pool. I have no time to make any
necessary fixes on them for the past months.
2013-11-29 07:37:52 +00:00
Guido Falsi
e53a32eee6 - x11-toolkits/girara update to 0.1.9
- graphics/zathura update to 0.2.5
- gaphics/zathura-djvu update to 0.2.3
- Convert to new LIB_DEPENDS format
- Girara now defaults to gtk3, modify depending ports accordingly
- Convert to staging
- Always install man pages
- Remove uneeded patches

PR:		ports/183842
Submitted by:	myself
Approved by:	Alexander <alexander.4mail@gmail.com> (maintainer of zathura-djvu)
Approved by:	maintainer timeout (for graphics/zathura)
2013-11-28 21:08:38 +00:00
David Naylor
9649baf9ec Fix typos in x11-toolkits/py-kivy.
- Fix an option SDL -> SDL2 (in the audio group)
 - Fix the use of XORG -> X11 when enabling X11 support
 - Bump revision, as depending on the options chosen, package contect may
   have changed.

Reported by:	ak
2013-11-27 19:17:18 +00:00
Max Brazhnikov
9890cd8460 - Convert to USES=qmake
- Add state support
- Convert LIB_DEPENDS to new style, adjust USE_QT4 components, etc.

Approved by:	portmgr (blanket approval)
2013-11-25 18:01:01 +00:00
Koop Mast
a236e2d0bf Say hello to Mate 1.6.
Mate is a lite desktop forked from gnome2.

Most of the work is done by Jeremy Messenger (mezz@). The only thing I did
was update a few ports to later 1.6 release and attempting to keep up with
ports infra changes. Resulting bugs are all mine.

Mate is a sort of replacement for Gnome 2. So people wanting to keep a
Gnome 2 like desktop should switch. Gnome 2 will be replaced by Gnome 3
in the near future. This switch will be announce with a transition time
so people have more time to switch if they haven't already.

This release was made possible by everyone that send friendly pokes to
keep mate on my mind.

Approved by:	portmgr (bapt)
2013-11-23 11:39:07 +00:00
Cy Schubert
e338d5718e Fix typo.
Pointy hat to:	yours truly
2013-11-23 03:53:46 +00:00
Dirk Meyer
3daa576a4c - use STAGEDIR
- remove IS_INTERACTIVE
2013-11-22 19:57:44 +00:00
Max Brazhnikov
4ddfac46e6 - Remove now needless qmake_build from USE_QT4
- Get rid of QMAKEFLAGS
- Convert to USES=dos2unix
2013-11-21 15:41:06 +00:00
Pietro Cerutti
726a55f00e - Support Tcl/Tk 8.6
Submitted by:	mi@
2013-11-21 11:01:31 +00:00
Pietro Cerutti
f6830785c8 - Update to 1.9.7
- Take maintainership (tcltk@)
- Convert to USES=tk
- Convert to OPTIONSng (DOCS)
- STAGE-clean
2013-11-21 10:54:15 +00:00
Cy Schubert
529b210852 Address conflict with x11/xloadimage 2013-11-21 01:35:36 +00:00
Sunpoet Po-Chuan Hsieh
6670f0b757 - Update WWW:
- http://cheeseshop.python.org/ -> https://pypi.python.org/
  - http://pypi.python.org/ -> https://pypi.python.org/

With hat:	python
Approved by:	bapt (portmgr)
2013-11-20 20:51:25 +00:00
Sunpoet Po-Chuan Hsieh
0840b51272 - Remove outdated patch
PR:		ports/184120
Submitted by:	Zhihao Yuan <zy@miator.net> (maintainer)
2013-11-20 19:56:14 +00:00
Koop Mast
9c29d8cc5c Fix libgnome-keyring dependancy. gnome-keyring2 doesn't include
libgnome-keyring.
While here update LIB_DEPENDS syntax, stageify.

Reported by:	poudriere via swills@
2013-11-20 16:37:00 +00:00
Pietro Cerutti
893c2e55cc - Support INSTALL_AS_USER
- Restore a patch to use Tcl/Tk internal include files

Suggested by:	mi
2013-11-20 10:09:05 +00:00
Pietro Cerutti
ed8300bb29 - Chase x11-toolkits/blt library name change
- Bump PORTREVISION
2013-11-19 11:15:07 +00:00
Pietro Cerutti
712c913320 - Update to 2.5.3 2013-11-19 11:13:47 +00:00
Pietro Cerutti
7bdaaca250 - Set USE_LDCONFIG 2013-11-19 10:52:25 +00:00
David Naylor
c64ba0e600 Update x11-toolkits/py-kivy to 1.7.2. 2013-11-19 06:27:33 +00:00
Baptiste Daroussin
48035c3232 Convert from USE_DOS2UNIX to USES=dos2unix
While here stagify
2013-11-18 22:02:53 +00:00
David Naylor
48ad4714dc Add stage support to x11-toolkits/py-kivy.
Changes:
 - Add shebangfix for one file (OSC.py)
 - Migrate USE_GMAKE to USES=gmake
 - Strip libraries installed
 - Prevent non-FreeBSD packaging files from being installed
 - Change build logic to use the default do-build target
2013-11-18 19:02:22 +00:00
Baptiste Daroussin
559da58a98 Remove old *gnome*mm libraries not in used in the ports tree.
They are EOLed upstream and their package name is in collision is more recent versions

With hat:	portmgr
Approved by:	maintainer timeout
2013-11-18 08:18:04 +00:00
Marcus von Appen
7c19894cc2 - Switch devel/sdl20 to use the autotools-based configuration, since the
cmake-based one is not maintained that well
- Fix library naming to ensure backwards compatibility on minor version
  changes
- Bump the PORTREVISION on ports depending on devel/sdl20, since its
  shared library name changed

PR:		ports/183975
Submitted by:	Jan Kokemüller <jan.kokemueller@gmail.com>
2013-11-17 12:33:49 +00:00
Alberto Villa
84a235eda9 - Replace QT_.*_REL with QT_.* in PLIST_SUB.
- Adapt plists.

With hat on:	kde
2013-11-17 02:12:25 +00:00
Romain Tartière
7a93b3b2d5 Freshen-up port and rename package. 2013-11-16 17:58:27 +00:00
Romain Tartière
a28265acc3 Freshen-up port and rename package. 2013-11-16 17:58:03 +00:00
Sunpoet Po-Chuan Hsieh
ebb809b993 - Support STAGEDIR 2013-11-15 17:24:50 +00:00
Grzegorz Blach
89a9b7d86a - Remove post-install step (unneeded since staging is supported)
Submitted by:	bapt
2013-11-14 00:33:32 +00:00
Rene Ladan
30dc78c5dc Deprecate and schedule for removal on December 1st, 2013.
All consumers have been deprecated.

Discussed on:	emulation@ (2013-10-06)
2013-11-11 13:02:16 +00:00
John Marino
4207b3302b x11-toolkits/qtada: Convert to staging 2013-11-10 21:06:15 +00:00
John Marino
f8a6aa8135 x11-toolkits/gtkada: Convert to staging
* Don't install license anymore as it messes up auto-plist
* Bump portrevision because of this plist change
2013-11-10 18:59:47 +00:00
Sunpoet Po-Chuan Hsieh
3feb4c1388 - Add LICENSE
- Pass maintainership to submitter
- While I'm here, remove Author line

PR:		ports/183741
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2013-11-09 21:46:47 +00:00
Sunpoet Po-Chuan Hsieh
f867466187 - Pass maintainership to submitter
- While I'm here:
  - Add LICENSE
  - Remove leading indefinite article from COMMENT

PR:		ports/183722
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2013-11-09 21:46:42 +00:00
Sunpoet Po-Chuan Hsieh
846540b0cf - Add LICENSE
- Support STAGEDIR
- Pass maintainership to submitter
- While I'm here, add WWW

PR:		ports/183698
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2013-11-09 21:46:37 +00:00
Sunpoet Po-Chuan Hsieh
15c0a7bcb8 - Add LICENSE
- Pass maintainership to submitter

PR:		ports/183692
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2013-11-09 21:46:31 +00:00
Sunpoet Po-Chuan Hsieh
e0c3941e79 - Add LICENSE
- Pass maintainership to submitter
- While I'm here:
  - Remove EXTRACT_DEPENDS
  - Remove Author line

PR:		ports/183686
Submitted by:	Muhammad Moinur Rahman <5u623l20@gmail.com>
2013-11-09 21:46:27 +00:00
Grzegorz Blach
a0746bc874 - Update EFL to 1.7.9
- Update Enlightenment to 0.17.5
2013-11-07 16:00:45 +00:00
Pietro Cerutti
eba7b1f11b - Convert to USES+=tl and USES+=tk
- STAGE-clean
- Simplify by not installing / deinstalling the user configuration file
2013-11-07 13:00:22 +00:00
Vanilla I. Shu
8568fda844 Support STAGEDIR. 2013-11-07 04:52:13 +00:00
Xin LI
bc0d646198 Update to 0.57.
PR:		ports/179390
Submitted by:	nemysis
Approved by:	maintainer
2013-11-06 22:50:21 +00:00
Raphael Kubo da Costa
9830a728e7 Support staging.
Submitted by:	Schaich Alonso <alonsoschaich@fastmail.fm>
2013-11-06 14:53:31 +00:00
Andrej Zverev
487d869eba - support STAGEDIR 2013-11-03 08:05:18 +00:00
Koop Mast
44d0dc12bb Stagify Gstreamer ports.
Fix build of gstreamer and gstreamer1 with glib 2.38.x [1].
Update gstreamer and gstreamer-plugins to new rules, USES=gmake pathfix,
new LIB_DEPENDS syntax.
Only pull in flex if base version is too old.
Be more selective for which OSVERSIONS we need gcc due to the clang bug.

Obtained from:	Gstreamer upstream [1]
2013-11-01 22:14:07 +00:00
Pietro Cerutti
596bf6ba20 - Convert to USES+=tk
- Convert to new LIB_DEPENDS format
- STAGE-clean
2013-10-30 17:15:13 +00:00
Steve Wills
ddda6c8e50 - Add stage support 2013-10-30 03:05:18 +00:00
Koop Mast
86a87d94de Restrict python to -2.7
Submitted by:	mva@
2013-10-29 17:05:50 +00:00
Koop Mast
c0587ddb16 Stageify, use COPYTREE_SHARE instead of doing tar and chown/chmod ourself.
Restrict to python -2.7 [1].

Submitted by:	mva@ [1]
2013-10-29 16:56:41 +00:00
Pawel Pekala
1c8881a761 Revert USE_GCC to yes
Requested by:	gerald
2013-10-27 19:35:12 +00:00
Gerald Pfeifer
3be3e90f93 Update to libmpc version 1.0.1 which brings the following fixes:
- Switched to automake 1.11.6, see CVE-2012-3386.
 - #14669: Fixed extraction of CC from gmp.h.
 - Fixed case of intermediate zero real or imaginary part in mpc_fma,
   found by hydra with GMP_CHECK_RANDOMIZE=1346362345.

This is on top of the following changes from version 1.0

 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no
   invariant sections) for the documentation.
 - 100% of all lines are covered by tests
 - Renamed functions
   . mpc_mul_2exp to mpc_mul_2ui
   . mpc_div_2exp to mpc_div_2ui
 - 0^0, which returned (NaN,NaN) previously, now returns (1,+0).
 - Removed compatibility with K&R compilers, which was untestable due
   to lack of such compilers.
 - New functions
   . mpc_log10
   . mpc_mul_2si, mpc_div_2si
 - Speed-ups
   . mpc_fma
 - Bug fixes
   . mpc_div and mpc_norm now return a value indicating the effective
     rounding direction, as the other functions.
   . mpc_mul, mpc_sqr and mpc_norm now return correct results even if
     there are over- or underflows during the computation.
   . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has
     infinite part and equals output variable is corrected.
   . mpc_fr_sub: Wrong return value for imaginary part is corrected.

Convert to the new LIB_DEPENDS standard and remove hard-coded
.so versions from a couple of dependent ports.

Bump PORTREVISIONS of all dependent ports.

PR:		183141
Approved by:	portmgr (bdrewery)
2013-10-26 00:52:33 +00:00
Grzegorz Blach
8710586c57 - Change master sites to download.enlightenment.org 2013-10-25 19:58:18 +00:00
Marcus von Appen
1cdb3e8f5d - Chase devel/sdl20 shlib version change 2013-10-25 16:16:48 +00:00
Dirk Meyer
12b15603ea - fix a bug that causes xfig to hang
Reported by:	Cejka Rudolf
Obtained from:	debian
2013-10-25 15:08:37 +00:00
Pietro Cerutti
4e96f31450 - Update to 1.7.43
Changes:

  * Added FXJSON JavaScript Object Notation I/O class. FXJSON loads and
    saves JSON, and has a great number of options, extensive error
    reporting, and great degree of control over output.
  * Problems in Windows version of fxcpuid.cpp fixed.
  * Line segment to box and line segment to sphere intersection routines
    added; also computes intersection point.
  * FXString escape() and unescape() now do \uXXXX unicode escaping. Old
    functions for these, fromAscii() and toAscii() have been removed. The
    new implementation properly handles surrogate pairs.
  * Added some API's to FXGLGroup.
  * FXListBox current item fix.
  * Added new functions to FXElement.h. Particularly, bulk-comparison
    function.
  * Use new fxstrlcpy() and fxstrlcat() where appropriate; these will
    always produce null-terminated strings.
  * Passed wrong handle for error FD in FXProcess under Windows.
  * Fix introduced bugs in FXHash and FXDict.
  * Some extra checks added in GIF loader header detection.
  * Typo fix in lock-free queue class FXLFQueue.
  * Fast accessors added to FXVariant; they can be used if type already
    known.
  * Fixed minor issues with FXVariant implementation.
  * Missing FXAPI declaration in FXArrayBase added.
  * Added area() and volume() calculation to FXRange and FXSphere classes;
    added area() to FXExtent classes.
  * Added new FXDictionary class; this will replace FXDict at some point in
    the future.
2013-10-25 13:48:21 +00:00
Pietro Cerutti
39b1244707 - New port: x11-toolkits/fltk-devel
This port tracks the development snapshots of FLTK, available at
  x11-toolkits/fltk.
2013-10-23 16:05:33 +00:00
Olivier Duchateau
d31424d211 Don't try to remove directories, we don't make.
Reported by:	Ports-QAT
2013-10-22 18:30:45 +00:00
Dmitry Marakasov
73b7596b94 - Remove manual creation and removal of share/applications, as it's now in the mtree (remaining categories)
- Add note on mtree change to CHANGES

Approved by:	portmgr (bdrewery)
2013-10-22 14:04:01 +00:00
Thomas Abthorpe
cd13c7fb2b 2013-10-21 devel/rubygem-ruby-debug-base: Does not work with Ruby 1.9
2013-10-10 devel/rubygem-linecache: Does not work with Ruby 1.9
2013-10-21 devel/rubygem-rascut: Does not work with Ruby 1.9
2013-10-21 devel/rubygem-ruby-debug-ide: Does not work with Ruby 1.9
2013-10-21 devel/rubygem-ruby-debug: Does not work with Ruby 1.9
2013-10-21 japanese/gorua: Does not work with Ruby 1.9
2013-10-10 x11-toolkits/ruby-gtk: Does not work with Ruby 1.9
2013-10-21 18:07:53 +00:00
Olivier Duchateau
57580254af - Support STAGEDIR
- Convert to new LIB_DEPENDS format
- Switch to USES= gmake
- Enhance COMMENT entry and description (pkg-descr)
- Fix NLS support, when it's unset
- Standardize 'startup-notification' description
2013-10-21 17:24:13 +00:00
Sunpoet Po-Chuan Hsieh
2f20203301 - Update to 1.044
- Add LICENSE
- Sort PLIST

Changes:	http://search.cpan.org/dist/Gnome2/NEWS
2013-10-20 10:07:24 +00:00
Dmitry Marakasov
e9d90b8f69 - Support staging
- Use new LIB_DEPENDS syntax
2013-10-17 01:24:56 +00:00
Pietro Cerutti
eb6c2c490e - Fix STAGE support for PORTDOCS
Reported by:	antoine
2013-10-16 09:03:27 +00:00
Raphael Kubo da Costa
d6119cb107 Update SIP to 4.15.2 and PyQt to 4.10.3.
This commit also adds proper staging support to all the ports being updated.

In collaboration with Schaich Alonso <alonsoschaich@fastmail.fm> and
Tomasz Kowalczyk <kowalczfbsd@gmail.com>.
2013-10-15 21:52:33 +00:00
Thomas Abthorpe
d738635544 2013-10-10 x11-toolkits/ruby-tk: Does not work with Ruby 1.9 2013-10-15 18:11:40 +00:00
Pietro Cerutti
87cd41d3f8 - Fix build in C++11 mode [1]
- Convert to new LIB_DEPENDS format
- Convert to OPTIONSng (DOCS)
- STAGE-clean

PR:		182949 [1]
Submitted by:	dt71@gmx.com [1]
2013-10-15 08:24:14 +00:00
Pietro Cerutti
e4aceaa286 - Fix PLIST by removing DOCS
Reported by:	QAT
2013-10-15 07:00:16 +00:00
Pietro Cerutti
0d8e71d2d0 - Convert to USES+=tk
- STAGE-clean
2013-10-14 14:07:52 +00:00
Pietro Cerutti
891b7d0f4e - Update to 2.6
- Convert to USES+=tk
- Take maintainership (tcltk@FreeBSD.org)
- STAGE-clean
2013-10-14 13:56:25 +00:00
Pietro Cerutti
2b25376eb8 - Convert to USES+=tk
- STAGE-clean
2013-10-14 13:07:40 +00:00
Pietro Cerutti
2d3f8ef422 - Update to 1.3.9
- Convert to USES+=tk
- Take maintainership (tcltk@FreeBSD.org)
2013-10-14 08:09:15 +00:00
Raphael Kubo da Costa
ecda38b0a5 Update Qt to 4.8.5 and Qt Creator to 2.8.0.
Proudly brought to you by the KDE on FreeBSD team, with commits by makc@,
Schaich Alonso and yours truly.

Besides the tons of upstream fixes, we have mkspecs for GCC 4.9 and clang33
(from ports), staging support in the Makefiles and dependency fixes related
to pkg-config.

Many thanks to the people who helped test the ports using our area51
repository, and also to the people who provided patches and bug reports via
GNATS!

PR:		ports/180615
	        ports/181921
		ports/182049
2013-10-13 23:15:50 +00:00
Rene Ladan
74943920b1 Add stage support. 2013-10-10 15:17:40 +00:00
Rene Ladan
6e91539c26 Bump PORTREVISION for last commit 2013-10-10 13:17:09 +00:00
Rene Ladan
fcbaaee32f Fix package building/(de)installation with staging support.
Ideas from:	bapt, antoine
2013-10-10 13:09:26 +00:00
Guido Falsi
fc329c163a - Convert to USES=compiler 2013-10-09 23:14:35 +00:00
Sunpoet Po-Chuan Hsieh
91c7dcbe22 - Update to 1.043
- Sort *_DEPENDS
- Sort USE_GNOME and USES
- Support STAGEDIR
- Pass maintainership to perl@

Changes:	http://search.cpan.org/dist/Gnome2/NEWS
2013-10-09 12:33:00 +00:00
Max Brazhnikov
a821cad16d - Convert to USES= qmake
- Bring stage support
- Adjust DESKTOP_ENTRIES
- Use options helpers
- Use new LIB_DEPENDS syntax
2013-10-09 10:08:04 +00:00
Pietro Cerutti
2271dba1df - Fix left-overs
Reported by:	QAT
2013-10-08 07:06:16 +00:00
Pietro Cerutti
c61b256827 - Bump PORTREVISION on ports dependent on FOX. This is needed because we
now use ltverhack on FOX. This should be the last time.
2013-10-07 13:15:43 +00:00
Pietro Cerutti
89fcfbcc74 - Refactor FOX ports
* Remove CONFLICTS between FOX ports by having man-pages
    and binaries named after the port version
  * Avoid bumping shlib version at each minor update by using
    ltverhack [1]
  * Make PKGNAMEs unique (fox14, fox16, fox17) [2]
  * Use new LIB_DEPENDS format

Suggested by:	mezz [1], bapt [2]
2013-10-07 13:14:12 +00:00
Max Brazhnikov
4476a5c138 - Remove LATEST_LINK from my Qt4/KDE4 ports
- Use new LIB_DEPENDS syntax
- Use options helpers
2013-10-07 12:26:54 +00:00
Baptiste Daroussin
3504cd779a Remove some ports depending on gnome1
Approved by:	gahr (maintainer)
2013-10-07 08:54:36 +00:00
Sunpoet Po-Chuan Hsieh
6dbd713168 - Update to 1.082
- Sort USES
- Support STAGEDIR
- Cleanup Makefile
- Sort PLIST
- Pass maintainership to perl@

Changes:	http://search.cpan.org/dist/Gnome2-VFS/NEWS
2013-10-06 18:42:11 +00:00
David Naylor
48e49db559 Mark x11-toolkits/py-kivy as broken under i386 without -DWITH_NEW_XORG.
For some unknown reason builds fail with:

  Undefined symbol "glBlendEquationSeparate"

When compiling under i386 for the old libGL.  This error does not make
sense given that the symbol is present in libGL and that compilation works
under amd64.  The only solution found is to update to a newer libGL however
there does not appear to be any change to the symbol signature to suggest
why such an update works.
2013-10-06 17:43:55 +00:00
Rene Ladan
cb992b6d33 Add stage support for linux-f10-* ports maintained by emulation@
(category x11-toolkits).

- x11-toolkits/linux-f10-gtk2 is not updated yet, it wants to chroot(8)
- Fix plist of linux-f10-qt45
2013-10-06 16:09:43 +00:00
Grzegorz Blach
b618367113 - Support staging
Approved by:	crees, tabthorpe (mentors, implicit)
2013-10-06 00:03:50 +00:00
Pawel Pekala
dfc33c10af Add support for STAGEDIR 2013-10-05 16:52:12 +00:00
Baptiste Daroussin
65bf36e901 Remove the EOLed x11-toolkits/guile-gtk (gnome1) and its latest user
Approved by:	gnome (implicit)
2013-10-05 13:39:43 +00:00
Andrej Zverev
12e799f488 - Add stage support
- Try to fix build with perl 5.16

ExtUtils::ParseXS from 5.16 now more strict about code.
2013-10-05 08:10:30 +00:00
Koop Mast
e5e3d93fd7 Use new LIB_DEPEND syntax, USE_GMAKE=>USES=gmake, stageify.
Update comment to remove indefinite article
Fix build on HEAD. This port uses pangox-compat.
2013-10-04 13:38:44 +00:00
Koop Mast
753e13b59c Fix pkgname collisions in gtk??[mm] ports. 2013-10-02 16:24:19 +00:00
Jose Alonso Cardenas Marquez
3123d104e6 - Fix MASTER_SITES
- Fix pkg-plist file
- Few minor modifications
2013-10-02 02:04:16 +00:00
Rene Ladan
a5b6e13d4a - Add stage support
- USE_GMAKE -> USES=gmake
2013-10-01 20:58:48 +00:00
Jose Alonso Cardenas Marquez
4c10c9f845 - Update to 1.8
PR:		ports/173524
Submitted by:	Hardy Schumacher <hardy.schumacher_  at  _gmx.de>
2013-10-01 19:57:41 +00:00
Sunpoet Po-Chuan Hsieh
a99e50c9b5 - Support STAGEDIR 2013-09-30 20:59:03 +00:00
Niclas Zeising
5a4c543c2b The FreeBSD graphics/x11 team proudly presents
a kwm, zeising production:

MESA 9.1.6

Starring:
Mesa 9.1.6, including libGL, libGLU and dri (new xorg only)
Addition of libEGL and libglesv2
KMS support for ATI graphics cards in 10-current (new xorg only)
Improved sparc64 support for new xorg. [1]
pixman 0.30.2, including shlib bump and portrevision bumps
libX11 1.6.2
Make absolute pointing devices work with x11-drivers/xf86-input-mouse
x11-drivers/xf86-video-ati 7.2.0 for 10-current (KMS aware ati driver)

Also starring:
Updates to drivers and other libraries and utilities

Additional notes:
When updating MESA related ports (libGL, dri) you need to remove old versions
first.  See UPDATING for details.

PR:		ports/181962 [2]
Submitted by:	marius [1]
		zeising [2]
Exp-run by:	bdrewery
Approved by:	portmgr (bdrewery)

Thanks to all who helped testing!
2013-09-29 17:01:41 +00:00
Guido Falsi
50cfaa4e6f This port is already stage safe.
While here convert to more approriate USE_GCC=yes.
2013-09-29 10:51:17 +00:00
Thomas Abthorpe
f9d27bec74 - Change EXPIRATION_DATE to 2013-10-10, to match removal of lang/ruby18
Discussed with:	swills
2013-09-26 21:13:59 +00:00
Baptiste Daroussin
f45d0a8198 Fix NO_STAGE attribution 2013-09-22 18:05:04 +00:00
Sunpoet Po-Chuan Hsieh
c75a425c87 - Use USES=tk
- While I'm here, add NO_STAGE=yes

PR:		ports/182249
Submitted by:	Paul Schmehl <pauls@utdallas.edu> (maintainer)
2013-09-22 05:32:06 +00:00
Dirk Meyer
1e3119b07e - fix misplaced NO_STAGE in slaveports and ifdefs 2013-09-21 11:06:03 +00:00
Baptiste Daroussin
7e5a7bfffd Add NO_STAGE all over the place in preparation for the staging support (cat: x11-toolkits) 2013-09-20 23:57:47 +00:00
Pietro Cerutti
672a7034b6 - Finish up the change of PKGNAME for Tcl/Tk ports to match LATEST_LINK
Suggested by:	bapt
2013-09-20 07:43:51 +00:00
Pietro Cerutti
335927cf6f - Update Tcl/Tk 8.6 to 8.6.1
Release notes: http://code.activestate.com/lists/tcl-core/13590/
2013-09-20 07:32:38 +00:00
Pietro Cerutti
ade02cfb85 - Convert USE_TCL to USES=tcl 2013-09-19 14:21:42 +00:00
Pietro Cerutti
99252f2c22 - Update Tcl/Tk 8.5 to 8.5.15
Release notes: http://code.activestate.com/lists/tcl-core/13585/
2013-09-18 21:01:43 +00:00
Pietro Cerutti
d6ea979eb3 - Update to 1.7.42
Changes:

  * Added class FXVariant, and supporting classes FXVariantMap and
    FXVariantArray. The FXVariant class can store basic types like bool,
    int, or float, but also arrays of variants, or maps of variants. Thus,
    FXVariant can be used to store an arbitrarily complex tree-like data
    structure.
  * Problems in Windows version of fxcpuid.cpp fixed.
  * Fix cased from (__m128) to _mm_castsi128_ps() intrinsic for portability.
  * Fix compare operation in FXSize.h.
  * Added fxstrlcpy() and fxstrlcat() for safe string copy and string
    concatenation.
  * Added __noreturn macro for flagging non-returning functions like
    fxerror().  This may help compilers generate better code for places
    where these functions are called.
  * Removed fxsleep(), obsoleted by FXThread::sleep() and
    FXThread::wkaeat().
  * Allow out-of-source builds of FOX on configure-based systems.
  * Force end-of-string in value returned by gethostname().
  * Fix introduced bugs in FXHash and FXDict.
  * Added swapElms() to FXElement.h. Also added templated swap().
  * Added internal function memswap().
  * Don't include intrinsics header files unless target architecture is
    x86 or x86-64.
  * Updated build on Fedora 18 for Raspberry Pi.

- Add two local files with patches to mute compiler warnings and fix
  potential stack buffer overflow bugs (already reported upstream)
2013-09-18 16:01:48 +00:00
Baptiste Daroussin
2b07ee6ce0 Add an explicit dependency on pkgconf 2013-09-18 08:38:20 +00:00
Cy Schubert
d2f630b20a Fix xview family builds under 10-CURRENT.
Flags xview-clients MAKE_JOBS_UNSAFE.
2013-09-18 07:07:08 +00:00
Pawel Pekala
97bff4d22b Update to version 2.2.3
Changes:

The scalability of the TaskManager, AsyncQueue, and AsyncQueueDispatch
classes has been improved.  Other improvements have been made.
2013-09-17 16:11:06 +00:00
Pietro Cerutti
627739127c - Update to 0.9.96.31.08.13 2013-09-17 08:36:00 +00:00
Baptiste Daroussin
c49b570adf Remove USE_GCC=any as the ports build properly with clang.
This also fixes the build with libc++
2013-09-16 09:39:26 +00:00
Andrej Zverev
e5a7b5184d - convert to the new perl5 framework
- convert USE_GMAKE to Uses

Approved by:	portmgr (bapt@, blanket)
2013-09-14 12:04:18 +00:00
Andrej Zverev
184fe8daa4 - convert to the new perl5 framework
- convert USE_GMAKE to Uses

Reviewed by:	kwm@
Approved by:	kwm@ (gnome@)
2013-09-12 17:55:41 +00:00
Andrej Zverev
8b77080918 - convert to the new perl5 framework
- convert USE_GMAKE to Uses

Approved by:	portmgr (bapt@, blanket)
2013-09-12 15:23:58 +00:00
Baptiste Daroussin
32a76caee0 Remove duplicated patch
Submitted by:	marino
2013-09-12 12:09:53 +00:00
Guido Falsi
644b855b6e - Update scintilla and scite to 3.3.5
- The update fixes build on recent head

PR:		ports/182014
Submitted by:	me
Approved by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
2013-09-12 11:34:39 +00:00
John Marino
107bfacba9 Add explicit dependency on pkgconf (27 ports) 2013-09-12 00:21:10 +00:00
Antoine Brodin
251f4ca6f1 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-11 17:17:35 +00:00
John Marino
b38bbaec1f Add explicit dependency on pkgconf (6 ports) 2013-09-11 09:36:48 +00:00
Martin Matuska
c2a4b67e17 Bump some PORTREVISIONs due to graphics/webp update to 0.3.1 2013-09-09 22:49:20 +00:00
Sunpoet Po-Chuan Hsieh
d267400cd8 - Add PORTSCOUT=ignore:1 to avoid false alarm 2013-09-07 17:21:55 +00:00
Baptiste Daroussin
7b61392063 Fix build with libc++ 2013-09-06 21:20:28 +00:00
Baptiste Daroussin
beae873ea6 Add an explicit dependency on pkgconf 2013-09-06 13:01:53 +00:00
Antoine Brodin
fb3d643ef9 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-05 19:29:18 +00:00
Antoine Brodin
74aebe4fa5 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-05 17:37:22 +00:00
Antoine Brodin
eb4b4f9964 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-05 17:01:12 +00:00
Guido Falsi
9569673c94 - Add explicit dependency on pkgconfig
- While here, convert to new LIB_DEPENDS format

Approved by:	portmgr (bapt)
2013-09-05 09:38:08 +00:00
Antoine Brodin
146d97ce8a Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-05 05:39:29 +00:00
Antoine Brodin
15f27213f3 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-05 05:25:38 +00:00
Sunpoet Po-Chuan Hsieh
c80102d805 - Update to 1.37
- Convert to new LIB_DEPENDS format
- Fix GTK2 option

Changes:	https://github.com/dk/Prima/blob/master/HISTORY
2013-09-05 03:30:41 +00:00
Guido Falsi
642be1b81d - Make ports use the libc provided iconv implementation on 10-CURRENT
after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc

Reviewed by:	bapt
Approved by:	portmgr (bapt)
Discussed with:	bapt, bsam (who both contributed ideas and code)
2013-09-04 18:06:07 +00:00
Baptiste Daroussin
608790486b Add an explicit dependency on pkgconf 2013-09-04 16:42:19 +00:00
Tijl Coosemans
c1c0fcd819 - Remove USE_GCC=any.
- Add OPTIONS_DEFINE.
- Remove FreeBSD/alpha support.
2013-09-04 13:09:08 +00:00
Antoine Brodin
a1cdb438fc Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-03 19:12:37 +00:00
Antoine Brodin
5dff3c8f6c Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-03 18:39:13 +00:00
Antoine Brodin
ae9da71a5f Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-03 18:28:54 +00:00
Antoine Brodin
48c8f3f039 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-03 18:14:18 +00:00
Antoine Brodin
5c7921038e Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-03 18:09:33 +00:00
Baptiste Daroussin
1e60403ddd Add an explicit dependency on pkgconf 2013-09-03 14:08:55 +00:00
Baptiste Daroussin
da01ddab02 Add an explicit dependency on pkgconf 2013-09-03 12:50:18 +00:00
Baptiste Daroussin
1c7c3d2208 Add an explicit dependency on pkgconf 2013-09-03 12:13:23 +00:00
Baptiste Daroussin
c7d6ee97c1 Add an explicit dependency on pkgconf 2013-09-03 10:23:55 +00:00
Baptiste Daroussin
b3e4e19ddc Add an explicit dependency on pkgconf 2013-09-03 09:59:01 +00:00
Baptiste Daroussin
019f2422aa Add an explicit dependency on pkgconf 2013-09-03 08:49:46 +00:00
Baptiste Daroussin
db7a56d5ed Add an explicit dependency on pkgconf 2013-09-03 06:36:41 +00:00
Baptiste Daroussin
f2b85008da Add an explicit dependency on pkgconf 2013-09-02 22:58:16 +00:00
Baptiste Daroussin
c41a62214e Add an explicit dependency on pkgconf 2013-09-02 22:23:53 +00:00
Baptiste Daroussin
2f3fa0d623 Add an explicit dependency on pkgconf 2013-09-02 22:03:38 +00:00
Baptiste Daroussin
9880c1a378 Add an explicit dependency on pkgconf 2013-09-02 21:27:53 +00:00
Baptiste Daroussin
be41425d62 Add an explicit dependency on pkgconf 2013-09-02 21:16:30 +00:00
Baptiste Daroussin
8302173231 Add an explicit dependency on pkgconf 2013-09-02 21:04:00 +00:00
Baptiste Daroussin
77aed62c7d Add an explicit dependency on pkgconf 2013-09-02 20:51:40 +00:00
Antoine Brodin
119fdc5491 Add an explicit dependency on pkgconf
Approved by:	portmgr (bapt)
2013-09-02 20:19:06 +00:00
Baptiste Daroussin
0e4c70bcc8 Add an explicit dependency on pkgconf 2013-09-02 19:55:48 +00:00
Baptiste Daroussin
59443afb37 Add an explicit dependency on pkgconf 2013-09-02 18:14:45 +00:00
Baptiste Daroussin
3bc5091b11 Add an explicit dependency on pkgconf 2013-09-02 16:55:04 +00:00
Baptiste Daroussin
839ef5dcc2 Add an explicit dependency on pkgconf 2013-09-02 16:21:38 +00:00
Baptiste Daroussin
591aba0faa Add an explicit dependency on pkgconf 2013-09-02 15:26:23 +00:00
Baptiste Daroussin
77d5662e7c Add an explicit dependency on pkgconf 2013-09-02 13:54:45 +00:00
Andrej Zverev
4f0f40cb05 - convert to the new perl5 framework
Approved by:	portmgr (bapt@, blanket)
2013-09-02 09:36:29 +00:00
Baptiste Daroussin
1bdfab4132 Add an expicit dependency on pkgconf 2013-09-02 06:20:09 +00:00
Rene Ladan
27abcfb125 Remove expired ports:
2013-08-28 lang/gdc: Broken for more than 6 month
2013-08-31 net-im/cli-msn: MSN Messenger service terminated 30 APR 2013
2013-09-01 x11-toolkits/wxd: Depends on deprecated lang/gdc
2013-09-01 security/openvpn22: Please migrate to a newer OpenVPN version
2013-09-01 devel/dsss: Depends on expired lang/gdc
2013-09-01 graphics/qcamview: Broken on FreeBSD 8 and newer
2013-09-01 www/cacheboy15-devel: Broken on FreeBSD 8 and newer
2013-09-01 graphics/spcaview: Broken on FreeBSD 8 and newer
2013-09-01 comms/uticom: Broken on FreeBSD 8 and newer
2013-09-01 net/ipex: Broken on FreeBSD 8 and newer
2013-09-01 graphics/phpsview: Broken on FreeBSD 8 and newer
2013-09-01 misc/usbrh: Broken on FreeBSD 8 and newer
2013-09-01 net/atmsupport: Broken on FreeBSD 8 and newer
2013-09-01 comms/ib-kmod: Broken on FreeBSD 8 and newer
2013-09-01 net/libproxy-mozjs: Does not work with newer libxul
2013-09-01 www/helixplugin: Does not work with newer libxul
2013-09-01 deskutils/chmsee: Does not work with newer libxul
2013-09-01 www/moonshine: Does not work with newer libxul
2013-09-01 x11/ggiterm: Unmaintained and broken
2013-09-01 graphics/libggigcp: Unmaintained
2013-09-01 graphics/libggimisc: Unmaintained
2013-09-01 graphics/libggiwmh: Unmaintained
2013-09-01 devel/libgiigic: Unmaintained
2013-09-01 games/koth: Unmaintained
2013-09-01 15:06:45 +00:00
Koop Mast
f5ff76c523 Add patches to fix the build with libc++.
Reported by:	theraven@
2013-08-31 18:55:09 +00:00
Baptiste Daroussin
671144cd90 Eradicate USE_GNOME=pkgconfig in x11-toolkits
While here:
- Convert USE_GMAKE to USES=gmake
2013-08-30 23:40:56 +00:00
Baptiste Daroussin
0dc34effd5 Add an explicit dependency on pkgconf
While here:
- trim headers
- convert USE_GMAKE to USES=gmake
2013-08-30 22:31:38 +00:00
Boris Samorodov
064a2cfd9c Fix build at 10.x after recent changes at /usr/bin/ld. Error log:
----
./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv'
./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv_close'
./../lib/Xm/.libs/libXm.so: undefined reference to `libiconv_open'
-----

PR:		ports/181579
Submitted by:	bsam (me)
Approved by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)
2013-08-30 09:52:20 +00:00
Koop Mast
90ca08f301 Update to 2.24.4.
Trim header and update comments and pkg-descr.
Switch to USES=gmake pathfix, and use *mm components from USE_GNOME.
2013-08-29 15:32:15 +00:00
Pawel Pekala
f2904b6af8 - Switch to new LIB_DEPENDS format
- Convert USE_PERL5 to USES
- Remove stale MAKE_JOBS_SAFE
- Trim dependencies where they are too detailed
2013-08-29 15:01:46 +00:00
Pietro Cerutti
dd6a70afd0 - Bump PORTREVISION on ports that (might) depend on x11-toolkits/fox17
Although the shlib version wasn't bumped, some ABI changes require
  applications linked against fox17 to be rebuilt.
2013-08-29 07:48:22 +00:00
Pietro Cerutti
79c2a6c7a1 - Update to 1.7.41
Changes:

  * Many changes to Matrix classes for AVX and SSE.
  * FXHash hash-table improvements.
  * FXHash, FXPtrList needlessly had virtual destructors.
  * API's equalElms() added to FXElement.h.
  * Problems with initial list fixed in FXFileList and FXDirList.
  * Dropped default parameter value for FXString::mid() API.
  * Signed/unsigned warning issues fixed in FXArray.h.
  * FXArray and FXHash now use FXival to allow truly large arrays and
    dictionaries.
  * Fixed some warnings compiling synchronization classes.
  * Use FXuval for fxmalloc() and ilk.
  * Minor additional tweaks to CPU identification.
  * FXRefPtr moved into the Atomic Age:- use atomic swap when changing
    pointer value.
  * Add overloads for long, unsigned long in FXElement.h.
  * FXArray now consists of single (never NULL) pointer, same as FXString.
    This means FXArray takes up only a pointer's worth of space when empty.
  * Sign-extend macro added to fxdefs.h.
2013-08-29 07:38:22 +00:00
Sunpoet Po-Chuan Hsieh
9e12ae1e0f - Use single space after WWW: 2013-08-29 04:10:37 +00:00
Bryan Drewery
52c6ac3e26 - Disconnect ports removed in r325546 2013-08-29 02:28:57 +00:00
David Chisnall
3bec8741ff Update to latest GNUstep core libraries.
Update dependent packages with more recent releases.
Remove old and bit-rotted ones.
Switch to using clang 3.3 and libobjc2 1.7 by default, so modern Objective-C features work out of the box and remove a lot of configurable options for sub-optimal (and, often, unsupported / deprecated upstream) configurations.
Take maintainership of GNUstep-related ports.

Several of the ports left in have scary warnings which mean that they are likely broken in lots of cases.  Future commits will fix them.

Approved by:	bapt
2013-08-28 18:26:01 +00:00
Sofian Brabez
b01af11785 - Update to 1.0.2 2013-08-26 23:33:37 +00:00
Sunpoet Po-Chuan Hsieh
ee0456d513 - Cleanup Makefile header 2013-08-21 17:42:57 +00:00
Sunpoet Po-Chuan Hsieh
fa1716b118 - Remove leading indefinite article from COMMENT 2013-08-21 17:17:25 +00:00
Sunpoet Po-Chuan Hsieh
e15628ebf6 - Use RUN_DEPENDS:=BUILD_DEPENDS
- Add BUILD_DEPENDS
- Cosmetic change
2013-08-21 14:55:43 +00:00
Sunpoet Po-Chuan Hsieh
c9cf6c6113 - Convert to new perl framework 2013-08-21 14:08:06 +00:00
Pawel Pekala
9f19c372b7 - Update x11-toolkits/c++-gtk-utils to 2.2.2
- Bump affected comms/efax-gtk
- Both ports need at least gcc46 to build
2013-08-20 18:25:07 +00:00
Mark Linimon
19f09659e8 Maintainer has relinquished these ports.
PR:		ports/181404
Submitted by:	Chris Petrik <c.petrik.sosa@gmail.com> (maintainer)
2013-08-20 01:08:17 +00:00
Marcus von Appen
5bae7389e9 - Fix a cross-port dependency issue for building several gnome-related
ports. x11-toolkits/gtk20 installs scripts that require python to be
  installed.
- Bump the PORTREVISION to let the port pull in lang/python
2013-08-18 13:29:30 +00:00
Gerald Pfeifer
41e60477bd Replace USE_GCC=4.6+ and USE_GCC=4.4+ by USE_GCC=yes.
Right now this is a noop in the former case and a noop in the latter
case unless lang/gcc44 has been installed explicitly.

This puts a bit more emphasis on standardizing on a canonical version
"current" GCC and makes it easier to update that canonical version
by changing the default in Mk/bsd.gcc.mk and updating the lang/gcc port.

That is, USE_GCC=yes means "use a decent/modern version of GCC" without
having to worry about details.

Approved by:	portmgr (bdrewery)
2013-08-17 16:27:24 +00:00
Cy Schubert
1e0c2b1177 PLIST fixup. 2013-08-17 00:16:12 +00:00
Cy Schubert
21872a684e Update 804.030 --> 804.031
This fixes build under perl5.18.

Reviewed by:	perl@ mailing list
2013-08-16 22:37:36 +00:00
Guido Falsi
1b946a4776 - Update to 0.1.7
- Base gcc is unable to compile this new version, make it use clang
  where available, or a newer gcc otherwise
2013-08-16 18:22:07 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Rene Ladan
1843c3cbe3 Mark deprecated and schedule for removal on 2013-09-01, this ports depends
on the deprecated lang/gdc.
2013-08-12 11:38:46 +00:00
Koop Mast
4c4886f4d6 Add back @dirrm for share/gtk-3.0, which was mistakely removed in
the gtk+ update to 3.8.

Submitted by:	sunpoet@, oliver@
2013-08-09 19:54:04 +00:00
Alexey Dokuchaev
2c0bf13abd - Unbreak parallel builds by sanitizing build sequence (append underscore
to the object file to avoid a clash with another rule)
- Cleanup port's Makefile while here: tighten COMMENT, employ USE_TK,
  convert NOPORTDOCS, sort the knobs, do not hardcode PORTVERSION, etc.
- Kill spaces at EOL in pkg-descr, use official spelling for Tcl/Tk, GHC,
  and Hugs 98 projects
2013-08-09 02:48:34 +00:00
Grzegorz Blach
fa1ad4bd21 - Update EFL to 1.7.8
- Update Enlightenment to 0.17.4

Approved by:	crees, tabthorpe (mentors, implicit)
2013-08-07 20:57:26 +00:00
Koop Mast
56fa81cad2 Add gnomehier depend for introspection dirs.
This fixes QATty warnings in i3.

Submitted by:	ak@
2013-08-06 14:29:01 +00:00
Andrej Zverev
43f0c9f153 - Convert to new perl framework
- Trim Makefile header

Approved by:	tobez@ (maintainer)
2013-08-05 15:05:29 +00:00
Koop Mast
44db6bcb0d Add introspection to build dependancy
Reported by:	Jimmy Olgeni <olgeni@olgeni.com>
2013-08-03 10:29:52 +00:00
Mathieu Arnold
4063eccdf2 - Convert to new perl framework
- Trim Makefile header
2013-08-02 21:38:09 +00:00
Mathieu Arnold
4819ca343b - Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default.
2013-08-02 18:52:07 +00:00
Andrej Zverev
0aad97bb5c - Convert to new perl framework 2013-08-02 18:21:05 +00:00
Alexey Dokuchaev
f0e7ce220d - Unbreak parallel (-jX) builds by calling make(1) correctly and adding
missing target dependencies
- Remove check for alpha: unfortunately it'd EOLed long time ago
- Provide an OPTION for OpenGL support, default to on
- Move WRKSRC where it belongs, mute MKDIR's, pad pkg-message output
- Use canonical form of sf.net URL in port description
2013-07-31 12:01:01 +00:00
Koop Mast
a5f590e51d The FreeBSD GNOME team presents a Glib and Gtk+ 3 update.
This update updates Glib20 to 2.36 and Gtk+ 3.8

* The gio-fam-backend port that used gamin for the GFileMonitor API is gone.
  It is replaced by a GIO kqueue implementation developed as part of a NetBSD
  GSoC 2011 project by Dimitry Matveev.
* Fix a bug in the glib20 Makefile so it includes -lintl in the glib-2.0
  pkgconfig file [1]. This broke static linking and newer binutils.
* Add introspection USE_GNOME component which sets GI_SCANNER_DISABLE_CACHE to
  prevent creation of /  root/.cache dir. Defaults to build & run depend,
  but :build and :run switches available.
* New x11-toolkits/pangox-compat port and companion USE_GNOME component for
  pangox support which was removed from the pango port. Add it to ports still
  using pangox API.

Exp-run by:	bapt@
PR:		ports/178958 [1]
Submitted by:	emaste@ [1]
2013-07-31 11:57:45 +00:00
Baptiste Daroussin
28a37ebbf8 Remove libbonobomm and libbonobouimm:
Both are unsupported upstream,
Both are broken with clang,
Both are not depended on in the ports tree

Approved by:	bland (maintainer)
2013-07-31 09:43:18 +00:00
Koop Mast
f52b6275e3 Add patch to fix build with clang.
Use USES=gmake and pathfix

Approved by:	maintainer (implicit)
2013-07-27 13:25:14 +00:00
Rene Ladan
66fee90926 KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit.

Changes to infrastructure files:
- bsd.kde.mk : obsolete, remove
- bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while
- CHANGES : document the removals from bsd.port.mk
- KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead)
- MOVED : add the removed ports

PR:		ports/180745
Submitted by:	rene
Approved by:	portmgr (bapt)
Exp-run by:	bapt
2013-07-26 19:19:20 +00:00
Dmitry Marakasov
5c162b8d02 MyGUI is a library for creating Graphical User Interfaces (GUIs)
for games and 3D applications. The main goals of mygui are: speed,
flexibility and ease of use.

WWW: http://mygui.info/
2013-07-26 17:27:42 +00:00
Baptiste Daroussin
bfd37ff330 Fix build with newer binutils
OptionsNG
Remove leading article in comment
2013-07-26 09:28:34 +00:00
Pietro Cerutti
183cbc9c48 - Update to 1.7.40
Changes:

  * Updated fxcpuid() with AVX, AVX2, FMA, XOP, etc. detection.
  * Updated tables for fxascii.cpp.
  * Added various macros for memory alignment in fxdefs.h.
  * Added API's to FXTreeList and FXFoldingList to replace one item with
    custom item.
  * Added API to return processor index of calling thread in FXThread.
  * Bounds check in FXTabBook's setCurrent().
  * Added isAccessible API to FXStat.
  * Added API to rotate vector by quaternion to FXQuatd, FXQuatf.
  * Check valid path in FXPath.
  * FXFileList Drag and Drop now enabled.
  * Improvements to File Open Dialog right-click menu.
  * Add ability to remove as well as add directory bookmarks in File Open
    Dialogs.
  * AVX capabilities added to matrix and vector classes (if compiled with
    avx intrinsics).
  * FXThread sleep() function reverts to sleep if interrupted by signal.
  * 4x4 Double matrix transpose using AVX permute intrinsic.
  * Check UTIME_OMIT before using utimensat().
  * Updates to PathFinder file manager.
  * Check for NULL name in FXMetaClass hash table additions.
  * Added isBinDigit() and isOctDigit() to Ascii character class functions.
2013-07-25 15:42:07 +00:00
Koop Mast
2d3f48ba36 Revert upstream patch that seems to be causing firefox and thunderbird to
crash, while mozilla dev's are looking where the actual bug is.

Submitted by:	cperciva@
2013-07-25 09:36:57 +00:00
John Marino
e012a92d09 Add new port: x11-toolkits/qtada
This is the Ada bindings for Qt 4.8, the GPL licensed version.

Approved by:	bapt (mentor)
2013-07-21 14:35:00 +00:00
John Marino
7e7f71ea27 x11-toolkits/gtkada: Improve multijob support
The first attempt at supporting multiple jobs resulting in reimplementing
the MAKE_JOBS_NUMBER determining with "!=" operator.  Portlint doesn't
like that and it's not even necessary.  By overriding the do-build target,
the "-j" parameter is shielding from the makefile and the number of jobs
is passed to gprbuild via the PROCESSORS environment variable.

USE_GMAKE was also converted to USES+= gmake.

Approved by:	bapt (mentor)
2013-07-21 13:02:08 +00:00
Max Brazhnikov
69553f69c8 Update to 6.1.0 2013-07-14 15:27:05 +00:00
Baptiste Daroussin
613647e124 Fix build 2013-07-13 14:04:36 +00:00
Baptiste Daroussin
7a040d91a2 Mark jobs unsafe 2013-07-13 13:11:03 +00:00
Rene Ladan
a94c71299b Remove x11-toolkits/linux-f10-qt33 now that we have linux-f10-qt45 2013-07-12 18:41:41 +00:00
Boris Samorodov
9cc378bd66 Add QT4 (Linux Fedora 10).
Requested by:	rene (at emulation@)
2013-07-12 18:16:13 +00:00
Baptiste Daroussin
d558c73eec Mark jobs unsafe 2013-07-12 15:19:52 +00:00
John Marino
5feebd9c74 Replace John Marino email address with FreeBSD version
While I'm here, also trim the headers on a couple of ports and remove
a reference to the Dragonlace mirror which is down indefinitely.

Approved by:	bapt (mentor)
2013-07-12 13:40:50 +00:00
Baptiste Daroussin
cfcc8c6c9a Mark jobs unsafe
Trim headers
Convert to USES=gmake
2013-07-12 13:20:04 +00:00
Baptiste Daroussin
0a830cfcd0 Fix PORTSDIR not already defined by using relative path 2013-07-10 21:28:56 +00:00
Baptiste Daroussin
f83b34b741 Fix pure by removing the useless pre.mk/post.mk dancing
Convert to USES=gmake

Reported by:	marino
2013-07-10 21:11:24 +00:00
Pawel Pekala
e482e392f6 Convert my ports to current standards
- Switch USE_GMAKE to USES=gmake
- Define supported options so users can see them in config dialogs
- Use OPTIONS_SUB for plist alteration
- Convert to options macros for better readability
- Use PORTDOCS where it makes sense
2013-07-10 19:41:30 +00:00
Baptiste Daroussin
ed37932c34 Move gmake declaration prior to pre.mk while here convert it to USES=gmake 2013-07-10 16:51:48 +00:00
Baptiste Daroussin
a232992c7c Mark jobs unsafe
Convert to USES=gmake where appropriate
Trim headers
2013-07-10 13:12:03 +00:00
Baptiste Daroussin
942c2a28be Convert from USE_MOTIF to USES=motif
While here:
- Trim headers
- Convert USE_GMAKE to USES=gmake
- Remove indefinite article from comment
2013-07-10 07:00:44 +00:00
Pav Lucistnik
0caf410ed8 - Drop all my ports 2013-07-09 21:26:48 +00:00
Guido Falsi
3d59bf1d24 Convert the ports I maintain to USES=gmake. 2013-07-08 18:44:24 +00:00
Baptiste Daroussin
018b143d40 Remove unneeded USE_DISPLAY 2013-07-08 17:13:12 +00:00
Baptiste Daroussin
bfd52f9e57 Remove unneeded USE_DISPLAY 2013-07-08 17:12:21 +00:00
Baptiste Daroussin
b66d32f5b3 Remove latest usage of X_FONTS_ENCODINGS_PORT and X_FONTS_TTF_PORT 2013-07-08 11:42:01 +00:00
Pawel Pekala
d6cbcbf34d - Update to version 2.2.1
- Make options visible

The release notes for this version are as follows:

Minor bugfixes, interface improvements, and documentation updates.
2013-07-03 14:05:26 +00:00
Rene Ladan
55683b480a Copy pkg-descr from x11-toolkits/qt33 instead of referencing it.
This fixes the INDEX build when x11-toolkits/qt33 gets removed.
2013-07-02 16:53:30 +00:00
William Grzybowski
ec8f26835a x11-toolkits/gtkada: update to 2.24.4.0
- Update to 2.24.4.0
- Auto generate pkg-plist

PR:		ports/180172
Submitted by:	John Marino <draco@marino.st> (maintainer)
2013-07-02 14:06:12 +00:00
David Naylor
1d28e022a7 Add x11-toolkits/py-kivy 1.7.1.
Kivy is a NUI (natural user interface) toolkit that can be used on
Android, iOS, Windows, Linux, Mac and *BSD.
2013-07-01 05:57:32 +00:00
Baptiste Daroussin
932db7c46c New USES imake to handle the dependency on imake.
This uses accept 'env' as an argument for ports that do use their own or a different do-configure target.

Modify xmkmf so it accept IMAKECPPFLAGS as default flags for imake and pass it to the called imake.
Modify xorg-cf-files (the FreeBSD.cf configuration file) to allow CppCmd to be overwritten.
Pass CppCmd CcCmd and CplusplusCmd via command line to each call of imake via IMAKECPPFLAGS
Pass IMAKE_DEFINE with the above arguments to MAKE_ARGS so that imake spawned from Makefile generated by a previous
imake also inherit the defined CppCmd CcCmd and CplusplusCmd.
Make imake use devel/tradcpp all the time, so that when buidling with clang we do not depend on gcc's cpp.
Make imake respect CC and CXX
Make imake respect USE_GCC (if set imake will use gcc's cpp).

While here:
- Remove a couple of indefinite articles from comments
- Trim headers
- Fix a couple of ports to build with clang or use: USE_GCC=any
- Fix a now useless redefinition of the extraction chain
- Fix a typo in japanese/Wnn7-lib bundled imake template definitions
- Fix some XMKMF execution with no env specified
- Use options helper in x11/xautolock to simplify the port
2013-06-28 11:51:05 +00:00
Raphael Kubo da Costa
100a26f6be Update to 3.3.3.
PR:		ports/179850
Submitted by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
2013-06-22 20:07:48 +00:00
Raphael Kubo da Costa
01cc83b20f Update the PyQt ports.
- SIP has been upgraded to 4.14.7.
- PyQt4 has been upgraded to 4.10.2.
- QScintilla2 has been upgraded to 2.7.2.
2013-06-21 19:13:05 +00:00
Raphael Kubo da Costa
785011bfec Update MASTER_SITE_QT.
download.qt-project.org is a CDN and should redirect to the closest mirror
anyway, but a few more mirrors have been added just in case.
2013-06-21 17:24:13 +00:00
Raphael Kubo da Costa
142c17fe0c Update to 0.4.2. 2013-06-21 11:26:03 +00:00
Raphael Kubo da Costa
4df520c11d Update to 0.11.0. 2013-06-20 20:25:05 +00:00
Steve Wills
083bcfc41a - Fix build in non-UTF8 enviroment
PR:		ports/179307
Submitted by:	pawel
2013-06-20 11:38:20 +00:00
Pietro Cerutti
1d74a4424f - Add xt to USE_XORG modules
This should work around the recent problem in which ports depending on Tk 8.6
  failed to to locate the X11 include directory. The reason behind this is that
  TEA [1] looks for X11/Intrinsic.h, which is installed by xt.
2013-06-20 09:30:13 +00:00
Andrej Zverev
b93bdbe2d6 - Cleanup outdated checks. (PERL_LEVEL < 5.12)
- Assign some p5- ports under perl@ maintainership.

Approved by:	portmgr@ (bapt@)
2013-06-18 13:49:02 +00:00
Pietro Cerutti
28868c4751 - Make fetchable again by fixing MASTER_SITES
Reported by:	Kenta Suzumoto <kentas@hush.com>
2013-06-18 06:43:13 +00:00
Koop Mast
a3eeeb4080 Update to 2.24.19.
Minor maintaince bug fix release.
2013-06-16 19:25:27 +00:00
Florian Smeets
87948edeea - Remove www/libxul19, is has been vulnerable and unsupported upstream for
quite some time.
- Switch all remaining consumers to depend on www/libxul
- Mark ports that don't work with the new libxul BROKEN
- Mark some old ports DEPRECATED with a reasonable timeout

Approved by:	portmgr (miwi)
2013-06-15 11:10:34 +00:00
Sofian Brabez
238679d13e Hierarchic data visualization control intended for use with structures where
"parents" hold collections of weighted children.

WWW: http://pypi.python.org/pypi/SquareMap
2013-06-13 11:13:57 +00:00
Baptiste Daroussin
9577fdf711 Fix build with clang 2013-06-12 16:56:43 +00:00
Steve Wills
94fecaac80 Ruby/GtkSourceView3 is a Ruby binding of gtksourceview-3.x.
WWW: http://ruby-gnome2.sourceforge.jp/
2013-06-09 18:53:57 +00:00
Steve Wills
751237d94f Ruby/GtkSourceView2 is a Ruby binding of gtksourceview-2.x.
WWW: http://ruby-gnome2.sourceforge.jp/
2013-06-09 18:50:46 +00:00
Steve Wills
00926eeea4 Ruby/VTE is a Ruby binding of VTE.
WWW: http://ruby-gnome2.sourceforge.jp/
2013-06-09 18:50:23 +00:00
Steve Wills
5e23d3cda5 Ruby/Poppler is a Ruby binding for Poppler.
WWW: http://ruby-gnome2.sourceforge.jp/

PR:		ports/173376
Submitted by:	Shin-ya Murakami <murashin@gfd-dennou.org>
2013-06-09 18:49:19 +00:00
Steve Wills
419e4ca699 Ruby/GTK3 is a Ruby binding of GTK+-3.x.
WWW: http://ruby-gnome2.sourceforge.jp/
2013-06-09 18:47:46 +00:00
Steve Wills
ad266bde8c Ruby/GDK3 is a Ruby binding of GDK-3.x.
WWW: http://ruby-gnome2.sourceforge.jp/
2013-06-09 18:47:04 +00:00
Steve Wills
9cade99a57 Ruby/GTK2 is a Ruby binding for GTK+2.
WWW: http://ruby-gnome2.sourceforge.jp/

PR:		ports/173378
Submitted by:	Shin-ya Murakami <murashin@gfd-dennou.org>
2013-06-09 18:46:05 +00:00
Steve Wills
a419655f0f Ruby/Pango is a Ruby binding for Pango.
WWW: http://ruby-gnome2.sourceforge.jp/

PR:		ports/173377
Submitted by:	Shin-ya Murakami <murashin@gfd-dennou.org>
2013-06-09 18:44:25 +00:00
Dirk Meyer
ce8f655766 retire ruby-wx
- broken with 64bit
- wx 2.4 gone, broken with current wx
- broken with ruby1.9
- broken with current swig
2013-06-07 11:21:35 +00:00
Andrej Zverev
1729cfbf6a - Remove unnecessary depend on PERL_LEVEL < 5.12
PR:		ports/178915
Submitted by:	az
Approved by:	maintainer (timeout)
2013-06-07 07:30:36 +00:00
Andrej Zverev
bc8a5843d0 - Remove unnecessary depend on PERL_LEVEL < 5.12
PR:		ports/178914
Submitted by:	az
Approved by:	maintainer (timeout)
2013-06-07 07:28:44 +00:00
Mathieu Arnold
b816cb4205 PERL_CONFIGURE implies USE_PERL5.
Reported by: http://az.semmy.ru/perl_sdad.txt
2013-06-06 13:24:20 +00:00
Niclas Zeising
d516c8b663 Fix security issues in xorg client libraries.
Most libraries were updated to newer versions, in some cases patches
were backported instead.

Most notably, x11/libX11 was updated to 1.6.0

Security:	CVE-2013-1981
		CVE-2013-1982
		CVE-2013-1983
		CVE-2013-1984
		CVE-2013-1985
		CVE-2013-1986
		CVE-2013-1987
		CVE-2013-1988
		CVE-2013-1989
		CVE-2013-1990
		CVE-2013-1991
		CVE-2013-1992
		CVE-2013-1993
		CVE-2013-1994
		CVE-2013-1995
		CVE-2013-1996
		CVE-2013-1997
		CVE-2013-1998
		CVE-2013-1999
		CVE-2013-2000
		CVE-2013-2001
		CVE-2013-2002
		CVE-2013-2003
		CVE-2013-2004
		CVE-2013-2005
		CVE-2013-2062
		CVE-2013-2063
		CVE-2013-2064
		CVE-2013-2066
2013-06-04 19:31:29 +00:00
Gabor Pali
109269205e - Update The Glorious Glasgow Haskell Compiler to version 7.6.3
- Update Haskell Platform to version 2013.2.0.0

Please note that port revisions for all the Haskell ports without version
changes are bumped.

Some highlights of the update:

- Fix PDF generation for pandoc [1]
- From now on, PREFIX/{lib,share,share/doc}/cabal/ghc-GHC_VERSION are used for
  hs- ports (Cabal packages) as prefixes to avoid problems when upgrading with
  portmaster(8) [2]
- Experimental support for LLVM-based code generation (disabled by default)
- Many simplifications, refactoring in bsd.cabal.mk

New ports (11):

devel/hs-asn1-types                         0.1.3
devel/hs-data-default-class                 0.0.1
devel/hs-data-default-instances-base        0.0.1
devel/hs-data-default-instances-containers  0.0.1
devel/hs-data-default-instances-dlist       0.0.1
devel/hs-data-default-instances-old-locale  0.0.1
devel/hs-extensible-exceptions              0.1.1.4
devel/hs-mmorph                             1.0.0
devel/hs-quickcheck-io                      0.1.0
x11-toolkits/hs-GLURaw                      1.3.0.0
x11-toolkits/hs-OpenGLRaw                   1.3.0.0

Updated ports (104):

archivers/hs-zlib                        0.5.4.0_1        --> 0.5.4.1
databases/hs-persistent                  1.1.5.1          --> 1.2.0.1
databases/hs-persistent-sqlite           1.1.5            --> 1.2.0
databases/hs-persistent-template         1.1.2.4          --> 1.2.0
devel/hs-HUnit                           1.2.5.1_1        --> 1.2.5.2
devel/hs-IORefCAS                        0.2_3            --> 0.2.0.1
devel/hs-MonadRandom                     0.1.8            --> 0.1.9
devel/hs-QuickCheck                      2.5.1.1_1        --> 2.6
devel/hs-abstract-deque                  0.1.6_1          --> 0.2
devel/hs-alex                            3.0.2_1          --> 3.0.5
devel/hs-async                           2.0.1.3_1        --> 2.0.1.4
devel/hs-basic-prelude                   0.3.4.0          --> 0.3.5.0
devel/hs-blaze-builder                   0.3.1.0_4        --> 0.3.1.1
devel/hs-byteorder                       1.0.3_4          --> 1.0.4
devel/hs-cabal-install                   0.14.0_4         --> 1.16.0.2
devel/hs-classy-prelude                  0.5.3            --> 0.5.7
devel/hs-cmdargs                         0.10.2           --> 0.10.3
devel/hs-conduit                         1.0.2            --> 1.0.5
devel/hs-data-default                    0.5.0_1          --> 0.5.3
devel/hs-fsnotify                        0.0.6            --> 0.0.11
devel/hs-generic-deriving                1.4.0            --> 1.5.0
devel/hs-git-annex                       4.20130323_1     --> 4.20130601
devel/hs-haddock                         2.11.0_1         --> 2.13.2
devel/hs-hashable                        1.2.0.5          --> 1.1.2.5,1
devel/hs-hlint                           1.8.43           --> 1.8.45
devel/hs-hspec                           1.4.4            --> 1.5.4
devel/hs-hspec-expectations              0.3.0.3_1        --> 0.3.2
devel/hs-largeword                       1.0.4            --> 1.0.5
devel/hs-lens                            3.8.7.3          --> 3.9.0.2
devel/hs-lifted-base                     0.2.0.2          --> 0.2.0.5
devel/hs-monad-control                   0.3.1.4_1        --> 0.3.2.1
devel/hs-monad-logger                    0.3.0.1          --> 0.3.1.1
devel/hs-monad-par                       0.3.4.1          --> 0.3.4.2
devel/hs-pool-conduit                    0.1.1_1          --> 0.1.2
devel/hs-profunctors                     3.3              --> 3.3.0.1
devel/hs-reflection                      1.1.7            --> 1.3.2
devel/hs-resourcet                       0.4.5            --> 0.4.7.1
devel/hs-show                            0.5              --> 0.6
devel/hs-split                           0.2.1.1_1        --> 0.2.2
devel/hs-stm                             2.4_1            --> 2.4.2
devel/hs-syb                             0.3.7_1          --> 0.4.0
devel/hs-tagged                          0.4.4_1          --> 0.6
devel/hs-text                            0.11.2.3_1       --> 0.11.3.1
devel/hs-unix-compat                     0.4.1.0          --> 0.4.1.1
devel/hs-unix-time                       0.1.5            --> 0.1.8
devel/hs-unordered-containers            0.2.3.0          --> 0.2.3.1
devel/hs-utility-ht                      0.0.8_3          --> 0.0.9
devel/hs-uuagc                           0.9.42.2_3       --> 0.9.42.3
devel/hs-uuid                            1.2.9            --> 1.2.13
devel/hs-void                            0.5.11           --> 0.6
math/hs-NumInstances                     1.2              --> 1.3
math/hs-comonad-transformers             3.0.1_1          --> 3.0.2
math/hs-semigroups                       0.9              --> 0.9.1
math/hs-statistics                       0.10.2.0_2       --> 0.10.3.1
net/hs-network                           2.3.1.0_1        --> 2.4.1.2
net/hs-publicsuffixlist                  0.0.3            --> 0.1
net/hs-socks                             0.5.0            --> 0.5.1
security/hs-certificate                  1.3.5_1          --> 1.3.7
security/hs-cipher-aes                   0.1.7            --> 0.1.8
security/hs-clientsession                0.8.1_1          --> 0.9
security/hs-crypto-api                   0.11             --> 0.12.1
security/hs-crypto-conduit               0.5.0            --> 0.5.2
security/hs-crypto-pubkey                0.1.2_1          --> 0.1.3
security/hs-crypto-pubkey-types          0.2.0_1          --> 0.3.2
security/hs-cryptocipher                 0.4.0_1          --> 0.5.0
security/hs-cryptohash                   0.8.3_1          --> 0.9.0
security/hs-skein                        0.1.0.12         --> 1.0.3
textproc/hs-HaXml                        1.23.3_2         --> 1.24
textproc/hs-attoparsec-conduit           1.0.0            --> 1.0.1
textproc/hs-blaze-html                   0.6.0.0          --> 0.6.1.1
textproc/hs-blaze-markup                 0.5.1.4          --> 0.5.1.5
textproc/hs-case-insensitive             1.0              --> 1.0.0.2
textproc/hs-highlighting-kate            0.5.3.8          --> 0.5.3.9
textproc/hs-hs-bibutils                  4.17             --> 5.0
textproc/hs-polyparse                    1.8_3            --> 1.9
textproc/hs-texmath                      0.6.1.3          --> 0.6.1.5
textproc/hs-xml                          1.3.12_4         --> 1.3.13
textproc/hs-yaml                         0.8.2.3          --> 0.8.2.4
www/hs-HTTP                              4000.2.5_1       --> 4000.2.8
www/hs-cgi                               3001.1.7.4_6,1   --> 3001.1.7.5,1
www/hs-hamlet                            1.1.6.3          --> 1.1.7.1
www/hs-happstack-server                  7.1.7            --> 7.1.7.1
www/hs-heist                             0.11.1           --> 0.12.0
www/hs-http-conduit                      1.9.0            --> 1.9.3
www/hs-http-reverse-proxy                0.1.1.3          --> 0.1.1.6
www/hs-shakespeare                       1.0.3.1          --> 1.0.5
www/hs-shakespeare-css                   1.0.3            --> 1.0.5.1
www/hs-shakespeare-js                    1.1.2.1          --> 1.1.4
www/hs-snap                              0.11.2           --> 0.12.0
www/hs-wai-extra                         1.3.2.4          --> 1.3.4
www/hs-wai-test                          1.3.0.4          --> 1.3.1
www/hs-warp                              1.3.7.4          --> 1.3.8.1
www/hs-yesod                             1.1.9.2          --> 1.2.0.1
www/hs-yesod-auth                        1.1.5.3          --> 1.2.0
www/hs-yesod-core                        1.1.8.2          --> 1.2.0.4
www/hs-yesod-form                        1.2.1.3          --> 1.3.0
www/hs-yesod-persistent                  1.1.0.1_1        --> 1.2.0
www/hs-yesod-platform                    1.1.8            --> 1.2.0.1
www/hs-yesod-routes                      1.1.2            --> 1.2.0
www/hs-yesod-static                      1.1.2.2          --> 1.2.0
www/hs-yesod-test                        0.3.5            --> 1.2.0
x11-toolkits/hs-GLUT                     2.1.2.1_7,1      --> 2.4.0.0,1
x11-toolkits/hs-OpenGL                   2.2.3.1_4,1      --> 2.8.0.0,1
x11/hs-xmobar                            0.16_2           --> 0.17

Removed ports (2):

www/hs-yesod-default                     1.1.3.2
www/hs-yesod-json                        1.1.2.1

PR:		ports/179146 [1]
Requested by:	Omar Thameen <omar@biglist.com> [1]
Reported by:	sperber, bapt [2]
Tested by:	sperber [2]
Obtained from:	FreeBSD Haskell
2013-06-04 18:53:40 +00:00
Pietro Cerutti
bce8d60338 - Update to 8.4.20
Release notes: http://www.tcl.tk/software/tcltk/8.4.html

  This is the twentieth and *FINAL* patch release of Tcl/Tk 8.4.
  With this release, support for Tcl/Tk 8.4 comes to an end.

  These ports are going to be deprecated soon. Please use 8.5 or 8.6.
2013-06-04 10:37:25 +00:00
Pawel Pekala
0964e7868d - Update x11-toolkits/c++-gtk-utils to 2.2.0
add support for DOCS option, switch to PORTDOCS
- Update comms/efax-gtk to 3.2.12
2013-06-02 11:54:07 +00:00
Rene Ladan
1759b37af1 - Finish removal of support for Linux 2.4 in bsd.linux-apps.mk and
bsd.linux-rpm.mk.  The default linux version is now Fedora 10.
- Remove now obsolete checks for Linux 2.4 in emulators/linux_base-c6,
  emulators/linux_base-f10, and emulators/linux_dist-gentoo-stage3.
  While there, remove superfluous -p argument from ${MKDIR}.
- Remove now obsolete check for Linux 2.4 or FreeBSD 6 and lower from
  astro/google-earth.
- Remove expired Fedora Core 4 ports which were only used on FreeBSD 7
  and below.
- Update LEGAL and MOVED

PR:		ports/176877
Submitted by:	myself
Approved by:	portmgr (bapt)
Exp-run by:	bapt
2013-05-30 09:11:52 +00:00
Niclas Zeising
92ea0d614b The FreeBSD x11 team proudly presents
an zeising, kwm, miwi, bapt, eadler production:

Xorg 7.7

Starring:
xserver 1.12.4 (new xorg only)
Mesa 8.0.4, including libGL, libGLU and dri (new xorg only)
libX11 1.5.0
libxcb 1.9
libdrm 2.4.42 (new xorg only)
freeglut 2.8.1
Also starring:
Updates to drivers and other libraries and utilities

Additional notes:
Change pkgconf to be a build dependency.
Add a new USE_XORG, xcb, to depend on libxcb and update all ports to use
this.
Trim makefile headers.
Take maintanership of x11/xcb-proto, ok'd by ashish.
If you are running WITH_NEW_XORG=, you need to rebuild all installed
drivers, see UPDATING for more information.
Various fixes to make ports compile.

PR:		ports/177942
Exp-run by:	miwi
Approved by:	portmgr (miwi)

Thanks to all who helped testing!
2013-05-25 14:37:02 +00:00
Koop Mast
6da6b2d242 Rework the references ports for glib20, gtk20 and gtk30 again to fix the
package breakage introduced in the previous commit. Add a SUFFUX to
the install dir for reference ports for gtk20 and gtk30. This allows
them both to be installed at the same time.

Submitted by:	QaT
Pointyhat to:	kwm
2013-05-23 13:02:32 +00:00
Pietro Cerutti
3eb114d1a3 - Bump PORTREVISION on Tcl/Tk ports so that r316025 takes effect
Reported by:	bdrewery
2013-05-22 13:04:58 +00:00
Koop Mast
3d5f704231 Update to 2.24.18. 2013-05-22 12:03:16 +00:00
Koop Mast
c0e23506ba Make PORTDOCS in the -reference framework overwriteable.
So some of the -reference ports that install multiple docs or "books" can
make sure they get installed correctly. This impacts the -reference ports
of glib20, gtk20 and gtk30.

The problem was that for example in glib20 the reference was installed in
share/doc/glib/{glib,gio,gobject} however devhelp only look in
share/doc/${book} for the *.devhelp2 file.

PR:		ports/173577
Submitted by:	Victor Balada Diaz <victor@bsdes.net>
2013-05-22 11:32:22 +00:00
Raphael Kubo da Costa
00093d96e5 Patch multiple vulnerabilities in x11-toolkits/plib.
PR:		ports/178710
Submitted by:	Denny Lin <dennylin93@hs.ntnu.edu.tw>
2013-05-19 14:06:36 +00:00
Grzegorz Blach
4aa416657e - Update EFL libraries to 1.7.7
- Update Enlightenment to 0.17.3

Approved by:	crees (mentor)
2013-05-18 19:36:31 +00:00
Pietro Cerutti
083991bbf1 - Fix typo, introduced in my previous commit 2013-05-17 21:56:21 +00:00
Pietro Cerutti
364d6b0e9d - Add explicit USE_XORG=X11 so CONFIGURE_ARGS gets --x-includes
Reported by:	PortBuild (via erwin)
2013-05-17 21:54:30 +00:00
Raphael Kubo da Costa
ac6d3964e4 Add the patch I added to qt4-corelib in r317896 to some other Qt ports.
These ports which previously failed to build with clang-i386 use their
private copies of the qsimd_p.h header, since this private header is not
installed at all (which, in turns, makes the PORTREVISION bump in
qt4-corelib quite useless).

We thus need to add a copy of the same patch to all these ports to make sure
the qsim_p.h they use when being built is actually the one we want.

Hopefully this gets miwi happy and people on clang-i386 can build these
ports again.
2013-05-15 11:40:38 +00:00
Pietro Cerutti
0c2458a66c - Fix build with Tcl/Tk 8.6
Reported by:	miwi (Tcl/Tk 86 exp-run)
Approved by:	portmgr
2013-05-15 09:44:44 +00:00
Pietro Cerutti
f3a78c5dfa - Fix build on amd64 < 9.0 by disabling assembly optimizations 2013-05-15 08:43:42 +00:00
Pietro Cerutti
1c92957e84 - Fix build with Tcl/Tk 8.6 [1]
- Trim Makefile headers
- Fix WWW line in pkg-descr
- Remove article from COMMENT

Reported by:	miwi (Tcl/Tk 86 exp-run)
Approved by:	portmgr
2013-05-14 14:16:52 +00:00
Pietro Cerutti
925db9714b - Fix PLIST
Reported by:	QAT
2013-05-14 07:06:21 +00:00
Pietro Cerutti
44f845b7b4 - Update to 2.0.1
- Fix build with Tcl/Tk 8.6 [1]

Reported by:	miwi (Tcl/Tk 86 exp-run)
2013-05-13 15:46:13 +00:00
Pietro Cerutti
c851a36d5c - Update to 2.4.1
- Fix build with Tcl/Tk 8.6 [1]

Reported by:	miwi (Tcl/Tk 86 exp-run)
2013-05-13 15:45:17 +00:00
Pietro Cerutti
a78c39b47e - Fix build with Tcl 8.6
Reported by:	miwi (Tcl/Tk 86 exp-run)
2013-05-13 15:42:49 +00:00
Pietro Cerutti
fcd211203a - Update to 1.7.39
Changes:
  * Small changes to return types in FXIO (and subclasses) for flush(),
    eof().
  * FXSemaphore implemented in terms of mutex and condition on MacOSX and
    Minix.
  * FXMat4d and FXMat2d AVX accelerated when compiled for AVX.
  * ADA programming language patterns added to Adie's syntax file.
  * Fix in PathFinder escapement of filenames prior to spawning process to
    open document.
  * Compile-time check improved before implementing call to utimensat() in
    FXStat.
2013-05-13 14:50:52 +00:00
Pietro Cerutti
53514d0e91 - Respect PREFIX and DOCSDIR
Reported by:	miwi (Tcl/Tk 86 exp-run)
2013-05-13 13:22:54 +00:00
Koop Mast
dc6182f187 This ports will link to dbus-glib if available. Switch to dbus-glib so it
always enables DBUS support in unique.

PR:		ports/178287
Submitted by:	pawel@
2013-05-13 11:44:07 +00:00
Guido Falsi
26f1270650 Update to 0.1.6 2013-05-13 11:24:55 +00:00
Oliver Lehmann
ab5f19a195 fix compile with boost >= 1.50 2013-05-13 08:37:48 +00:00
Max Brazhnikov
7678193c3d - Add global options (DOCS, NLS, etc) to the OPTIONS_DEFINE and partly revert r315222 [1]
- Convert WITH_DEBUG to new options framework
- Trim Makefile header
- Adjust COMMENTs
- Reformat/update description

[1] See follow-up discussion: http://lists.freebsd.org/pipermail/svn-ports-head/2013-March/016094.html
2013-05-12 11:48:49 +00:00
Raphael Kubo da Costa
760949cffa Import my upstream commit to fix the detection of 3dNOW! support.
The patch was originally written by dim@ and fixes the way Qt includes the
<mm3dnow.h> header. See the upstream commits' message for more information.

Practically speaking, this should make the Qt ports build with clang on i386
again, and allows us to revert commits r316233, r316348 and r316341: miwi
was very laconic in his commit messages, but the changes all point to the
issue being fixed here.

Submitted by:	dim
2013-05-11 17:31:45 +00:00
Olivier Duchateau
edee314615 - Bump PORTREVISION after update of x11/libxfce4util, and x11-wm/xfce4-panel
While I'm here,
- Finish to convert USES
- Trim Makefile header
- Remove ABI version in LIB_DEPENDS
- Remove desktopfileutils, because MimeType entry is not present in desktop file
2013-05-08 16:05:21 +00:00
Baptiste Daroussin
83b78f74bc Finish converting x11* from WITHOUT_NLS to PORT_OPTIONS:MNLS 2013-05-06 06:41:15 +00:00
Bryan Drewery
63f76304d6 - When DISABLE_MAKE_JOBS or MAKE_JOBS_UNSAFE is set, also set
MAKE_JOBS_NUMBER to 1. This makes it safe to do -j${MAKE_JOBS_NUMBER}
  without any extra logic.
- Cleanup ports working around the empty MAKE_JOBS_NUMBER
- This also fixes several ports that were expecting MAKE_JOBS_NUMBER
  to always have a number

Reviewed by:	bapt
Spotted by:	John Marino <draco@marino.st>
With hat:	portmgr
2013-05-04 14:06:08 +00:00
Guido Falsi
94e79cbba1 - Update to 3.3.1
PR:		ports/178307, ports/178308
Submitted by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
2013-05-03 20:50:15 +00:00
Emanuel Haupt
0430877db8 Chase security/libgcrypt update 2013-05-03 17:37:13 +00:00
Jason Helfman
469eb887d2 - conversion to USES framework for gettext
Approved by:	portmgr (bapt@)
2013-05-01 07:20:26 +00:00
Armin Pirkovitsch
d16d2ca423 - Update lang/librep to 0.92.3
- Remove shlib versions
 - Add USE_READLINE and USES= pkgconfig
 - Update CPPFLAGS and LDFLAGS
 - Update pkg-descr

- Update x11-toolkits/rep-gtk2 to 0.90.8.1

- Update x11-wm/sawfish to 1.9.1
 - Add ART20 license and set LICENSE_COMB to multi
 - Update USE_XORG to include xtst
 - Add USES= pkgconfig
 - Add PORTSCOUT to exclude unstable releases

- Trim Makefile headers
- Update MASTER_SITES

PR:           ports/170173
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Approved by:  beat (mentor)
2013-04-30 17:43:43 +00:00
Baptiste Daroussin
1b7bb411e0 Update to use: USES+= ada
Additionally:
1) A pre-generated reference manual has been added as a second distfile and is installed
2) License added
3) DESTDIR support added (comes from pkgsrc) (will be useful once staging will hit the tree)
4) gcc 4.7-specific patches
5) PLIST order alphabetically and fix issues with it.

PR:		ports/178145
Submitted by:	John Marino <draco@marino.st>
2013-04-30 11:57:02 +00:00
Baptiste Daroussin
dddd7142fb Remove latest references to USE_BISON 2013-04-29 12:59:35 +00:00
Baptiste Daroussin
5271da855f Rely on bsdtar to autodetermine the format of the distfiles when possible
For a while now bsdtar is able to autotermine compression and archive format.
Let's then use tar directly instead of piping to tar.

Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
2013-04-29 08:57:12 +00:00
Baptiste Daroussin
56c5e147c5 Convert the last USE_ICONV to USES=iconv 2013-04-27 22:09:15 +00:00
Koop Mast
05d2886d27 Add Gstreamer 1.0.7. This is the new stable version of the
Gstreamer multimedia framework.

Use the USE_GSTREAMER1 macro to select Gstreamer 1.0 plugins. A new chapter
for the porters handbook about gstreamer is a work in progress.

X related plugins are now stand alone. The gio plugin is now part of the
gstreamer1-plugins port and the oss plugins are now part of the
gstreamer1-plugins-good port.

Note that the pulseaudio plugin is missing because it needs a newer version
of pulseaudio. Also there are still a number of plugins from -bad which
haven't been ported to the 1.0 API yet.
2013-04-27 20:56:38 +00:00
Dirk Meyer
89d548370a - update WWW 2013-04-27 08:43:32 +00:00
Alex Kozlov
83f02b963c - Convert USE_GETTEXT to USES (part 4)
Approved by:	portmgr (bapt)
2013-04-26 10:44:28 +00:00
Alex Kozlov
e159824929 - Convert USE_GETTEXT to USES (part 3)
Approved by:	portmgr (bapt)
2013-04-24 18:10:30 +00:00
Alex Kozlov
08c99f3ad5 - Convert USE_GETTEXT to USES (part 1)
Approved by:	portmgr (bapt)
2013-04-24 07:35:40 +00:00
Sunpoet Po-Chuan Hsieh
bac3ab41c1 - Add LICENSE
- Remove outdated PERL_LEVEL check
- Cleanup Makefile header
2013-04-23 17:09:04 +00:00
Sunpoet Po-Chuan Hsieh
1aa9d303bc - Add LICENSE
- Remove outdated PERL_LEVEL check
- Cleanup Makefile header
2013-04-23 17:07:20 +00:00
Pietro Cerutti
24eec8eea8 - Chase x11-toolkits/fox16 shlib version bump 2013-04-23 16:45:40 +00:00
Pietro Cerutti
2de1af3e3f - Update to 1.6.49
Changes:
  * Check index out of bounds in FXTabBook::setCurrent().
2013-04-23 16:41:07 +00:00
Baptiste Daroussin
992586fa08 Finish converting the whole ports tree to USES=pkgconfig 2013-04-23 14:20:25 +00:00
Pietro Cerutti
fef02240ea - Remove lang/tcl83 and x11-toolkits/tk83 (expired)
- Remove references to Tcl/Tk 8.3 from bsd.tcl.mk
- Update ports that required 8.3+ to require 8.4+ (since 8.5 is the
  default, I don't expect this change to cause much trouble)
2013-04-23 11:51:52 +00:00
Grzegorz Blach
3325b5d3dd - Update EFL libraries to 1.7.6(.1)
- Update Enlightenment to 0.17.2.1

Approved by:	crees (mentor)
2013-04-22 20:35:19 +00:00
Martin Wilke
1e188c75cf - Make qt4 compile under FreeBSD 10
Approved by:	makc @#kde-freebsd/freenode
2013-04-22 15:03:18 +00:00
Pietro Cerutti
80feea0bb3 - Fix a long standing problem in tclConfig.sh and tkConfig.sh, where paths
were set based on WRKSRC instead of PREFIX.

  This mainly affected TEA-based extensions that source tclConfig.sh /
  tkConfig.sh to set important variables. An example is TCL_SRC_DIR, which
  is used to locate Tcl/Tk private header files such as tclUnixPort.h or
  tkUnixPort.h. This variable was previously set to WRKSRC, which caused
  ports to need additional tweaks to CFLAGS or CONFIGURE_ARGS.

  It should now be possible to build TEA-based extensions by specifying only
  the CONFIGURE_ARGS --with-tcl=${TCL_LIBDIR} / --with-tk=${TK_LIBDIR}.

Feature safe:	yes
Approved by:	bapt (portmgr)
2013-04-18 08:20:59 +00:00
Dirk Meyer
cfa113c350 - make portlint happier
- drop maintainership
  cause options where removed
Feature safe: yes
2013-04-17 21:49:30 +00:00
Martin Wilke
5f5b735619 - Mark BROKEN fails to build
I/usr/local/include -DUSE_XIM -c rbgdkcursor.c
rbgdkcursor.c:48:27: error: rbgdkcursors.h: No such file or directory
*** Error code 1

Feature safe:	yes
2013-04-17 15:31:06 +00:00
Pietro Cerutti
3b9788da01 - Update Tcl/Tk 8.5 to 8.5.14
Release notes: http://code.activestate.com/lists/tcl-core/13208/

Feature safe:	yes
2013-04-17 08:59:53 +00:00
Pawel Pekala
487fd80ecf Unbreak after graphviz update
PR:		ports/177023
Submitted by:	Bojan Petrovic <bojan_petrovic@fastmail.fm>
2013-03-29 19:55:58 +00:00