freebsd-ports/deskutils/vym/Makefile
Martin Wilke 2ea1788efc - Update to 1.8.1
PR:		ports/102948
Submitted by:	Gerrit Beine <gerrit.beine(at)gmx.de> (maintainer)
2006-09-11 11:26:51 +00:00

49 lines
1.2 KiB
Makefile

# New ports collection makefile for: vym
# Date created: 17 Oct 2004
# Whom: Gerrit Beine <tux@pinguru.net>
#
# $FreeBSD$
#
PORTNAME= vym
PORTVERSION= 1.8.1
CATEGORIES= deskutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= gerrit.beine@gmx.de
COMMENT= VYM (View Your Mind) is a tool to generate and manipulate maps
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
USE_QT_VER= 3
MAKE_ENV= QTDIR="${QT_PREFIX}"
.include <bsd.port.pre.mk>
# Add this condititonal while people might still have old versions
# of qmake, living in X11BASE, installed. This should go away eventually.
.if exists(${X11BASE}/share/qt/mkspecs/freebsd-g++)
QMAKESPEC= ${X11BASE}/share/qt/mkspecs/freebsd-g++
.else
QMAKESPEC= ${LOCALBASE}/share/qt/mkspecs/freebsd-g++
.endif
do-configure:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} qmake \
-spec ${QMAKESPEC} vym.pro
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
@${MKDIR} ${DATADIR}
@${CP} -R ${WRKSRC}/scripts ${DATADIR}
@${CP} -R ${WRKSRC}/styles ${DATADIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${MKDIR} ${EXAMPLESDIR}
@${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
@${CP} -R ${WRKSRC}/demos/* ${EXAMPLESDIR}
.endif
.include <bsd.port.post.mk>