mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +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)
42 lines
971 B
Makefile
42 lines
971 B
Makefile
# New ports collection makefile for: xkbset
|
|
# Date created: 12 May 2001
|
|
# Whom: Stephen Montgomery-Smith <stephen@math.missouri.edu>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xkbset
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.math.missouri.edu/~stephen/software/xkbset/
|
|
|
|
MAINTAINER= stephen@math.missouri.edu
|
|
COMMENT= Manage various XKB features of X Window
|
|
|
|
MAN1= xkbset.1
|
|
USE_XORG= x11
|
|
USE_PERL5_BUILD= yes
|
|
|
|
MAKE_ARGS= X11BASE="${LOCALBASE}" X11PREFIX="${PREFIX}" \
|
|
INSTALL_DATA="${INSTALL_DATA}" \
|
|
INSTALL_PROGRAM="${INSTALL_PROGRAM}"
|
|
|
|
OPTIONS= GUI "Install Tk GUI" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_GUI)
|
|
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk
|
|
PLIST_SUB= GUI=""
|
|
MAKE_ARGS+= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
|
|
.else
|
|
PLIST_SUB= GUI="@comment "
|
|
MAKE_ARGS+= INSTALL_SCRIPT=:
|
|
.endif
|
|
|
|
post-build:
|
|
@${REINPLACE_CMD} "s%#!/usr/bin/perl%#!${PERL}%" ${WRKSRC}/xkbset-gui
|
|
|
|
.include <bsd.port.post.mk>
|