./graphics/hicolor-icon-theme, Standard icon theme called hicolor

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


Branch: CURRENT, Version: 0.12, Package name: hicolor-icon-theme-0.12, Maintainer: pkgsrc-users

Default icon theme called hicolor, from freedesktop.org.


Required to build:
[devel/gmake]

Master sites:

SHA1: 87368844d1fcef899c3dc4e59f07264340606538
RMD160: a96200fa8dd75bcf07a01f8d8de3ef55f288b70b
Filesize: 37.117 KB

Version history: (Expand)


CVS history: (Expand)


   2010-01-20 14:43:45 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
Update to 0.12. Changes undocumented.
   2009-10-31 02:31:09 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
Update to 0.11, set LICENSE.

	Bump version to 0.11
	Added 256x256 size. (#15231)
	* autogen.sh: updated to run "configure" with usual maintainer
	options.
	* Makefile.in:
	Update configure.ac for autoconf 2.60
   2009-07-22 11:01:55 by Thomas Klausner | Files touched by this commit (373)
Log message:
Remove USE_DIRS from pkgsrc.

Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.

Packages needing empty directories can use the @pkgdir command in PLIST.

Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2 … 03546.html
   2009-06-15 00:58:11 by Joerg Sonnenberger | Files touched by this commit (129)
Log message:
Remove @dirrm related logic.
   2009-06-14 22:05:44 by Joerg Sonnenberger | Files touched by this commit (38)
Log message:
Convert @exec/@unexec to @pkgdir or drop it.
   2009-06-14 19:59:32 by Joerg Sonnenberger | Files touched by this commit (263)
Log message:
Remove @dirrm entries from PLISTs
   2009-05-16 09:22:04 by Roland Illig | Files touched by this commit (20)
Log message:
cleanup: replaced _PKG_SILENT and _PKG_DEBUG with RUN.
   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.