]> git.ipfire.org Git - thirdparty/sarg.git/blob - CMakeLists.txt
Merge remote branch 'origin/v2.3'
[thirdparty/sarg.git] / CMakeLists.txt
1 CMAKE_MINIMUM_REQUIRED (VERSION 2.6)
2 PROJECT(sarg C)
3 SET(sarg_VERSION 2)
4 SET(sarg_REVISION "4-pre1")
5 SET(sarg_BUILD "")
6 SET(sarg_BUILDDATE "Jul-19-2012")
7
8 INCLUDE(AddFileDependencies)
9 INCLUDE(CheckIncludeFile)
10 INCLUDE(CheckLibraryExists)
11 INCLUDE(CheckFunctionExists)
12 INCLUDE(CheckTypeSize)
13 INCLUDE(CheckSymbolExists)
14 INCLUDE(CheckCCompilerFlag)
15 INCLUDE(CheckStructHasMember)
16
17 DEFINE_PROPERTY(GLOBAL PROPERTY enable-htmldir BRIEF_DOCS "--enable-htmldir=htmldir"
18 FULL_DOCS "Select htmldir as the root of your WWW documents")
19
20 SET(PACKAGE_NAME "sarg")
21 SET(PACKAGE_VERSION "${sarg_VERSION}.${sarg_REVISION}${sarg_BUILD}")
22
23 MACRO(SET_ABS_SOURCE VAR DOC)
24 IF(${VAR} AND NOT ${VAR}_SOURCE)
25 SET(PATH "${${VAR}}")
26 IF(NOT IS_ABSOLUTE ${PATH})
27 SET(PATH "${CMAKE_INSTALL_PREFIX}/${PATH}")
28 ENDIF(NOT IS_ABSOLUTE ${PATH})
29 GET_FILENAME_COMPONENT(SOURCE_PATH "${PATH}" ABSOLUTE)
30 SET(${VAR}_SOURCE "${SOURCE_PATH}" CACHE PATH "${DOC}")
31 ENDIF(${VAR} AND NOT ${VAR}_SOURCE)
32 ENDMACRO(SET_ABS_SOURCE VAR DOC)
33
34 SET_ABS_SOURCE(SYSCONFDIR "The full path of the configuration directory to be compiled in the program")
35 SET_ABS_SOURCE(FONTDIR "The full path of the fonts directory to be compiled in the program")
36 SET_ABS_SOURCE(IMAGEDIR "The full path of the images directory to be compiled in the program")
37
38 SET(SYSCONFDIR "etc/sarg" CACHE PATH "The configuration directory relative to the install directory")
39 SET(BINDIR "bin" CACHE PATH "The directory to install the exec relative to the install directory")
40 SET(MANDIR "share/man/man1" CACHE PATH "The directory to copy the man page relative to the install directory")
41 SET(FONTDIR "share/sarg/fonts" CACHE PATH "The directory to copy the fonts relative to the install directory")
42 SET(IMAGEDIR "share/sarg/images" CACHE PATH "The directory to copy the images files relative to the install directory")
43 SET(SARGPHPDIR "share/sarg/sarg-php" CACHE PATH "The directory to copy sarg-php relative to the install directory")
44
45 # Sources to compile
46 INCLUDE_DIRECTORIES("${CMAKE_BINARY_DIR}") #Make it find this config.h before the one in src/include
47 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
48 SET(SRC util.c log.c report.c topuser.c email.c sort.c html.c
49 index.c getconf.c usage.c decomp.c ip2name.c ip2name_dns.c
50 useragent.c exclude.c convlog.c totday.c repday.c datafile.c
51 indexonly.c splitlog.c lastlog.c topsites.c siteuser.c css.c
52 smartfilter.c denied.c authfail.c charset.c dichotomic.c
53 redirector.c auth.c download.c grepday.c ip2name_exec.c
54 dansguardian_log.c dansguardian_report.c realtime.c btree_cache.c
55 usertab.c userinfo.c longline.c url.c readlog.c)
56
57 FOREACH(f ${SRC})
58 ADD_FILE_DEPENDENCIES(${f} ${CMAKE_BINARY_DIR}/config.h ${CMAKE_SOURCE_DIR}/include/conf.h ${CMAKE_SOURCE_DIR}/include/info.h ${CMAKE_SOURCE_DIR}/include/defs.h)
59 ENDFOREACH(f)
60
61 ADD_EXECUTABLE(sarg ${SRC})
62
63 SET_TARGET_PROPERTIES(sarg PROPERTIES VERSION "${sarg_VERSION}.${sarg_REVISION}.${sarg_BUILD}")
64
65 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "$ENV{CFLAGS} -Wall -Wno-sign-compare")
66 SET_TARGET_PROPERTIES(sarg PROPERTIES LINK_FLAGS "$ENV{LDFLAGS}")
67
68 CHECK_C_COMPILER_FLAG("-Wextra" HAVE_WEXTRA)
69 IF(HAVE_WEXTRA)
70 # Not supported by gcc 3.3
71 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
72 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -Wextra -Wno-unused-parameter")
73 ENDIF(HAVE_WEXTRA)
74
75 CHECK_C_COMPILER_FLAG("-Werror=implicit-function-declaration" HAVE_WERROR_IMPLICIT_FUNCTION)
76 IF(HAVE_WERROR_IMPLICIT_FUNCTION)
77 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
78 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -Werror=implicit-function-declaration")
79 ENDIF(HAVE_WERROR_IMPLICIT_FUNCTION)
80
81 CHECK_C_COMPILER_FLAG("-Werror=format" HAVE_WERROR_FORMAT)
82 IF(HAVE_WERROR_FORMAT)
83 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
84 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -Werror=format")
85 ENDIF(HAVE_WERROR_FORMAT)
86
87 # Required header files
88 CHECK_INCLUDE_FILE(stdio.h HAVE_STDIO_H)
89 CHECK_INCLUDE_FILE(stdlib.h HAVE_STDLIB_H)
90 CHECK_INCLUDE_FILE(string.h HAVE_STRING_H)
91 CHECK_INCLUDE_FILE(strings.h HAVE_STRINGS_H)
92 CHECK_INCLUDE_FILE(sys/time.h HAVE_SYS_TIME_H)
93 CHECK_INCLUDE_FILE(time.h HAVE_TIME_H)
94 CHECK_INCLUDE_FILE(unistd.h HAVE_UNISTD_H)
95 CHECK_INCLUDE_FILE(sys/dirent.h HAVE_SYS_DIRENT_H)
96 CHECK_INCLUDE_FILE(dirent.h HAVE_DIRENT_H)
97 CHECK_INCLUDE_FILE(sys/types.h HAVE_SYS_TYPES_H)
98 CHECK_INCLUDE_FILE(sys/socket.h HAVE_SYS_SOCKET_H)
99 CHECK_INCLUDE_FILE(netdb.h HAVE_NETDB_H)
100 CHECK_INCLUDE_FILE(arpa/inet.h HAVE_ARPA_INET_H)
101 CHECK_INCLUDE_FILE(netinet/in.h HAVE_NETINET_H)
102 CHECK_INCLUDE_FILE(sys/stat.h HAVE_SYS_STAT_H)
103 CHECK_INCLUDE_FILE(ctype.h HAVE_CTYPE_H)
104 CHECK_INCLUDE_FILE(errno.h HAVE_ERRNO_H)
105 CHECK_INCLUDE_FILE(sys/resource.h HAVE_SYS_RESOURCE_H)
106 CHECK_INCLUDE_FILE(sys/wait.h HAVE_SYS_WAIT_H)
107 CHECK_INCLUDE_FILE(stdarg.h HAVE_STDARG_H)
108 CHECK_INCLUDE_FILE(inttypes.h HAVE_INTTYPES_H)
109 CHECK_INCLUDE_FILE(limits.h HAVE_LIMITS_H)
110 CHECK_INCLUDE_FILE(math.h HAVE_MATH_H)
111 CHECK_INCLUDE_FILE(locale.h HAVE_LOCALE_H)
112 CHECK_INCLUDE_FILE(execinfo.h HAVE_EXECINFO_H)
113 CHECK_INCLUDE_FILE(libintl.h HAVE_LIBINTL_H)
114 CHECK_INCLUDE_FILE(libgen.h HAVE_LIBGEN_H)
115 CHECK_INCLUDE_FILE(stdbool.h HAVE_STDBOOL_H)
116 CHECK_INCLUDE_FILE(getopt.h HAVE_GETOPT_H)
117 CHECK_INCLUDE_FILE(fcntl.h HAVE_FCNTL_H)
118
119 IF(!HAVE_GETOPT_H)
120 MESSAGE(SEND_ERROR "getopt.h is required to compile sarg")
121 ENDIF(!HAVE_GETOPT_H)
122
123 # Windows need lib wsock32 and ws2_32
124 IF(CMAKE_SYSTEM_NAME STREQUAL "Windows")
125 CHECK_INCLUDE_FILE(windows.h HAVE_WINDOWS_H)
126 CHECK_INCLUDE_FILE(winsock.h HAVE_WINSOCK_H)
127 CHECK_INCLUDE_FILE(ws2tcpip.h HAVE_WS2TCPIP_H)
128
129 FIND_LIBRARY(WSOCK_LIB NAMES wsock32 DOC "The winsock library")
130 IF(WSOCK_LIB)
131 TARGET_LINK_LIBRARIES(sarg wsock32)
132 LIST(APPEND CMAKE_REQUIRED_LIBRARIES wsock32)
133 ENDIF(WSOCK_LIB)
134
135 FIND_LIBRARY(WSOCK2_LIB NAMES ws2_32 DOC "The winsock 2 library")
136 IF(WSOCK2_LIB)
137 TARGET_LINK_LIBRARIES(sarg ws2_32)
138 LIST(APPEND CMAKE_REQUIRED_LIBRARIES ws2_32)
139 ENDIF(WSOCK2_LIB)
140
141 ADD_DEFINITIONS(-DWINDOWS)
142 ENDIF(CMAKE_SYSTEM_NAME STREQUAL "Windows")
143
144 CHECK_FUNCTION_EXISTS(bzero HAVE_BZERO)
145 CHECK_FUNCTION_EXISTS(backtrace HAVE_BACKTRACE)
146 CHECK_FUNCTION_EXISTS(symlink HAVE_SYMLINK)
147 CHECK_FUNCTION_EXISTS(lstat HAVE_LSTAT)
148 CHECK_FUNCTION_EXISTS(getnameinfo HAVE_GETNAMEINFO)
149 CHECK_FUNCTION_EXISTS(getaddrinfo HAVE_GETADDRINFO)
150 CHECK_FUNCTION_EXISTS(inet_aton HAVE_INET_ATON)
151
152 CHECK_STRUCT_HAS_MEMBER("struct sockaddr_storage" ss_len sys/socket.h HAVE_SOCKADDR_SA_LEN)
153
154 # Find gd
155 CHECK_INCLUDE_FILE(gd.h HAVE_GD_H)
156 IF(HAVE_GD_H)
157 CHECK_INCLUDE_FILE(gdfontl.h HAVE_GDFONTL_H)
158 CHECK_INCLUDE_FILE(gdfontt.h HAVE_GDFONTT_H)
159 CHECK_INCLUDE_FILE(gdfonts.h HAVE_GDFONTS_H)
160 CHECK_INCLUDE_FILE(gdfontmb.h HAVE_GDFONTMB_H)
161 CHECK_INCLUDE_FILE(gdfontg.h HAVE_GDFONTG_H)
162 FIND_LIBRARY(GD_LIBRARY NAMES gd bgd DOC "The GD library")
163 IF(GD_LIBRARY)
164 #CHECK_LIBRARY_EXISTS(gd gdImagePng "." HAVE_GD_LIB)
165 TARGET_LINK_LIBRARIES(sarg ${GD_LIBRARY})
166 SET(HAVE_GD_LIB GD_LIBRARY CACHE PATH DOC "True IF GD was found")
167 SET(HAVE_GD_LIB CACHE BOOL DOC "True IF must use GD")
168 ENDIF(GD_LIBRARY)
169 ENDIF(HAVE_GD_H)
170
171 # Find iconv
172 OPTION(ENABLE_ICONV "Enable the usage of iconv" ON)
173 IF(ENABLE_ICONV)
174 CHECK_INCLUDE_FILE(iconv.h HAVE_ICONV_H)
175 IF(HAVE_ICONV_H)
176 FIND_PATH(ICONV_INCLUDE_PATH NAMES iconv.h)
177 FIND_LIBRARY(ICONV_LIBRARY NAMES iconv DOC "The ICONV library")
178 IF(ICONV_LIBRARY)
179 TARGET_LINK_LIBRARIES(sarg ${ICONV_LIBRARY})
180 ENDIF(ICONV_LIBRARY)
181 CHECK_FUNCTION_EXISTS(iconv_open HAVE_ICONV)
182
183 IF(NOT USE_CONST_ICONV)
184 SET(ICONV_CONST_FILE ${CMAKE_BINARY_DIR}/consticonv.c)
185 FILE(WRITE ${ICONV_CONST_FILE} "
186 #include <iconv.h>
187 #ifdef __CLASSIC_C__
188 int main(){
189 int ac;
190 char*av[];
191 #else
192 int main(int ac, char*av[]){
193 #endif
194 iconv_t localtoutf=(iconv_t)-1;
195 const char *str=\"\";
196 char *sstr=\"\";
197 size_t slen=0, sslen=0;
198
199 iconv (localtoutf, (const char **)&str, &slen, &sstr, &sslen);
200 if(ac > 1000)
201 {
202 return *av[0];
203 }
204 return 0;
205 }
206 ")
207 TRY_COMPILE(USE_CONST_ICONV ${CMAKE_BINARY_DIR} ${ICONV_CONST_FILE} CMAKE_FLAGS -DLINK_LIBRARIES="iconv")
208 FILE(REMOVE ${ICONV_CONST_FILE})
209 IF(USE_CONST_ICONV)
210 SET(ICONV_CONST "const" CACHE STRING "The type of char to use with iconv")
211 MESSAGE(STATUS "iconv requires const char **")
212 ELSEIF(USE_CONST_ICONV)
213 SET(ICONV_CONST "" CACHE STRING "The type of char to use with iconv")
214 MESSAGE(STATUS "iconv requires char **")
215 ENDIF(USE_CONST_ICONV)
216 SET(USE_CONST_ICONV TRUE CACHE BOOL "Use const char ** with iconv")
217 ENDIF(NOT USE_CONST_ICONV)
218 ENDIF(HAVE_ICONV_H)
219 ENDIF(ENABLE_ICONV)
220
221 # Find ldap
222 CHECK_INCLUDE_FILE(ldap.h HAVE_LDAP_H)
223 IF(HAVE_LDAP_H)
224 FIND_LIBRARY(LDAP_LIBRARY NAMES ldap DOC "The ldap library")
225 IF(LDAP_LIBRARY)
226 TARGET_LINK_LIBRARIES(sarg ${LDAP_LIBRARY})
227 SET(HAVE_LDAP LDAP_LIBRARY CACHE PATH DOC "True if LDAP was found")
228 SET(HAVE_LDAP CACHE BOOL DOC "True if must use LDAP")
229 ENDIF(LDAP_LIBRARY)
230 ENDIF(HAVE_LDAP_H)
231
232 # Find pcre
233 CHECK_INCLUDE_FILE(pcre.h HAVE_PCRE_H)
234 IF(HAVE_PCRE_H)
235 FIND_LIBRARY(PCRE_LIBRARY NAMES pcre DOC "The pcre library")
236 IF(PCRE_LIBRARY)
237 TARGET_LINK_LIBRARIES(sarg ${PCRE_LIBRARY})
238 SET(HAVE_PCRE PCRE_LIBRARY CACHE PATH DOC "True if pcre was found")
239 SET(HAVE_PCRE CACHE BOOL DOC "True if must use pcre")
240 ENDIF(PCRE_LIBRARY)
241 ENDIF(HAVE_PCRE_H)
242
243 # Support for large files
244 OPTION(ENABLE_LARGEFILE "Enable the usage of large files" ON)
245 IF(ENABLE_LARGEFILE)
246 IF(LFS_SEARCHED MATCHES "^LFS_SEARCHED$")
247 SET(SEARCH_LARGEFILE TRUE)
248 ENDIF(LFS_SEARCHED MATCHES "^LFS_SEARCHED$")
249 ENDIF(ENABLE_LARGEFILE)
250
251 IF(SEARCH_LARGEFILE)
252 SET(LFS_SEARCHED TRUE CACHE INTERNAL "LFS has been searched")
253 MESSAGE(STATUS "Looking for large file support")
254 SET(LFS_FILE "${CMAKE_BINARY_DIR}/lfsfopen64.c")
255 FILE(WRITE ${LFS_FILE} "
256 #include <stdio.h>
257 int main(void)
258 {
259 FILE *f = fopen64 (\"/tmp/foo\",\"r\");
260 return(0);
261 }
262 ")
263 TRY_COMPILE(HAVE_FOPEN64 ${CMAKE_BINARY_DIR} ${LFS_FILE} COMPILE_DEFINITIONS "-Wall -Werror")
264 IF(HAVE_FOPEN64)
265 MESSAGE(STATUS "Looking for large file support - found")
266 ELSE(HAVE_FOPEN64)
267 SET(LFS_NEED_DEFINE FALSE CACHE BOOL "Does LFS require _LARGEFILE64_SOURCE ?")
268 MESSAGE(STATUS "Looking for large file support with _LARGEFILE64_SOURCE")
269 FILE(WRITE ${LFS_FILE} "
270 #define _LARGEFILE64_SOURCE
271 #include <stdio.h>
272 int main(void)
273 {
274 FILE *f = fopen64 (\"/tmp/foo\",\"r\");
275 return(0);
276 }
277 ")
278 TRY_COMPILE(HAVE_FOPEN64 ${CMAKE_BINARY_DIR} ${LFS_FILE} OUTPUT_VARIABLE LFS_OUTPUT)
279 IF(HAVE_FOPEN64)
280 MESSAGE(STATUS "Looking for large file support with _LARGEFILE64_SOURCE - found")
281 SET(LFS_NEED_DEFINE TRUE CACHE BOOL "Does LFS require _LARGEFILE64_SOURCE ?" FORCE)
282 ELSE(HAVE_FOPEN64)
283 MESSAGE("Failed with output ${LFS_OUTPUT}")
284 ENDIF(HAVE_FOPEN64)
285 ENDIF(HAVE_FOPEN64)
286 FILE(REMOVE ${LFS_FILE})
287 ENDIF(SEARCH_LARGEFILE)
288
289 IF(LFS_NEED_DEFINE)
290 ADD_DEFINITIONS(-D_LARGEFILE64_SOURCE)
291 ENDIF(LFS_NEED_DEFINE)
292
293 # Find rlim_t
294 IF(HAVE_SYS_RESOURCE_H)
295 SET(CMAKE_EXTRA_INCLUDE_FILES "sys/resource.h")
296 ENDIF(HAVE_SYS_RESOURCE_H)
297 CHECK_TYPE_SIZE(rlim_t RLIM_T)
298 IF(HAVE_RLIM_T)
299 IF(RLIM_T STREQUAL 4)
300 SET(RLIM_STRING "%d")
301 ELSEIF(RLIM_T STREQUAL 8)
302 SET(RLIM_STRING "%lli")
303 ELSE(RLIM_T STREQUAL 4)
304 MESSAGE("Unknown rlim_t size")
305 ENDIF(RLIM_T STREQUAL 4)
306 #ELSE(HAVE_RLIM_T)
307 # MESSAGE("Cannot detect the size of your system's rlim_t type")
308 ENDIF(HAVE_RLIM_T)
309
310 CHECK_FUNCTION_EXISTS(mkstemp HAVE_MKSTEMP)
311 IF(NOT HAVE_MKSTEMP)
312 # MingW provide mkstemps in libiberty but doesn't declare it in any header file
313 FIND_LIBRARY(IBERTY_LIB NAMES iberty DOC "The library of mingw containing mkstemps")
314 IF(IBERTY_LIB)
315 TARGET_LINK_LIBRARIES(sarg iberty)
316 ENDIF(IBERTY_LIB)
317 ENDIF(NOT HAVE_MKSTEMP)
318
319 # Gettext and friends
320 IF(NOT HAVE_LC_MESSAGES)
321 SET(FILES)
322 IF(HAVE_LOCALE_H)
323 LIST(APPEND FILES "locale.h")
324 ENDIF(HAVE_LOCALE_H)
325 IF(HAVE_LIBINTL_H)
326 LIST(APPEND FILES "libintl.h")
327 ENDIF(HAVE_LIBINTL_H)
328 LIST(LENGTH FILES NFILES)
329 IF(NFILES GREATER 0)
330 CHECK_SYMBOL_EXISTS(LC_MESSAGES "${FILES}" HAVE_LC_MESSAGES)
331 ENDIF(NFILES GREATER 0)
332 ENDIF(NOT HAVE_LC_MESSAGES)
333
334 # System particularities
335 IF(CMAKE_SYSTEM_NAME STREQUAL "solaris")
336 TARGET_LINK_LIBRARIES(sarg socket nsl)
337 #SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_DEFINITIONS="-DSOLARIS ${COMPILE_DEFINITIONS}")
338 ADD_DEFINITIONS(-DSOLARIS)
339 ENDIF(CMAKE_SYSTEM_NAME STREQUAL "solaris")
340
341 OPTION(ENABLE_EXTRA_PROTECT "Enable compile and runtime extra protections" OFF)
342 IF(ENABLE_EXTRA_PROTECT)
343 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
344 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -fstack-protector -D_FORTIFY_SOURCE=2 -Werror")
345
346 CHECK_C_COMPILER_FLAG("-Wformat -Werror=format-security" HAVE_WERROR_FORMAT_SECURITY)
347 IF(HAVE_WERROR_FORMAT_SECURITY)
348 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
349 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -Wformat -Werror=format-security")
350 ENDIF(HAVE_WERROR_FORMAT_SECURITY)
351
352 CHECK_C_COMPILER_FLAG("-Wempty-body" HAVE_EMPTY_BODY)
353 IF(HAVE_EMPTY_BODY)
354 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
355 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -Wempty-body")
356 ENDIF(HAVE_EMPTY_BODY)
357 ENDIF(ENABLE_EXTRA_PROTECT)
358
359 # Compile sarg for debugging
360 OPTION(ENABLE_DEBUG "Compile sarg with debugging symbols" OFF)
361 IF(ENABLE_DEBUG)
362 GET_TARGET_PROPERTY(TMPCFLAGS sarg COMPILE_FLAGS)
363 SET_TARGET_PROPERTIES(sarg PROPERTIES COMPILE_FLAGS "${TMPCFLAGS} -g")
364 ENDIF(ENABLE_DEBUG)
365
366 # Enable double check of the data written in the reports
367 OPTION(ENABLE_DOUBLE_CHECK_DATA "Make sarg double check the data it manipulates and output a warning if an error is found" OFF)
368
369 # Save the configuration for the project
370 CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/include/config.h.in" "${CMAKE_BINARY_DIR}/config.h" @ONLY)
371
372 # Installation of the project
373 INSTALL(TARGETS sarg DESTINATION "${BINDIR}")
374 INSTALL(FILES sarg.conf DESTINATION "${SYSCONFDIR}" RENAME sarg.conf.exemple)
375 INSTALL(FILES exclude_codes user_limit_block css.tpl DESTINATION "${SYSCONFDIR}")
376 INSTALL(FILES sarg.1 DESTINATION "${MANDIR}")
377 INSTALL(DIRECTORY images/ DESTINATION "${IMAGEDIR}" PATTERN ".svn" EXCLUDE)
378 INSTALL(DIRECTORY fonts/ DESTINATION "${FONTDIR}" FILES_MATCHING PATTERN "*.ttf" PATTERN ".svn" EXCLUDE)
379 INSTALL(DIRECTORY sarg-php/ DESTINATION "${SARGPHPDIR}" PATTERN ".svn" EXCLUDE)
380
381 # Package creation
382 SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Squid Analysis Report Generator")
383 SET(CPACK_PACKAGE_VERSION_MAJOR "${sarg_VERSION}")
384 SET(CPACK_PACKAGE_VERSION_MINOR "${sarg_REVISION}")
385 SET(CPACK_PACKAGE_VERSION_PATCH "${sarg_BUILD}")
386 SET(CPACK_GENERATOR TGZ)
387 SET(CPACK_SOURCE_GENERATOR TGZ)
388 SET(CPACK_SOURCE_IGNORE_FILES "/.svn/" "/debian/" "/html/" "Makefile$" "config\\\\.log$" "config\\\\.status$" ".*~$" "\\\\.o$")
389 INCLUDE(CPack)