diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /t1lib/t1lib-5.0.2/install.patch | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 't1lib/t1lib-5.0.2/install.patch')
-rw-r--r-- | t1lib/t1lib-5.0.2/install.patch | 163 |
1 files changed, 0 insertions, 163 deletions
diff --git a/t1lib/t1lib-5.0.2/install.patch b/t1lib/t1lib-5.0.2/install.patch deleted file mode 100644 index 3d8843861c..0000000000 --- a/t1lib/t1lib-5.0.2/install.patch +++ /dev/null @@ -1,163 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- t1lib-5.0.1/Makefile.in~install 2001-01-15 17:37:11.000000000 -0500 -+++ t1lib-5.0.1/Makefile.in 2004-02-13 12:29:21.000000000 -0500 -@@ -44,6 +44,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirs -+DESTDIR = @DESTDIR@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - includedir = @includedir@ ---- t1lib-5.0.1/doc/Makefile.in~install 2001-12-15 14:10:46.000000000 -0500 -+++ t1lib-5.0.1/doc/Makefile.in 2004-02-13 12:29:28.000000000 -0500 -@@ -43,6 +43,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirs -+DESTDIR = @DESTDIR@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - includedir = @includedir@ -@@ -91,18 +92,18 @@ - install: dummy - if (test -f t1lib_doc.ps) \ - then \ -- $(MKINSTALLDIRS) @T1LIB_DATA_DIR@/doc; \ -- $(INSTALL_DATA) t1lib_doc.ps @T1LIB_DATA_DIR@/doc; \ -+ $(MKINSTALLDIRS) $(DESTDIR)@T1LIB_DATA_DIR@/doc; \ -+ $(INSTALL_DATA) t1lib_doc.ps $(DESTDIR)@T1LIB_DATA_DIR@/doc; \ - fi; - if (test -f t1lib_doc.pdf) \ - then \ -- $(MKINSTALLDIRS) @T1LIB_DATA_DIR@/doc; \ -- $(INSTALL_DATA) t1lib_doc.pdf @T1LIB_DATA_DIR@/doc; \ -+ $(MKINSTALLDIRS) $(DESTDIR)@T1LIB_DATA_DIR@/doc; \ -+ $(INSTALL_DATA) t1lib_doc.pdf $(DESTDIR)@T1LIB_DATA_DIR@/doc; \ - fi; - - - uninstall: dummy -- $(RM) -R @T1LIB_DATA_DIR@/doc -+ $(RM) -R $(DESTDIR)@T1LIB_DATA_DIR@/doc - - - dummy: ---- t1lib-5.0.1/examples/Makefile.in~install 2001-01-15 17:11:47.000000000 -0500 -+++ t1lib-5.0.1/examples/Makefile.in 2004-02-13 12:29:33.000000000 -0500 -@@ -40,6 +40,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirs -+DESTDIR = @DESTDIR@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - includedir = @includedir@ ---- t1lib-5.0.1/lib/Makefile.in~install 2002-06-24 22:15:30.000000000 -0400 -+++ t1lib-5.0.1/lib/Makefile.in 2004-02-13 12:29:35.000000000 -0500 -@@ -40,6 +40,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirs -+DESTDIR = @DESTDIR@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - includedir = @includedir@ -@@ -160,27 +161,27 @@ - - - install: dummy -- $(MKINSTALLDIRS) $(libdir) -- $(MKINSTALLDIRS) $(includedir) -- $(MKINSTALLDIRS) @T1LIB_DATA_DIR@ -+ $(MKINSTALLDIRS) $(DESTDIR)$(libdir) -+ $(MKINSTALLDIRS) $(DESTDIR)$(includedir) -+ $(MKINSTALLDIRS) $(DESTDIR)@T1LIB_DATA_DIR@ - $(LIBTOOL) --mode=install \ -- $(INSTALL_DATA) $(MAIN_TARGET) $(libdir) -+ $(INSTALL_DATA) $(MAIN_TARGET) $(DESTDIR)$(libdir) - $(LIBTOOL) --mode=install \ -- $(INSTALL_DATA) $(MAIN_HEADER) $(includedir) -- if (test -f @T1LIB_DATA_DIR@/t1lib.config) \ -+ $(INSTALL_DATA) $(MAIN_HEADER) $(DESTDIR)$(includedir) -+ if (test -f $(DESTDIR)@T1LIB_DATA_DIR@/t1lib.config) \ - then \ - echo "Alert: Global configuration file exists, installation skipped!"; \ - else \ -- $(LIBTOOL) --mode=install $(INSTALL_DATA) t1lib.config @T1LIB_DATA_DIR@; \ -+ $(LIBTOOL) --mode=install $(INSTALL_DATA) t1lib.config $(DESTDIR)@T1LIB_DATA_DIR@; \ - fi; - - - uninstall: dummy -- -$(LIBTOOL) --mode=uninstall $(RM) $(libdir)/libt1.la -- -$(LIBTOOL) --mode=uninstall $(RM) $(libdir)/libt1x.la -- -$(LIBTOOL) --mode=uninstall $(RM) $(includedir)/t1lib.h -- -$(LIBTOOL) --mode=uninstall $(RM) $(includedir)/t1libx.h -- -$(LIBTOOL) --mode=uninstall $(RM) @T1LIB_DATA_DIR@/t1lib.config -+ -$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libt1.la -+ -$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libt1x.la -+ -$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(includedir)/t1lib.h -+ -$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(includedir)/t1libx.h -+ -$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)@T1LIB_DATA_DIR@/t1lib.config - - - dummy: ---- t1lib-5.0.1/type1afm/Makefile.in~install 2001-01-15 17:08:23.000000000 -0500 -+++ t1lib-5.0.1/type1afm/Makefile.in 2004-02-13 12:29:40.000000000 -0500 -@@ -42,6 +42,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirs -+DESTDIR = @DESTDIR@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - includedir = @includedir@ -@@ -87,14 +88,14 @@ - -rmdir .libs - - install: dummy -- $(MKINSTALLDIRS) $(bindir) -+ $(MKINSTALLDIRS) $(DESTDIR)$(bindir) - $(LIBTOOL) --mode=install \ -- $(INSTALL_PROGRAM) type1afm $(bindir)/type1afm -+ $(INSTALL_PROGRAM) type1afm $(DESTDIR)$(bindir)/type1afm - - - uninstall: dummy - $(LIBTOOL) --mode=uninstall \ -- $(RM) $(bindir)/type1afm -+ $(RM) $(DESTDIR)$(bindir)/type1afm - - - dummy: ---- t1lib-5.0.1/xglyph/Makefile.in~install 2001-01-15 17:06:53.000000000 -0500 -+++ t1lib-5.0.1/xglyph/Makefile.in 2004-02-13 12:29:44.000000000 -0500 -@@ -42,6 +42,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirs -+DESTDIR = @DESTDIR@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - includedir = @includedir@ -@@ -94,12 +95,12 @@ - - - install: dummy -- $(MKINSTALLDIRS) $(bindir) -- $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xglyph $(bindir)/xglyph -+ $(MKINSTALLDIRS) $(DESTDIR)$(bindir) -+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xglyph $(DESTDIR)$(bindir)/xglyph - - - uninstall: dummy -- $(LIBTOOL) --mode=uninstall $(RM) -f $(bindir)/xglyph -+ $(LIBTOOL) --mode=uninstall $(RM) -f $(DESTDIR)$(bindir)/xglyph - - - dummy: |