non port: net/tigervnc/Makefile |
SVNWeb
|
Number of commits found: 67 |
Mon, 1 Apr 2019
|
[ 00:49 meta ]
net/tigervnc: Add options description
|
Sun, 31 Mar 2019
|
[ 13:10 meta ] (Only the first 10 of 13 ports in this commit are shown above. )
net/tigervnc: separate port into -server -and -viewer
since usually people want to install either server or client on the same
box. Formerly, net/tigervnc had options to build & install vncviewer(client)
but vncviewer could not be installed alone. Server components was necessary.
Now TigerVNC server and viewer are completely separeted and can be installed
independently.
Tested by: Juan Molina
Differential Revision: https://reviews.freebsd.org/D19709
|
Tue, 26 Mar 2019
|
[ 05:56 meta ]
net/tigervnc: remove unnecessary args from CMAKE_ARGS
as this argument is not necessary. ${STAGE} was typo of ${STAGEDIR}
however, ${STAGEDIR} should not be put here. ${STAGEDIR}${PREFIX} is not
correct. Fortunately, because of this typo, it was working correctly.
> -DCMAKE_INSTALL_PREFIX=${STAGE}${PREFIX}
Furthermore, the following argument is set by Mk/bsd.cmake.mk.
> -DCMAKE_INSTALL_PREFIX:PATH="${PREFIX}"
Both arguments are entirely same and redundant so removing this is definitely
safe and no-op.
Sponsored by: HAW International, Inc.
|
Fri, 15 Mar 2019
|
[ 03:44 meta ]
net/tigervnc: Switch to options helpers
- Cleanup unnecessary CFLAGS
- Switch shell substitution from `` to $()
- Switch to ImageMagick 7 (used only to create icons during build)
- s/XORG_WRKDIR/XORG_WRKSRC/ as the variable actually refers WRKSRC
- Use relative path to refer other ports as many other ports do that
Reviewed by: adamw
Differential Revision: https://reviews.freebsd.org/D19585
|
Thu, 24 Jan 2019
|
[ 05:09 linimon ]
Conditionalize the dependence of libunwind to x86-only to allow building
these ports on !x86.
libunwind is only available for x86; lang/ruby* already expresses this
correctly. Some of the rubygems did not: for the ones that already had
USE_RUBY, the dependency was overspecified in the first place.
Tested for no-harm on amd64.
While here, pet portlint where appropriate.
Approved by: portmgr (tier-2 blanket)
|
Tue, 25 Dec 2018
|
[ 20:25 tcberner ] (Only the first 10 of 1277 ports in this commit are shown above. )
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine
|
Sat, 10 Nov 2018
|
[ 19:57 kwm ] (Only the first 10 of 157 ports in this commit are shown above. )
Update ImageMagick to 6.9.10.14 [1]
* Add PKGNAMESUFFIX and rename the directory. This was done to show
that IM6 is not the "main" version. But still fully supported by upstream.
* Convert a number of options to optionhelpers.
* Add option for ISO/IEC 23008-12:2017 HEIF suport
* Add comment to pkg-descr explaining IM6's "legacy" tag.
* Add comment to the patch-config_policy.xml file why it still needed.
Please note that IM7 is not a drop in replacement due to library API and
command arguments changes. And as a result ports need to decide for themself
which version to use.
Chase these changes in all the ports that using IM6.
PR: 225102 (based on, only the version update) [1]
Submitted by: Pascal Christen <pascal.christen@hostpoint.ch>
|
Thu, 8 Nov 2018
|
[ 05:08 meta ]
net/tigervnc: Auto detect xorg-server version to patch
While here, pet portlint, etc.
- add USES=gl
- adjust CONFLICTS
- put DISTVERSIONPREFIX the right place
PR: 233044
Submitted by: rozhuk.im@gmail.com
Approved by: mentors (implicit)
Sponsored by: HAW International, Inc.
|
Tue, 11 Sep 2018
|
[ 18:34 zeising ] (Only the first 10 of 331 ports in this commit are shown above. )
Change x11/xorgproto to become a build dep
Change x11/xorgproto to become a build time dependency when added to
USE_XORG. Change the dependency to be on the port, rather than a file the
port installs.
Fix fallout.
Bump portrevision on depending ports.
PR: 230909
Reviewed by: eadler
Approved by: portmgr (antoine)
Obtained
from: https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto
exp-run: antoine
Differential Revision: https://reviews.freebsd.org/D16906
|
Tue, 31 Jul 2018
|
[ 18:41 zeising ] (Only the first 10 of 254 ports in this commit are shown above. )
Switch to xorgproto instead of individual packages
Upstream used to distribute protocol headers as separate packages, but has
decided to merge those to a common package, named xorgproto. This update
tracks that change.
* Add a new port, x11/xorgproto, with are protocol headers for xorg.
* Hook the new protocol port to the build and to infrastructure in
bsd.xorg.mk.
* Update all ports with a dependency on any of the old *proto packages to
instead depend on xorgproto. Bump portrevision.
* Delete the old *proto packages, update MOVED.
PR: 230023
Submitted by: zeising
Approved by: portmgr (antoine)
exp-run by: antoine
|
Fri, 20 Jul 2018
|
[ 08:17 meta ] (Only the first 10 of 11 ports in this commit are shown above. )
net/tigervnc: update 1.8.0 -> 1.9.0
While here,
* adjust USE_XORG
* bring IGNORE line earlier (-devel port)
* remove tridiavnc from CONFLICTS since it no longer exists
* some cosmetic changes on Makefile
Approved by: pi (mentor)
Relnotes: https://github.com/TigerVNC/tigervnc/releases/tag/v1.9.0
Differential Revision: https://reviews.freebsd.org/D16340
|
Tue, 20 Mar 2018
|
[ 06:16 meta ] (Only the first 10 of 23 ports in this commit are shown above. )
Update MAINTAINER to my new FreBSD.org account
also update my email address in "Created by:" field.
Approved by: hrs (mentor)
|
Sun, 25 Jun 2017
|
[ 21:07 tcberner ] (Only the first 10 of 115 ports in this commit are shown above. )
Make ninja opt-out in cmake.mk
Using ninja instead of make (1) can lead to significant speed ups while
building.
Therefore switch from having the ninja generator opt-in to having it opt-out.
Previously cmake-ports that wanted to use ninja could set
CMAKE_NINJA=yes
now, ports that do not work with ninja can set
cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.
The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary
PR: 219629
PR: 213331
Exp-run by: antoine
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D10748
|
Fri, 26 May 2017
|
[ 22:59 cpm ]
net/tigervnc: update to 1.8.0
- Remove CONFLICST with vnc as net/vnc no longer exists
- Pet portlint, move LIB_DEPENDS up and regenerate patches with make makepatch
Changes: https://github.com/TigerVNC/tigervnc/releases/tag/v1.8.0
PR: 219566
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
|
Tue, 23 May 2017
|
[ 05:03 rezny ] (Only the first 10 of 711 ports in this commit are shown above. )
Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10845
|
Fri, 12 May 2017
|
[ 18:46 rezny ] (Only the first 10 of 52 ports in this commit are shown above. )
Consolidate the Mesa ports, update to 17.0.4, and add Wayland option
* libGL, libEGL, libglesv2, libglapi, and gbm have been moved into mesa-libs,
graphics/dri has been renamed to mesa-dri, and USE_GL has been adjusted
* mesa-libs has a new WAYLAND option that enables platform support in libEGL
* mesa-dri now depends on graphics/s2tc for compressed texture support [1]
* re-remove obsolete dependency on makedepends [2]
* correct sed fix backported from 17.1 [3]
PR: 218799 (exp-run), 212762 [1], 218552 [2], 218562 [3]
Submitted by: dbn [1], jbeich [2,3]
Reported by: afiskon@devzen.ru [1]
Reviewed by: kwm, johalun0@gmail.com
Approved by: portmgr, swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10448
|
Wed, 22 Feb 2017
|
[ 18:56 rezny ]
Update patches to build with Xorg server 1.18
PR: 216989
Approved by: meta+ports@vmeta.jp (maintainer), swills (mentor)
Differential Revision: https://reviews.freebsd.org/D9710
|
Mon, 30 Jan 2017
|
[ 07:28 pi ]
net/tigervnc: update 1.7.0 -> 1.7.1
PR: 216387
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
Changes: https://github.com/TigerVNC/tigervnc/releases/tag/v1.7.1
MFH: 2017Q1
Security: CVE-2017-5581
|
Sun, 11 Dec 2016
|
[ 08:25 antoine ]
Those ports build fine with bsd make
|
Wed, 5 Oct 2016
|
[ 15:38 marino ]
net/tigervnc(-devel): runtime and stage-QA fix
Previous attempts to run tigervnc resulted in the server quitting:
vncserver: couldn't find "mcookie" on your PATH
With the attached patch, the vncserver now generates the "magic cookie".
While here, add the missing vietnamese translation to fix stage-QA checks.
The -devel version got the same fix and was revbumped even though it is
still ignored since it's no newer than the stable version.
PR: 213150
Reported by: Zane Bowers-Hadley (vvelox [at] vvelox.net)
Submitted by: maintainer
|
Mon, 12 Sep 2016
|
[ 14:22 kwm ]
Update tigervnc to 1.7.0.
Mark tigervnc-devel ignore since it contained the 1.7.0 RC.
PR: 212239
Approved by: maintainer
|
Sat, 9 Jul 2016
|
[ 04:13 cy ]
Include fixes from net/tigervnc-devel.
PR: 210908
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
Suggested by: cy@
|
Thu, 16 Jun 2016
|
[ 13:23 mat ] (Only the first 10 of 35 ports in this commit are shown above. )
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
|
Mon, 23 May 2016
|
[ 20:35 amdmi3 ] (Only the first 10 of 217 ports in this commit are shown above. )
Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by
default anyway and don't need to be listed
Approved by: portmgr blanket
|
Fri, 1 Apr 2016
|
[ 14:16 mat ] (Only the first 10 of 2612 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight
|
Sun, 27 Mar 2016
|
[ 14:58 tijl ] (Only the first 10 of 183 ports in this commit are shown above. )
- Update security/gnutls to 3.4.10.
- Rename the LIBDANE option DANE because that's the name of the protocol
supported by libgnutls-dane and gnutls-cli. Also clarify the option
description.
- Add an IDN option.
- libgnutls-openssl has been removed in 3.4. Some ports used this library
in their LIB_DEPENDS but no port actually required it.
- Some old API functions have been removed. Ports that used these have been
updated or patched to use the new API.
- Add a patch to print/cups to prevent overlinking of libgnutls.so.
- Bump PORTREVISION on dependent ports.
net-im/jabber: This port used the old API to give users fine grained
control over which crypto algorithms were used via a configuration file.
It's not immediately obvious how to port this to the new API so the port
always uses the defaults now.
www/hydra: Mark BROKEN. This uses more removed calls than the other ports,
is said to be alpha quality and not fully functional and has been abandoned
10 years ago.
PR: 207768
Exp-run by: antoine
Approved by: portmgr (antoine)
|
Sat, 19 Mar 2016
|
[ 17:53 feld ]
net/tigervnc: Remove HPJPG option
The HPJPG option has been broken and irrelevant since the ports tree
changed to make jpeg-turbo the default jpeg provider in r397084
PR: 208088
Approved by: maintainer
MFH: 2016Q1
|
Wed, 27 Jan 2016
|
[ 20:32 amdmi3 ]
- Update to 1.6.0
- While here, clarify LICENSE
PR: 206629
Submitted by: meta+ports@vmeta.jp (maintainer)
|
Sun, 27 Dec 2015
|
[ 07:55 riggs ]
Fix build break in the presence of multiple compilers
PR: 205139
Submitted by: lantw44@gmail.com
Approved by: meta+ports@vmeta.jp (maintainer)
MFH: 2015Q4 (build fix blanket)
|
Sun, 15 Nov 2015
|
[ 15:34 tijl ]
Let USES=autoreconf define AUTORECONF and use it throughout the tree.
PR: 204534
Approved by: portmgr (antoine)
|
Tue, 13 Oct 2015
|
[ 20:20 kwm ]
Add presentproto, which is a build dependancy of xorg-server. This should
fix tigervnc in poudriere again.
Submitted by: olgeni@
|
[ 15:30 kwm ]
Chase xorg-server 1.17 update.
Use the bundled patch for this xorg-server version, and rename the old
local patch for it so it applies to this patch.
Reported by: olgeni@
|
Tue, 14 Jul 2015
|
[ 18:51 amdmi3 ]
- Update to 1.5.0
Release note: https://github.com/TigerVNC/tigervnc/releases/tag/v1.5.0
Change highlights:
- IPv6 support in the servers
- You can now have two passwords, for full access and for "view only"
- syslog support in Xvnc
- GnuTLS priority configuration
- Performance fixes
- You can now easily start more clients on OS X
- More translations
PR: 201548
Submitted by: meta+ports@vmeta.jp (maintainer)
|
Mon, 22 Jun 2015
|
[ 18:33 antoine ] (Only the first 10 of 374 ports in this commit are shown above. )
Convert to USES=jpeg
|
Mon, 18 May 2015
|
[ 17:07 mat ] (Only the first 10 of 150 ports in this commit are shown above. )
Replace most occurences of github.com in MASTER_SITES with USE_GITHUB usage.
With hat: portmgr
Sponsored by: Absolight
|
Sat, 18 Apr 2015
|
[ 15:14 tijl ] (Only the first 10 of 22 ports in this commit are shown above. )
Convert to USES=autoreconf
|
Thu, 16 Apr 2015
|
[ 01:51 amdmi3 ]
- Add LICENSE_FILE
- Add CPE info
Approved by: portmgr blanket
|
Tue, 24 Mar 2015
|
[ 03:24 pi ]
net/tigervnc: 1.3.1 -> 1.4.3
Release-Notes:
https://github.com/TigerVNC/tigervnc/releases/tag/v1.4.3
- should solve longstanding issue with Ctrl-hotkeys in vncviewer
https://github.com/TigerVNC/tigervnc/issues/8
PR: 198721
Submitted by: Koichiro Iwao <meta+ports@vmeta.jp> (maintainer)
Requested by: Georgy Lukyanchenko <egorxe@gmail.com>
|
Fri, 2 Jan 2015
|
[ 18:46 pi ] (Only the first 10 of 104 ports in this commit are shown above. )
security/libgcrypt: 1.6.1 -> 1.6.2, bump depends
Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code. Take
care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in (Only the first 15 lines of the commit message are shown above )
|
Thu, 25 Dec 2014
|
[ 20:54 bapt ] (Only the first 10 of 446 ports in this commit are shown above. )
Bump portrevision after png update
|
[ 19:04 antoine ] (Only the first 10 of 332 ports in this commit are shown above. )
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
|
Fri, 19 Dec 2014
|
[ 23:03 dumbbell ] (Only the first 10 of 190 ports in this commit are shown above. )
x11-servers/xorg-server: Update to 1.14
The X.Org server has been updated to 1.14. The changes it brings are described
in a post on the Graphics team blog:
http://blogs.freebsdish.org/graphics/2014/11/19/xserver-1-14-update-ready/
The most noticable change is the DEVD input device autodetection backend
which is enabled by default, replacing the HAL backend. The keyboard
layout configuration must be migrated from HAL's .fdi files to X.Org
files. The procedure is explained in the post mentionned above.
Several ports were removed with this update, mainly because they are not
compatible with the X.Org server anymore:
o nvidia-driver-71
o nvidia-driver-96 (Only the first 15 lines of the commit message are shown above )
|
Fri, 24 Oct 2014
|
[ 16:21 mva ] (Only the first 10 of 88 ports in this commit are shown above. )
- Convert ports of net/ to new USES=python
Approved by: portmgr (implicit)
|
Wed, 10 Sep 2014
|
[ 20:50 gerald ] (Only the first 10 of 3171 ports in this commit are shown above. )
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
|
Tue, 5 Aug 2014
|
[ 22:13 tijl ] (Only the first 10 of 119 ports in this commit are shown above. )
Bump PORTREVISION on more ports that depend on libgcrypt after the update
in r363436 and remove the UPDATING entry because it did not guarantee
that all ports were updated nor that they were updated in the right order.
Also remove libgcrypt.la again.
PR: 192342
Approved by: portmgr (implicit, bump unstaged ports)
|
Mon, 28 Jul 2014
|
[ 06:43 novel ] (Only the first 10 of 13 ports in this commit are shown above. )
- Update security/libtasn1 to 4.0
- Add USES= libtool and set INSTALL_TARGET to install-strip
- Drop useless bsd.port.options.mk include
- Bump PORTREVISION of ports that depend on libtasn1 as
shlib version has changed
- Add an UPDATING entry for that
Exp-run by: antoine
|
Wed, 23 Jul 2014
|
[ 09:54 tijl ] (Only the first 10 of 139 ports in this commit are shown above. )
- Replace security/gnutls with security/gnutls3 and update to 3.2.15
- Bump PORTREVISION on all ports that depend on security/gnutls and
adjust all ports that depend on security/gnutls3
- Update mail/anubis to version 4.2 which supports gnutls 3.x
- Update mail/libvmime to a development snapshot (recommended by upstream
developers)
PR: 191274
Exp-run by: antoine
Approved by: portmgr (antoine)
|
Wed, 16 Jul 2014
|
[ 03:00 adamw ] (Only the first 10 of 88 ports in this commit are shown above. )
Add DOCS option for ports with PORTDOCS in plist.
|
Wed, 9 Jul 2014
|
[ 16:41 tijl ]
Convert to USES=libtool
|
Wed, 25 Jun 2014
|
[ 05:35 bapt ] (Only the first 10 of 304 ports in this commit are shown above. )
Convert GMAKE to MAKE_CMD
Please note that lots of invocation of MAKE_CMD here are wrong as they do not
properly respect MAKE_ENV and friends
With hat: portmgr
|
Wed, 16 Apr 2014
|
[ 18:28 zeising ] (Only the first 10 of 1008 ports in this commit are shown above. )
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well (Only the first 15 lines of the commit message are shown above )
|
Sat, 22 Mar 2014
|
[ 07:36 swills ]
- Update to 1.3.1 security release, announce message is here:
http://sourceforge.net/p/tigervnc/mailman/message/32120476/
PR: ports/187777
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
Security: CVE-2014-0011
|
Wed, 12 Mar 2014
|
[ 15:14 swills ]
- Fix disabling VIEWER option didn't work (obtained from upstream [1])
- Add missing dependency on ImageMagick required to generate icons
during the build and use these icons for DESKTOP_ENTRIES
- Fix paths in CONFIGURE_ARGS which refer files from other ports
- Support stage
- Bump PORTREVISION for package change
PR: ports/187007
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
Obtained from: http://sourceforge.net/p/tigervnc/code/5161/ [1]
|
Mon, 16 Dec 2013
|
[ 11:11 zeising ] (Only the first 10 of 402 ports in this commit are shown above. )
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]
|
Sun, 3 Nov 2013
|
[ 09:22 novel ]
- Chase security/libtasn1 update
- Add UPDATING entry
|
Sun, 29 Sep 2013
|
[ 17:01 zeising ] (Only the first 10 of 142 ports in this commit are shown above. )
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)
(Only the first 15 lines of the commit message are shown above )
|
Fri, 20 Sep 2013
|
[ 22:10 bapt ] (Only the first 10 of 1288 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
net)
|
Wed, 11 Sep 2013
|
[ 13:20 wg ] (Only the first 10 of 11 ports in this commit are shown above. )
net/tigervnc: update to 1.3.0
- Update to 1.3.0 [1]
- Add BUILD_DEPENDS on bash [1]
- Adjust CONFIGURE_ARGS for two different versions of xorg [1]
- Normalize COMMENT [1]
- USES gmake
- Convert lib depends to new syntax
Changes: http://sourceforge.net/mailarchive/message.php?msg_id=31144665
PR: ports/180911 [1]
Submitted by: Koichiro IWAO <meta+ports vmeta.jp> (maintainer)
|
Mon, 24 Jun 2013
|
[ 14:48 wg ]
net/tigervnc: fix build depends
- Add font-util as BUILD_DEPENDS
PR: ports/179838
Approved by: maintainer
|
Wed, 29 May 2013
|
[ 16:29 swills ]
- Add backport patches to support xorg-server 1.12.x
- Fix the build after xorg mega-update
- Fix typo s/LISENCE/LICENSE/
PR: ports/179018
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp>
|
Sat, 25 May 2013
|
[ 14:37 zeising ] (Only the first 10 of 518 ports in this commit are shown above. )
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
(Only the first 15 lines of the commit message are shown above )
|
Sun, 19 May 2013
|
[ 21:28 swills ]
- Add missing dependency on x11/xkeyboard-config and x11/xkbcomp
- Move xorg-macros from BUILD_DEPENDS to USE_XORG
- Install desktop entry file with vncviewer
- Add LICENSE
- Cleanup CONFIGURE_ARGS
PR: ports/178602
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp> (maintainer)
|
Fri, 3 May 2013
|
[ 16:36 ehaupt ] (Only the first 10 of 95 ports in this commit are shown above. )
Chase security/libgcrypt update
|
Fri, 26 Apr 2013
|
[ 10:44 ak ] (Only the first 10 of 277 ports in this commit are shown above. )
- Convert USE_GETTEXT to USES (part 4)
Approved by: portmgr (bapt)
|
Tue, 23 Apr 2013
|
[ 14:20 bapt ] (Only the first 10 of 407 ports in this commit are shown above. )
Finish converting the whole ports tree to USES=pkgconfig
|
Sun, 24 Mar 2013
|
[ 16:24 swills ]
- Convert to USES
|
[ 15:05 swills ] (Only the first 10 of 11 ports in this commit are shown above. )
TigerVNC is a high-performance, platform-neutral implementation of VNC,
a client/server application that allows users to launch and interact with
graphical applications on remote machines.
WWW: http://tigervnc.org/
PR: ports/175801
Submitted by: Koichiro IWAO <meta+ports@vmeta.jp>
|
Number of commits found: 67 |