diff options
author | pav <pav@FreeBSD.org> | 2005-09-15 06:43:23 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-09-15 06:43:23 +0800 |
commit | dabb3b96584932803715ac059707cffd9d2e70fb (patch) | |
tree | 656fa0fa91e973ca6f7dad930d1f439f1157b6c5 /net | |
parent | 64bd5173fe06fbe9dff12a996a48a2d23e2b3d17 (diff) | |
download | freebsd-ports-gnome-dabb3b96584932803715ac059707cffd9d2e70fb.tar.gz freebsd-ports-gnome-dabb3b96584932803715ac059707cffd9d2e70fb.tar.zst freebsd-ports-gnome-dabb3b96584932803715ac059707cffd9d2e70fb.zip |
- Support WITHOUT_X11 tunable
PR: ports/86138
Submitted by: Roman Neuhauser <neuhauser@sigpipe.cz>
Diffstat (limited to 'net')
-rw-r--r-- | net/pfinger/Makefile | 11 | ||||
-rw-r--r-- | net/pfinger/pkg-plist | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/net/pfinger/Makefile b/net/pfinger/Makefile index b2f684501b75..fc9deedd0b14 100644 --- a/net/pfinger/Makefile +++ b/net/pfinger/Makefile @@ -10,8 +10,7 @@ PORTNAME= pfinger PORTVERSION= 0.7.10 PORTREVISION= 1 CATEGORIES= net -MASTER_SITES= ftp://ftp.xelia.ch/pub/unix/ \ - http://www.xelia.ch/unix/pfinger/ +MASTER_SITES= http://www.xelia.ch/unix/pfinger/ MAINTAINER= ports@FreeBSD.org COMMENT= Highly configurable, secure and portable finger daemon @@ -19,8 +18,14 @@ COMMENT= Highly configurable, secure and portable finger daemon CONFLICTS= gnu-finger-1.* USE_REINPLACE= yes -USE_GNOME= gtk12 GNU_CONFIGURE= yes +.if !defined(WITHOUT_X11) +USE_GNOME= gtk12 +PLIST_SUB+= WITHOUT_X11="" +.else +CONFIGURE_ARGS+=--without-client +PLIST_SUB+= WITHOUT_X11="@comment " +.endif MAN1= finger.1 pfinger.1 MAN5= fingerconf.5 diff --git a/net/pfinger/pkg-plist b/net/pfinger/pkg-plist index c9d40e44ac26..c26b9b0abc3f 100644 --- a/net/pfinger/pkg-plist +++ b/net/pfinger/pkg-plist @@ -1,4 +1,4 @@ bin/finger -bin/pfinger +%%WITHOUT_X11%%bin/pfinger sbin/fingerd sbin/in.fingerd |