freebsd-ports/x11-toolkits/ntk/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

50 lines
1.4 KiB
Makefile

# $FreeBSD$
PORTNAME= ntk
DISTVERSIONPREFIX= v
DISTVERSION= 1.3.1000
PORTREVISION= 1
CATEGORIES= x11-toolkits
MAINTAINER= yuri@FreeBSD.org
COMMENT= Fork of FLTK 1.3.0 which adds graphics rendering via Cairo, etc
LICENSE= LGPL20
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libpng.so:graphics/png
USES= gnome jpeg localbase:ldflags pkgconfig waf xorg
USE_GITHUB= yes
GH_ACCOUNT= original-male
USE_GNOME= cairo
USE_XORG= x11 xft
USE_LDCONFIG= yes
PLIST_SUB= SHLIB_VER=${DISTVERSION}
post-patch:
@${REINPLACE_CMD} -e " \
s|conf\.env\['LIB_DL'\] = \['dl'\]|conf.env['LIB_DL'] = []|; \
s|bld.add_post_fun( run_ldconfig )|#bld.add_post_fun( run_ldconfig )|" \
${WRKSRC}/wscript
post-install:
# Removing items that are there by mistake: https://github.com/original-male/ntk/issues/13
@${REINPLACE_CMD} -e ' \
/^Requires.*/d; \
s| -lglu||; \
s| -lgl||; \
s| -D_LARGEFILE64_SOURCE||; \
s| -D_FILE_OFFSET_BITS=64||' \
${STAGEDIR}${PREFIX}/libdata/pkgconfig/ntk*.pc
@${RM} ${STAGEDIR}${PREFIX}/lib/libntk*.a* # https://github.com/original-male/ntk/issues/12
@${STRIP_CMD} \
${STAGEDIR}${PREFIX}/bin/ntk-chtheme \
${STAGEDIR}${PREFIX}/bin/ntk-fluid \
${STAGEDIR}${PREFIX}/lib/libntk.so.${PORTVERSION} \
${STAGEDIR}${PREFIX}/lib/libntk_images.so.${PORTVERSION}
.include <bsd.port.mk>