/astro/wmsun/

alt-api: Broken for more than 6 months
2015-06-29 audio/padevchooser: Broken for more than 6 months
2015-06-29 devel/xtla: Broken for more than 6 months
2015-06-29 mail/mail-notification: Broken for more than 6 months
2015-06-29 ports-mgmt/gnome-packagekit: Broken for more than 6 months
2015-06-29 sysutils/py-salt-api: Broken for more than 6 months
Deprecate ports broken for more than 6 months 2015-05-29T17:46:25+00:00 antoine antoine@FreeBSD.org 2015-05-29T17:46:25+00:00 2f8af17e6d616d6d992824b2745efc4e12afbb94

The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2. 2014-11-19T11:49:04+00:00 kwm kwm@FreeBSD.org 2014-11-19T11:49:04+00:00 be884cd42990f2e755c2c06bc38c8042cb8b0325 Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up. This commit removes the old GNOME 2 desktop, bindings and some ports that can't be compiled. A few ports where updated to more recent versions to allow them to compile with this update. Apart from updating ports to newer versions GDM is more integrated with gnome-shell now, and handles several things for the GNOME desktop such as screen locking. If you want to use GNOME 3 via startx, you will have to add your own lock screen/screensaver. For example xscreensaver can be used for sessions started without GDM. Shell Extensions can be installed via https://extensions.gnome.org/ , we have ported a few that can't be installed via this way. The old gnome-utils and gnome-games ports where split up into single ports and where converted to meta-ports. gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but if you use startx you need to do this yourself. Upgrade instructions: Delete the old and conflicting packages: # pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \ guile gcalctool gnome-media libgnomekbd # pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \ evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center For package users the following lines will be enough: # pkg upgrade # pkg install gnome3 For ports users should do the following: # portmaster -a # portmaster x11/gnome3 We are currently aware of two issues. The first issue is a bug in the file monitoring code in the glib20 port. This bug causes glib programs to crash when files in a monitored directory are added or removed. Upstream is aware of the problem, but since the problem is quite complex there is no solution yet. This problem isn't restricted to BSD. The second issue is that on certain video cards totem will display a purple/pink overlay on the video. It not clear yet where the issues comes from. Major thanks goes to Gustau Perez for being a driving force behind getting GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs. This update was also made possible by: Joe Maloney Kris Moore Beeblebrox Ryan Lortie Antoine Jacoutot and everyone I missed
Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up.

This commit removes the old GNOME 2 desktop, bindings and some ports that
can't be compiled. A few ports where updated to more recent versions to
allow them to compile with this update.

Apart from updating ports to newer versions

GDM is more integrated with gnome-shell now, and handles several things for
the GNOME desktop such as screen locking. If you want to use GNOME 3 via
startx, you will have to add your own lock screen/screensaver. For example xscreensaver
can be used for sessions started without GDM.

Shell Extensions can be installed via https://extensions.gnome.org/ , we have
ported a few that can't be installed via this way.
The old gnome-utils and gnome-games ports where split up into single ports
and where converted to meta-ports.
gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but
if you use startx you need to do this yourself.

Upgrade instructions:

Delete the old and conflicting packages:
# pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \
    guile gcalctool gnome-media libgnomekbd
# pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \
    evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center

For package users the following lines will be enough:
# pkg upgrade
# pkg install gnome3

For ports users should do the following:
# portmaster -a
# portmaster x11/gnome3

We are currently aware of two issues. The first issue is a bug in the
file monitoring code in the glib20 port. This bug causes glib programs
to crash when files in a monitored directory are added or removed.
Upstream is aware of the problem, but since the problem is quite complex
there is no solution yet. This problem isn't restricted to BSD.

The second issue is that on certain video cards totem will display a
purple/pink overlay on the video. It not clear yet where the issues
comes from.

Major thanks goes to Gustau Perez for being a driving force behind getting
GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs.

This update was also made possible by:
	Joe Maloney
	Kris Moore
	Beeblebrox
	Ryan Lortie
	Antoine Jacoutot
	and everyone I missed
Cleanup plist 2014-10-20T06:35:58+00:00 bapt bapt@FreeBSD.org 2014-10-20T06:35:58+00:00 e2bb879256439a8ff2a063cb3c10aca73794f20f

- Fix missing library problems when the linker enforces explicit linking 2014-08-26T14:06:08+00:00 tijl tijl@FreeBSD.org 2014-08-26T14:06:08+00:00 f8357b5cbaa160ccdf9943cac099f5e092c591da PR: 192062 Exp-run by: antoine Approved by: portmgr (antoine)
PR:		192062
Exp-run by:	antoine
Approved by:	portmgr (antoine)
- Remove unneeded LIB_DEPENDS for avahi. 2014-08-21T03:05:52+00:00 bdrewery bdrewery@FreeBSD.org 2014-08-21T03:05:52+00:00 f00fc08e931521c57e9c8b0ba4c04e8303c68554 padevchooser does not link directly to avahi. Pulseaudio links directly to it and already depends on it. Pkg only considers library dependencies for DT_NEEDED links. Because avahi is not actually needed it is not registered as a dependency in the package. This causes poudriere to rebuild this port on every build because it sees avahi in LIB_DEPENDS but not registered in the package. ldd(1) shows the indirect dependency on avahi, however the direct deps can be seen with ldd -a or readelf -d. With hat: portmgr
  padevchooser does not link directly to avahi. Pulseaudio links directly to it
  and already depends on it. Pkg only considers library dependencies for
  DT_NEEDED links. Because avahi is not actually needed it is not registered as
  a dependency in the package. This causes poudriere to rebuild this port
  on every build because it sees avahi in LIB_DEPENDS but not registered in
  the package.
  ldd(1) shows the indirect dependency on avahi, however the direct deps can
  be seen with ldd -a or readelf -d.

With hat:	portmgr
Staging support. 2014-05-12T06:58:11+00:00 romain romain@FreeBSD.org 2014-05-12T06:58:11+00:00 d144e59712796efea2a94676904cb794d9fc87d1