diff options
author | 2014-01-29 02:54:58 +0000 | |
---|---|---|
committer | 2014-01-29 02:54:58 +0000 | |
commit | 514d5251bcbf3a2c3fec1a7809a3fe69a54e3e6c (patch) | |
tree | 7d187f03d3693a00c9fa53881e5348f8c600686e /x11-plugins | |
parent | Remove old, #499088 (diff) | |
download | gentoo-2-514d5251bcbf3a2c3fec1a7809a3fe69a54e3e6c.tar.gz gentoo-2-514d5251bcbf3a2c3fec1a7809a3fe69a54e3e6c.tar.bz2 gentoo-2-514d5251bcbf3a2c3fec1a7809a3fe69a54e3e6c.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-opensteamworks/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.4.ebuild | 46 |
2 files changed, 53 insertions, 1 deletions
diff --git a/x11-plugins/pidgin-opensteamworks/ChangeLog b/x11-plugins/pidgin-opensteamworks/ChangeLog index 410799a080e2..c242b4f2efdb 100644 --- a/x11-plugins/pidgin-opensteamworks/ChangeLog +++ b/x11-plugins/pidgin-opensteamworks/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/pidgin-opensteamworks # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-opensteamworks/ChangeLog,v 1.24 2014/01/14 16:56:37 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-opensteamworks/ChangeLog,v 1.25 2014/01/29 02:54:58 mrueg Exp $ + +*pidgin-opensteamworks-1.4 (29 Jan 2014) + + 29 Jan 2014; Manuel Rüger <mrueg@gentoo.org> + +pidgin-opensteamworks-1.4.ebuild: + Version bump. 14 Jan 2014; Manuel Rüger <mrueg@gentoo.org> -files/pidgin-opensteamworks-1.0_p32-Makefile, diff --git a/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.4.ebuild b/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.4.ebuild new file mode 100644 index 000000000000..556768f4ccfb --- /dev/null +++ b/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.4.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.4.ebuild,v 1.1 2014/01/29 02:54:58 mrueg Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="Steam protocol plugin for pidgin" +HOMEPAGE="http://code.google.com/p/pidgin-opensteamworks/" +SRC_URI="http://pidgin-opensteamworks.googlecode.com/files/steam-mobile-${PV}.tar.bz2 + http://pidgin-opensteamworks.googlecode.com/files/icons.zip + -> ${PN}-icons.zip" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-libs/glib:2 + dev-libs/json-glib + dev-libs/nss + gnome-base/libgnome-keyring + net-im/pidgin" +DEPEND="${RDEPEND} + app-arch/unzip + virtual/pkgconfig" + +S=${WORKDIR} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + tc-export CC PKG_CONFIG + fi +} + +src_prepare() { + # see http://code.google.com/p/pidgin-opensteamworks/issues/detail?id=31 + cp "${FILESDIR}"/${PN}-1.3-Makefile "${S}"/Makefile || die +} + +src_install() { + default + insinto /usr/share/pixmaps/pidgin/protocols + doins -r "${WORKDIR}"/{16,48} +} |