diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-24 19:04:00 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-24 19:04:00 +0000 |
commit | 754474e000097d607e76922a8b2b7a4b91a7874f (patch) | |
tree | 39d65ac56d3017745b0def4c869df1ddda16ed88 /x11-toolkits/gal | |
parent | b0a84db592fc994ee7101c67c97261488178f821 (diff) | |
download | ports-754474e000097d607e76922a8b2b7a4b91a7874f.tar.gz ports-754474e000097d607e76922a8b2b7a4b91a7874f.zip |
Notes
Diffstat (limited to 'x11-toolkits/gal')
-rw-r--r-- | x11-toolkits/gal/Makefile | 4 | ||||
-rw-r--r-- | x11-toolkits/gal/distinfo | 2 | ||||
-rw-r--r-- | x11-toolkits/gal/files/patch-ltmain.sh | 45 |
3 files changed, 48 insertions, 3 deletions
diff --git a/x11-toolkits/gal/Makefile b/x11-toolkits/gal/Makefile index bfa0df66c381..64bcd344657e 100644 --- a/x11-toolkits/gal/Makefile +++ b/x11-toolkits/gal/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gal -PORTVERSION= 0.19.1 +PORTVERSION= 0.19.2 CATEGORIES?= x11-toolkits gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/gal @@ -23,8 +23,8 @@ USE_X_PREFIX= yes USE_PERL5= yes USE_GMAKE= yes USE_GNOMECTRL= yes -USE_LIBTOOL= yes INSTALLS_SHLIB= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-static --with-libiconv CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" diff --git a/x11-toolkits/gal/distinfo b/x11-toolkits/gal/distinfo index 5f0ed629f84b..c89a1664e76f 100644 --- a/x11-toolkits/gal/distinfo +++ b/x11-toolkits/gal/distinfo @@ -1 +1 @@ -MD5 (gnome/gal-0.19.1.tar.bz2) = 442bee64ce3b165eb7cf84920e5940bb +MD5 (gnome/gal-0.19.2.tar.bz2) = 6f17b857bc69fde0902481b3d2af475e diff --git a/x11-toolkits/gal/files/patch-ltmain.sh b/x11-toolkits/gal/files/patch-ltmain.sh new file mode 100644 index 000000000000..91713d2306f8 --- /dev/null +++ b/x11-toolkits/gal/files/patch-ltmain.sh @@ -0,0 +1,45 @@ + +$FreeBSD$ + +--- ltmain.sh.orig Wed Jan 23 11:38:40 2002 ++++ ltmain.sh Sun Feb 3 01:44:17 2002 +@@ -1037,8 +1037,16 @@ + continue + ;; + ++ -pthread) ++ compile_command="$compile_command -pthread" ++ finalize_command="$finalize_command -pthread" ++ compiler_flags="$compiler_flags -pthread" ++ continue ++ ;; ++ + -module) + module=yes ++ build_old_libs=no + continue + ;; + +@@ -2412,6 +2420,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then +@@ -4179,10 +4190,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |