blob: 2d0d186660f4a9cda3418193c3c7b0c0cdc3818a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Created by: Marco Steinbach <coco@webdev.c0c0.intra>
# $FreeBSD$
PORTNAME= sqtop
DISTVERSION= 2011-11-01
CATEGORIES= net
MASTER_SITES= GOOGLE_CODE
MAINTAINER= coco@executive-computing.de
COMMENT= Console-based display of Squid proxy connections
LICENSE= GPLv2
USE_BZIP2= yes
PLIST_FILES= bin/sqtop
MAN1= sqtop.1
GNU_CONFIGURE= yes
OPTIONS_DEFINE= NCURSES
OPTIONS_DEFAULT= NCURSES
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MNCURSES}
CONFIGURE_ARGS= --disable-ui
.else
USES+= ncurses
.endif
.include <bsd.port.mk>
|