]> git.pld-linux.org Git - packages/flow-tools.git/blob - flow-tools.spec
- tabs in preamble
[packages/flow-tools.git] / flow-tools.spec
1 Summary:        Collecting and processing NetFlow data
2 Summary(pl.UTF-8):      Gromadzenie i przetwarzanie informacji o przepływie w sieci
3 Name:           flow-tools
4 Version:        0.68
5 Release:        3
6 License:        BSD
7 Group:          Applications/Networking
8 Source0:        ftp://ftp.eng.oar.net/pub/flow-tools/%{name}-%{version}.tar.gz
9 # Source0-md5:  c9e0a8b53c79611b6bffcb9d510a5a38
10 Patch0:         %{name}-shared.patch
11 URL:            http://www.splintered.net/sw/flow-tools/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  bison
15 BuildRequires:  sed >= 4.0
16 BuildRequires:  flex
17 BuildRequires:  libtool
18 BuildRequires:  libwrap-devel >= 7.6-32
19 BuildRequires:  zlib-devel
20 Requires:       %{name}-libs = %{version}-%{release}
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %define         _localstatedir  %{_sysconfdir}/%{name}
24
25 %description
26 This is a software package for collecting and processing NetFlow data
27 from Cisco and Juniper routers.
28
29 %description -l pl.UTF-8
30 Jest to oprogramowanie służące do gromadzenia i przetwarzania
31 informacji o przepływie w sieci (NetFlow) z routerów Cisco i Juniper.
32
33 %package libs
34 Summary:        flow-tools library
35 Summary(pl.UTF-8):      Biblioteka flow-tools
36 Group:          Libraries
37 Conflicts:      flow-tools < 0.67-2
38
39 %description libs
40 flow-tools library.
41
42 %description libs -l pl.UTF-8
43 Biblioteka flow-tools.
44
45 %package devel
46 Summary:        Header files flow-tools library
47 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki flow-tools
48 Group:          Development/Libraries
49 Requires:       %{name}-libs = %{version}-%{release}
50 Requires:       zlib-devel
51
52 %description devel
53 This package contains header files for flow-tools library.
54
55 %description devel -l pl.UTF-8
56 Ten pakiet zawiera pliki nagłówkowe biblioteki flow-tools.
57
58 %package static
59 Summary:        Static flow-tools library
60 Summary(pl.UTF-8):      Statyczna biblioteka flow-tools
61 Group:          Development/Libraries
62 Requires:       %{name}-devel = %{version}-%{release}
63
64 %description static
65 Static flow-tools library.
66
67 %description static -l pl.UTF-8
68 Statyczna biblioteka flow-tools.
69
70 %prep
71 %setup -q
72 %patch0 -p1
73
74 %{__sed} -i -e '1s,#.*bin/python,#!%{__python},' bin/flow-log2rrd bin/flow-rpt2rrd bin/flow-rptfmt
75
76 %build
77 %{__libtoolize}
78 %{__aclocal}
79 %{__autoconf}
80 %{__autoheader}
81 %{__automake}
82 %configure
83 #       --with-mysql
84 %{__make}
85
86 %install
87 rm -rf $RPM_BUILD_ROOT
88
89 %{__make} install \
90         DESTDIR=$RPM_BUILD_ROOT
91
92 %clean
93 rm -rf $RPM_BUILD_ROOT
94
95 %post   libs -p /sbin/ldconfig
96 %postun libs -p /sbin/ldconfig
97
98 %files
99 %defattr(644,root,root,755)
100 %doc AUTHORS ChangeLog INSTALL NEWS README SECURITY TODO
101 %attr(755,root,root) %{_bindir}/*
102 %{_mandir}/man1/*
103
104 %files libs
105 %defattr(644,root,root,755)
106 %attr(755,root,root) %{_libdir}/libft.so.*.*.*
107 %{_localstatedir}
108
109 %files devel
110 %defattr(644,root,root,755)
111 %attr(755,root,root) %{_libdir}/libft.so
112 %{_libdir}/libft.la
113 %{_includedir}/*.h
114
115 %files static
116 %defattr(644,root,root,755)
117 %{_libdir}/libft.a
This page took 0.169496 seconds and 3 git commands to generate.