mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
4ee3a387ce
- Cleanup options - Enable IMAGEMAGICK by default - Make DVB support optional but leave it enabled by default - Add SNDIO option - Properly order pkg-plist - Unbreak on aarch64 - Bump revision of dependent ports [1] Changes: https://sourceforge.net/projects/xine/files/xine-lib/1.2.9/README.txt/view ABI: https://abi-laboratory.pro/tracker/timeline/xine-lib/ [1] PR: 219921 Reported by: emorrasg@yahoo.es Submitted by: w.schwarzenfeld@utanet.at (initial version), Nathan <ndowens@yahoo.com> Reviewed by: mat, tobik Differential Revision: https://reviews.freebsd.org/D16840
28 lines
694 B
Makefile
28 lines
694 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xine
|
|
PORTVERSION= 1.0.2
|
|
PORTREVISION= 12
|
|
DISTVERSIONPREFIX= plugin-
|
|
CATEGORIES= www multimedia
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-plugin/${PORTVERSION}
|
|
PKGNAMEPREFIX= npapi-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Embed Xine player into browser
|
|
|
|
LIB_DEPENDS= libxine.so:multimedia/libxine
|
|
|
|
USES= pkgconfig webplugin:native tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
WEBPLUGIN_NAME= #
|
|
WEBPLUGIN_FILES= xineplugin.so
|
|
PLIST_FILES= ${WEBPLUGIN_DIR}${WEBPLUGIN_FILES}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WEBPLUGIN_DIR}
|
|
${INSTALL_LIB} ${WRKSRC}/src/.libs/${WEBPLUGIN_FILES} ${STAGEDIR}${WEBPLUGIN_DIR}
|
|
|
|
.include <bsd.port.mk>
|