mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
7666916412
- Pass maintainership to sylvioc@gmail.com - Polish the do-install target PR: ports/80115 Submitted by: Sylvio Cesar <sylvioc@gmail.com> Approved by: adamw (mentor)
30 lines
584 B
Makefile
30 lines
584 B
Makefile
# Ports collection makefile for: pstree
|
|
# Date created: 22 Aug 2001
|
|
# Whom: Kris Kennaway <kris@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pstree
|
|
PORTVERSION= 2.27
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.thp.uni-duisburg.de/pub/source/ \
|
|
http://fresh.t-systems-sfr.com/unix/src/misc/
|
|
|
|
MAINTAINER= sylvioc@gmail.com
|
|
COMMENT= List processes as a tree
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
CONFLICTS= psmisc-[0-9]*
|
|
|
|
PLIST_FILES= bin/pstree
|
|
|
|
do-build:
|
|
cd ${WRKDIR} && ${CC} ${CFLAGS} -o pstree pstree.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/pstree ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|