Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 164070
Collapse All | Expand All

(-)kipi-plugins-0.1.3/kipi-plugins/rawconverter/dcrawbinary.cpp (-1 / +1 lines)
Lines 93-99 Link Here
93
93
94
const char *DcrawBinary::path()
94
const char *DcrawBinary::path()
95
{
95
{
96
    return "kipidcraw";
96
    return "dcraw";
97
}
97
}
98
98
99
bool DcrawBinary::isAvailable() const
99
bool DcrawBinary::isAvailable() const
(-)kipi-plugins-0.1.3/kipi-plugins/rawconverter/Makefile.am (-21 lines)
Lines 35-58 Link Here
35
messages: rc.cpp
35
messages: rc.cpp
36
	$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot
36
	$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot
37
37
38
#-- dcraw binary -------------------------------------------------
39
40
# RawConverter plugin use a dedicaced dcraw binary program to run. This is mandatory 
41
# since dcraw author have broken the command line options 
42
# compatibility with the 8.x serie.
43
# Also, dcraw is not available like a library.
44
# The dcraw.c source code is just a copy of official implementation, but 
45
# this one have been completly tested with this plugin. 
46
# Note: dcraw project page is http://cybercom.net/~dcoffin
47
48
bin_PROGRAMS = kipidcraw
49
50
# This line is require to disable color management support (using LCMS library) witch 
51
# is not yet supported by plugin.
52
kipidcraw_CFLAGS = -DNO_LCMS -w 
53
54
kipidcraw_SOURCES = dcraw.c
55
56
kipidcraw_LDFLAGS = $(all_libraries) $(LIBJPEG) -lm
57
58

Return to bug 164070