1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/x11-toolkits/gnustep-back/Makefile
Niclas Zeising 4c46ca73d8 Add USES=xorg USES=gl, ports categories x
Add USES=xorg and USES=gl to ports in categories starting with 'x'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-11-07 18:36:55 +00:00

60 lines
1.7 KiB
Makefile

# $FreeBSD$
PORTNAME= gnustep-back
DISTVERSIONPREFIX= back-
DISTVERSION= 0_27_0
CATEGORIES= x11-toolkits gnustep
MAINTAINER= theraven@FreeBSD.org
COMMENT= GNUstep GUI backend
LICENSE_COMB= multi
LICENSE= GPLv3 LGPL3
LIB_DEPENDS+= libgif.so:graphics/giflib \
libtiff.so:graphics/tiff \
libXft.so:x11-fonts/libXft \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libcairo.so:graphics/cairo
USES= gl gnustep jpeg pkgconfig xorg
USE_GNUSTEP= base gui build
USE_XORG= xft xrender xmu xext x11 xcursor xfixes xmu
USE_GL= gl
USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES}
USE_GITHUB= yes
GH_ACCOUNT= gnustep
GH_PROJECT= libs-back
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-tiff-library=${LOCALBASE}/lib \
--with-tiff-include=${LOCALBASE}/include \
--with-jpeg-library=${LOCALBASE}/lib \
--with-jpeg-include=${LOCALBASE}/include \
--with-gif-library=${LOCALBASE}/lib \
--with-gif-include=${LOCALBASE}/include \
--enable-graphics=cairo \
--disable-glitz
# LLD 7 creates a library that does not work with FreeBSD (or OpenBSD) rtld -
# it loads apparently without errors, but the global constructors are not
# called. It also appears to corrupt some internal state, as throwing an
# exception causes a crash inside rtld.
LLD_UNSAFE= yes
MAKE_FLAGS+= OPTFLAG="${CFLAGS} -I${LOCALBASE}/include"
BACKVERSION= ${PORTVERSION:C/([0-9])*[.]([0-9]*).*/\1\2/1}
CFLAGS+= -I${LOCALBASE}/include/freetype2
PLIST_SUB+= BACK=back-${BACKVERSION}
PLIST_SUB+= BACKVERSION=${PORTVERSION:C/([0-9])*[.]([0-9]*).*/\1\2/1}
pre-configure:
.for file in config.guess config.sub install-sh
@${CP} ${GNUSTEP_PREFIX}/System/Library/Makefiles/${file} ${WRKSRC}
.endfor
.include <bsd.port.mk>