]> git.pld-linux.org Git - packages/aggregate.git/commitdiff
- initial AC-branch auto/ac/aggregate-1_6-1
authorundefine <undefine@pld-linux.org>
Thu, 20 Dec 2007 22:43:32 +0000 (22:43 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    aggregate.spec -> 1.1

aggregate.spec [new file with mode: 0644]

diff --git a/aggregate.spec b/aggregate.spec
new file mode 100644 (file)
index 0000000..b293ba3
--- /dev/null
@@ -0,0 +1,58 @@
+Summary:       aggregate list of prefixes
+Summary(pl.UTF-8):     agregacja listy adresów
+Name:          aggregate
+Version:       1.6
+Release:       1
+License:       BSD-like
+Group:         Applications/Networking
+Source0:       ftp://ftp.isc.org/isc/aggregate/%{name}-%{version}.tar.gz
+# Source0-md5: 6fcc515388bf2c5b0c8f9f733bfee7e1
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+aggregate takes a list of prefixes in conventional format on stdin,
+and performs two optimisations to reduce the length of the prefix
+list. It removes any supplied prefixes which are supurfluous because
+they are already included in another supplied prefix (e.g.,
+203.97.2.0/24 would be removed if 203.97.0.0/17 was also supplied),
+and identifies adjacent prefixes that can be combined under a single,
+shorter-length prefix (e.g., 203.97.2.0/24 and 203.97.3.0/24 can be
+combined into the single prefix 203.97.2.0/23).
+
+%description -l pl.UTF-8
+aggregate bierze listę adresów sieci w tradycyjnej formie na
+standardowym wejściu i wykonuje dwie optymalizacje by zmniejszyć jej
+wielkość. Usuwa wszelkie adresy sieci zawierające się w innych
+adresach (np 203.97.2.0/24 będzie usunięte jeżeli jest podana
+także 203.97.0.0/17), oraz rozpoznaje przystające adresy sieci
+które mogą być połączone w jeden, krótszy adres (np
+203.97.2.0/24 i 203.97.3.0/24 będą połączone w pojedyńczy adres
+203.97.2.0/23).
+
+%prep
+%setup -q
+
+%build
+%{__aclocal}
+%{__autoconf}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
+
+install aggregate aggregate-ios $RPM_BUILD_ROOT%{_bindir}
+install aggregate.1 aggregate-ios.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc LICEN* HISTORY
+%attr(755,root,root) %{_bindir}/*
+%{_mandir}/man1/*
This page took 0.063082 seconds and 4 git commands to generate.