mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
d56174ed27
- Don't install useless and empty docs
35 lines
656 B
Makefile
35 lines
656 B
Makefile
# Created by: trevor
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vdesk
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 4
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://offog.org/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Command-line utility for setting up and using virtual desktops
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= x11
|
|
|
|
PORTDOCS= AUTHORS ChangeLog README
|
|
PLIST_FILES= bin/vdesk
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/vdesk ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for ii in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${ii} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|