mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
* Cleanup plus a purity fix (don't look in /usr for libraries).
svn path=/nixpkgs/trunk/; revision=13290
This commit is contained in:
parent
4ac5792c71
commit
bf1625e3f6
@ -1,37 +0,0 @@
|
||||
diff -rc w3m-0.5.1-orig/configure w3m-0.5.1/configure
|
||||
*** w3m-0.5.1-orig/configure 2004-04-28 20:19:24.000000000 +0200
|
||||
--- w3m-0.5.1/configure 2005-09-16 11:33:48.000000000 +0200
|
||||
***************
|
||||
*** 5642,5648 ****
|
||||
echo "$as_me:$LINENO: checking for -l$lib" >&5
|
||||
echo $ECHO_N "checking for -l$lib... $ECHO_C" >&6
|
||||
extlib="not found"
|
||||
! for dir in /lib /usr/lib /usr/local/lib /usr/ucblib /usr/ccslib /usr/ccs/lib
|
||||
do
|
||||
if test -f $dir/lib$lib.a -o -f $dir/lib$lib.so ; then
|
||||
LIBS="$LIBS -l$lib"
|
||||
--- 5642,5648 ----
|
||||
echo "$as_me:$LINENO: checking for -l$lib" >&5
|
||||
echo $ECHO_N "checking for -l$lib... $ECHO_C" >&6
|
||||
extlib="not found"
|
||||
! for dir in /no-such-path
|
||||
do
|
||||
if test -f $dir/lib$lib.a -o -f $dir/lib$lib.so ; then
|
||||
LIBS="$LIBS -l$lib"
|
||||
***************
|
||||
*** 5768,5774 ****
|
||||
if test x"$enable_ipv6" = xno; then
|
||||
echo "$as_me:$LINENO: checking for libinet6" >&5
|
||||
echo $ECHO_N "checking for libinet6... $ECHO_C" >&6
|
||||
! for dir in /usr/local/v6/lib /usr/local/lib /usr/lib
|
||||
do
|
||||
if test -f $dir/libinet6.a; then
|
||||
if test $dir != "/usr/lib"; then
|
||||
--- 5768,5774 ----
|
||||
if test x"$enable_ipv6" = xno; then
|
||||
echo "$as_me:$LINENO: checking for libinet6" >&5
|
||||
echo $ECHO_N "checking for libinet6... $ECHO_C" >&6
|
||||
! for dir in /no-such-path
|
||||
do
|
||||
if test -f $dir/libinet6.a; then
|
||||
if test $dir != "/usr/lib"; then
|
@ -1,5 +0,0 @@
|
||||
source $stdenv/setup
|
||||
|
||||
configureFlags="--with-ssl=$openssl --with-gc=$boehmgc $configureFlags"
|
||||
|
||||
genericBuild
|
@ -9,20 +9,24 @@ assert graphicsSupport -> gdkpixbuf != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "w3m-0.5.2";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/w3m/w3m-0.5.2.tar.gz;
|
||||
md5 = "ba06992d3207666ed1bf2dcf7c72bf58";
|
||||
};
|
||||
inherit openssl boehmgc;
|
||||
buildInputs = [
|
||||
ncurses boehmgc gettext zlib
|
||||
(if sslSupport then openssl else null)
|
||||
(if graphicsSupport then gdkpixbuf else null)
|
||||
];
|
||||
#patches = [./bsd.patch];
|
||||
|
||||
buildInputs = [ncurses boehmgc gettext zlib]
|
||||
++ stdenv.lib.optional sslSupport openssl
|
||||
++ stdenv.lib.optional graphicsSupport gdkpixbuf;
|
||||
|
||||
configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}";
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace ./configure --replace /usr /no-such-path
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://w3m.sourceforge.net;
|
||||
homepage = http://w3m.sourceforge.net/;
|
||||
description = "A text-mode web browser";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user