mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
31 lines
663 B
Makefile
31 lines
663 B
Makefile
# Created by: Martin Kammerhofer
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= portless
|
|
PORTVERSION= 0.2.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= mkamm@gmx.net
|
|
COMMENT= Quick display of files inside the FreeBSD ports tree
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash
|
|
|
|
MAN1= portless.1
|
|
MANCOMPRESSED= no
|
|
|
|
PLIST_FILES= bin/portless
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
${SED} -e 's;@BASH@;${LOCALBASE}/bin/bash;g' \
|
|
${FILESDIR}/portless.sh >${WRKDIR}/portless
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/portless ${PREFIX}/bin
|
|
${INSTALL_MAN} ${FILESDIR}/portless.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|