6f32add9a7
FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: swfdec
|
|
# Date created: Apr 5, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= swfdec
|
|
PORTVERSION= 0.6.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://swfdec.freedesktop.org/download/swfdec/0.6/
|
|
|
|
MAINTAINER= alexbl@FreeBSD.org
|
|
COMMENT= Flash Rendering Library
|
|
|
|
LIB_DEPENDS= oil-0.3.0:${PORTSDIR}/devel/liboil \
|
|
soup-2.4.1:${PORTSDIR}/devel/libsoup
|
|
|
|
USE_GNOME= gnomehack gtk20
|
|
USE_AUTOTOOLS= libtool:15:env automake:19:env autoconf:261
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-Wl,-Bsymbolic -L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-audio=oss
|
|
USE_LDCONFIG= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS= GSTREAMER "Support for decoding some codecs with GStreamer" off
|
|
|
|
PLIST_SUB= VERSION=${PORTVERSION:R}
|
|
|
|
.if defined(WITH_GSTREAMER)
|
|
USE_GSTREAMER= yes
|
|
.else
|
|
LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg \
|
|
mad.2:${PORTSDIR}/audio/libmad
|
|
CONFIGURE_ARGS+= --disable-gstreamer --enable-ffmpeg --enable-mad
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|SWFDEC_LIBVERSION="0:0:0"|SWFDEC_LIBVERSION="1:0:0"|' ${WRKSRC}/configure.ac
|
|
.include <bsd.port.mk>
|