mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
40 lines
973 B
Makefile
40 lines
973 B
Makefile
# New ports collection makefile for: xenon
|
|
# Date created: 22 October 1999
|
|
# Whom: Chris D. Faulhaber <jedgar@fxp.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xenon
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://sydney.proximity.com.au/~ben/xenon/dist/ \
|
|
ftp://yankee.proximitygroup.com/pub/xenon/
|
|
|
|
MAINTAINER= jedgar@FreeBSD.org
|
|
|
|
USE_GMAKE= yes
|
|
USE_REINPLACE= yes
|
|
USE_X_PREFIX= yes
|
|
USE_XPM= yes
|
|
MAKEFILE= ${WRKSRC}/makefiles/Makefile.Linux
|
|
|
|
MAN1= xe.1
|
|
|
|
FIX_FILES= Xe.h XeApp.h XeFontTable.C XeFontTable.h XeKeyTable.C \
|
|
XeKeyTable.h XeObjectTable.h
|
|
|
|
do-configure:
|
|
.for file in ${FIX_FILES}
|
|
@${REINPLACE_CMD} -e 's|#include <ext/|#include <|' \
|
|
-e 's|ulong|u_long|g' -e 's|uint|u_int|g' ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xe ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xe.1 ${PREFIX}/man/man1
|
|
@${MKDIR} ${PREFIX}/share/examples/xe
|
|
${INSTALL_DATA} ${WRKSRC}/xerc ${PREFIX}/share/examples/xe/sample.xerc
|
|
|
|
.include <bsd.port.mk>
|