pkgsrc/misc/dtach/Makefile
leot e623265bb4 dtach: Update to 0.9
pkgsrc changes:
- Add LICENSE

Changes:
0.9
---
- Added AIX support.
- Added dtach -N, a mode similar to dtach -n, except dtach will stay in the
  foreground instead of daemonizing.
- Added dtach -p, which copies the contents of standard input to a session.
- dtach will no longer send 255 bytes of garbage to the program when read()
  returns an error.
- The executable bit is now set on the socket if clients are attached, and
  cleared when all clients have detached.
- The initial state of signals such as SIGPIPE are now preserved when
  executing the program, instead of having the program start with some signals
  ignored.
- A buffer overflow no longer occurs when a long socket path name is used, and
  dtach will now try to use chdir to get around the length limitation if
  necessary.
2019-02-19 20:36:06 +00:00

29 lines
792 B
Makefile

# $NetBSD: Makefile,v 1.8 2019/02/19 20:36:06 leot Exp $
DISTNAME= dtach-0.9
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dtach/}
MAINTAINER= fgudin@nerim.net
HOMEPAGE= http://dtach.sourceforge.net/
COMMENT= Small program that emulates the detach feature of screen
LICENSE= gnu-gpl-v2
GNU_CONFIGURE= yes
BUILD_TARGET= dtach
DOCS= COPYING README dtach.spec
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC:Q}/dtach ${DESTDIR}${PREFIX:Q}/bin
${INSTALL_MAN} ${WRKSRC:Q}/dtach.1 \
${DESTDIR}${PREFIX:Q}/${PKGMANDIR:Q}/man1
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR:Q}
cd ${WRKSRC:Q}; for f in ${DOCS}; do \
${INSTALL_DATA} $$f ${DESTDIR}${DOCDIR}/$$f; \
done
.include "../../mk/bsd.pkg.mk"