mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
eb81a88093
coexist PR: ports/103861 Submitted by: alepulver Tested by: pointyhat With hat: portmgr
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: py-libnet
|
|
# Date created: Jan 30, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libnet
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= pylibnet
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pylibnet-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Python module for the libnet packet construction library
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/swig1.1:${PORTSDIR}/devel/swig11 \
|
|
${LIBNET_CONFIG}:${PORTSDIR}/net/libnet10
|
|
|
|
USE_PYTHON= yes
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
|
|
MAKE_ARGS= SWIG=${LOCALBASE}/bin/swig1.1 \
|
|
LIBNET_INCLUDES=-I${LOCALBASE}/include \
|
|
PYTHON_INCLUDES=-I${PYTHON_INCLUDEDIR} \
|
|
CFLAGS="${CFLAGS} `${LIBNET_CONFIG} --defines` `${LIBNET_CONFIG} --cflags` -fPIC" \
|
|
LIBNET_LIB="`${LIBNET_CONFIG} --libs`" \
|
|
CC=${CC}
|
|
|
|
PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/libnet.py \
|
|
lib/%%PYTHON_VERSION%%/site-packages/libnetcmodule.so
|
|
|
|
LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet10-config
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
BROKEN= "Does not compile on amd64 (tries to link non-PIC libnet.a into PIC shared library)"
|
|
.endif
|
|
|
|
do-install:
|
|
.for file in libnet.py libnetcmodule.so
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PYTHON_SITELIBDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|