]> git.pld-linux.org Git - packages/t1lib.git/blob - t1lib-DESTDIR.patch
- updated to 1.3,
[packages/t1lib.git] / t1lib-DESTDIR.patch
1 diff -Nru T1-1.0.1/lib/Makefile.in T1-1.0.1.new/lib/Makefile.in
2 --- T1-1.0.1/lib/Makefile.in    Sun Jan 23 08:03:45 2000
3 +++ T1-1.0.1.new/lib/Makefile.in        Thu Mar 23 17:40:00 2000
4 @@ -158,18 +158,18 @@
5  
6  
7  install: dummy
8 -       $(MKINSTALLDIRS) $(libdir)
9 -       $(MKINSTALLDIRS) $(includedir)
10 -       $(MKINSTALLDIRS) @T1LIB_DATA_DIR@
11 +       $(MKINSTALLDIRS) $(DESTDIR)$(libdir)
12 +       $(MKINSTALLDIRS) $(DESTDIR)$(includedir)
13 +       $(MKINSTALLDIRS) $(DESTDIR)@T1LIB_DATA_DIR@
14         $(LIBTOOL) --mode=install \
15 -               $(INSTALL_DATA) $(MAIN_TARGET) $(libdir)
16 +               $(INSTALL_DATA) $(MAIN_TARGET) $(DESTDIR)$(libdir)
17         $(LIBTOOL) --mode=install \
18 -               $(INSTALL_DATA) $(MAIN_HEADER) $(includedir)
19 -       if (test -f @T1LIB_DATA_DIR@/t1lib.config) \
20 +               $(INSTALL_DATA) $(MAIN_HEADER) $(DESTDIR)$(includedir)
21 +       if (test -f $(DESTDIR)@T1LIB_DATA_DIR@/t1lib.config) \
22         then \
23           echo "Alert: Global configuration file exists, installation skipped!"; \
24         else \
25 -         $(LIBTOOL) --mode=install $(INSTALL_DATA) t1lib.config @T1LIB_DATA_DIR@; \
26 +         $(LIBTOOL) --mode=install $(INSTALL_DATA) t1lib.config $(DESTDIR)@T1LIB_DATA_DIR@; \
27         fi;
28  
29  
30 diff -Nru T1-1.0.1/type1afm/Makefile.in T1-1.0.1.new/type1afm/Makefile.in
31 --- T1-1.0.1/type1afm/Makefile.in       Sun Jan 23 08:05:26 2000
32 +++ T1-1.0.1.new/type1afm/Makefile.in   Thu Mar 23 17:39:10 2000
33 @@ -87,9 +87,9 @@
34         -rmdir .libs
35  
36  install: dummy
37 -       $(MKINSTALLDIRS) $(bindir)
38 +       $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
39         $(LIBTOOL) --mode=install \
40 -               $(INSTALL_PROGRAM) type1afm $(bindir)/type1afm
41 +               $(INSTALL_PROGRAM) type1afm $(DESTDIR)$(bindir)/type1afm
42  
43  
44  uninstall: dummy
45 diff -Nru T1-1.0.1/xglyph/Makefile.in T1-1.0.1.new/xglyph/Makefile.in
46 --- T1-1.0.1/xglyph/Makefile.in Sun Jan 23 08:04:36 2000
47 +++ T1-1.0.1.new/xglyph/Makefile.in     Thu Mar 23 17:38:50 2000
48 @@ -94,8 +94,8 @@
49  
50  
51  install: dummy
52 -       $(MKINSTALLDIRS) $(bindir)
53 -       $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xglyph $(bindir)/xglyph
54 +       $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
55 +       $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xglyph $(DESTDIR)$(bindir)/xglyph
56  
57  
58  uninstall: dummy
This page took 0.037308 seconds and 3 git commands to generate.