./x11/gnustep-preferences, Application for setting preferences for the GNUstep system

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


Branch: CURRENT, Version: 1.2.0nb20, Package name: gnustep-preferences-1.2.0nb20, Maintainer: adam

Preferences.app is, functionally, a clone of NeXTstep/OPENSTEP tool of
the same name. Just like the original program, it's a simple application
for setting preferences for the GNUstep system, with a friendly interface.

The program is simple, but powerful -- people can create new modules,
called "bundles", that add new things to the program that its original
developers did not think of or even intend -- that don't require
recompiling the main program.


Required to run:
[x11/gnustep-back]

Required to build:
[devel/gmake]

Master sites: (Expand)

SHA1: eb6b727c4f9eac2fd55237b3a3dc95e00bf748e9
RMD160: b94629b8a8d44cbbcf7c0a8bff775d89b6865bed
Filesize: 51.067 KB

Version history: (Expand)


CVS history: (Expand)


   2010-01-24 14:26:13 by Thomas Klausner | Files touched by this commit (40)
Log message:
More PKGREVISION bumps of jpeg dependencies.
Identified by parsing the NetBSD-i386-5.0.1/2009Q3 pkg_summary files
and Robert Elz.
   2009-06-15 00:58:11 by Joerg Sonnenberger | Files touched by this commit (129)
Log message:
Remove @dirrm related logic.
   2009-06-14 20:25:20 by Joerg Sonnenberger | Files touched by this commit (321)
Log message:
Remove @dirrm entries from PLISTs
   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-04-19 11:29:57 by Rene Hexel | Files touched by this commit (1)
Log message:
Add header files from PrefsModule framework
   2009-04-19 11:21:25 by Rene Hexel | Files touched by this commit (3) | Package updated
Log message:
Add full user-destdir support.
Fix installation directories.
Bump PKGREVISION.
   2009-04-13 14:26:38 by Rene Hexel | Files touched by this commit (3) | Package updated
Log message:
Update gnustep-preferences to 1.2.0nb18.  This changes the filesystem
layout to be more hier(7) compliant.
   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.