mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
e3e7e75716
- Bump PORTREVISION PR: 106958 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer)
38 lines
820 B
Makefile
38 lines
820 B
Makefile
# New ports collection makefile for: uproxy
|
|
# Date created: 19 October 2006
|
|
# Whom: Alexander Logvinov <ports@logvinov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= uproxy
|
|
PORTVERSION= 0.91
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.geocities.com/SiliconValley/Vista/8155/uproxy/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@logvinov.com
|
|
COMMENT= Proxy for UDP protocols
|
|
|
|
USE_ZIP= yes
|
|
NO_WRKSUBDIR= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
USE_DOS2UNIX= ${DISTNAME}.c
|
|
PORTDOCS= index.html
|
|
PLIST_FILES= sbin/${PORTNAME}
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o t${PORTNAME} ${DISTNAME}.c)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/t${PORTNAME} ${PREFIX}/sbin/${PORTNAME}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|