mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
a42cc6b811
few weeks ago. Unfortunately, I can't update the port completely since there are some complications (such as requiring kdelibs2, which I haven't upgraded yet), so I'm reverting this to andy's old Makefile. This should teach me to commit in unclean checkouts. ;-) Quickly noticed by: will, kkenn
36 lines
883 B
Makefile
36 lines
883 B
Makefile
# New ports collection makefile for: qtez
|
|
# Version required: 0.77a
|
|
# Date created: 14 May 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= QtEZ.current-src
|
|
PKGNAME= qtez-0.77a
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://qtez.zax.net/qtez-extras/
|
|
|
|
MAINTAINER= will@FreeBSD.org
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_QT= yes
|
|
USE_GMAKE= yes
|
|
WRKSRC= ${WRKDIR}/qtez_src
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKDIR}/qtez_src/bin/qtez ${PREFIX}/bin
|
|
@${MKDIR} ${PREFIX}/share/examples/qtez
|
|
@cd ${WRKDIR}/qtez_src/demo; tar cf - . | (cd ${PREFIX}/share/examples/qtez; tar xf - )
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/qtez
|
|
.for file in INSTALL KDE.README README TODO
|
|
@${INSTALL_DATA} ${WRKDIR}/qtez_src/${file} ${PREFIX}/share/doc/qtez
|
|
.endfor
|
|
@cd ${WRKDIR}/qtez_src/docs; tar cf - . | (cd ${PREFIX}/share/doc/qtez; tar xf - )
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|