mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
0c489cb2cb
Fine now works with qt2 so we use that to unbreak for systems without at least egcs (old gcc built qt, new gcc needed to build fine, new gcc is used for qt2).
30 lines
708 B
Makefile
30 lines
708 B
Makefile
# New ports collection makefile for: FINE
|
|
# Version required: 2.1
|
|
# Date created: 17 August 1999
|
|
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= fine2.3
|
|
PKGNAME= fine-2.3
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ftp://razor.fer.uni-lj.si/pub/software/bojank/fine/
|
|
|
|
MAINTAINER= cpiazza@FreeBSD.org
|
|
|
|
USE_NEWGCC= yes
|
|
USE_GMAKE= yes
|
|
USE_QT2= yes
|
|
WRKSRC= ${WRKDIR}/fine
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/fine
|
|
${INSTALL_DATA} ${WRKSRC}/.editor ${PREFIX}/share/fine/editor
|
|
.for template in C++.template LaTeX.template h.template html.template
|
|
${INSTALL_DATA} ${WRKSRC}/${template} ${PREFIX}/share/fine/
|
|
.endfor
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fine ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|