mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +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)
38 lines
866 B
Makefile
38 lines
866 B
Makefile
# New ports collection makefile for: keylaunch
|
|
# Date created: Sat Nov 17 10:10:07 CDT 2001
|
|
# Whom: mwm@mired.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= keylaunch
|
|
PORTVERSION= 1.3.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.mired.org/downloads/
|
|
|
|
MAINTAINER= mwm@mired.org
|
|
COMMENT= An X utility for binding commands to a hot key
|
|
|
|
WRKSRC= ${WRKDIR}/keylaunch
|
|
USE_GMAKE= yes
|
|
USE_PERL5_BUILD=yes
|
|
USE_XORG= x11
|
|
|
|
PKGMESSAGE= ${WRKSRC}/pkg-message
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's,%%LOCALBASE%%,${LOCALBASE},g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/keylaunch ${PREFIX}/bin
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/example_rc ${EXAMPLESDIR}/keylaunch.rc
|
|
|
|
post-install:
|
|
@${SED} -e 's;/usr/X11R6;${LOCALBASE};g' < ${FILESDIR}/pkg-message.in > \
|
|
${PKGMESSAGE}
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|