blob: d843869311f499be9f0660ed07779b6d3404adbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Ports collection makefile for: net/freebsd-tftp
# Whom: Edwin Groothuis <edwin@FreeBSD.org>
# Date created: 2008-01-30
#
# $FreeBSD$
#
PORTNAME= freebsd-tftp
PORTVERSION= 1.0
CATEGORIES= net
MASTER_SITES= http://www.mavetju.org/download/
MAINTAINER= edwin@FreeBSD.org
COMMENT= Upcoming replacement for tftp(1) and tftpd(8)
PLIST_FILES= bin/tftp libexec/tftpd
WRKSRC= ${WRKDIR}
NO_PACKAGE= Installs software in /usr/libexec and /usr/bin
PREFIX= /usr
MAN8= tftpd.8
MAN1= tftp.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/usr.bin/tftp/tftp ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/libexec/tftpd/tftpd ${PREFIX}/libexec
${INSTALL_MAN} ${WRKSRC}/usr.bin/tftp/tftp.1 ${PREFIX}/share/man/man1
${INSTALL_MAN} ${WRKSRC}/libexec/tftpd/tftpd.8 ${PREFIX}/share/man/man8
.include <bsd.port.mk>
|