4485bd8221
Simplify expressions for FreeBSD 13.X Reviewed by: many Differential Revision: https://reviews.freebsd.org/D46601
39 lines
900 B
Makefile
39 lines
900 B
Makefile
PORTNAME= kludge3d
|
|
PORTVERSION= 20040822
|
|
PORTREVISION= 16
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/${PORTNAME}/source/2004-08-22
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple 3D editor
|
|
WWW= https://kludge3d.sourceforge.net/
|
|
|
|
LIB_DEPENDS= lib3ds.so:graphics/lib3ds \
|
|
libgtkglext-x11-1.0.so:x11-toolkits/gtkglext
|
|
|
|
USES= compiler:c++11-lang gl gmake gnome localbase:ldflags pkgconfig python
|
|
USE_GL= gl
|
|
USE_GNOME= gtk20
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-lib-GL
|
|
|
|
CPPFLAGS+= -I${PYTHON_INCLUDEDIR}
|
|
LDFLAGS+= -L${PYTHON_LIBDIR}/config -lpthread -lm
|
|
|
|
PLIST_FILES= bin/kludge3d
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD
|
|
CPPFLAGS+= -Wno-error=incompatible-function-pointer-types
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|@EXTRA_CFLAGS@|@CFLAGS@|g ; \
|
|
s| install-pixmapsDATA||g ; \
|
|
s|-lpthread||g'
|
|
|
|
.include <bsd.port.mk>
|