./meta-pkgs/xfce4, Xfce

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 4.6.1nb2, Package name: xfce4-4.6.1nb2, Maintainer: dieter.NetBSD

Xfce is the next generation of the popular Xfce desktop.

This package does not contain anything by itself -- it is a
"meta-package" that depends on other Xfce packages. Its sole
purpose is to require dependencies so users can install this
package only and have all the Xfce stuff pulled in by the package
dependency mechanism.

This package installs Xfce without any extras.


Required to run:
[sysutils/xfce4-appfinder] [sysutils/xfce4-thunar] [sysutils/xfce4-xarchiver] [print/xfce4-print] [graphics/gnome-icon-theme] [graphics/xfce4-icon-theme] [editors/xfce4-mousepad] [audio/xfce4-mixer] [time/xfce4-orage] [wm/xfce4-wm] [wm/xfce4-wm-themes] [devel/glib2] [x11/gtk2] [x11/xfce4-panel] [x11/xfce4-session] [x11/xfce4-terminal] [x11/xfce4-utils] [x11/xfce4-gtk2-engine] [x11/xfce4-desktop] [sysutils/xfce4-volman] [x11/xfce4-settings]

Required to build:
[textproc/intltool] [lang/perl5] [pkgtools/x11-links] [devel/gmake] [devel/libtool-base] [devel/pkg-config] [x11/renderproto] [x11/xproto] [x11/fixesproto] [x11/inputproto] [x11/xextproto] [x11/randrproto] [x11/xcb-proto]

Master sites:


Version history: (Expand)


CVS history: (Expand)


   2010-01-18 10:59:46 by Thomas Klausner | Files touched by this commit (938)
Log message:
Second try at jpeg-8 recursive PKGREVISION bump.
   2010-01-17 13:02:58 by Thomas Klausner | Files touched by this commit (724) | Package updated
Log message:
Recursive PKGREVISION bump for jpeg update to 8.
   2009-11-05 21:15:41 by Reinoud Zandijk | Files touched by this commit (3) | Package updated
Log message:
Update sysutils/xfce4-volman to 0.2.0nb2 and add it to the xfce4 meta package
also adding the implicit package xfce4-thunar. This explains why i couldn't
find the xfce4 mounts as specified by pkg/40934.
   2009-09-16 03:15:36 by Jeremy C. Reed | Files touched by this commit (93)
Log message:
Upgrading Xfce to 4.6.1.

This is for PR #40984. This is based on work from
dieter roelants. Thank you Dieter.
Also I had done some work independently on this.
Hopefully, I am getting this all committed at one time.

The changelogs are at
http://www.xfce.org/documentation/changelogs/4.6.1
http://www.xfce.org/documentation/changelogs/4.6.0

Also don't need the xfce4-dev-tools for building. (It is only
needed when building from SVN source.)
   2009-08-26 21:58:47 by Jens Rehsack | Files touched by this commit (1461) | Package updated
Log message:
bump revision because of graphics/jpeg update
   2009-06-11 10:10:26 by Thomas Klausner | Files touched by this commit (17) | Package updated
Log message:
Bump PKGREVISION for vte-0.20.5.
   2009-05-19 10:59:39 by Thomas Klausner | Files touched by this commit (383)
Log message:
Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT
block). Uncomment some commented out LICENSE lines while here.
   2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252)
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.