[Commit] Xft ChangeLog,NONE,1.1 INSTALL,NONE,1.1 README,NONE,1.1 Xft.3.in,NONE,1.1 Makefile.am,1.6,1.7 configure.ac,1.7,1.8 Xft.man,1.7,NONE

commit@keithp.com commit@keithp.com
Mon, 21 Apr 2003 10:12:37 -0700


Update of /local/src/CVS/Xft
In directory home.keithp.com:/tmp/cvs-serv22800

Modified Files:
	Makefile.am configure.ac 
Added Files:
	ChangeLog INSTALL README Xft.3.in 
Removed Files:
	Xft.man 
Log Message:
Fix manual page version and install (manx_MANS is busted)


--- NEW FILE: ChangeLog ---
2003-04-21	Keith Packard <keithp@keithp.com>

	+ Bump version to 2.1.1, add INSTALL and ChangeLog

2003-04-19	Noah Levitt <nlevitt@columbia.edu>

	+ Switch to automake


--- NEW FILE: INSTALL ---
Xft is built with the traditional configure script:

	$ ./configure --prefix=/usr/X11R6

This should generate valid Makefiles, then:

        $ make
        $ make install

--- NEW FILE: README ---
		Xft
	X FreeType library
	  Version 2.1.1
	    2003-4-21

This is the first stand alone release of Xft, a library that connects X
applications with the FreeType font rasterization library. Xft uses
fontconfig to locate fonts so it has no configuration files.

Keith Packard
keithp@keithp.com

--- NEW FILE: Xft.3.in ---
(This appears to be a binary file; contents omitted.)

Index: Makefile.am
===================================================================
RCS file: /local/src/CVS/Xft/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Makefile.am	21 Apr 2003 16:59:26 -0000	1.6
+++ Makefile.am	21 Apr 2003 17:12:35 -0000	1.7
@@ -23,7 +23,11 @@
 
 bin_SCRIPTS = xft-config
 
-man3_MANS = Xft.man
+EXTRA_DIST = \
+	xft-config.in \
+	xft.pc.in
+
+man_MANS = Xft.3
 
 AM_CFLAGS = $(FONTCONFIG_CFLAGS) $(FREETYPE_CFLAGS) $(XRENDER_CFLAGS)
 
@@ -60,5 +64,5 @@
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = xft.pc
 
-EXTRA_DIST = xft-config.in xft.pc.in $(man3_MANS) autogen.sh
+EXTRA_DIST = xft-config.in xft.pc.in $(man_MANS) autogen.sh
 

Index: configure.ac
===================================================================
RCS file: /local/src/CVS/Xft/configure.ac,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- configure.ac	21 Apr 2003 16:59:26 -0000	1.7
+++ configure.ac	21 Apr 2003 17:12:35 -0000	1.8
@@ -81,5 +81,6 @@
 
 AC_OUTPUT([Makefile
 	   xft.pc
-	   xft-config])
+	   xft-config
+	   Xft.3])
 

--- Xft.man DELETED ---