15c4a5ecf3
There are only 60 such ports so there doesn't need to be a separate keyword or USES for this. Approved by: portmgr (bapt)
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# Created by: Erik Greenwald <erik@smluc.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bugle
|
|
PORTVERSION= 0.0.20100508
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Debugging library for OpenGL
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl
|
|
|
|
USES= libtool pathfix perl5
|
|
USE_GL= gl
|
|
USE_GCC= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-ltdl-install=no
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
BROKEN_sparc64= Fails to link
|
|
|
|
OPTIONS_DEFINE= FFMPEG GTK2 READLINE THREADS
|
|
OPTIONS_DEFAULT= READLINE THREADS
|
|
|
|
FFMPEG_CONFIGURE_WITH= lavc
|
|
FFMPEG_LIB_DEPENDS= libavcodec.so.1:${PORTSDIR}/multimedia/ffmpeg
|
|
GTK2_LIB_DEPENDS= libgtkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext
|
|
GTK2_USE= gnome=gtk20
|
|
GTK2_CONFIGURE_WITH= gtk gtkglext
|
|
READLINE_USES= readline
|
|
READLINE_CONFIGURE_WITH= readline
|
|
THREADS_CONFIGURE_ON= --with-threads=pthreads
|
|
THREADS_CONFIGURE_OFF= --with-threads=single
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|=-lpthread|=-pthread|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e \
|
|
's|/usr/X11R6|${LOCALBASE}|' ${WRKSRC}/gengl/find_header.perl
|
|
|
|
.include <bsd.port.mk>
|