summaryrefslogtreecommitdiff
path: root/package/nut/Makefile
blob: d5b7a7811d77358f6f7439c793fc7a8dd52697fc (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include ${TOPDIR}/rules.mk

PKG_NAME:=		nut
PKG_VERSION:=		2.4.1
PKG_RELEASE:=		1
PKG_MD5SUM:=		609ebaf2123fc7171d25a6c742dd7d66
PKG_DESCR:=		Network UPS Tools
PKG_SECTION:=		sys
PKG_URL:=		http://www.networkupstools.org
PKG_SITES:=		http://www.networkupstools.org/source/2.4/

include ${TOPDIR}/mk/package.mk

ifneq (${ADK_PACKAGE_NUT_SNMP},)
PKG_DEPENDS+=	libnetsnmp
endif

ifneq (${ADK_PACKAGE_NUT_USB},)
PKG_DEPENDS+=	libusb
endif

ifneq (${ADK_PACKAGE_NUT_SSL},)
PKG_DEPENDS+=	libopenssl
endif

$(eval $(call PKG_template,NUT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))

define DRIVER_template

DRIVERS_$${ADK_PACKAGE_NUT_DRIVER_${1}}+=${2}

endef

DRIVERS_y:=
$(eval $(call DRIVER_template,BESTUPS,bestups))
$(eval $(call DRIVER_template,FENTONUPS,fentonups))
$(eval $(call DRIVER_template,APCSMART,apcsmart))
$(eval $(call DRIVER_template,EVERUPS,everups))
$(eval $(call DRIVER_template,BELKIN,belkin))
$(eval $(call DRIVER_template,MASTERGUARD,masterguard))
$(eval $(call DRIVER_template,POWERCOM,powercom))
$(eval $(call DRIVER_template,CYBERPOWER,cyberpower))
$(eval $(call DRIVER_template,TRIPPLITE,tripplite))
$(eval $(call DRIVER_template,VICTRONUPS,victronups))
$(eval $(call DRIVER_template,GENERICUPS,genericups))
$(eval $(call DRIVER_template,MGE_UTALK,mge-utalk))
$(eval $(call DRIVER_template,BESTUFERRUPS,bestuferrups))
$(eval $(call DRIVER_template,ISBMEX,isbmex))
$(eval $(call DRIVER_template,ETAPRO,etapro))
$(eval $(call DRIVER_template,LIEBERT,liebert))
$(eval $(call DRIVER_template,SMS,sms))
$(eval $(call DRIVER_template,ESUPSSMART,esupssmart))
$(eval $(call DRIVER_template,TRIPPLITESU,tripplitesu))
$(eval $(call DRIVER_template,BLAZER,blazer))
$(eval $(call DRIVER_template,SAFENET,safenet))
$(eval $(call DRIVER_template,BELKINUNV,belkinunv))
$(eval $(call DRIVER_template,ONEAC,oneac))
$(eval $(call DRIVER_template,IPPON,ippon))
$(eval $(call DRIVER_template,CPSUPS,cpsups))
$(eval $(call DRIVER_template,MUSTEK,mustek))
$(eval $(call DRIVER_template,METASYS,metasys))
$(eval $(call DRIVER_template,BESTFCOM,bestfcom))
$(eval $(call DRIVER_template,UPSCODE2,upscode2))
$(eval $(call DRIVER_template,SOLIS,solis))
$(eval $(call DRIVER_template,GAMATRONIC,gamatronic))
$(eval $(call DRIVER_template,MEGATEC,megatec))
$(eval $(call DRIVER_template,RHINO,rhino))

CONFIG_DRIVERS=$(shell echo ${DRIVERS_y} | tr ' ' ',')

INSTALL_DRIVERS_tmp=${DRIVERS_y}
ifneq (${ADK_PACKAGE_NUT_USB},)
INSTALL_DRIVERS_tmp+=	hidups energizerups newhidups tripplite_usb
endif
ifneq (${ADK_PACKAGE_NUT_SNMP},)
INSTALL_DRIVERS_tmp+=	snmp-ups
endif
INSTALL_DRIVERS=$(shell echo ${INSTALL_DRIVERS_tmp} | tr ' ' ',')

CONFIGURE_STYLE:=	gnu
CONFIGURE_ARGS+=	--with-linux-hiddev=${LINUX_DIR}/include/linux/hiddev.h \
			--without-cgi \
			--with-drivers=${INSTALL_DRIVERS} \
			--with-group=root \
			--with-user=root

ifneq (${ADK_PACKAGE_NUT_SSL},)
CONFIGURE_ARGS+=	--with-ssl
CONFIGURE_ENV+=		CPPFLAGS="${TCPPFLAGS} ${TLDFLAGS}"
MAKE_FLAGS+=		SSL_CFLAGS="${TCPPFLAGS}" SSL_LDFLAGS="${TLDFLAGS} -lssl -lcrypto"
endif
BUILD_STYLE:=		auto
ALL_TARGET:=		all 
INSTALL_STYLE:=		auto
INSTALL_TARGET:=	install
ifneq (${ADK_PACKAGE_NUT_USB},)
ALL_TARGET+=		usb
INSTALL_TARGET+=	install-usb
endif
ifneq (${ADK_PACKAGE_NUT_SNMP},)
ALL_TARGET+=		snmp
INSTALL_TARGET+=	install-snmp
endif

post-install:
	${INSTALL_DIR} ${IDIR_NUT}/usr/{s,}bin
	${INSTALL_BIN} ${WRKINST}/usr/sbin/ups{d,mon,sched} \
		${IDIR_NUT}/usr/sbin/
	${INSTALL_BIN} ${WRKINST}/usr/bin/{${INSTALL_DRIVERS}} \
		${IDIR_NUT}/usr/bin/
	${INSTALL_BIN} ${WRKINST}/usr/bin/ups{c,cmd,drvctl,log,rw} \
		${IDIR_NUT}/usr/bin/
	${INSTALL_DATA} ./files/ups{d,}.conf ${IDIR_NUT}/etc/
ifneq (${ADK_PACKAGE_NUT_VARDESC},)
	${INSTALL_DIR} ${IDIR_NUT}/usr/share
	${INSTALL_DATA} ${WRKINST}/usr/share/cmdvartab \
		${IDIR_NUT}/usr/share/
endif

include ${TOPDIR}/mk/pkg-bottom.mk