mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
39fc32e828
a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb)
72 lines
1.8 KiB
Makefile
72 lines
1.8 KiB
Makefile
# Created by: Torsten Teg Grust (Torsten.Grust@uni-konstanz.de)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hugs98
|
|
PORTVERSION= 200609
|
|
PORTREVISION= 5
|
|
CATEGORIES= lang haskell
|
|
MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/2006-09/
|
|
DISTNAME= ${PORTNAME}-plus-${HUGS_DATE}
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= An interpreter for the functional programming language Haskell 98
|
|
|
|
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
#OPTIONS= HUGS_OPENGL "OpenGL/GLUT support" off
|
|
HUGS_DATE= Sep2006
|
|
USES= bison
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
#CONFIGURE_ARGS+= --prefix=${PREFIX} --enable-ffi
|
|
#CONFIGURE_ENV+= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_ARGS+= --with-pthreads
|
|
|
|
.if ${ARCH} == "ia64"
|
|
BROKEN= dumps core during build on ${ARCH}
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
USE_GL= glut
|
|
USE_XORG= sm ice xmu xi x11
|
|
PLIST_SUB+= X11=""
|
|
.else
|
|
BROKEN= not supported at the moment
|
|
CONFIGURE_ARGS+= --disable-hgl --disable-opengl --disable-alut --disable-glut --disable-x11
|
|
PLIST_SUB+= X11="@comment "
|
|
.endif
|
|
|
|
MAN1= hugs.1
|
|
|
|
.if ${MACHINE_ARCH:L} == "amd64"
|
|
CFLAGS+= "-fPIC"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^install :: install_notes/d ; \
|
|
/^install :: install_guide/d' \
|
|
${WRKSRC}/src/MkInstal.in
|
|
@${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' \
|
|
${WRKSRC}/packages/OpenGL/configure \
|
|
${WRKSRC}/packages/GLUT/configure \
|
|
${WRKSRC}/packages/X11/configure \
|
|
${WRKSRC}/packages/HGL/configure
|
|
|
|
do-build:
|
|
. for dir in src libraries docs
|
|
cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}
|
|
. endfor
|
|
|
|
do-install:
|
|
. for dir in src libraries demos docs
|
|
cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}
|
|
. endfor
|
|
|
|
.include <bsd.port.post.mk>
|