mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
e7bae0c686
This update includes support for reptyr -T on FreeBSD, along with a flurry of fixes for running on FreeBSD and all patches from the ports tree have been applied upstream. PR: 249994 Approved by: andoriyu@gmail.com (maintainer)
27 lines
516 B
Makefile
27 lines
516 B
Makefile
# Created by: Andrey Cherkashin <andoriyu@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= reptyr
|
|
PORTVERSION= 0.8.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= andoriyu@gmail.com
|
|
COMMENT= Reparent a running program to a new terminal
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= nelhage
|
|
GH_TAGNAME= reptyr-${PORTVERSION}
|
|
|
|
MAKE_ARGS= BASHCOMPDIR=${PREFIX}/share/bash-completion/completions \
|
|
MANDIR=${MANPREFIX}/man
|
|
USES= gmake
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/reptyr
|
|
|
|
.include <bsd.port.mk>
|