Simplify port:

- remove inert code that attempted to remove a ./configure file
- convert to OptionsNG
This commit is contained in:
Eitan Adler 2013-03-17 23:48:01 +00:00
parent 285b0b41c2
commit 7077d3308b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=314504

View file

@ -13,7 +13,9 @@ COMMENT= Command-line utility for setting up and using virtual desktops
DOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README
PLIST_DIRS= share/doc/vdesk
PLIST_FILES= bin/vdesk
.if !defined(NOPORTDOCS)
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
.for ii in ${DOCS}
PLIST_FILES+= share/doc/vdesk/${ii}
.endfor
@ -21,13 +23,9 @@ PLIST_FILES+= share/doc/vdesk/${ii}
USE_AUTOTOOLS= autoconf
USE_XORG= x11
post-extract:
# Avoid having to read this lengthy file.
${RM} ${WRKSRC}/configure
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/vdesk ${PREFIX}/bin
.if !defined(NOPORTDOCS)
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
.for ii in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}