summaryrefslogtreecommitdiffstats
path: root/package/rrdtool
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-10 22:20:17 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-10 22:20:17 +0000
commit5b87a75e7d1e1d0efa4011d336cb5749deb17c4e (patch)
tree523b3c7e125a67905ebe93a6556e437464fdf445 /package/rrdtool
parente122fd3565fe46fe95376e06255422dc2fe7e7b2 (diff)
Add rrdtool package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1603 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/rrdtool')
-rw-r--r--package/rrdtool/Config.in73
-rw-r--r--package/rrdtool/Makefile107
-rw-r--r--package/rrdtool/ipkg/librrd.control16
-rw-r--r--package/rrdtool/ipkg/rrdcgi.control17
-rw-r--r--package/rrdtool/ipkg/rrdtool.control16
5 files changed, 229 insertions, 0 deletions
diff --git a/package/rrdtool/Config.in b/package/rrdtool/Config.in
new file mode 100644
index 000000000..058fe4e71
--- /dev/null
+++ b/package/rrdtool/Config.in
@@ -0,0 +1,73 @@
+menu "rrdtool - Round Robin Database (RRD) management tools and library"
+
+config BR2_COMPILE_RRDTOOL
+ bool
+ default no
+ depends BR2_PACKAGE_LIBRRD || BR2_PACKAGE_RRDCGI || BR2_PACKAGE_RRDTOOL
+
+config BR2_PACKAGE_LIBRRD
+ tristate "librrd - Round Robin Database (RRD) management library"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_COMPILE_RRDTOOL
+ select BR2_PACKAGE_LIBART
+ select BR2_PACKAGE_LIBFREETYPE
+ select BR2_PACKAGE_LIBPNG
+ help
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/
+
+ This package contains command line tools used to manage RRDs.
+
+
+config BR2_PACKAGE_RRDCGI
+ tristate "rrdcgi - Round Robin Database (RRD) CGI graphing tool"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_COMPILE_RRDTOOL
+ select BR2_PACKAGE_CGILIB
+ select BR2_PACKAGE_LIBRRD
+ help
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/
+
+ This package contains the rrdcgi tool used to create web pages containing
+ RRD graphs based on templates.
+
+
+config BR2_PACKAGE_RRDTOOL
+ tristate "rrdtool - Round Robin Database (RRD) management tools"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_COMPILE_RRDTOOL
+ select BR2_PACKAGE_LIBRRD
+ help
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/
+
+ This package contains command line tools used to manage RRDs.
+
+
+endmenu
+
diff --git a/package/rrdtool/Makefile b/package/rrdtool/Makefile
new file mode 100644
index 000000000..2b97a530e
--- /dev/null
+++ b/package/rrdtool/Makefile
@@ -0,0 +1,107 @@
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=rrdtool
+PKG_VERSION:=1.2.11
+PKG_RELEASE:=1
+PKG_MD5SUM:=d61c5755cb77207f9ad3584b26e8bf08
+
+PKG_SOURCE_URL:=http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_CAT:=zcat
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
+
+include $(TOPDIR)/package/rules.mk
+
+$(eval $(call PKG_template,LIBRRD,librrd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+$(eval $(call PKG_template,RRDCGI,rrdcgi,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+$(eval $(call PKG_template,RRDTOOL,rrdtool,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+
+$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
+ (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/usr/include/freetype2 -I$(STAGING_DIR)/usr/include/libart-2.0" \
+ LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
+ PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
+ $(TARGET_CONFIGURE_OPTS) \
+ rd_cv_ieee_works=yes \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --program-suffix="" \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --sbindir=/usr/sbin \
+ --libexecdir=/usr/lib \
+ --sysconfdir=/etc \
+ --datadir=/usr/share \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --infodir=/usr/info \
+ $(DISABLE_NLS) \
+ $(DISABLE_LARGEFILE) \
+ --enable-shared=yes \
+ --enable-static=yes \
+ --disable-rpath \
+ --enable-rrdcgi \
+ --disable-mmap \
+ --disable-perl \
+ --disable-tcl \
+ --disable-python \
+ --without-x \
+ --with-rrd-default-font=/usr/share/rrdtool/fonts/DejaVuSansMono-Roman.ttf \
+ );
+ touch $@
+
+$(PKG_BUILD_DIR)/.built:
+ rm -rf $(PKG_INSTALL_DIR)
+ mkdir -p $(PKG_INSTALL_DIR)
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ all install
+ touch $@
+
+$(IPKG_RRDTOOL):
+ install -d -m0755 $(IDIR_RRDTOOL)/usr/bin
+ cp -fpR $(PKG_INSTALL_DIR)/usr/bin/rrdtool $(IDIR_RRDTOOL)/usr/bin/rrdtool
+ cp -fpR $(PKG_INSTALL_DIR)/usr/bin/rrdupdate $(IDIR_RRDTOOL)/usr/bin/rrdupdate
+ $(RSTRIP) $(IDIR_RRDTOOL)
+ $(IPKG_BUILD) $(IDIR_RRDTOOL) $(PACKAGE_DIR)
+
+$(IPKG_RRDCGI):
+ install -d -m0755 $(IDIR_RRDCGI)/usr/bin
+ cp -fpR $(PKG_INSTALL_DIR)/usr/bin/rrdcgi $(IDIR_RRDCGI)/usr/bin/rrdcgi
+ $(RSTRIP) $(IDIR_RRDCGI)
+ $(IPKG_BUILD) $(IDIR_RRDCGI) $(PACKAGE_DIR)
+
+$(IPKG_LIBRRD):
+ install -d -m0755 $(IDIR_LIBRRD)/usr/lib
+ cp -fpR $(PKG_INSTALL_DIR)/usr/lib/librrd.so.* $(IDIR_LIBRRD)/usr/lib
+ install -d -m0755 $(IDIR_LIBRRD)/usr/share/rrdtool/fonts
+ cp -fpR $(PKG_BUILD_DIR)/src/DejaVuSansMono-Roman.ttf \
+ $(IDIR_LIBRRD)/usr/share/rrdtool/fonts/
+ $(RSTRIP) $(IDIR_LIBRRD)
+ $(IPKG_BUILD) $(IDIR_LIBRRD) $(PACKAGE_DIR)
+
+$(STAGING_DIR)/usr/lib/librrd.so: $(PKG_BUILD_DIR)/.built
+ mkdir -p $(STAGING_DIR)/usr/include
+ cp -fpR $(PKG_INSTALL_DIR)/usr/include/rrd.h $(STAGING_DIR)/usr/include/
+ mkdir -p $(STAGING_DIR)/usr/lib
+ cp -fpR $(PKG_INSTALL_DIR)/usr/lib/librrd.{a,so*} $(STAGING_DIR)/usr/lib/
+ touch $@
+
+install-dev: $(STAGING_DIR)/usr/lib/librrd.so
+
+uninstall-dev:
+ rm -rf \
+ $(STAGING_DIR)/usr/include/rrd.h \
+ $(STAGING_DIR)/usr/lib/librrd.{a,so*} \
+
+compile: install-dev
+clean: uninstall-dev
diff --git a/package/rrdtool/ipkg/librrd.control b/package/rrdtool/ipkg/librrd.control
new file mode 100644
index 000000000..3c3a27176
--- /dev/null
+++ b/package/rrdtool/ipkg/librrd.control
@@ -0,0 +1,16 @@
+Package: librrd
+Priority: optional
+Section: libs
+Maintainer: Oliver Ertl <oliver@ertl-net.net>, OpenWrt Developers <bugs@openwrt.org>
+Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/rrdtool/
+Depends: libart, libfreetype, libpng, zlib
+Description: Round Robin Database (RRD) management library.
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ This package contains the shared library used to manage RRDs.
diff --git a/package/rrdtool/ipkg/rrdcgi.control b/package/rrdtool/ipkg/rrdcgi.control
new file mode 100644
index 000000000..eba67f117
--- /dev/null
+++ b/package/rrdtool/ipkg/rrdcgi.control
@@ -0,0 +1,17 @@
+Package: rrdcgi
+Priority: optional
+Section: web
+Maintainer: Oliver Ertl <oliver@ertl-net.net>, OpenWrt Developers <bugs@openwrt.org>
+Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/rrdtool/
+Depends: cgilib, librrd
+Description: Round Robin Database (RRD) CGI graphing tool.
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ This package contains the rrdcgi tool used to create web pages containing
+ RRD graphs based on templates.
diff --git a/package/rrdtool/ipkg/rrdtool.control b/package/rrdtool/ipkg/rrdtool.control
new file mode 100644
index 000000000..6d8792ae2
--- /dev/null
+++ b/package/rrdtool/ipkg/rrdtool.control
@@ -0,0 +1,16 @@
+Package: rrdtool
+Priority: optional
+Section: admin
+Maintainer: Oliver Ertl <oliver@ertl-net.net>, OpenWrt Developers <bugs@openwrt.org>
+Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/rrdtool/
+Depends: librrd
+Description: Round Robin Database (RRD) management tools.
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ This package contains command line tools used to manage RRDs.