aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/jigdo/scripts/configure.jigdo
blob: c198af9e58f138cf5b959119093c26398776ddc8 (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
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
#!/bin/sh
# $FreeBSD$

if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
	exit
fi

tempfile=`mktemp -t checklist`

if [ "${BATCH}" = "yes" ]; then
	set \"DB3\"
else
	/usr/bin/dialog --title "Jigsaw Download configuration options" \
	--clear --checklist "\n\
Please select desired options:" -1 -1 16 \
GUI		"Graphical User Interface (experimental)" OFF \
DB3		"Berkeley DB3 (used for jigdo-file's cache)" ON \
NLS		"Native Language Support (no language files yet)" OFF \
2> $tempfile

	retval=$?

	if [ -s $tempfile ]; then
		set `cat $tempfile`
	fi
	rm -f $tempfile

	case $retval in
		0)	if [ -z "$*" ]; then
				echo "Nothing selected"
			fi
			;;
		1)	echo "Cancel pressed."
			exit 1
			;;
	esac
fi

${MKDIR} ${WRKDIRPREFIX}${CURDIR}
exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc

echo "PREFIX=	${PREFIX}"

SUB_GUI="@comment "

while [ "$1" ]; do
	case $1 in
		\"GUI\")
			echo "CONFIGURE_ARGS+= --with-gui"
			echo "BUILD_DEPENDS+= gtk12-config:\${PORTSDIR}/x11-toolkits/gtk12"
			SUB_GUI=""
			;;
		\"DB3\")
			echo "CONFIGURE_ARGS+= --with-libdb=-ldb3"
			echo "CONFIGURE_ENV+= \
			  CPPFLAGS=\"-I\${LOCALBASE}/include/db3\" \
			  LIBS=\"-L\${LOCALBASE}/lib\" LDFLAGS=\"-ldb3\""
			echo "LIB_DEPENDS= db3:\${PORTSDIR}/databases/db3"
			;;
		\"NLS\")
			echo "CONFIGURE_ARGS+= --enable-nls=/usr/local/include"
			;;
		*)
			echo "Invalid option(s): $*" > /dev/stderr
			rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
			exit 1
			;;
	esac
	shift
done

echo "PLIST_SUB+=	SUB_GUI=\"${SUB_GUI}\""