mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
20269aa66b
At the request of a user, further review reveal that the pkg_* tools aren't actually used. It just awks the INDEX file. The maintainer forgot the technical details, especially since the SEE ALSO section of the man page references pkg_* tools. A minor update is needed to re-support DragonFly and update the man page. Until this, it's been marked IGNORE for DragonFly.
22 lines
582 B
Makefile
22 lines
582 B
Makefile
# Created by: Matthias Schmidt
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pkg_search
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= http://www.mathematik.uni-marburg.de/~schmidtm/pkg_search/ \
|
|
LOCAL/chinsan
|
|
|
|
MAINTAINER= schmidtm@mathematik.uni-marburg.de
|
|
COMMENT= Nifty script searching the ports database
|
|
|
|
IGNORE_DragonFly= Requires update to work for DragonFly
|
|
|
|
PLIST_FILES= bin/pkg_search man/man1/pkg_search.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|