mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
ce5de78f76
Add an optional patch for root-tail. This patch replaces the standart root-tail code for finding root window with the better one, written by Johannes Jordan and Robin Hogan, which allows root-tail to work with some desktop environments, xfce4 for example. PR: ports/75017 Submitted by: Roman Bogorodskiy <bogorodskiy@inbox.ru>
39 lines
915 B
Makefile
39 lines
915 B
Makefile
# New ports collection makefile for: roottail
|
|
# Date created: 30 September 1999
|
|
# Whom: Chris D. Faulhaber <jedgar@fxp.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= roottail
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.goof.com/pcg/marc/data/
|
|
DISTNAME= root-tail-${PORTVERSION}
|
|
|
|
.if defined(WITH_EXTRA_PATCH)
|
|
PATCH_SITES= http://bmp-plugins.berlios.de/misc/patches/
|
|
PATCHFILES= roottail-1.2+xfce.diff
|
|
PATCH_DIST_STRIP= -p1
|
|
.endif
|
|
|
|
MAINTAINER= jedgar@FreeBSD.org
|
|
COMMENT= Print text directly to X11 root window
|
|
|
|
MAN1= root-tail.1
|
|
PLIST_FILES= bin/root-tail
|
|
USE_IMAKE= yes
|
|
MAKE_ARGS= CC="${CC}"
|
|
|
|
pre-everything::
|
|
.if defined(WITH_EXTRA_PATCH)
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "Note: this extra patch is not supported by roottail maintainer."
|
|
@${ECHO_MSG} "Before reporting any problems you should build roottail without"
|
|
@${ECHO_MSG} "this option."
|
|
@${ECHO_MSG}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|