]> git.pld-linux.org Git - packages/bluefish.git/blob - bluefish-DESTDIR.patch
- updated for 0.3.6.
[packages/bluefish.git] / bluefish-DESTDIR.patch
1 diff -Nru bluefish-0.3.6/Makefile.in bluefish-0.3.6.new/Makefile.in
2 --- bluefish-0.3.6/Makefile.in  Mon Feb 28 08:20:07 2000
3 +++ bluefish-0.3.6.new/Makefile.in      Mon Feb 28 07:21:41 2000
4 @@ -61,10 +61,10 @@
5  install:
6         @$(MAKE) -C po install
7         @$(MAKE) -C man install
8 -       $(INSTALL) -d -m 755 $(install_location)
9 -       $(INSTALL) -m 644 ./data/php3_functions $(install_location)/php3_functions
10 -       $(INSTALL) -m 644 ./data/ssi_functions $(install_location)/ssi_functions
11 -       $(INSTALL) -m 644 ./data/rxml_functions $(install_location)/rxml_functions      
12 +       $(INSTALL) -d -m 755 $(DESTDIR)$(install_location)
13 +       $(INSTALL) -m 644 ./data/php3_functions $(DESTDIR)$(install_location)/php3_functions
14 +       $(INSTALL) -m 644 ./data/ssi_functions $(DESTDIR)$(install_location)/ssi_functions
15 +       $(INSTALL) -m 644 ./data/rxml_functions $(DESTDIR)$(install_location)/rxml_functions    
16         @cd ${srcdir}/ && $(MAKE) install
17  
18  
19 diff -Nru bluefish-0.3.6/man/Makefile.in bluefish-0.3.6.new/man/Makefile.in
20 --- bluefish-0.3.6/man/Makefile.in      Mon Feb 28 08:20:07 2000
21 +++ bluefish-0.3.6.new/man/Makefile.in  Mon Feb 28 08:19:45 2000
22 @@ -40,11 +40,8 @@
23  INSTALL = @INSTALL@
24  
25  SRCS = bluefish.1
26 -OBJS = bluefish.1.gz
27  
28 -all: bluefish
29 -bluefish:
30 -       gzip -c $(SRCS) > $(OBJS)
31 +all:
32  
33  clean:
34         rm -f $(OBJS) core *~ *.bak
35 @@ -55,5 +52,6 @@
36  distclean: patchclean
37  
38  install: all
39 -       $(INSTALL) -m 644 ./$(OBJS) $(mandir)/$(OBJS)
40 +       $(INSTALL) -d $(DESTDIR)$(mandir)
41 +       $(INSTALL) -m 644 ./$(SRCS) $(DESTDIR)$(mandir)
42  
43 diff -Nru bluefish-0.3.6/src/Makefile.in bluefish-0.3.6.new/src/Makefile.in
44 --- bluefish-0.3.6/src/Makefile.in      Mon Feb 28 08:20:07 2000
45 +++ bluefish-0.3.6.new/src/Makefile.in  Mon Feb 28 07:21:20 2000
46 @@ -62,8 +62,8 @@
47         rm -f config.h
48  
49  install: all
50 -       $(INSTALL) -d -m 755 $(bindir)
51 -       $(INSTALL) -s -m 755 ./bluefish $(bindir)/bluefish
52 +       $(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
53 +       $(INSTALL) -s -m 755 ./bluefish $(DESTDIR)$(bindir)/bluefish
54  
55  uninstall:
56         /bin/rm -f $(bindir)/bluefish
This page took 0.094336 seconds and 3 git commands to generate.