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
1 KiB
Makefile
42 lines
1 KiB
Makefile
# New ports collection makefile for: skippy-xd
|
|
# Date created: 2004-05-19
|
|
# Whom: michael johnson <ahze@ahze.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= skippy-xd
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= http://thegraveyard.org/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A full-screen X11 task-switcher like Apple's Expose
|
|
|
|
BUILD_DEPENDS= freetype-config:${PORTSDIR}/print/freetype2
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNOME= pkgconfig
|
|
USE_XORG= x11 xft xcomposite xdamage xfixes xrender xinerama xext xmu
|
|
PLIST_FILES= bin/skippy-xd \
|
|
%%DATADIR%%/skippy-xd.rc-default
|
|
PLIST_DIRS= %%DATADIR%%
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|; \
|
|
s|/usr/local|${LOCALBASE}|; s|gcc|${CC}|' \
|
|
${WRKSRC}/Makefile
|
|
post-build:
|
|
@${SED} 's|%%DATADIR%%|${DATADIR}|' ${PKGDIR}/pkg-message >${PKGMESSAGE}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/skippy-xd ${PREFIX}/bin
|
|
@${MKDIR} ${DATADIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/skippy-xd.rc-default ${DATADIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|