]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blame - pkgs/core/rrdtool/rrdtool.nm
reiser4progs: Update package to be built with the new version of the buildsystem.
[people/arne_f/ipfire-3.x.git] / pkgs / core / rrdtool / rrdtool.nm
CommitLineData
301a3ede
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = rrdtool
b2cddec9 28PKG_VER = 1.4.4
301a3ede
MT
29PKG_REL = 0
30
31PKG_MAINTAINER =
32PKG_GROUP = Applications/Databases
33PKG_URL = http://oss.oetiker.ch/rrdtool/
34PKG_LICENSE = GPLv2+ with exceptions
35PKG_SUMMARY = Round Robin Database Tool to store and display time-series data.
36
37PKG_BUILD_DEPS+= gettext groff libtool pkg-config
38PKG_DEPS += cairo libxml2 pango python
39
40define PKG_DESCRIPTION
41 RRD is the Acronym for Round Robin Database. RRD is a system to \
42 store and display time-series data. It stores the data in a \
43 very compact way that will not expand over time, and it presents \
44 useful graphs by processing the data to enforce a certain data \
45 density.
46endef
47
48PKG_TARBALL = $(THISAPP).tar.gz
49
50CONFIGURE_OPTIONS += \
51 --disable-rrdcgi \
52 --disable-perl \
53 --disable-tcl \
54 --disable-ruby \
55 --disable-static \
56 --enable-python \
57 --enable-latin2
58
fa44e2f5
MT
59define STAGE_PREPARE_CMDS
60 # Remove rpath
61 cd $(DIR_APP) && sed -e "s/--rpath=.* &/\&/" -i bindings/Makefile.*
62endef
63
301a3ede
MT
64define STAGE_INSTALL_CMDS
65 # Remove unused files
66 rm -rvf $(BUILDROOT)/usr/share/rrdtool/examples
67
68 # Remove locale dir because no locales were installed
69 rm -rvf $(BUILDROOT)/usr/share/locale
70endef