]> git.pld-linux.org Git - packages/xsane.git/blame - xsane-0.997-off-root-build.patch
keep fedora comments in .patch not .spec
[packages/xsane.git] / xsane-0.997-off-root-build.patch
CommitLineData
94120488
ER
1# from Fedora
2# enable off-root building
3# submitted to upstream (Oliver Rauch) via email, 2010-06-23
4
12d07cfb
AM
5From 7f43255972b741ff178f94233ffff67c9779c247 Mon Sep 17 00:00:00 2001
6From: Nils Philippsen <nils@redhat.com>
7Date: Thu, 16 Aug 2012 10:57:38 +0200
8Subject: [PATCH] patch: off-root-build
9
10Squashed commit of the following:
11
12commit f88d28c807667f618b3b1cf91c12b823f3853983
13Author: Nils Philippsen <nils@redhat.com>
14Date: Fri Nov 19 12:23:57 2010 +0100
15
16 enable off-root builds
17---
18 configure.in | 2 +-
19 doc/Makefile.in | 12 ++++++------
20 lib/Makefile.in | 4 ++--
21 src/Makefile.in | 8 ++++----
22 4 files changed, 13 insertions(+), 13 deletions(-)
23
24diff --git a/configure.in b/configure.in
25index a770253..770077b 100644
26--- a/configure.in
27+++ b/configure.in
28@@ -312,4 +312,4 @@ echo "* ------------------------------------------------------------ *"
29 echo "* ... PLEASE READ SANE DOCUMENTATION BEFORE STARTING XSANE ... *"
30 echo "* ------------------------------------------------------------ *"
31 echo "****************************************************************"
32-cat xsane.NEWS
33+cat ${srcdir}/xsane.NEWS
34diff --git a/doc/Makefile.in b/doc/Makefile.in
35index 59b022b..4038a6b 100644
36--- a/doc/Makefile.in
37+++ b/doc/Makefile.in
38@@ -57,14 +57,14 @@ install: $(MANPAGES)
39 $(MKINSTALLDIRS) $(DESTDIR)$(datadir)
40
41 $(MKINSTALLDIRS) $(DESTDIR)$(xsanedocdir)
42- @for page in *.html; do\
43+ @for page in $(notdir $(wildcard $(srcdir)/*.html)); do \
44 echo installing $${page} in $(DESTDIR)$(xsanedocdir)/$${page}...; \
45- $(INSTALL_DATA) $${page} $(DESTDIR)$(xsanedocdir)/$${page} || exit 1; \
46+ $(INSTALL_DATA) $(srcdir)/$${page} $(DESTDIR)$(xsanedocdir)/$${page} || exit 1; \
47 done
48
49- @for image in *.jpg; do\
50+ @for image in $(notdir $(wildcard $(srcdir)/*.jpg)); do \
51 echo installing $${image} in $(DESTDIR)$(xsanedocdir)/$${image}...; \
52- $(INSTALL_DATA) $${image} $(DESTDIR)$(xsanedocdir)/$${image} || exit 1; \
53+ $(INSTALL_DATA) $(srcdir)/$${image} $(DESTDIR)$(xsanedocdir)/$${image} || exit 1; \
54 done
55
56 uninstall:
57@@ -73,12 +73,12 @@ uninstall:
58 rm -f $(DESTDIR)$(mandir)/man1/$${page} || exit 1; \
59 done
60
61- @for page in *.html; do\
62+ @for page in $(notdir $(wildcard $(srcdir)/*.html)); do \
63 echo uninstalling $(DESTDIR)$(xsanedocdir)/$${page}...; \
64 rm -f $(DESTDIR)$(xsanedocdir)/$${page} || exit 1; \
65 done
66
67- @for image in *.jpg; do\
68+ @for image in $(notdir $(wildcard $(srcdir)/*.jpg)); do \
69 echo uninstalling $${image} in $(DESTDIR)$(xsanedocdir)/$${image}...; \
70 rm -f $(DESTDIR)$(xsanedocdir)/$${image} || exit 1; \
71 done
72diff --git a/lib/Makefile.in b/lib/Makefile.in
73index 7567d54..6be1eeb 100644
74--- a/lib/Makefile.in
75+++ b/lib/Makefile.in
76@@ -30,7 +30,7 @@ RANLIB = @RANLIB@
77
78 CC = @CC@
79 INCLUDES = -I. -I$(srcdir) \
80- -I$(top_builddir)/include/sane -I$(top_srcdir)/include
81+ -I$(top_builddir)/include/sane -I$(top_builddir)/include -I$(top_srcdir)/include
82 CPPFLAGS = @CPPFLAGS@
83 CFLAGS = @CFLAGS@
84 LDFLAGS = @LDFLAGS@
85@@ -68,7 +68,7 @@ uninstall:
86 check:
87
88 depend:
89- makedepend -I. -I../include *.c
90+ makedepend -I. -I../include $(srcdir)/*.c
91
92 clean:
93 rm -f *.out *.o *.lo *~ *.a *.bak $(TESTPROGRAMS)
94diff --git a/src/Makefile.in b/src/Makefile.in
95index 905ef93..2b246db 100644
96--- a/src/Makefile.in
97+++ b/src/Makefile.in
98@@ -77,10 +77,10 @@ install: $(PROGRAMS)
99 $(INSTALL_DATA) $(srcdir)/xsane-eula.txt $(DESTDIR)$(sanedatadir)/xsane/xsane-eula.txt
100 $(INSTALL_DATA) $(srcdir)/xsane.desktop $(DESTDIR)$(desktopappdir)/xsane.desktop
101 $(INSTALL_DATA) $(srcdir)/xsane.xpm $(DESTDIR)$(pixmapdir)/xsane.xpm
102- @for logo in *-logo.xpm; do \
103+ @for logo in $(notdir $(wildcard $(srcdir)/*-logo.xpm)); do \
104 echo installing $(DESTDIR)$(sanedatadir)/xsane/$${logo}; \
105 $(INSTALL_DATA) $(srcdir)/$${logo} $(DESTDIR)$(sanedatadir)/xsane/$${logo}; \
106- done
107+ done
108
109 uninstall:
110 @for program in $(BINPROGS); do \
111@@ -99,7 +99,7 @@ uninstall:
112 rm -f $(DESTDIR)$(desktopappdir)/xsane.desktop
113 echo uninstalling $(DESTDIR)$(pixmapdir)/xsane.xpm
114 rm -f $(DESTDIR)$(pixmapdir)/xsane.xpm
115- @for logo in *-logo.xpm; do \
116+ @for logo in $(notdir $(wildcard $(srcdir)/*-logo.xpm)); do \
117 echo uninstalling $(DESTDIR)$(sanedatadir)/xsane/$${logo}; \
118 rm -f $(DESTDIR)$(sanedatadir)/xsane/$${logo}; \
119 done
120@@ -119,7 +119,7 @@ distclean: clean
121 rm -f Makefile $(PROGRAMS)
122
123 depend:
124- makedepend $(INCLUDES) *.c
125+ makedepend $(INCLUDES) $(srcdir)/*.c
126
127 .PHONY: all install depend clean distclean
128
129--
1301.7.11.4
131
This page took 0.074702 seconds and 4 git commands to generate.