diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2005-11-05 00:57:51 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2005-11-05 00:57:51 +0000 |
commit | d7157323acccf40ca481aa43be8b1a71bd1f79ac (patch) | |
tree | 64738a8d37396defe6b30a38e393506a444df68d | |
parent | 6a741720e2bc6fed9cb1494b93fd433a41d0de2b (diff) | |
download | pango-d7157323acccf40ca481aa43be8b1a71bd1f79ac.tar.gz |
Removed. Not used for a long time, and were out of date.
2005-11-04 Behdad Esfahbod <behdad@gnome.org>
* pango-config.in, pango.spec.in: Removed. Not used for a long time,
and were out of date.
* .cvsignore: Remove pango-config and pango.spec.
-rw-r--r-- | .cvsignore | 2 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | pango-config.in | 114 | ||||
-rw-r--r-- | pango.spec.in | 97 |
4 files changed, 7 insertions, 213 deletions
@@ -24,8 +24,6 @@ pangox-uninstalled.pc pangoxft-uninstalled.pc pangoft2-uninstalled.pc pangowin32-uninstalled.pc -pango.spec -pango-config pango-zip.sh stamp-h stamp-h1 @@ -1,5 +1,12 @@ 2005-11-04 Behdad Esfahbod <behdad@gnome.org> + * pango-config.in, pango.spec.in: Removed. Not used for a long time, + and were out of date. + + * .cvsignore: Remove pango-config and pango.spec. + +2005-11-04 Behdad Esfahbod <behdad@gnome.org> + * pango/break.c: Update to handle new line-breaking types in the Unicode 4.1 UAX#14. (#313907) diff --git a/pango-config.in b/pango-config.in deleted file mode 100644 index 535969ec..00000000 --- a/pango-config.in +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -prefix=@prefix@ -exec_prefix=@exec_prefix@ -exec_prefix_set=no - -usage() -{ - cat <<EOF -Usage: pango-config [OPTIONS] [LIBRARIES] -Options: - [--prefix[=DIR]] - [--exec-prefix[=DIR]] - [--version] - [--libs] - [--cflags] -Libraries: - pango - pangox - pangoxft - pangoft2 -EOF - exit $1 -} - -if test $# -eq 0; then - usage 1 1>&2 -fi - -lib_pango=yes - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case $1 in - --prefix=*) - prefix=$optarg - if test $exec_prefix_set = no ; then - exec_prefix=$optarg - fi - ;; - --prefix) - echo_prefix=yes - ;; - --exec-prefix=*) - exec_prefix=$optarg - exec_prefix_set=yes - ;; - --exec-prefix) - echo_exec_prefix=yes - ;; - --version) - echo @VERSION@ - exit 0 - ;; - --cflags) - includes="-I@includedir@/pango-1.0" - echo_cflags=yes - ;; - --libs) - echo_libs=yes - ;; - pango) - ;; - pangox) - lib_pangox=yes - ;; - pangoxft) - lib_pangoxft=yes - ;; - pangoft2) - lib_pangoft2=yes - ;; - *) - usage 1 1>&2 - ;; - esac - shift -done - -if test "$echo_prefix" = "yes"; then - echo $prefix -fi -if test "$echo_exec_prefix" = "yes"; then - echo $exec_prefix -fi -if test "$echo_cflags" = "yes"; then - cflags="@GLIB_CFLAGS@" - if test "$lib_pangoxft" = "yes"; then - cflags="@X_CFLAGS@ @FREETYPE_CFLAGS@ $cflags" - fi - if test "$lib_pangoft2" = "yes"; then - cflags="@FREETYPE_CFLAGS@ $cflags" - fi - # Put $cflags first, in case $includes contains a - # location with GLib 1.2 headers, but we build with GLib 2.0. - echo $cflags $includes -fi -if test "$echo_libs" = "yes"; then - libs="-lpango @FRIBIDI_LIBS@ @GLIB_LIBS@" - if test "$lib_pangox" = "yes"; then - libs="@X_LIBS@ -lpangox $libs" - fi - if test "$lib_pangoxft" = "yes"; then - libs="@XFT_LIBS@ -lpangoxft $libs" - fi - if test "$lib_pangoft2" = "yes"; then - libs="@FREETYPE_LIBS@ -lpangoft2 $libs" - fi - echo -L@libdir@ $libs -fi diff --git a/pango.spec.in b/pango.spec.in deleted file mode 100644 index b1096b93..00000000 --- a/pango.spec.in +++ /dev/null @@ -1,97 +0,0 @@ -%define glib2_base_version 2.0.0 -%define glib2_version %{glib2_base_version}-1 -%define pkgconfig_version 0.12 -%define freetype_version 2.1.2-2 -%define fontconfig_version 0.0.1.020626.1517-2 -%define xft_version 1.9.1.020626.1517-1 - -Summary: System for layout and rendering of internationalized text. -Name: pango -Version: @VERSION@ -Release: 1 -License: LGPL -Group: System Environment/Libraries -Source: ftp://ftp.gtk.org/pub/gtk/v2.1/pango-%{version}.tar.bz2 -URL: http://www.pango.org -BuildRoot: %{_tmppath}/pango-%{PACKAGE_VERSION}-root - -# We need to prereq this so we can run pango-querymodules -Prereq: glib2 >= %{glib2_version} -BuildRequires: libtool >= 1.4.2-10 -BuildRequires: glib2-devel >= %{glib2_version} -BuildRequires: pkgconfig >= %{pkgconfig_version} -BuildRequires: freetype-devel >= %{freetype_version} -BuildRequires: fontconfig-devel >= %{fontconfig_version} -BuildRequires: Xft-devel >= %{xft_version} -BuildRequires: XFree86-devel >= 4.0.2 -Obsoletes: pango-gtkbeta, fribidi-gtkbeta - -%description -Pango is a system for layout and rendering of internationalized text. - - -%package devel -Summary: System for layout and rendering of internationalized text. -Group: Development/Libraries -Requires: pango = %{PACKAGE_VERSION} -Requires: XFree86-devel -Requires: glib2-devel >= %{glib2_version} -Requires: freetype-devel >= %{freetype_version} -Requires: fontconfig-devel >= %{fontconfig_version} -Requires: Xft-devel >= %{xft_version} -Obsoletes: fribidi-gtkbeta-devel, pango-gtkbeta-devel - -%description devel -The pango-devel package includes the static libraries, header files, -and developer docs for the pango package. - -Install pango-devel if you want to develop programs which will use -pango. - -%prep -%setup -q -n pango-%{version} - -%build - -%configure --without-qt --disable-gtk-doc -make - -%install -rm -rf $RPM_BUILD_ROOT - -%makeinstall -rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la -%clean -rm -rf $RPM_BUILD_ROOT - -%post -/sbin/ldconfig -%{_prefix}/bin/pango-querymodules > /etc/pango/pango.modules - -%postun -p /sbin/ldconfig - -%files -%defattr(-, root, root) -%doc README AUTHORS COPYING ChangeLog TODO -%doc examples/HELLO.utf8 -%{_prefix}/lib/libpango*-*.so.* -%{_prefix}/bin/pango-querymodules -%{_prefix}/lib/pango -%config /etc/pango/pangox.aliases -%ghost /etc/pango/pango.modules - - -%files devel -%defattr(-, root, root) -%{_prefix}/lib/libpango*.so -%{_prefix}/include/* -%{_prefix}/lib/pkgconfig/* -%{_prefix}/share/gtk-doc/* - - -%changelog -* Mon Nov 04 2002 Christian Schaller <Uraeus@linuxrising.org> -- Update for use in CVS package - -* Fri Feb 11 2000 Owen Taylor <otaylor@redhat.com> -- Created spec file |