mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
33 lines
680 B
Makefile
33 lines
680 B
Makefile
# New ports collection makefile for: xrootconsole
|
|
# Date created: 12 July 2002
|
|
# Whom: incabulos@mac.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xrootconsole
|
|
PORTVERSION= 0.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Writes any log live onto the background
|
|
|
|
USE_XORG= x11
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= xrootconsole.1
|
|
PLIST_FILES= bin/xrootconsole
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^CC =|CC ?=|g ; \
|
|
s|^CFLAGS = -O2|CFLAGS +=|g ; \
|
|
s|/usr/X11R6|$${LOCALBASE}|g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xrootconsole ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xrootconsole.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|