mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
8f1b1d4a26
- Clean up
33 lines
647 B
Makefile
33 lines
647 B
Makefile
# New ports collection makefile for: dtach
|
|
# Date created: 21 Jun 2004
|
|
# Whom: Bjorn Lindstrom <bkhl@elektrubadur.se>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dtach
|
|
PORTVERSION= 0.8
|
|
CATEGORIES= misc
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Emulates the detach feature of screen
|
|
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET= dtach
|
|
|
|
MAN1= dtach.1
|
|
PORTDOCS= README
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/dtach ${PREFIX}/bin/
|
|
@${INSTALL_MAN} ${WRKSRC}/dtach.1 ${MAN1PREFIX}/man/man1/
|
|
|
|
.ifndef NOPORTDOCS
|
|
@${INSTALL} -d ${DOCSDIR}/
|
|
@cd ${WRKSRC}/&&${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|