This commit is contained in:
commit
fe305ad497
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
libdnet-1.11.tar.bz2
Normal file
3
libdnet-1.11.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:545297e1d028372781b18c46a5963f7cfd2c2cdc2b058fd30c82e57f3c16291f
|
||||||
|
size 321954
|
5
libdnet.changes
Normal file
5
libdnet.changes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 21 03:26:32 CEST 2006 - dmueller@suse.de
|
||||||
|
|
||||||
|
- Initial package (1.11)
|
||||||
|
|
10
libdnet.patch
Normal file
10
libdnet.patch
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
--- configure.in
|
||||||
|
+++ configure.in
|
||||||
|
@@ -6,7 +6,6 @@
|
||||||
|
dnl $Id: configure.in,v 1.66 2006/01/19 16:39:24 dugsong Exp $
|
||||||
|
|
||||||
|
AC_INIT(include/dnet.h)
|
||||||
|
-AC_CONFIG_AUX_DIR(config)
|
||||||
|
AC_SUBST(ac_aux_dir)
|
||||||
|
|
||||||
|
AM_INIT_AUTOMAKE(libdnet, 1.11)
|
114
libdnet.spec
Normal file
114
libdnet.spec
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
#
|
||||||
|
# spec file for package libdnet (Version 1.11)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
# This file and all modifications and additions to the pristine
|
||||||
|
# package are under the same license as the package itself.
|
||||||
|
#
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: libdnet
|
||||||
|
BuildRequires: python-devel
|
||||||
|
License: BSD
|
||||||
|
Group: Development/Libraries/Other
|
||||||
|
Summary: Library for simple, portable interface to low level networking routines
|
||||||
|
Version: 1.11
|
||||||
|
Release: 1
|
||||||
|
URL: http://libdnet.sourceforge.net/
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
Source0: %name-%{version}.tar.bz2
|
||||||
|
Patch0: %name.patch
|
||||||
|
|
||||||
|
%description
|
||||||
|
libdnet provides a simplified, portable interface to several low-level
|
||||||
|
networking routines, including:
|
||||||
|
|
||||||
|
- network address manipulation
|
||||||
|
|
||||||
|
- kernel arp(4) cache and route(4) table lookup and manipulation
|
||||||
|
|
||||||
|
- network firewalling (IP filter, ipfw, ipchains, pf, PktFilter,
|
||||||
|
...)
|
||||||
|
|
||||||
|
- network interface lookup and manipulation
|
||||||
|
|
||||||
|
- IP tunnelling (BSD/Linux tun, Universal TUN/TAP device)
|
||||||
|
|
||||||
|
- raw IP packet and Ethernet frame transmission
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Dug Song <dugsong@monkey.org>
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Group: Development/Libraries/Other
|
||||||
|
Summary: Devel files for libdnet
|
||||||
|
Requires: %name = %version
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
libdnet provides a simplified, portable interface to several low-level
|
||||||
|
networking routines, including:
|
||||||
|
|
||||||
|
- network address manipulation
|
||||||
|
|
||||||
|
- kernel arp(4) cache and route(4) table lookup and manipulation
|
||||||
|
|
||||||
|
- network firewalling (IP filter, ipfw, ipchains, pf, PktFilter,
|
||||||
|
...)
|
||||||
|
|
||||||
|
- network interface lookup and manipulation
|
||||||
|
|
||||||
|
- IP tunnelling (BSD/Linux tun, Universal TUN/TAP device)
|
||||||
|
|
||||||
|
- raw IP packet and Ethernet frame transmission
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Dug Song <dugsong@monkey.org>
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch0
|
||||||
|
|
||||||
|
%build
|
||||||
|
cp config/*m4 .
|
||||||
|
autoreconf -fi
|
||||||
|
%configure --disable-static
|
||||||
|
make %{?jobs:-j %jobs}
|
||||||
|
|
||||||
|
%install
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
/usr/bin/dnet-config
|
||||||
|
/usr/include/dnet.h
|
||||||
|
/usr/include/dnet
|
||||||
|
%_libdir/libdnet.la
|
||||||
|
%_libdir/libdnet.so
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc LICENSE README TODO THANKS
|
||||||
|
/usr/sbin/dnet
|
||||||
|
/usr/share/man/man3/dnet.3.gz
|
||||||
|
/usr/share/man/man8/dnet.8.gz
|
||||||
|
%_libdir/libdnet.so.1*
|
||||||
|
|
||||||
|
%changelog -n libdnet
|
||||||
|
* Thu Sep 21 2006 - dmueller@suse.de
|
||||||
|
- Initial package (1.11)
|
Loading…
x
Reference in New Issue
Block a user