mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 11:40:31 -04:00
29 lines
652 B
Makefile
29 lines
652 B
Makefile
# Created by: Thierry Thomas <thierry@pompo.net>
|
|
|
|
PORTNAME= libptytty
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://dist.schmorp.de/libptytty/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= . Attic
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= OS independent and secure pseudo-tty management
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= cmake
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= c-sample.c
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-on:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/eg/c-sample.c ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|