mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
43 lines
936 B
Makefile
43 lines
936 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: kludge3d
|
|
# Date created: May 7, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kludge3d
|
|
PORTVERSION= 20040822
|
|
PORTREVISION= 7
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A simple 3d editor
|
|
|
|
LIB_DEPENDS= 3ds-1.3:${PORTSDIR}/graphics/lib3ds \
|
|
gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext
|
|
|
|
USE_PYTHON= yes
|
|
USE_GL= gl
|
|
USE_GNOME= gnometarget gtk20
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --with-lib-GL
|
|
|
|
PLIST_FILES= bin/kludge3d
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include \
|
|
-I${PYTHON_INCLUDEDIR} ${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib \
|
|
-L${PYTHON_LIBDIR}/config ${PTHREAD_LIBS}
|
|
|
|
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>
|