diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-09 23:12:47 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-09 23:12:47 +0800 |
commit | cd1f78720b03c12d946a609c600c4c484d6721bc (patch) | |
tree | c5385b05012afc79e5e744d714d42849599f5620 /sysutils | |
parent | 85ec91299ed123f4362eb145f163e496a745d335 (diff) | |
download | freebsd-ports-gnome-cd1f78720b03c12d946a609c600c4c484d6721bc.tar.gz freebsd-ports-gnome-cd1f78720b03c12d946a609c600c4c484d6721bc.tar.zst freebsd-ports-gnome-cd1f78720b03c12d946a609c600c4c484d6721bc.zip |
Support stage,
Use options helpers
Respect prefix
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bsdinfo/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sysutils/bsdinfo/Makefile b/sysutils/bsdinfo/Makefile index ce0bbc863671..6144eba11b66 100644 --- a/sysutils/bsdinfo/Makefile +++ b/sysutils/bsdinfo/Makefile @@ -7,20 +7,17 @@ CATEGORIES= sysutils MASTER_SITES= http://cloud.github.com/downloads/samupl/bsdinfo/ MAINTAINER= s@samu.pl -COMMENT= A simple utility to display system-based information +COMMENT= 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 +X256_CONFIGURE_ON= --x256 PLIST_FILES+= bin/bsdinfo +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bsdinfo ${STAGEDIR}${PREFIX}/bin + .include <bsd.port.mk> |