mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
65f0dd94ef
- 'cvs -Q' is *too* silent, so just use 'cvs -q' when not verbose. - cache the results of find_master(). - allow for a trailing slash in the second field in a dependency spec. - add an option to show the packing lists for selected ports. - fix a bug where porteasy would build a port when it shouldn't.
34 lines
562 B
Makefile
34 lines
562 B
Makefile
# New ports collection makefile for: porteasy
|
|
# Date created: September 19th 2000
|
|
# Whom: des
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# This port is self contained in the src directory.
|
|
#
|
|
|
|
PORTNAME= porteasy
|
|
PORTVERSION= 2.2
|
|
CATEGORIES= misc
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= des@FreeBSD.org
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
USE_PERL5= yes
|
|
|
|
SRC= ${.CURDIR}/src
|
|
|
|
MAN8= porteasy.8
|
|
|
|
do-fetch:
|
|
@${DO_NADA}
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${SRC}/porteasy.pl ${PREFIX}/bin/porteasy
|
|
@${INSTALL_MAN} ${SRC}/porteasy.8 ${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|