* Added the Emacs 22.0 branch with anti-aliasing (Xft) support.

* Added an option to Adobe Reader to make it start faster (by deleting
  all the plugins).

svn path=/nixpkgs/trunk/; revision=4406
This commit is contained in:
Eelco Dolstra
2005-12-22 10:49:43 +00:00
parent 83afd0c173
commit 4d905aa2ed
12 changed files with 145 additions and 0 deletions
@@ -12,6 +12,10 @@ tar xvf AdobeReader/ILINXR.TAR -C $out
# Disable this plugin for now (it needs LDAP, and I'm too lazy to add it).
rm $out/Reader/intellinux/plug_ins/PPKLite.api
if test -n "$fastStart"; then
rm $out/Reader/intellinux/plug_ins/*.api
fi
glibc=$(cat $NIX_GCC/nix-support/orig-glibc)
fullPath=
@@ -1,6 +1,7 @@
{ xineramaSupport ? false
, stdenv, fetchurl, libXt, libXp, libXext, libX11, libXinerama ? null
, glib, pango, atk, gtk, libstdcpp5, zlib
, fastStart ? false
}:
stdenv.mkDerivation {
@@ -14,4 +15,5 @@ stdenv.mkDerivation {
libXt libXp libXext libX11 glib pango atk gtk libstdcpp5 zlib
(if xineramaSupport then libXinerama else null)
];
inherit fastStart;
}