blob: 004e968596f92b9c3dd0a9874c6c8f04eea27cf7 (
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
|
# $NetBSD: Makefile,v 1.27 2002/04/20 08:20:16 rh Exp $
DISTNAME= Wine-20020411
PKGNAME= ${DISTNAME:S/W/w/}
WRKSRC= ${WRKDIR}/${PKGNAME}
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SUNSITE:=ALPHA/wine/development/}
MAINTAINER= junyoung@netbsd.org
HOMEPAGE= http://www.winehq.com/
COMMENT= Free implementation of Windows on Unix (still alpha)
CONFLICTS= rewind-[0-9]*
ONLY_FOR_PLATFORM= NetBSD-1.5Z*-i386 NetBSD-1.[6-9]*-i386
USE_BUILDLINK_ONLY= YES
USE_GMAKE= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --without-curses
# The Wine configure script has problems locating the freetype-config
# script and the libraries in the buildlink directory, so explicitly
# set the location of freetype-config and prepend all of the LDFLAGS
# necessary to link against the libraries.
#
CONFIGURE_ENV+= ft_devel=${FREETYPE_CONFIG}
CONFIGURE_ENV+= X_LIBS="${LDFLAGS}"
LIBS+= ${LDFLAGS}
.include "../../mk/bsd.prefs.mk"
.if defined(USE_CUPS) && (${USE_CUPS} == YES)
.include "../../print/cups/buildlink.mk"
BUILD_DEFS+= USE_CUPS
.endif
EGDIR= ${PREFIX}/share/examples/wine
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
cd ${WRKSRC}/documentation/samples; \
${INSTALL_DATA} config ${EGDIR}/wine.conf; \
${INSTALL_DATA} generic.ppd ${EGDIR}/generic.ppd; \
${INSTALL_DATA} system.ini ${EGDIR}/system.ini
.include "../../graphics/Mesa/buildlink.mk"
.include "../../graphics/freetype2/buildlink.mk"
.include "../../graphics/jpeg/buildlink.mk"
.include "../../mk/x11.buildlink.mk"
.include "../../mk/bsd.pkg.mk"
|