From owner-svn-ports-head@freebsd.org Fri Sep 18 13:52:20 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 429299CE144; Fri, 18 Sep 2015 13:52:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32B201391; Fri, 18 Sep 2015 13:52:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8IDqKW3066499; Fri, 18 Sep 2015 13:52:20 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8IDqI7m066492; Fri, 18 Sep 2015 13:52:18 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201509181352.t8IDqI7m066492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 18 Sep 2015 13:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r397235 - in head/net-im: . pidgin-skypeweb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2015 13:52:20 -0000 Author: amdmi3 Date: Fri Sep 18 13:52:18 2015 New Revision: 397235 URL: https://svnweb.freebsd.org/changeset/ports/397235 Log: This is a Libpurple plugin that adds support for a "Skype for Web(http)" protocol. WWW: https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb PR: 202347 Submitted by: sepulkarium45@yahoo.com Added: head/net-im/pidgin-skypeweb/ head/net-im/pidgin-skypeweb/Makefile (contents, props changed) head/net-im/pidgin-skypeweb/distinfo (contents, props changed) head/net-im/pidgin-skypeweb/pkg-descr (contents, props changed) head/net-im/pidgin-skypeweb/pkg-plist (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Fri Sep 18 13:41:47 2015 (r397234) +++ head/net-im/Makefile Fri Sep 18 13:52:18 2015 (r397235) @@ -115,6 +115,7 @@ SUBDIR += pidgin-rhythmbox SUBDIR += pidgin-sipe SUBDIR += pidgin-skype + SUBDIR += pidgin-skypeweb SUBDIR += pidgin-twitter SUBDIR += plasma-applet-ktp SUBDIR += poezio Added: head/net-im/pidgin-skypeweb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/pidgin-skypeweb/Makefile Fri Sep 18 13:52:18 2015 (r397235) @@ -0,0 +1,42 @@ +# Created by: Andrey Akhmichin +# $FreeBSD$ + +PORTNAME= pidgin-skypeweb +PORTVERSION= 08222015 +CATEGORIES= net-im + +MAINTAINER= sepulkarium45@yahoo.com +COMMENT= Plugin to use Skype chat from Pidgin(without Skype running) + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/gpl3.txt + +BUILD_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin +RUN_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin +LIB_DEPENDS= libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib + +USE_GITHUB= yes +GH_ACCOUNT= EionRobb +GH_PROJECT= skype4pidgin +GH_TAGNAME= 08cbc21 + +USES= gmake pkgconfig +USE_GNOME= glib20 +USE_LDCONFIG= yes + +CONFLICTS_INSTALL= pidgin-skype-* +WRKSRC_SUBDIR= skypeweb + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/purple-2 + ${INSTALL_PROGRAM} ${WRKSRC}/libskypeweb.so ${STAGEDIR}${PREFIX}/lib/purple-2 + ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps/pidgin/emotes/skype + ${INSTALL_DATA} ${WRKSRC}/theme ${STAGEDIR}${PREFIX}/share/pixmaps/pidgin/emotes/skype +.for i in 16 22 48 + ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps/pidgin/protocols/${i} + ${INSTALL_DATA} ${WRKSRC}/icons/${i}/skypeout.png \ + ${WRKSRC}/icons/${i}/skype.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/pidgin/protocols/${i}/ +.endfor + +.include Added: head/net-im/pidgin-skypeweb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/pidgin-skypeweb/distinfo Fri Sep 18 13:52:18 2015 (r397235) @@ -0,0 +1,2 @@ +SHA256 (EionRobb-skype4pidgin-08222015-08cbc21_GH0.tar.gz) = c76481b4153404d1c8bb0ec5872ed0e51d2fc5456c5f114ebfa4c5ec62e2bd91 +SIZE (EionRobb-skype4pidgin-08222015-08cbc21_GH0.tar.gz) = 314925 Added: head/net-im/pidgin-skypeweb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/pidgin-skypeweb/pkg-descr Fri Sep 18 13:52:18 2015 (r397235) @@ -0,0 +1,4 @@ +This is a Libpurple plugin that adds support for a +"Skype for Web(http)" protocol. + +WWW: https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb Added: head/net-im/pidgin-skypeweb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/pidgin-skypeweb/pkg-plist Fri Sep 18 13:52:18 2015 (r397235) @@ -0,0 +1,8 @@ +lib/purple-2/libskypeweb.so +share/pixmaps/pidgin/emotes/skype/theme +share/pixmaps/pidgin/protocols/16/skype.png +share/pixmaps/pidgin/protocols/16/skypeout.png +share/pixmaps/pidgin/protocols/22/skype.png +share/pixmaps/pidgin/protocols/22/skypeout.png +share/pixmaps/pidgin/protocols/48/skype.png +share/pixmaps/pidgin/protocols/48/skypeout.png