svn commit: r389221 - in head/audio: . linux-skype_oss_wrapper

Johannes Jost Meixner xmj at FreeBSD.org
Thu Jun 11 14:49:52 UTC 2015


Author: xmj
Date: Thu Jun 11 14:49:50 2015
New Revision: 389221
URL: https://svnweb.freebsd.org/changeset/ports/389221

Log:
  audio/linux-skype_oss_wrapper: add port.
  
  A fake libpulse.so library that mimics pulseaudio behavior for skype
  
  WWW: https://github.com/waterlaz/skype_oss_wrapper
  
  PR:		200675
  Submitted by:	Andriy Voskoboinyk <s3erios at gmail.com>

Added:
  head/audio/linux-skype_oss_wrapper/
  head/audio/linux-skype_oss_wrapper/Makefile   (contents, props changed)
  head/audio/linux-skype_oss_wrapper/distinfo   (contents, props changed)
  head/audio/linux-skype_oss_wrapper/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Thu Jun 11 14:28:18 2015	(r389220)
+++ head/audio/Makefile	Thu Jun 11 14:49:50 2015	(r389221)
@@ -433,6 +433,7 @@
     SUBDIR += linux-laudio
     SUBDIR += linux-mbrola
     SUBDIR += linux-neroaaccodec
+    SUBDIR += linux-skype_oss_wrapper
     SUBDIR += linuxsampler
     SUBDIR += listener
     SUBDIR += lmms

Added: head/audio/linux-skype_oss_wrapper/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/linux-skype_oss_wrapper/Makefile	Thu Jun 11 14:49:50 2015	(r389221)
@@ -0,0 +1,41 @@
+# Created by: Andriy Voskoboinyk <s3erios at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	skype_oss_wrapper
+PORTVERSION=	0.1.1
+CATEGORIES=	audio linux
+PKGNAMEPREFIX=	linux-
+
+MAINTAINER=	s3erios at gmail.com
+COMMENT=	Partial PulseAudio API implementation using OSS backend
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${LINUXBASE}/usr/bin/gcc:${PORTSDIR}/devel/linux-c6-devtools
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	s3erios
+GH_TAGNAME=	v${PORTVERSION}
+
+USE_LINUX=	yes
+USE_LINUX_PREFIX=	yes
+# do not define USE_LDCONFIG, it's not for global use
+
+ONLY_FOR_ARCHS=	i386 amd64
+PLIST_FILES=	lib/skype_oss_wrapper/libpulse.so.0
+
+LIB_DIR=	${PREFIX}/lib/${PORTNAME}
+
+# hardcode compiler path
+post-patch:
+	@${REINPLACE_CMD} -e 's|?= cc| = ${LINUXBASE}/usr/bin/gcc|' \
+			  -e 's|$${CC}|${LINUXBASE}/usr/bin/gcc|' \
+		${WRKSRC}/Makefile
+
+post-install:
+	@${RM} ${STAGEDIR}${PREFIX}/bin/skype_oss
+	@${RMDIR} ${STAGEDIR}${PREFIX}/bin
+	@${BRANDELF} -t Linux ${STAGEDIR}${LIB_DIR}/libpulse.so.0
+
+.include <bsd.port.mk>

Added: head/audio/linux-skype_oss_wrapper/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/linux-skype_oss_wrapper/distinfo	Thu Jun 11 14:49:50 2015	(r389221)
@@ -0,0 +1,2 @@
+SHA256 (s3erios-skype_oss_wrapper-0.1.1-v0.1.1_GH0.tar.gz) = 0106c7962eb39e68204f266e310eebb03e351aefe6cc1c7befe1a01fc43aeb92
+SIZE (s3erios-skype_oss_wrapper-0.1.1-v0.1.1_GH0.tar.gz) = 12401

Added: head/audio/linux-skype_oss_wrapper/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/linux-skype_oss_wrapper/pkg-descr	Thu Jun 11 14:49:50 2015	(r389221)
@@ -0,0 +1,3 @@
+A fake libpulse.so library that mimics pulseaudio behavior for skype
+
+WWW: https://github.com/waterlaz/skype_oss_wrapper


More information about the svn-ports-head mailing list