mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
98bf25875a
PR: 278577 Exp-run by: antoine
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
PORTNAME= gnustep-back
|
|
DISTVERSIONPREFIX= back-
|
|
DISTVERSION= 0_30_0
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits gnustep
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNUstep GUI backend
|
|
WWW= http://www.gnustep.org/
|
|
|
|
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= --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>
|