update to 1.10 and take maintainer as discuess with
previous maintainer. ok pvalchev@ death threats msf@
This commit is contained in:
parent
d32d916c0c
commit
6a4bb21f13
@ -1,14 +1,15 @@
|
|||||||
# $OpenBSD: Makefile,v 1.7 2004/12/16 00:31:23 alek Exp $
|
# $OpenBSD: Makefile,v 1.8 2005/05/22 05:34:52 mjc Exp $
|
||||||
|
|
||||||
COMMENT= "portable low-level networking library"
|
COMMENT= "portable low-level networking library"
|
||||||
|
COMMENT-python= "python interface to libdnet"
|
||||||
|
|
||||||
DISTNAME= libdnet-1.7
|
DISTNAME= libdnet-1.10
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libdnet/}
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libdnet/}
|
||||||
|
|
||||||
HOMEPAGE= http://libdnet.sourceforge.net/
|
HOMEPAGE= http://libdnet.sourceforge.net/
|
||||||
|
|
||||||
MAINTAINER= Srebrenko Sehic <haver@insecure.dk>
|
MAINTAINER= Michael Coulter <mjc@openbsd.org>
|
||||||
|
|
||||||
# BSD
|
# BSD
|
||||||
PERMIT_PACKAGE_CDROM= Yes
|
PERMIT_PACKAGE_CDROM= Yes
|
||||||
@ -17,6 +18,23 @@ PERMIT_DISTFILES_CDROM= Yes
|
|||||||
PERMIT_DISTFILES_FTP= Yes
|
PERMIT_DISTFILES_FTP= Yes
|
||||||
WANTLIB= c
|
WANTLIB= c
|
||||||
|
|
||||||
|
PSEUDO_FLAVORS= no_python
|
||||||
|
FLAVOR?=
|
||||||
|
|
||||||
CONFIGURE_STYLE= gnu
|
CONFIGURE_STYLE= gnu
|
||||||
|
|
||||||
|
.if ${FLAVOR:L:Mno_python}
|
||||||
|
CONFIGURE_ARGS+= --without-python
|
||||||
|
.else
|
||||||
|
MULTI_PACKAGES= -python
|
||||||
|
SUBPACKAGE?=
|
||||||
|
CONFIGURE_ARGS+= --with-python
|
||||||
|
PYTHON_VER= 2.3
|
||||||
|
SUBST_VARS= PYTHON_VER
|
||||||
|
. if ${SUBPACKAGE} == "-python"
|
||||||
|
LIB_DEPENDS+= python${PYTHON_VER}.0.0:python-${PYTHON_VER}*:lang/python/${PYTHON_VER}
|
||||||
|
WANTLIB+= m pthread util
|
||||||
|
. endif
|
||||||
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MD5 (libdnet-1.7.tar.gz) = e0680e7375dd733f50466fcd4ac5e203
|
MD5 (libdnet-1.10.tar.gz) = 416b765e9d9961501ac85e9a366fd219
|
||||||
RMD160 (libdnet-1.7.tar.gz) = d9a0e15208a4a39b66ddb09da918860ac9ef5a35
|
RMD160 (libdnet-1.10.tar.gz) = 167cf841b3fdd061ec8d6a56d53c341678ee5a9e
|
||||||
SHA1 (libdnet-1.7.tar.gz) = 1bb75c39eed7351144a3d3f664161d9cc7cf8283
|
SHA1 (libdnet-1.10.tar.gz) = 1dd9594adb5a3af121960abd6960bcedfc815f37
|
||||||
SIZE (libdnet-1.7.tar.gz) = 160062
|
SIZE (libdnet-1.10.tar.gz) = 419752
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
$OpenBSD: patch-src_fw-pf_c,v 1.6 2004/07/11 06:47:46 sturm Exp $
|
|
||||||
--- src/fw-pf.c.orig Sun Jul 11 08:37:15 2004
|
|
||||||
+++ src/fw-pf.c Sun Jul 11 08:37:30 2004
|
|
||||||
@@ -32,7 +32,7 @@
|
|
||||||
* $OpenBSD: patch-src_fw-pf_c,v 1.6 2004/07/11 06:47:46 sturm Exp $
|
|
||||||
* $OpenBSD: patch-src_fw-pf_c,v 1.6 2004/07/11 06:47:46 sturm Exp $
|
|
||||||
*/
|
|
||||||
-#if defined(DIOCRINABEGIN)
|
|
||||||
+#if defined(DIOCXBEGIN)
|
|
||||||
# define PFRA_ADDR(ra) (ra)->addr.v.a.addr.v4.s_addr
|
|
||||||
# define PFRA_MASK(ra) (ra)->addr.v.a.mask.v4.s_addr
|
|
||||||
# define pfioc_changerule pfioc_rule
|
|
2
net/libdnet/pkg/DESCR-python
Normal file
2
net/libdnet/pkg/DESCR-python
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
This package contains a set of bindings for the Python scripting language to
|
||||||
|
libdnet.
|
2
net/libdnet/pkg/PFRAG.shared
Normal file
2
net/libdnet/pkg/PFRAG.shared
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
@comment $OpenBSD: PFRAG.shared,v 1.1 2005/05/22 05:34:52 mjc Exp $
|
||||||
|
@lib lib/libdnet.so.1.0
|
4
net/libdnet/pkg/PFRAG.shared-python
Normal file
4
net/libdnet/pkg/PFRAG.shared-python
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
@comment $OpenBSD: PFRAG.shared-python,v 1.1 2005/05/22 05:34:52 mjc Exp $
|
||||||
|
lib/python${PYTHON_VER}/
|
||||||
|
lib/python${PYTHON_VER}/site-packages/
|
||||||
|
lib/python${PYTHON_VER}/site-packages/dnet.so
|
@ -1,4 +1,5 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.4 2004/09/15 18:17:41 espie Exp $
|
@comment $OpenBSD: PLIST,v 1.5 2005/05/22 05:34:52 mjc Exp $
|
||||||
|
%%SHARED%%
|
||||||
bin/dnet-config
|
bin/dnet-config
|
||||||
include/dnet/
|
include/dnet/
|
||||||
include/dnet.h
|
include/dnet.h
|
||||||
@ -15,8 +16,10 @@ include/dnet/os.h
|
|||||||
include/dnet/rand.h
|
include/dnet/rand.h
|
||||||
include/dnet/route.h
|
include/dnet/route.h
|
||||||
include/dnet/tcp.h
|
include/dnet/tcp.h
|
||||||
|
include/dnet/tun.h
|
||||||
include/dnet/udp.h
|
include/dnet/udp.h
|
||||||
lib/libdnet.a
|
lib/libdnet.a
|
||||||
|
lib/libdnet.la
|
||||||
@man man/man3/dnet.3
|
@man man/man3/dnet.3
|
||||||
@man man/man8/dnet.8
|
@man man/man8/dnet.8
|
||||||
sbin/dnet
|
sbin/dnet
|
||||||
|
1
net/libdnet/pkg/PLIST-python
Normal file
1
net/libdnet/pkg/PLIST-python
Normal file
@ -0,0 +1 @@
|
|||||||
|
%%SHARED%%
|
Loading…
x
Reference in New Issue
Block a user