svn commit: r554692 - head/multimedia/gst123

Baptiste Daroussin bapt at FreeBSD.org
Mon Nov 9 08:58:31 UTC 2020


Author: bapt
Date: Mon Nov  9 08:58:30 2020
New Revision: 554692
URL: https://svnweb.freebsd.org/changeset/ports/554692

Log:
  Remove gstreamer 0.10 support
  
  Only build with gstreamer 1
  While here:
  - switch to USES=localbase
  - fix build with ports ncurses is installed (by forcing linking to libtinfo

Modified:
  head/multimedia/gst123/Makefile

Modified: head/multimedia/gst123/Makefile
==============================================================================
--- head/multimedia/gst123/Makefile	Mon Nov  9 08:50:21 2020	(r554691)
+++ head/multimedia/gst123/Makefile	Mon Nov  9 08:58:30 2020	(r554692)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gst123
 PORTVERSION=	0.3.3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	multimedia
 MASTER_SITES=	http://space.twc.de/~stefan/gst123/
 
@@ -13,24 +13,15 @@ COMMENT=	Command-line tool to play audio and video fil
 LICENSE=	LGPL20
 
 GNU_CONFIGURE=	yes
-USES=		compiler:c++11-lang gmake gnome ncurses pkgconfig tar:bzip2
+USES=		compiler:c++11-lang localbase gmake gnome ncurses pkgconfig \
+		tar:bzip2
 USE_GNOME=	gtk20
 CONFIGURE_ENV=	NCURSES5_CONFIG=/usr/bin/true
-LDFLAGS+=	-lncurses -L${LOCALBASE}/lib
+LDFLAGS+=	-ltinfo -lncurses
 
 PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
 
-OPTIONS_DEFINE=	GSTREAMER1
-
-GSTREAMER1_DESC=	Multimedia support via GStreamer 1.0 (instead of 0.10)
-
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MGSTREAMER1} || exists(${LOCALBASE}/libdata/pkgconfig/gstreamer-1.0.pc)
 USE_GSTREAMER1=	good
-.else
-USE_GSTREAMER=	good
-.endif
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin


More information about the svn-ports-head mailing list