27 lines
559 B
Makefile
27 lines
559 B
Makefile
# Created by: Tomasz Walaszek <tmwalaszek@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ptools
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://shewolf.com.pl/ptools/
|
|
PKGNAMESUFFIX= 2
|
|
|
|
MAINTAINER= tmwalaszek@gmail.com
|
|
COMMENT= Toolset based on Solaris ptools functionality
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
|
|
PLIST_FILES= bin/pargs \
|
|
bin/pwdx \
|
|
bin/pldd \
|
|
bin/ptree
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local/bin|${STAGEDIR}${PREFIX}/bin|g ; \
|
|
s|gcc|$${CC}|g ; \
|
|
s|555|755|g ; \
|
|
s|-o root -g wheel|${STRIP}|g' \
|
|
${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|