mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
33 lines
706 B
Makefile
33 lines
706 B
Makefile
# New ports collection makefile for: vils
|
|
# Date created: 22 January 2006
|
|
# Whom: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vils
|
|
PORTVERSION= 20020228
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.secnetix.de/~olli/scripts/
|
|
DISTFILES= vils
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Use your favorite editor to rename files
|
|
|
|
BUILD_DEPENDS= zsh:${PORTSDIR}/shells/zsh
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
PLIST_FILES= bin/vils
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKDIR}
|
|
${CP} ${DISTDIR}/vils ${WRKDIR}/vils
|
|
|
|
do-build:
|
|
@${REINPLACE_CMD} -e 's/\/bin\/zsh/\/usr\/local\/bin\/zsh/' ${WRKDIR}/vils
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} -m 755 ${WRKDIR}/vils ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|