Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 327009 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-1 / +2 lines)
Line  Link Here
0
-- a/Makefile
0
++ b/Makefile
Lines 20-25 all_samples: bin/raw-identify bin/simple_dcraw bin/dcraw_emu bin/dcraw_half bin Link Here
20
install: library
20
install: library
21
	@if [ -d /usr/local/include ] ; then cp -R libraw /usr/local/include/ ; else echo 'no /usr/local/include' ; fi
21
	@if [ -d /usr/local/include ] ; then cp -R libraw /usr/local/include/ ; else echo 'no /usr/local/include' ; fi
22
	@if [ -d /usr/local/lib ] ; then cp lib/libraw.a lib/libraw_r.a /usr/local/lib/ ; else echo 'no /usr/local/lib' ; fi
22
	@if [ -d /usr/local/lib ] ; then cp lib/libraw.a lib/libraw_r.a /usr/local/lib/ ; else echo 'no /usr/local/lib' ; fi
23
	@if [ -d /usr/local/lib/pkgconfig ] ; then cp libraw.pc libraw_r.pc /usr/local/lib/pkgconfig ; else echo 'no /usr/local/lib/pkgconfig' ; fi
23
24
24
install-binaries: all_samples
25
install-binaries: all_samples
25
	@if [ -d /usr/local/bin ] ; then cp bin/[a-z]* /usr/local/bin/ ; else echo 'no /usr/local/bin' ; fi
26
	@if [ -d /usr/local/bin ] ; then cp bin/[a-z]* /usr/local/bin/ ; else echo 'no /usr/local/bin' ; fi
(-)a/libraw.pc (+12 lines)
Line 0 Link Here
1
prefix=/usr
2
exec_prefix=${prefix}
3
libdir=${exec_prefix}/lib
4
includedir=${prefix}/include
5
6
Name: libraw
7
Description: Raw image decoder library (non-thread-safe)
8
Requires: 
9
Version: 0.9.1
10
Libs: -L${libdir} -lraw -lstdc++
11
Cflags: -I${includedir}/libraw
12
(-)a/libraw_r.pc (+12 lines)
Line 0 Link Here
1
prefix=/usr
2
exec_prefix=${prefix}
3
libdir=${exec_prefix}/lib
4
includedir=${prefix}/include
5
6
Name: libraw
7
Description: Raw image decoder library (thread-safe)
8
Requires: 
9
Version: 0.9.1
10
Libs: -L${libdir} -lraw_r -lstdc++
11
Cflags: -I${includedir}/libraw
12

Return to bug 327009