File: znc-buildmod.in

package info (click to toggle)
znc 0.058-2%2Blenny4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,464 kB
  • ctags: 2,692
  • sloc: cpp: 20,613; sh: 3,043; perl: 358; makefile: 169
file content (74 lines) | stat: -rwxr-xr-x 1,463 bytes parent folder | download
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/sh

ERROR="[ !! ]"
WARNING="[ ** ]"
OK="[ ok ]"

# Update $PATH so that we will also find the znc binary if we were compiled
# with  ./configure --prefix=/some/path
prefix="@prefix@"
exec_prefix="@exec_prefix@"
bindir="@bindir@"
PATH="$PATH:$bindir"

# Check if we got everything we need

SED=sed
ZNC_CONFIG=znc-config

if test "x$CXX" = "x" ; then
	CXX=g++
fi

check_binary()
{
	which $1 > /dev/null 2>&1
	if test $? = 1 ; then
		echo "${ERROR} Could not find $1. $2"
		exit 1
	fi
}

check_binary ${SED}
check_binary ${ZNC_CONFIG} "Please (re)install ZNC."
check_binary ${CXX} "What happened to your compiler?"

if test -z "$1"; then
	echo "${WARNING} USAGE: $0 <file.cpp> [file.cpp ... ]"
	exit 1
fi

CXXFLAGS=`${ZNC_CONFIG} --cflags`
INCLUDES=`${ZNC_CONFIG} --include`
LIBS=`${ZNC_CONFIG} --libs`

# Get the first word and strip away the first two chars (which is -I)
INC_PATH=`echo ${INCLUDES} | ${SED} 's: .*::' | ${SED} 's:^..::'`

if test ! -d ${INC_PATH}; then
	echo "${ERROR} Unable to find znc include dir [${INC_PATH}]. Please (re)install ZNC."
	exit 1
fi

while test ! -z "$1"
do
	FILE=$1
	shift

	MOD="${FILE%.cpp}"
	MOD="${MOD%.cc}"

	if test ! -f ${FILE}; then
		echo "${ERROR} Building ${MOD}.so... File not found"
	else
		printf "Building ${MOD}.so... "
		if ${CXX} ${CXXFLAGS} ${INCLUDES} ${LIBS} -shared -o ${MOD}.so ${FILE} ; then
			echo "${OK}"
		else
			echo "${ERROR} Error while building ${MOD}.so"
			exit 1
		fi
	fi
done

exit 0