Generate harfbuzz-icu.pc
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 28 May 2013 21:18:30 +0000 (17:18 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 28 May 2013 21:18:30 +0000 (17:18 -0400)
Currently it only works with ICU that has .pc files.  I'll
wait till someone complains before fixing it for icu-config
systems.

Makefile.am
configure.ac
harfbuzz.pc.in [deleted file]
src/Makefile.am
src/harfbuzz-icu.pc.in [new file with mode: 0644]
src/harfbuzz.pc.in [new file with mode: 0644]

index 19c2095..3f67639 100644 (file)
@@ -6,9 +6,6 @@ ACLOCAL_AMFLAGS = -I m4
 
 SUBDIRS = src util test
 
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = harfbuzz.pc
-
 EXTRA_DIST = \
        autogen.sh \
        harfbuzz.doap \
index 3f1add9..2bf484d 100644 (file)
@@ -6,10 +6,10 @@ AC_INIT([HarfBuzz],
         [http://harfbuzz.org/])
 
 AC_CONFIG_MACRO_DIR([m4])
-AC_CONFIG_SRCDIR([harfbuzz.pc.in])
+AC_CONFIG_SRCDIR([src/harfbuzz.pc.in])
 AC_CONFIG_HEADERS([config.h])
 
-AM_INIT_AUTOMAKE([1.11.1 gnits dist-bzip2 no-dist-gzip -Wall no-define color-tests])
+AM_INIT_AUTOMAKE([1.11.1 gnits dist-bzip2 no-dist-gzip -Wall no-define color-tests -Wno-portability])
 AM_SILENT_RULES([yes])
 
 # Initialize libtool
@@ -370,7 +370,6 @@ dnl ===========================================================================
 
 AC_CONFIG_FILES([
 Makefile
-harfbuzz.pc
 src/Makefile
 src/hb-version.h
 src/hb-icu-le/Makefile
diff --git a/harfbuzz.pc.in b/harfbuzz.pc.in
deleted file mode 100644 (file)
index e92319e..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: harfbuzz
-Description: Text shaping library
-Version: @VERSION@
-
-Libs: -L${libdir} -lharfbuzz
-Cflags: -I${includedir}/harfbuzz
index f7e7e9d..9334587 100644 (file)
@@ -217,6 +217,8 @@ libharfbuzz_la_LIBADD = $(HBLIBS)
 EXTRA_libharfbuzz_la_DEPENDENCIES = $(harfbuzz_def_dependency)
 pkginclude_HEADERS = $(HBHEADERS)
 nodist_pkginclude_HEADERS = $(HBNODISTHEADERS)
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = harfbuzz.pc
 
 if HAVE_ICU
 lib_LTLIBRARIES += libharfbuzz-icu.la
@@ -225,8 +227,19 @@ libharfbuzz_icu_la_CPPFLAGS = $(ICU_CFLAGS)
 libharfbuzz_icu_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(HB_LIBTOOL_VERSION_INFO) -no-undefined
 libharfbuzz_icu_la_LIBADD = $(ICU_LIBS) libharfbuzz.la
 pkginclude_HEADERS += hb-icu.h
+pkgconfig_DATA += harfbuzz-icu.pc
 endif
 
+%.pc: %.pc.in $(top_builddir)/config.status
+       $(AM_V_GEN) \
+       cat "$<" | \
+       $(SED) -e 's@%prefix%@$(prefix)@g;' | \
+       $(SED) -e 's@%exec_prefix%@$(exec_prefix)@g;' | \
+       $(SED) -e 's@%libdir%@$(libdir)@g;' | \
+       $(SED) -e 's@%includedir%@$(includedir)@g;' | \
+       $(SED) -e 's@%VERSION%@$(VERSION)@g;' | \
+       cat > "$@.tmp" && mv "$@.tmp" "$@" || ( $(RM) "$@.tmp"; false )
+
 
 CLEANFILES += harfbuzz.def
 harfbuzz.def: $(HBHEADERS) $(HBNODISTHEADERS)
diff --git a/src/harfbuzz-icu.pc.in b/src/harfbuzz-icu.pc.in
new file mode 100644 (file)
index 0000000..949869a
--- /dev/null
@@ -0,0 +1,13 @@
+prefix=%prefix%
+exec_prefix=%exec_prefix%
+libdir=%libdir%
+includedir=%includedir%
+
+Name: harfbuzz
+Description: HarfBuzz text shaping library ICU integration
+Version: %VERSION%
+
+Requires: harfbuzz
+Requires.private: icu-uc
+Libs: -L${libdir} -lharfbuzz-icu
+Cflags: -I${includedir}/harfbuzz
diff --git a/src/harfbuzz.pc.in b/src/harfbuzz.pc.in
new file mode 100644 (file)
index 0000000..7f27bbb
--- /dev/null
@@ -0,0 +1,11 @@
+prefix=%prefix%
+exec_prefix=%exec_prefix%
+libdir=%libdir%
+includedir=%includedir%
+
+Name: harfbuzz
+Description: HarfBuzz text shaping library
+Version: %VERSION%
+
+Libs: -L${libdir} -lharfbuzz
+Cflags: -I${includedir}/harfbuzz