summaryrefslogtreecommitdiffstats
path: root/admin/pmacct/Makefile
blob: 4299a826688dda53bddce20bc628baa5291f90de (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=pmacct
PKG_VERSION:=0.14.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.pmacct.net/
PKG_MD5SUM:=4588531f0e8033fe82ad7fb22d1bbdb7

PKG_BUILD_DEPENDS:=libpcap

PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)

PKG_CONFIG_DEPENDS:= \
	CONFIG_IPV6 \

PKG_INSTALL:=1

include $(INCLUDE_DIR)/package.mk

define Package/pmacct/Default
  SECTION:=admin
  CATEGORY:=Administration
  SUBMENU:=Pmacct suite
  URL:=http://www.pmacct.net/
  DEPENDS=+libpcap
endef

define Package/pmacct-client
  $(call Package/pmacct/Default)
  TITLE:=Command-line client to gather data from the IMT plugin
  VARIANT:=basic
endef

define Package/nfacctd/Default
  $(call Package/pmacct/Default)
  TITLE:=NetFlow accounting daemon
endef

define Package/pmacctd/Default
  $(call Package/pmacct/Default)
  TITLE:=IP pcap-based accounting daemon
endef

define Package/sfacctd/Default
  $(call Package/pmacct/Default)
  TITLE:=sFlow accounting daemon
endef

define Package/uacctd/Default
  $(call Package/pmacct/Default)
  DEPENDS+= +iptables-mod-ulog
  TITLE:=ulog accounting daemon
endef


CONFIGURE_ARGS+= \
	$(call autoconf_bool,CONFIG_IPV6,ipv6) \
	--with-pcap-includes="$(STAGING_DIR)/usr/include" \
	--with-pcap-libs="$(STAGING_DIR)/usr/lib" \
	--enable-ulog \

ifeq ($(BUILD_VARIANT),basic)

  CONFIGURE_ARGS += \
	--disable-mysql \
	--disable-pgsql \
	--disable-sqlite3 \

endif

ifeq ($(BUILD_VARIANT),mysql)

  CONFIGURE_ARGS += \
	--enable-mysql \
	--with-mysql-includes="$(STAGING_DIR)/usr/include" \
	--with-mysql-libs="$(STAGING_DIR)/usr/lib/mysql" \
	--disable-pgsql \
	--disable-sqlite3 \

  CONFIGURE_VARS+= \
	LIBS="-lz" \

endif

ifeq ($(BUILD_VARIANT),pgsql)

  CONFIGURE_ARGS += \
	--disable-mysql \
	--enable-pgsql \
	--with-pgsql-includes="$(STAGING_DIR)/usr/include" \
	--with-pgsql-libs="$(STAGING_DIR)/usr/lib" \
	--disable-sqlite3 \

endif

ifeq ($(BUILD_VARIANT),sqlite)

  CONFIGURE_ARGS += \
	--disable-mysql \
	--disable-pgsql \
	--enable-sqlite3 \
	--with-sqlite3-includes="$(STAGING_DIR)/usr/include" \
	--with-sqlite3-libs="$(STAGING_DIR)/usr/lib" \

endif


define Package/pmacct-client/install
	$(INSTALL_DIR) $(1)/usr/sbin
	$(CP) $(PKG_BUILD_DIR)/src/pmacct $(1)/usr/sbin/
endef


# $(1): build variant {basic,mysql,pgsql,sqlite}
# $(2): package name prefix {nfacctd,pmacctd,sfacctd,uacctd}
# $(3): package name suffix {,-mysql,-pgsql,-sqlite}
# $(4): additional title (with MySQL support, ...)
# $(5): additional dependencies (+libmysqlclient, ...)

define BuildPackage/Template

  define Package/$(2)$(3)
    $(call Package/$(2)/Default)
    DEPENDS+= $(5)
    TITLE+= $(4)
    VARIANT:=$(1)
  endef

  define Package/$(2)$(3)/conffiles
/etc/default/$(2)
/etc/$(2).conf
  endef

  define Package/$(2)$(3)/install
	$(INSTALL_DIR) $$(1)/usr/sbin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(2) $$(1)/usr/sbin/
	$(INSTALL_DIR) $$(1)/etc
	$(INSTALL_DATA) ./files/$(2).conf $$(1)/etc/
	$(INSTALL_DIR) $$(1)/etc/default
	$(INSTALL_DATA) ./files/$(2).default $$(1)/etc/default/$(2)
	$(INSTALL_DIR) $$(1)/etc/init.d
	$(INSTALL_BIN) ./files/$(2).init $$(1)/etc/init.d/$(2)
  endef

  $$(eval $$(call BuildPackage,$(2)$(3)))

endef

$(eval $(call BuildPackage,pmacct-client))

$(eval $(call BuildPackage/Template,basic,nfacctd,,,))
$(eval $(call BuildPackage/Template,basic,pmacctd,,,))
$(eval $(call BuildPackage/Template,basic,sfacctd,,,))
$(eval $(call BuildPackage/Template,basic,uacctd,,,))

$(eval $(call BuildPackage/Template,mysql,nfacctd,-mysql,with MySQL support,+libmysqlclient))
$(eval $(call BuildPackage/Template,mysql,pmacctd,-mysql,with MySQL support,+libmysqlclient))
$(eval $(call BuildPackage/Template,mysql,sfacctd,-mysql,with MySQL support,+libmysqlclient))
$(eval $(call BuildPackage/Template,mysql,uacctd,-mysql,with MySQL support,+libmysqlclient))

$(eval $(call BuildPackage/Template,pgsql,nfacctd,-pgsql,with PostgreSQL support,+libpq))
$(eval $(call BuildPackage/Template,pgsql,pmacctd,-pgsql,with PostgreSQL support,+libpq))
$(eval $(call BuildPackage/Template,pgsql,sfacctd,-pgsql,with PostgreSQL support,+libpq))
$(eval $(call BuildPackage/Template,pgsql,uacctd,-pgsql,with PostgreSQL support,+libpq))

$(eval $(call BuildPackage/Template,sqlite,nfacctd,-sqlite,with SQLite support,+libsqlite3 +zlib))
$(eval $(call BuildPackage/Template,sqlite,pmacctd,-sqlite,with SQLite support,+libsqlite3 +zlib))
$(eval $(call BuildPackage/Template,sqlite,sfacctd,-sqlite,with SQLite support,+libsqlite3 +zlib))
$(eval $(call BuildPackage/Template,sqlite,uacctd,-sqlite,with SQLite support,+libsqlite3 +zlib))