source: scripts/untested/blfs-patches/lesstif-0.94.4-use_libdir_and_fix_installdirs.patch@ 66f17d5

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 66f17d5 was fd5b1fe, checked in by Jim Gifford <clfs@…>, 19 years ago

r588@server (orig r586): ryan | 2005-08-05 22:47:43 -0700
Add pile of new patches for blfs packages



  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[fd5b1fe]1Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
2Date: 2005-07-24
3Initial Package Version: 0.94.4
4Upstream Status: Not Submitted
5Origin: Self Created
6Description: Fix installation locations and ensure --libdir is honored when
7 installing libraries
8
9diff -uNr lesstif-0.94.4-orig/Makefile.in lesstif-0.94.4/Makefile.in
10--- lesstif-0.94.4-orig/Makefile.in 2005-04-01 05:45:07.000000000 +1000
11+++ lesstif-0.94.4/Makefile.in 2005-07-24 17:26:26.000000000 +1000
12@@ -282,7 +282,7 @@
13 # Lets put the informational stuff in a sub directory to avoid
14 # polluting /usr/local for default installs.
15 #
16-rootdir = $(prefix)/LessTif
17+rootdir = $(prefix)/share/LessTif
18 dist_root_DATA = AUTHORS BUG-REPORTING COPYING COPYING.LIB CREDITS \
19 FAQ INSTALL.txt README ReleaseNotes.html ReleaseNotes.txt
20
21diff -uNr lesstif-0.94.4-orig/configure lesstif-0.94.4/configure
22--- lesstif-0.94.4-orig/configure 2005-04-01 05:44:45.000000000 +1000
23+++ lesstif-0.94.4/configure 2005-07-24 17:38:41.000000000 +1000
24@@ -28421,6 +28421,7 @@
25 cat >>conftest.$ac_ext <<_ACEOF
26 /* end confdefs.h. */
27 $ac_includes_default
28+#include <ft2build.h>
29 #include <$ac_header>
30 _ACEOF
31 rm -f conftest.$ac_objext
32@@ -28465,6 +28466,7 @@
33 cat confdefs.h >>conftest.$ac_ext
34 cat >>conftest.$ac_ext <<_ACEOF
35 /* end confdefs.h. */
36+#include <ft2build.h>
37 #include <$ac_header>
38 _ACEOF
39 if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
40diff -uNr lesstif-0.94.4-orig/doc/Makefile.in lesstif-0.94.4/doc/Makefile.in
41--- lesstif-0.94.4-orig/doc/Makefile.in 2005-04-01 05:44:56.000000000 +1000
42+++ lesstif-0.94.4/doc/Makefile.in 2005-07-24 17:28:15.000000000 +1000
43@@ -259,7 +259,7 @@
44 # InsideLessTif/ shouldn't be touched:
45 # it has a stand-alone Makefile w/o auto* stuff
46 SUBDIRS = www.lesstif.org lessdox
47-rootdir = $(prefix)/LessTif
48+rootdir = $(prefix)/share/LessTif
49 docdir = $(rootdir)/doc
50 doc_DATA = All.html Clipboard.txt DragAndDrop.txt Form.txt \
51 GeoUtils.txt Geometry.html SyntheticResources.txt \
52diff -uNr lesstif-0.94.4-orig/doc/lessdox/clients/Makefile.in lesstif-0.94.4/doc/lessdox/clients/Makefile.in
53--- lesstif-0.94.4-orig/doc/lessdox/clients/Makefile.in 2005-04-01 05:44:57.000000000 +1000
54+++ lesstif-0.94.4/doc/lessdox/clients/Makefile.in 2005-07-24 17:29:41.000000000 +1000
55@@ -257,7 +257,7 @@
56 manone_DATA = mwm.1 xmbind.1 lesstif.1 uil.1 ltversion.1
57 manthree_DATA =
58 manfive_DATA = mwmrc.5 VirtualBindings.5
59-rootdir = $(prefix)/LessTif
60+rootdir = $(prefix)/share/LessTif
61 docdir = $(rootdir)/doc
62 htmldir = $(docdir)/html
63 html_DATA = mwm.html mwmrc.html xmbind.html lesstif.html uil.html \
64diff -uNr lesstif-0.94.4-orig/doc/lessdox/functions/Makefile.in lesstif-0.94.4/doc/lessdox/functions/Makefile.in
65--- lesstif-0.94.4-orig/doc/lessdox/functions/Makefile.in 2005-04-01 05:44:58.000000000 +1000
66+++ lesstif-0.94.4/doc/lessdox/functions/Makefile.in 2005-07-24 17:30:35.000000000 +1000
67@@ -257,7 +257,7 @@
68 manone_DATA =
69 manthree_DATA =
70 manfive_DATA =
71-rootdir = $(prefix)/LessTif
72+rootdir = $(prefix)/share/LessTif
73 docdir = $(rootdir)/doc
74 htmldir = $(docdir)/html
75 html_DATA = ${manone_DATA:.1=.html} ${manthree_DATA:.3=.html} \
76diff -uNr lesstif-0.94.4-orig/doc/lessdox/widgets/Makefile.in lesstif-0.94.4/doc/lessdox/widgets/Makefile.in
77--- lesstif-0.94.4-orig/doc/lessdox/widgets/Makefile.in 2005-04-01 05:44:59.000000000 +1000
78+++ lesstif-0.94.4/doc/lessdox/widgets/Makefile.in 2005-07-24 17:32:50.000000000 +1000
79@@ -282,7 +282,7 @@
80 Rect.3 UnNamedObj.3 Constraint.3 VendorShell.3
81
82 manfive_DATA =
83-rootdir = $(prefix)/LessTif
84+rootdir = $(prefix)/share/LessTif
85 docdir = $(rootdir)/doc
86 htmldir = $(docdir)/html
87 html_DATA = ${manone_DATA:.1=.html} ${manthree_DATA:.3=.html} \
88diff -uNr lesstif-0.94.4-orig/doc/www.lesstif.org/Makefile.in lesstif-0.94.4/doc/www.lesstif.org/Makefile.in
89--- lesstif-0.94.4-orig/doc/www.lesstif.org/Makefile.in 2005-04-01 05:44:59.000000000 +1000
90+++ lesstif-0.94.4/doc/www.lesstif.org/Makefile.in 2005-07-24 17:33:33.000000000 +1000
91@@ -263,7 +263,7 @@
92 # Lets put the informational stuff in a sub directory to avoid
93 # polluting /usr/local for default installs.
94 #
95-rootdir = $(prefix)/LessTif
96+rootdir = $(prefix)/share/LessTif
97 docdir = $(rootdir)/doc
98 doc_DATA = \
99 Advocacy.html contents.html misc_frame.html \
100diff -uNr lesstif-0.94.4-orig/doc/www.lesstif.org/images/Makefile.in lesstif-0.94.4/doc/www.lesstif.org/images/Makefile.in
101--- lesstif-0.94.4-orig/doc/www.lesstif.org/images/Makefile.in 2005-04-01 05:44:59.000000000 +1000
102+++ lesstif-0.94.4/doc/www.lesstif.org/images/Makefile.in 2005-07-24 17:34:58.000000000 +1000
103@@ -253,7 +253,7 @@
104 # Lets put the informational stuff in a sub directory to avoid
105 # polluting /usr/local for default installs.
106 #
107-rootdir = $(prefix)/LessTif
108+rootdir = $(prefix)/share/LessTif
109 docdir = $(rootdir)/doc
110 imagesdir = $(docdir)/images
111 images_DATA = hungry.png \
112diff -uNr lesstif-0.94.4-orig/lib/Dt/Makefile.in lesstif-0.94.4/lib/Dt/Makefile.in
113--- lesstif-0.94.4-orig/lib/Dt/Makefile.in 2005-04-01 05:45:03.000000000 +1000
114+++ lesstif-0.94.4/lib/Dt/Makefile.in 2005-07-24 17:23:56.000000000 +1000
115@@ -248,7 +248,7 @@
116 infodir = @infodir@
117 install_sh = @install_sh@
118 lib_version_suffix = @lib_version_suffix@
119-libdir = $(exec_prefix)/lib
120+libdir = @libdir@
121 libexecdir = @libexecdir@
122 localstatedir = @localstatedir@
123 man2html_cmd = @man2html_cmd@
124diff -uNr lesstif-0.94.4-orig/lib/Mrm-2.1/Makefile.in lesstif-0.94.4/lib/Mrm-2.1/Makefile.in
125--- lesstif-0.94.4-orig/lib/Mrm-2.1/Makefile.in 2005-04-01 05:45:04.000000000 +1000
126+++ lesstif-0.94.4/lib/Mrm-2.1/Makefile.in 2005-07-24 17:23:56.000000000 +1000
127@@ -235,7 +235,7 @@
128 infodir = @infodir@
129 install_sh = @install_sh@
130 lib_version_suffix = @lib_version_suffix@
131-libdir = $(exec_prefix)/lib
132+libdir = @libdir@
133 libexecdir = @libexecdir@
134 localstatedir = @localstatedir@
135 man2html_cmd = @man2html_cmd@
136diff -uNr lesstif-0.94.4-orig/lib/Uil-2.1/Makefile.in lesstif-0.94.4/lib/Uil-2.1/Makefile.in
137--- lesstif-0.94.4-orig/lib/Uil-2.1/Makefile.in 2005-04-01 05:45:04.000000000 +1000
138+++ lesstif-0.94.4/lib/Uil-2.1/Makefile.in 2005-07-24 17:23:56.000000000 +1000
139@@ -238,7 +238,7 @@
140 infodir = @infodir@
141 install_sh = @install_sh@
142 lib_version_suffix = @lib_version_suffix@
143-libdir = $(exec_prefix)/lib
144+libdir = @libdir@
145 libexecdir = @libexecdir@
146 localstatedir = @localstatedir@
147 man2html_cmd = @man2html_cmd@
148diff -uNr lesstif-0.94.4-orig/lib/Xm-2.1/Makefile.in lesstif-0.94.4/lib/Xm-2.1/Makefile.in
149--- lesstif-0.94.4-orig/lib/Xm-2.1/Makefile.in 2005-04-01 05:45:05.000000000 +1000
150+++ lesstif-0.94.4/lib/Xm-2.1/Makefile.in 2005-07-24 17:23:56.000000000 +1000
151@@ -297,7 +297,7 @@
152 infodir = @infodir@
153 install_sh = @install_sh@
154 lib_version_suffix = @lib_version_suffix@
155-libdir = $(exec_prefix)/lib
156+libdir = @libdir@
157 libexecdir = @libexecdir@
158 localstatedir = @localstatedir@
159 man2html_cmd = @man2html_cmd@
Note: See TracBrowser for help on using the repository browser.