freebsd-ports/graphics/bugle/Makefile
Jan Beich 84e727457f multimedia/ffmpeg: update to 3.4
Notable changes:
- i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39
- NETCDF is now MYSOFA but the dependency doesn't exist in ports yet
- SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9
- DRM, LIBRSVG2, LIBXML2 are new options
- ABI isn't completely compatible: some structs have changed

Minor cleanup:
- Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency
- Drop redundant "Enable" from option descriptions
- Switch CDIO_DESC to use Mk/bsd.options.desc.mk

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR:		223057
Exp-run by:	antoine
2017-10-21 06:50:49 +00:00

53 lines
1.2 KiB
Makefile

# Created by: Erik Greenwald <erik@smluc.org>
# $FreeBSD$
PORTNAME= bugle
PORTVERSION= 0.0.20100508
PORTREVISION= 9
CATEGORIES= graphics
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Debugging library for OpenGL
LICENSE= GPLv2
LIB_DEPENDS= libltdl.so: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
OPTIONS_DEFINE= FFMPEG GTK2 READLINE THREADS
OPTIONS_DEFAULT= READLINE THREADS
FFMPEG_CONFIGURE_WITH= lavc
FFMPEG_LIB_DEPENDS= libavcodec.so.1:multimedia/ffmpeg
GTK2_LIB_DEPENDS= libgtkglext-x11-1.0.so: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
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MFFMPEG}
BROKEN= Does not build with ffmpeg-2.7
.endif
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>