summaryrefslogtreecommitdiff
path: root/fonts/fontconfig/patches
diff options
context:
space:
mode:
authorjmmv <jmmv>2002-12-11 20:12:45 +0000
committerjmmv <jmmv>2002-12-11 20:12:45 +0000
commit19449728267b8f1b5facae085a465351f5207101 (patch)
tree33495d913084b7584b268cb60e47f7365125ec8e /fonts/fontconfig/patches
parent0e87200a41f3ffb7778383720c8cd284cdf5233c (diff)
downloadpkgsrc-19449728267b8f1b5facae085a465351f5207101.tar.gz
Initial import of fontconfig, version 2.1. Description follows:
Fontconfig is a library for configuring and customizing font access. Fontconfig can: * discover new fonts when installed automatically, removing a common source of configuration problems. * perform font name substitution, so that appropriate alternative fonts can be selected if fonts are missing. * identify the set of fonts required to completely cover a set of languages. * have GUI configuration tools built as it uses an XML-based configuration file (though with autodiscovery, we believe this need is minimized). * efficiently and quickly find the fonts you need among the set of fonts you have installed, even if you have installed thousands of fonts, while minimzing memory usage. * be used in concert with the X Render Extension and FreeType to implement high quality, anti-aliased and subpixel rendered text on a display. Fontconfig does not: * render the fonts themselves (this is left to FreeType or other rendering mechanisms). * depend on the X Window System in any fashion, so that printer only applications do not have such dependencies. Approved by wiz.
Diffstat (limited to 'fonts/fontconfig/patches')
-rw-r--r--fonts/fontconfig/patches/patch-aa14
-rw-r--r--fonts/fontconfig/patches/patch-ab13
-rw-r--r--fonts/fontconfig/patches/patch-ac13
-rw-r--r--fonts/fontconfig/patches/patch-ad13
-rw-r--r--fonts/fontconfig/patches/patch-ae13
5 files changed, 66 insertions, 0 deletions
diff --git a/fonts/fontconfig/patches/patch-aa b/fonts/fontconfig/patches/patch-aa
new file mode 100644
index 00000000000..ab05ca4c978
--- /dev/null
+++ b/fonts/fontconfig/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/12/11 20:12:45 jmmv Exp $
+
+--- Makefile.in.orig Thu Aug 1 17:57:25 2002
++++ Makefile.in
+@@ -26,6 +26,9 @@ TOPDIR = .
+
+ include $(TOPDIR)/config/Makedefs
+
++# Override CONFDIR in Makedefs, so we can install templates in EGDIR.
++CONFDIR = @datadir@/examples/fontconfig
++
+ DIRS = src fc-cache fc-list fontconfig
+
+ all install clean::
diff --git a/fonts/fontconfig/patches/patch-ab b/fonts/fontconfig/patches/patch-ab
new file mode 100644
index 00000000000..bb206bbe92b
--- /dev/null
+++ b/fonts/fontconfig/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2002/12/11 20:12:45 jmmv Exp $
+
+--- fc-list/Makefile.in.orig Thu Aug 1 17:57:26 2002
++++ fc-list/Makefile.in
+@@ -35,7 +35,7 @@ PROG=fc-cache
+ all:: $(PROG)
+
+ $(PROG): $(OBJS)
+- $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBFONTCONFIG)
++ $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBFONTCONFIG) @LIBS@ @LDFLAGS@
+
+ $(OBJS): $(HEADERS)
+
diff --git a/fonts/fontconfig/patches/patch-ac b/fonts/fontconfig/patches/patch-ac
new file mode 100644
index 00000000000..c4a57f60149
--- /dev/null
+++ b/fonts/fontconfig/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1.1.1 2002/12/11 20:12:45 jmmv Exp $
+
+--- fc-cache/Makefile.in.orig Thu Aug 1 17:57:26 2002
++++ fc-cache/Makefile.in
+@@ -35,7 +35,7 @@ PROG=fc-cache
+ all:: $(PROG)
+
+ $(PROG): $(OBJS)
+- $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBFONTCONFIG)
++ $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBFONTCONFIG) @LIBS@ @LDFLAGS@
+
+ $(OBJS): $(HEADERS)
+
diff --git a/fonts/fontconfig/patches/patch-ad b/fonts/fontconfig/patches/patch-ad
new file mode 100644
index 00000000000..5bf0053813e
--- /dev/null
+++ b/fonts/fontconfig/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1.1.1 2002/12/11 20:12:45 jmmv Exp $
+
+--- src/Makefile.in.orig Thu Aug 1 17:57:26 2002
++++ src/Makefile.in
+@@ -26,7 +26,7 @@ TOPDIR=..
+
+ include $(TOPDIR)/config/Makedefs
+
+-LIBS=@LIBS@
++LIBS=@LIBS@ @LDFLAGS@
+
+ SRCS=fcatomic.c \
+ fcblanks.c \
diff --git a/fonts/fontconfig/patches/patch-ae b/fonts/fontconfig/patches/patch-ae
new file mode 100644
index 00000000000..8e855edc8b1
--- /dev/null
+++ b/fonts/fontconfig/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1.1.1 2002/12/11 20:12:45 jmmv Exp $
+
+--- configure.orig Fri Nov 22 03:30:00 2002
++++ configure
+@@ -611,7 +611,7 @@ fi
+ # Check whether --with-default_fonts or --without-default_fonts was given.
+ if test "${with_default_fonts+set}" = set; then
+ withval="$with_default_fonts"
+- defaultfonts="$withval"
++ default_fonts="$withval"
+ else
+ default_fonts=yes
+ fi