1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/net-mgmt/send/Makefile
Baptiste Daroussin 50cc027f57 Mark as broken:
usr/bin/ld: i386 architecture of input file `sendd.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `addr.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `cert.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `cga.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `config.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `cpa.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `cps.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `ctl.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `net.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `openssl.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `opt.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `params.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `proto.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `proto_nonce.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `proto_sig.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `proto_timestamp.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `ra.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `sigmeth.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `sig_rfc3971.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `console.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `dbg.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `params_gram.o' is incompatible with i386:x86-64 output
/usr/bin/ld: i386 architecture of input file `params_lex.o' is incompatible with i386:x86-64 output
2013-12-06 14:15:14 +00:00

48 lines
1.1 KiB
Makefile

# Created by: Janos Mohacsi <mohacsi@niif.hu>
# $FreeBSD$
PORTNAME= send
PORTVERSION= 0.3
CATEGORIES= net-mgmt ipv6
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= anchie
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= anchie@FreeBSD.org
COMMENT= Secure Neighbor Discovery implementation for IPv6
BROKEN= Fails to link
LIB_DEPENDS= dnet.1:${PORTSDIR}/net/libdnet
USE_GMAKE= yes
SUB_FILES= pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message
PORTDOCS= README UserGuide.pdf
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 900042
IGNORE= is supported only on 9.0 and later
.endif
post-install:
${MKDIR} ${PREFIX}/etc/sendd/
${INSTALL_DATA} ${WRKSRC}/examples/ipext/ipext_verify.conf \
${WRKSRC}/examples/ipext/ca/ipext.conf \
${WRKSRC}/examples/
${INSTALL_DATA} ${WRKSRC}/docs/UserGuide.pdf \
${WRKSRC}/UserGuide.pdf
for F in sendd.conf params.conf ipext.conf ipext_verify.conf; do \
${INSTALL_DATA} ${WRKSRC}/examples/$$F \
${PREFIX}/etc/sendd/$${F}-dist; \
done
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>