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