d16f7bfb92
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
40 lines
841 B
Makefile
40 lines
841 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= ports@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>
|