blob: 2f1cec5b3604599c51a25d4f4d7415b99f056e25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- build/cmake/CondorPackageConfig.cmake.orig 2012-01-17 10:53:14.000000000 -0600
+++ build/cmake/CondorPackageConfig.cmake 2012-04-07 14:37:17.000000000 -0500
@@ -1,3 +1,4 @@
+
###############################################################
#
# Copyright 2011 Red Hat, Inc.
@@ -144,6 +145,23 @@
# enable if we desire native packaging.
# set ( CPACK_GENERATOR "${CPACK_GENERATOR};PackageMaker" ) ;
# set (CPACK_OSX_PACKAGE_VERSION)
+
+elseif ( ${OS_NAME} STREQUAL "FREEBSD" )
+
+ # Condor installs nothing useful to FreeBSD in C_INIT, so
+ # just tuck it out of the way. FreeBSD RC scripts come from
+ # the port's "files" directory.
+ set( C_INIT etc/condor )
+ set( C_ETC etc/condor )
+ set( C_CONFIGD etc/condor/config.d )
+ set( C_SYSCONFIG etc/condor/sysconfig )
+
+ set( C_ETC_EXAMPLES etc/condor/examples )
+ # Condor installs an "examples" directory into C_SHARE_EXAMPLES
+ # so set it to share/condor instead of share/condor/examples.
+ set( C_SHARE_EXAMPLES share/examples/condor )
+ set( C_DOC share/doc/condor )
+
elseif ( ${OS_NAME} MATCHES "WIN" )
# override for windows.
|