- 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
838 B
Makefile
33 lines
838 B
Makefile
# New ports collection makefile for: p5-X11-IdleTime
|
|
# Date created: 9 July 2003
|
|
# Whom: Sean Farley <sean-freebsd@farley.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= X11-IdleTime
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= x11 perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Perl module that reports number of seconds that X11 has been idle
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Inline.pm:${PORTSDIR}/devel/p5-Inline \
|
|
${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_XORG= x11 xscrnsaver
|
|
PERL_CONFIGURE= 5.8.0+
|
|
|
|
MANPREFIX= ${SITE_PERL}
|
|
MAN3= X11::IdleTime.3
|
|
|
|
post-patch:
|
|
.for i in IdleTime.pm
|
|
@${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/${i}
|
|
@${PERL} -pi -e "s,[\d\.]+,${PORTVERSION:C/0./0.0/}, if m{VERSION}" ${WRKSRC}/${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|