mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
aff42c7199
most cases, the failure mode is the same. Also, mark them broken on mips when necessary. While here, pet portlint. Approved by: portmgr (tier-2 blanket)
35 lines
881 B
Makefile
35 lines
881 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ndproxy
|
|
PORTVERSION= 2.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net ipv6
|
|
|
|
MAINTAINER= fbsd.bugzilla@fenyo.net
|
|
COMMENT= Implementation of IPv6 Neighbor Discovery proxy
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BROKEN_mips= fails to build: ndproxy.c:51: function declaration isn't a prototype
|
|
BROKEN_mips64= fails to build: ndproxy.c:51: function declaration isn't a prototype
|
|
BROKEN_powerpc64= fails to build: ndproxy.c:51: function declaration isn't a prototype
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
USES= kmod
|
|
USE_RC_SUBR= ndproxy
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= AlexandreFenyo
|
|
|
|
PLIST_FILES= ${KMODDIR}/${PORTNAME}.ko man/man4/${PORTNAME}.4.gz
|
|
|
|
pre-build:
|
|
(cd ${BUILD_WRKSRC}; ${MAKE} depend)
|
|
|
|
do-install:
|
|
${INSTALL_KLD} ${WRKSRC}/${PORTNAME}.ko ${STAGEDIR}${KMODDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.4 ${STAGEDIR}${PREFIX}/man/man4/
|
|
|
|
.include <bsd.port.mk>
|