freebsd-ports/x11/vdesk/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

40 lines
842 B
Makefile

# New ports collection makefile for: vdesk
# Date created: 2002-05-13
# Whom: trevor
#
# $FreeBSD$
#
PORTNAME= vdesk
PORTVERSION= 1.2
CATEGORIES= x11
MASTER_SITES= http://offog.org/files/
MAINTAINER= trevor@FreeBSD.org
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)
.for ii in ${DOCS}
PLIST_FILES+= share/doc/vdesk/${ii}
.endfor
.endif
USE_X_PREFIX= yes
USE_AUTOTOOLS= autoconf:259
post-extract:
# Avoid having to read this lengthy file.
${RM} ${WRKSRC}/configure
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/vdesk ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for ii in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>