1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/net/iodine/Makefile
Rong-En Fan a5f271600b - Add rc script for iodine server
- Add iodined manual page (links to iodine's)

PR:		ports/119452 (based on)
Submitted by:	Daniel Roethlisberger <daniel at roe.ch>
2008-01-11 15:47:23 +00:00

49 lines
980 B
Makefile

# New ports collection makefile for: iodine
# Date created: Feb 15 2006
# Whom: Rong-En Fan <rafan@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= iodine
PORTVERSION= 0.4.1
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://code.kryo.se/iodine/
MAINTAINER= rafan@FreeBSD.org
COMMENT= Tunnel IPv4 data through a DNS server
PLIST_FILES= bin/iodine sbin/iodined
PORTDOCS= CHANGELOG README TODO
MAN8= iodine.8
MLINKS= iodine.8 iodined.8
USE_RC_SUBR= iodined
.include <bsd.port.pre.mk>
do-build:
@cd ${WRKSRC}/src; ${MAKE} all
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/iodine ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/bin/iodined ${PREFIX}/sbin
.for m in ${MAN8}
${INSTALL_MAN} ${WRKSRC}/man/${m} ${MANPREFIX}/man/man8
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
post-install:
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>