blob: 3f1d908c35e7a91447daa67698b7fe664579b748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# $NetBSD: Makefile,v 1.34 2006/02/05 23:08:22 joerg Exp $
DISTNAME= qcad-1.5.4-src
PKGNAME= qcad-1.5.4
PKGREVISION= 6
CATEGORIES= cad
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qcad/}
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.qcad.org/
COMMENT= 2D CAD System
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
MAKE_ENV+= MACHINE_ARCH=${MACHINE_ARCH:Q}
MAKE_ENV+= QTDIR=${BUILDLINK_PREFIX.qt3}
INSTALLATION_DIRS= bin
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Linux"
QCAD_OPSYS = LINUX
.elif ${OPSYS} == "SunOS"
QCAD_OPSYS = SOLARIS
.elif !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly"
QCAD_OPSYS = BSD
.elif !empty(OPSYS:MIRIX)
QCAD_OPSYS = IRIX
.else
QCAD_OPSYS = UNKNOWN
PKG_FAIL_REASON+= "Unknown operating system for ${PKGNAME}"
.endif
do-configure:
for f in rappwin.cpp relement.cpp rfonts.cpp rprgdef.h; do \
${SED} -e 's:@PREFIX@:'${PREFIX}':g' \
-e 's:@X11BASE@:${X11BASE}:g' \
-e 's:@OPSYS@:${QCAD_OPSYS}:g' \
${WRKSRC}/$$f > ${WRKSRC}/$$f.tmp \
&& ${MV} ${WRKSRC}/$$f.tmp ${WRKSRC}/$$f; \
done
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/qcad ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/qcad
cd ${WRKSRC} && ${PAX} -rw AUTHORS COPYING README TODO cur doc \
examples fonts hatches libraries messages po xpm \
${PREFIX}/share/qcad
.include "../../x11/qt3-libs/buildlink3.mk"
.include "../../x11/qt3-tools/buildlink3.mk"
# XXX Please verify whether qt3-tools is really needed at run-time.
# If it is, then remove this comment. If it is not, then remove
# this comment and the line below, and bump PKGREVISION.
BUILDLINK_DEPMETHOD.qt3-tools= full
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|