mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
9878a15478
The problem of transitive imports needs to be adressed, though, as evidenced by, e.g., the descriptor for pan. That is, if C depends on library B, and B depends on library A, then C also depends on library A. However, this breaks modularity: C should not have to declare a dependency on A explicitly. The solution is to have B re-export A, e.g., by creating symlinks from B to the files in A. svn path=/nixpkgs/trunk/; revision=68
20 lines
651 B
Bash
Executable file
20 lines
651 B
Bash
Executable file
#! /bin/sh
|
|
|
|
export PATH=$pkgconfig/bin:$gnet/bin:/bin:/usr/bin
|
|
export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig:$gtk/lib/pkgconfig:$gtkspell/lib/pkgconfig:$libxml/lib/pkgconfig
|
|
export LD_LIBRARY_PATH=$glib/lib:$atk/lib:$pango/lib:$gtk/lib:$gnet/lib:$pspell/lib:$gtkspell/lib:$fontconfig/lib:$Xft/lib:$freetype/lib
|
|
|
|
# A bug in gtkspell: the pspell library path is not exported
|
|
# through pkgconfig.
|
|
export LIBRARY_PATH=$pspell/lib
|
|
|
|
export LDFLAGS=-s
|
|
|
|
top=`pwd`
|
|
tar xvfj $src || exit 1
|
|
cd pan-* || exit 1
|
|
./configure --prefix=$top || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
cd $top || exit 1
|
|
rm -rf pan-* || exit 1
|