1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Update to 2.1.7.

This commit is contained in:
Joe Marcus Clarke 2005-07-14 05:01:52 +00:00
parent c6a9d2cb37
commit 71fda6e697
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=139168
4 changed files with 5 additions and 71 deletions

View File

@ -6,10 +6,9 @@
#
PORTNAME= libXft
PORTVERSION= 2.1.6
PORTREVISION= 1
PORTVERSION= 2.1.7
CATEGORIES= x11-fonts
MASTER_SITES= http://freedesktop.org/~ajax/xlibs-release/
MASTER_SITES= http://xlibs.freedesktop.org/release/
MAINTAINER= gnome@FreeBSD.org
COMMENT= A client-sided font API for X applications
@ -21,7 +20,7 @@ USE_GMAKE= yes
USE_X_PREFIX= yes
INSTALLS_SHLIB= yes
USE_GNOME= gnomehack gnometarget
GNU_CONFIGURE= yes
USE_LIBTOOL_VER=15
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \
LDFLAGS="-L${X11BASE}/lib"

View File

@ -1,4 +1,2 @@
MD5 (libXft-2.1.6.tar.bz2) = ba10c9c3f4758f304f04f8d48e2f81a4
SIZE (libXft-2.1.6.tar.bz2) = 234117
MD5 (cjk-patch-libXft-20041115.diff.gz) = a642c3e2cd08ac738a1be0aa4ba4e38d
SIZE (cjk-patch-libXft-20041115.diff.gz) = 3261
MD5 (libXft-2.1.7.tar.bz2) = 3e311b4095283d59488b95c8bd772521
SIZE (libXft-2.1.7.tar.bz2) = 237056

View File

@ -1,51 +0,0 @@
--- ltmain.sh.orig Sat Apr 19 21:11:30 2003
+++ ltmain.sh Wed May 14 16:05:31 2003
@@ -1277,7 +1277,7 @@
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd* | *-*-freebsd*)
+ *-*-openbsd* | *-*-freebsd4*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -1287,8 +1287,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
;;
@@ -2997,6 +3005,9 @@
# problems, so we reset it completely
verstring=
;;
+ *-*-freebsd*)
+ # FreeBSD doesn't need this...
+ ;;
*)
verstring="0.0"
;;
@@ -5425,10 +5436,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"

View File

@ -1,12 +0,0 @@
--- xftfreetype.c.orig Sun Mar 27 18:51:12 2005
+++ xftfreetype.c Sun Mar 27 18:51:53 2005
@@ -289,7 +289,8 @@ _XftReleaseFile (XftFtFile *f)
if (f->face)
FT_Done_Face (f->face);
}
- XftMemFree (XFT_MEM_FILE, sizeof (XftFtFile) + strlen (f->file) + 1);
+ XftMemFree (XFT_MEM_FILE,
+ sizeof (XftFtFile) + (f->file ? strlen (f->file) + 1 : 0));
free (f);
}