9939e501cf
- Fixed the Ignore trailing slash in port globs. - Optionally narrow selected ports by grepping the pkg-descr files. PR: ports/116512 Submitted by: Martin Kammerhofer <dada@pluto.tugraz.at> (maintainer) Approved by: stas (mentor)
32 lines
729 B
Makefile
32 lines
729 B
Makefile
# New ports collection makefile for: portless
|
|
# Date created: 8 June 2006
|
|
# Whom: Martin Kammerhofer
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= portless
|
|
PORTVERSION= 0.2.7
|
|
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
|
|
|
|
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>
|