8c1efc578d
Mk/Uses/gstreamer.mk:
- Sort, fix whitespace issues and typos
- Promote several common variables to improve maintainer QOL
* There's now no need to set manually set PORTVERSION nor
SOVERSION in several Makefiles
* This will help to prevent not updating some components
* A note has been added, however, to remind maintainers
to remake distinfo for certain ports
- Improve documentation
multimedia/gstreamer1-plugins-webrtc:
- New port split from multimedia/gstreamer1-plugins-bad
- multimedia/gstreamer1-plugins-rust has been updated
to reflect this change
net/gstreamer1-plugins-sctp:
- New port split from multimedia/gstreamer1-plugins-bad
x11-toolkits/gstreamer1-plugins-qt5:
- Moved here from graphics/gstreamer1-plugins-qt to
align with its new Qt6 counterpart
x11-toolkits/gstreamer1-plugins-qt6:
- New port: GStreamer Qt6 QML videosink plugin
*/*:
- Improve Makefile order and formatting
- Sorry for the repo churn, but not fixing this would just lead to more
poorly formatted gstreamer ports in the future via copypasta
https://gstreamer.freedesktop.org/releases/1.24/#1.24.8
PR: 278914
Reported by: vvd
41 lines
898 B
Makefile
41 lines
898 B
Makefile
PORTNAME= gstreamer1-plugins-core
|
|
PORTVERSION= ${_GST_VERSION}
|
|
CATEGORIES= multimedia audio
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Core set of typical audio and video GStreamer plugins
|
|
WWW= https://gstreamer.freedesktop.org/
|
|
|
|
USES= gstreamer
|
|
# Audio plugins
|
|
USE_GSTREAMER+= mpg123 ogg vorbis
|
|
|
|
# Graphics plugins
|
|
USE_GSTREAMER+= png
|
|
|
|
# Misc plugins
|
|
USE_GSTREAMER+= pango
|
|
|
|
# Multimedia plugins
|
|
USE_GSTREAMER+= libav good theora
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
GST_DIR= lib/gstreamer-${_GST1_LIB_VER}
|
|
PLIST_FILES= ${GST_DIR}/.gstreamer-plugins-core.keep
|
|
|
|
OPTIONS_DEFINE= DVD
|
|
OPTIONS_DEFAULT=DVD
|
|
|
|
DVD_DESC= Include DVD related plugins
|
|
DVD_USE= GSTREAMER=a52dec,dvdread,resindvd,dts
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${GST_DIR}
|
|
${TOUCH} -f ${STAGEDIR}${PREFIX}/${GST_DIR}/.gstreamer-plugins-core.keep
|
|
|
|
.include <bsd.port.mk>
|