blob: 06f7cbde767fa29871d00402e498140e22ff2b4c (
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
|
# $NetBSD: Makefile.common,v 1.4 2004/02/14 17:21:45 jlam Exp $
#
DISTNAME= celestia-${CELESTIA_VERS}
CATEGORIES= misc x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=celestia/}
MAINTAINER= cesar_catrian@yahoo.com
HOMEPAGE= http://www.shatters.net/celestia/
DISTINFO_FILE= ${.CURDIR}/../../misc/celestia/distinfo
PATCHDIR= ${.CURDIR}/../../misc/celestia/patches
CELESTIA_VERS= 1.3.0
USE_BUILDLINK2= YES
GNU_CONFIGURE= YES
USE_X11= YES
USE_GNU_TOOLS+= make
USE_LIBTOOL= YES
CONFIGURE_ARGS+= --includedir=${PREFIX}/include
CONFIGURE_ARGS+= --with-lua=${BUILDLINK_PREFIX.lua}
CXXFLAGS= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR}\\\"\"
.include "../../mk/bsd.prefs.mk"
.if exists(${X11BASE}/include/X11/extensions/Xinerama.h)
CONFIGURE_ARGS+= --with-xinerama
.endif
.include "../../lang/lua/buildlink2.mk"
.include "../../mk/pthread.buildlink2.mk"
.if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
CONFIGURE_ARGS+= --disable-threading
.endif
|