summary refs log tree commit diff
path: root/pkgs/development/libraries/fontconfig
Commit message (Collapse)AuthorAge
* * Fontconfig updated to 2.8.0.Eelco Dolstra2010-07-18
| | | | svn path=/nixpkgs/branches/x-updates/; revision=22644
* Fixing the fontconfig native build (cross-building related)Lluís Batlle i Rossell2009-11-26
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=18658
* Made more libraries cross compile. fontconfig, libxcb, bzip2, libdrm, zlib...Lluís Batlle i Rossell2009-11-21
| | | | | | | | | | | | | | I was trying to cross compile SDL. Many dependencies work, but I ended seeing libX11 not ready for cross compilation. Other xorg libraries cross-compile well. libX11 may need a small patch. The problem is the usual "configure test cannot be run in cross compilation", so the configure script halts. I made the pkgconfig expression always return buildDrv, as I think it rarely will be needed as buildInput. So to avoid rewriting all its mentions to use it as buildNativeInput, I prefered this small change. svn path=/nixpkgs/branches/stdenv-updates/; revision=18500
* svn path=/nixpkgs/branches/xorg-7.5/; revision=18044Eelco Dolstra2009-10-30
|
* * Urgh.Eelco Dolstra2009-10-29
| | | | svn path=/nixpkgs/branches/xorg-7.5/; revision=18037
* * Purity: don't do a mkdir /var/cache/fontconfig.Eelco Dolstra2009-10-29
| | | | svn path=/nixpkgs/branches/xorg-7.5/; revision=18036
* * Fontconfig updated to 2.7.3. Use /etc/fonts as the defaultEelco Dolstra2009-10-29
| | | | | | | | | configuration directory so that users on other distributions don't need to set $FONTCONFIG_FILE (NIXPKGS-29). Also use /var/cache/fontconfig for the cache to prevent programs run by root from writing into the Nix store. svn path=/nixpkgs/branches/xorg-7.5/; revision=18021
* * Updated the generator to handle some missing dependencies.Eelco Dolstra2009-04-20
| | | | | | | Also updated some X.org packages (notably xorg-server) as well as freetype. svn path=/nixpkgs/branches/stdenv-updates/; revision=15191
* * Graphviz updated to 2.20.2. Now built with fontconfig, gd and pangoEelco Dolstra2008-07-03
| | | | | | | | | | | | | support. * New function makeFontsConf to generate a fontconfig configuration file. Moved from NixOS. * dot2pdf: use makeFontsConf to generate a fonts.conf containing just the Ghostscript fonts (see NIXPKGS-29). * dot2pdf: generate PDF directly, don't go through PS. Note that this and using fontconfig changes the interpretation of "fontname" attributes in dot graphs. svn path=/nixpkgs/trunk/; revision=12251
* * Various updates.Eelco Dolstra2008-06-12
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=12051
* * Latest GTK+, glib, ATK, Pango, FreeType, Cairo, Fontconfig.Eelco Dolstra2008-03-07
| | | | svn path=/nixpkgs/branches/stdenv-updates/; revision=11017
* * X11R7.2 and associated updates.Eelco Dolstra2007-02-26
| | | | svn path=/nixpkgs/trunk/; revision=8049
* fontconfig: don't build docsArmijn Hemel2006-09-01
| | | | | | libjpeg: get patches from new location svn path=/nixpkgs/trunk/; revision=6444
* * Copy lots of files to nix.cs.uu.nl.Eelco Dolstra2006-01-30
| | | | svn path=/nixpkgs/trunk/; revision=4623
* * "." -> "source".Eelco Dolstra2005-12-05
| | | | svn path=/nixpkgs/trunk/; revision=4335
* * Refactoring: move fontconfig out of xlibs.Eelco Dolstra2005-11-04
| | | | svn path=/nixpkgs/trunk/; revision=4221
* * More freedesktop.org X11 modules.Eelco Dolstra2004-03-30
| | | | | | * Cleaned up some packages. svn path=/nixpkgs/trunk/; revision=883
* * Remove trivial builders.Eelco Dolstra2004-03-29
| | | | | | | | | | | | * Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
* * "!isNull x" -> "x != null". Done automatically. Hope nothingEelco Dolstra2004-03-29
| | | | | | broke. svn path=/nixpkgs/trunk/; revision=870
* * The stdenv setup script now defines a generic builder that allowsEelco Dolstra2004-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | builders for typical Autoconf-style to be much shorten, e.g., . $stdenv/setup genericBuild The generic builder does lots of stuff automatically: - Unpacks source archives specified by $src or $srcs (it knows about gzip, bzip2, tar, zip, and unpacked source trees). - Determines the source tree. - Applies patches specified by $patches. - Fixes libtool not to search for libraries in /lib etc. - Runs `configure'. - Runs `make'. - Runs `make install'. - Strips debug information from static libraries. - Writes nested log information (in the format accepted by `log2xml'). There are also lots of hooks and variables to customise the generic builder. See `stdenv/generic/docs.txt'. * Adapted the base packages (i.e., the ones used by stdenv) to use the generic builder. * We now use `curl' instead of `wget' to download files in `fetchurl'. * Neither `curl' nor `wget' are part of stdenv. We shouldn't encourage people to download stuff in builders (impure!). * Updated some packages. * `buildinputs' is now `buildInputs' (but the old name also works). * `findInputs' in the setup script now prevents inputs from being processed multiple times (which could happen, e.g., if an input was a propagated input of several other inputs; this caused the size variables like $PATH to blow up exponentially in the worst case). * Patched GNU Make to write nested log information in the format accepted by `log2xml'. Also, prior to writing the build command, Make now writes a line `building X' to indicate what is being built. This is unfortunately often obscured by the gigantic tool invocations in many Makefiles. The actual build commands are marked `unimportant' so that they don't clutter pages generated by `log2html'. svn path=/nixpkgs/trunk/; revision=845
* * propagated-build-inputs should now be placed in $out/nix-support.Eelco Dolstra2004-03-09
| | | | svn path=/nixpkgs/trunk/; revision=823
* * Rename .fix -> .nix.Eelco Dolstra2003-11-18
| | | | svn path=/nixpkgs/trunk/; revision=511
* * Renamed pkgs-ng to pkgs.Eelco Dolstra2003-11-14
svn path=/nixpkgs/trunk/; revision=502