mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
dbba8af644
- bsd.port.mk update to use bsd.kde.mk for USE_{QT,KDE}* - Cleanup corresponding ports for bsd.kde.mk update. - Fix bsd.kde.mk: use correct kdelibs dependency, put qt at the bottom, introduce QT_NONSTANDARD variable for nonstandard configure setup. - Update KDE2 to 2.1.1. Two patches included in x11/kdelibs2 to fix the proxy authentication that was broken for 2.1.1. Remove old patches. - Potentially fix kdelibs build for alpha. - Fix qt-designer 2.3.0 build. - Ruby stuff left alone since it looks like black magic to me. Should still work w/ compat shims for older USE_QT[,2] style. Some others were also left alone for the same reason. Reviewed by: portmgr, ports (bsd.kde.mk+bsd.port.mk) Submitted by: David Faure <faure@kde.org> (proxy auth patches) Alex Zepeda <garbanzo@kde.org> (old patches removal)
37 lines
863 B
Makefile
37 lines
863 B
Makefile
# New ports collection makefile for: xlines
|
|
# Date created: 11 February 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xlines
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.trolltech.com/contrib/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
USE_QT_VER= 1
|
|
USE_X_PREFIX= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
pre-patch:
|
|
@find ${WRKSRC} -type f | xargs ${PERL} -pi -e "s|\r\n|\n|g"
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/*.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xlines ${PREFIX}/bin
|
|
@${MKDIR} ${PREFIX}/share/xlines
|
|
${INSTALL_DATA} ${WRKSRC}/trolltech.gif ${PREFIX}/share/xlines
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/xlines
|
|
${INSTALL_DATA} ${WRKSRC}/readme.lines ${PREFIX}/share/doc/xlines
|
|
${INSTALL_DATA} ${WRKSRC}/readme.qt ${PREFIX}/share/doc/xlines
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|