diff options
author | mezz <mezz@FreeBSD.org> | 2006-01-03 04:49:14 +0000 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-01-03 04:49:14 +0000 |
commit | 3c0abdd27beae68d6a7d85ec0eb4637f61448ba9 (patch) | |
tree | ebcde51444a4f59f519786ea4515a53bd1c204ab /x11-toolkits | |
parent | f5552f0d38f5800c107b7d7e1fd6e731f9234438 (diff) | |
download | FreeBSD-ports-3c0abdd27beae68d6a7d85ec0eb4637f61448ba9.zip FreeBSD-ports-3c0abdd27beae68d6a7d85ec0eb4637f61448ba9.tar.gz |
Fix the vte.pc, they have backed up the change of vte.pc that caused break the
apps' build such as gtksharp and etc. Bump the PORTREVISION.
Before:
# pkg-config --cflags vte
-I/usr/X11R6/include -I/usr/local/include/freetype2
-I/usr/local/include
After:
# pkg-config --cflags vte
-DXTHREADS -DXUSE_MTSAFE_API -I/usr/local/include/glib-2.0
-I/usr/local/lib/glib-2.0/include -I/usr/local/include/atk-1.0
-I/usr/local/include/cairo -I/usr/X11R6/include
-I/usr/local/include/freetype2 -I/usr/local/include
-I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/include/pango-1.0
-I/usr/X11R6/lib/gtk-2.0/include
Reported by: tmclaugh (for puzzled gtksharp broke w/out change)
GNOME Bugzilla: http://bugzilla.gnome.org/show_bug.cgi?id=322240
Obtained from: GNOME CVS (vte module)
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/vte/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/vte/files/patch-vte.pc.in | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/x11-toolkits/vte/Makefile b/x11-toolkits/vte/Makefile index 5487eaf..66f9611 100644 --- a/x11-toolkits/vte/Makefile +++ b/x11-toolkits/vte/Makefile @@ -7,6 +7,7 @@ PORTNAME= vte PORTVERSION= 0.11.16 +PORTREVISION= 1 CATEGORIES= x11-toolkits gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R} diff --git a/x11-toolkits/vte/files/patch-vte.pc.in b/x11-toolkits/vte/files/patch-vte.pc.in new file mode 100644 index 0000000..bbf32eb --- /dev/null +++ b/x11-toolkits/vte/files/patch-vte.pc.in @@ -0,0 +1,17 @@ +=================================================================== +RCS file: /cvs/gnome/vte/vte.pc.in,v +retrieving revision 1.11 +retrieving revision 1.12 +diff -u -r1.11 -r1.12 +--- vte.pc.in 2005/12/12 18:46:15 1.11 ++++ vte.pc.in 2005/12/31 11:27:56 1.12 +@@ -8,7 +8,6 @@ + Name: vte + Description: Vte terminal widget. + Version: @VERSION@ +-Requires.private: @NEEDEDPACKAGES@ +-Libs: -L${libdir} -lvte +-Libs.private: @FT2_LIBS@ @OTHERLIBS@ ++Requires: @NEEDEDPACKAGES@ ++Libs: -L${libdir} -lvte @FT2_LIBS@ @OTHERLIBS@ + Cflags: -I${includedir} @FT2_CFLAGS@ @OTHERCFLAGS@ |