[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / emulators / wine

Annotation of pkgsrc/emulators/wine/Makefile, Revision 1.187

1.187   ! leot        1: # $NetBSD: Makefile,v 1.186 2015/04/25 14:20:47 tnn Exp $
1.56      adam        2:
1.180     adam        3: DISTNAME=      wine-1.6.2
1.187   ! leot        4: PKGREVISION=   6
1.56      adam        5: CATEGORIES=    emulators
1.111     adam        6: MASTER_SITES=  http://ibiblio.org/pub/linux/system/emulators/wine/ \
                      7:                ${MASTER_SITE_SOURCEFORGE:=wine/}
1.93      adam        8: EXTRACT_SUFX=  .tar.bz2
1.56      adam        9:
                     10: MAINTAINER=    adam@NetBSD.org
1.180     adam       11: HOMEPAGE=      http://www.winehq.org/
1.143     dholland   12: COMMENT=       Free implementation of Windows on Unix
1.161     adam       13: LICENSE=       gnu-lgpl-v2.1
1.56      adam       14:
1.77      adam       15: BUILD_DEPENDS+=        fontforge-[0-9]*:../../fonts/fontforge
1.1       mycroft    16:
1.180     adam       17: ONLY_FOR_PLATFORM+=    *-*-i386 #*-*-x86_64
                     18:
                     19: PKG_DESTDIR_SUPPORT=   user-destdir
1.154     joerg      20:
1.105     adam       21: USE_LANGUAGES=         c
1.88      adam       22: USE_LIBTOOL=           yes
1.90      adam       23: USE_NCURSES=           yes
1.180     adam       24: USE_TOOLS+=            bison flex gmake mktemp msgfmt
1.163     hans       25: FLEX_REQD=             2.5.33
1.78      adam       26: GNU_CONFIGURE=         yes
1.69      abs        27: UNLIMIT_RESOURCES=     datasize
1.31      wiz        28:
1.96      adam       29: REPLACE_PERL+=         tools/winemaker tools/winedump/function_grep.pl
1.48      wiz        30:
1.33      jlam       31: # The Wine configure script has problems locating the libraries in the
                     32: # buildlink directory, so prepend all of the LDFLAGS necessary to link
                     33: # against the libraries.
1.99      adam       34: CONFIGURE_ENV+=                X_LIBS=${LDFLAGS:M*:Q}
1.109     rillig     35: CONFIGURE_ENV+=                CFLAGS=${CFLAGS:M*:Q}\ -DDEVOSSAUDIO="\"${DEVOSSAUDIO}\""
1.151     adam       36: CONFIGURE_ENV+=                LDD=${LDD:Q}
1.25      junyoung   37: LIBS+=                 ${LDFLAGS}
1.32      zuntum     38:
1.161     adam       39: # If we're doing a 32-bit build, make sure that the appropriate multilib
                     40: # options are passed through as these values are used with winegcc
                     41: # (which wrapper doesn't handle).
1.150     jmcneill   42: .include "../../mk/bsd.prefs.mk"
1.185     joerg      43: .if ${MACHINE_ARCH} == "i386"
1.161     adam       44: CONFIGURE_ENV+=                ac_cv_prog_CC=${CC:Q}\ -m32
                     45: CONFIGURE_ENV+=                ac_cv_prog_CXX=${CXX:Q}\ -m32
                     46: CONFIGURE_ENV+=                ac_cv_prog_AS=${AS:Q}\ --32
                     47: CONFIGURE_ENV+=                ac_cv_prog_LD=${LD:Q}\ -m\ elf_i386
1.150     jmcneill   48: .endif
1.161     adam       49: # Needs GCC >= 4.4
1.185     joerg      50: .if ${MACHINE_ARCH} == "x86_64"
1.180     adam       51: CONFIGURE_ARGS+=       --disable-win16
                     52: CONFIGURE_ARGS+=       --enable-win64
                     53: .endif
1.150     jmcneill   54:
1.86      wiz        55: .include "options.mk"
1.1       mycroft    56:
1.90      adam       57: .include "../../devel/ncurses/buildlink3.mk"
1.180     adam       58: .include "../../graphics/lcms2/buildlink3.mk"
1.151     adam       59: .include "../../graphics/png/buildlink3.mk"
1.161     adam       60: .include "../../graphics/tiff/buildlink3.mk"
                     61: .include "../../security/gnutls/buildlink3.mk"
1.92      adam       62: .include "../../textproc/libxslt/buildlink3.mk"
1.143     dholland   63: .include "../../textproc/libxml2/buildlink3.mk"
1.183     wiz        64: .include "../../graphics/giflib/buildlink3.mk"
1.161     adam       65: .include "../../mk/jpeg.buildlink3.mk"
1.100     jlam       66: .include "../../mk/oss.buildlink3.mk"
1.70      adam       67: .include "../../mk/pthread.buildlink3.mk"
1.161     adam       68: .include "../../sysutils/desktop-file-utils/desktopdb.mk"
1.5       agc        69: .include "../../mk/bsd.pkg.mk"

CVSweb <webmaster@jp.NetBSD.org>