forked from Lainports/freebsd-ports
26 lines
485 B
Makefile
26 lines
485 B
Makefile
# Created by: samu <s@samu.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bsdinfo
|
|
PORTVERSION= 0.22
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://cloud.github.com/downloads/samupl/bsdinfo/
|
|
|
|
MAINTAINER= s@samu.pl
|
|
COMMENT= A simple utility to display system-based information
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= X256
|
|
X256_DESC= Build the 256 color version
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MX256}
|
|
CONFIGURE_ARGS+=--x256
|
|
.endif
|
|
|
|
PLIST_FILES+= bin/bsdinfo
|
|
|
|
.include <bsd.port.mk>
|