diff options
author | 2010-02-05 16:19:34 +0000 | |
---|---|---|
committer | 2010-02-05 16:19:34 +0000 | |
commit | 34df6498b6f0d78ba4a31c8821d3cb6a82585815 (patch) | |
tree | bfe37d56ca0b5dede3379d52f090db8ba6bd1d57 /x11-plugins | |
parent | media-radio/xastir: version bump (diff) | |
download | sunrise-34df6498b6f0d78ba4a31c8821d3cb6a82585815.tar.gz sunrise-34df6498b6f0d78ba4a31c8821d3cb6a82585815.tar.bz2 sunrise-34df6498b6f0d78ba4a31c8821d3cb6a82585815.zip |
x11-plugins/pidgin-embeddedvideo: New Ebuild for bug 303233 - thanks to hwoarang and sedzimir
svn path=/sunrise/; revision=9988
Diffstat (limited to 'x11-plugins')
4 files changed, 53 insertions, 0 deletions
diff --git a/x11-plugins/pidgin-embeddedvideo/ChangeLog b/x11-plugins/pidgin-embeddedvideo/ChangeLog new file mode 100644 index 000000000..4feedb888 --- /dev/null +++ b/x11-plugins/pidgin-embeddedvideo/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for x11-plugins/pidgin-embeddedvideo +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 05 Feb 2010; Angelo D'Autilia (sYdRo) <sydro@salug.it> + +pidgin-embeddedvideo-1.1.2.ebuild, +metadata.xml: + New Ebuild for bug 303233 - thanks to hwoarang and sedzimir + diff --git a/x11-plugins/pidgin-embeddedvideo/Manifest b/x11-plugins/pidgin-embeddedvideo/Manifest new file mode 100644 index 000000000..bf3e87fcf --- /dev/null +++ b/x11-plugins/pidgin-embeddedvideo/Manifest @@ -0,0 +1,4 @@ +DIST pidgin-embeddedvideo-1.1-2.tar.gz 294236 RMD160 148474f4f556c012ec65472ff73a9adbc029a28c SHA1 c248bccc7678ab0f4bb3b6f84d86decdf302a139 SHA256 68f91acc34619b7dfdded62046ab4a8ac4d8cb9b44d5dee594b24df3856855be +EBUILD pidgin-embeddedvideo-1.1.2.ebuild 736 RMD160 3c1c2979749d93b21b50322aa6f0077e489828b3 SHA1 2fc30f3dfcd83ea4393ef195a78b57f1e3bfda88 SHA256 b3c7911faee827a7c2a1ab89821861b2fd4962bac6da105a1b1f0db7df9da5c6 +MISC ChangeLog 306 RMD160 6d217b1174a082a3643b6013f6893184c5679a36 SHA1 7cba4d96b6e586e291441dd20ec17163414b958b SHA256 cc8f97ddc7b30e8fca1c4de3fb4d0acb3ccdb1b00b83669bb6669d34bd0b6d7c +MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/x11-plugins/pidgin-embeddedvideo/metadata.xml b/x11-plugins/pidgin-embeddedvideo/metadata.xml new file mode 100644 index 000000000..7e3286984 --- /dev/null +++ b/x11-plugins/pidgin-embeddedvideo/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>maintainer-wanted</herd> +</pkgmetadata> diff --git a/x11-plugins/pidgin-embeddedvideo/pidgin-embeddedvideo-1.1.2.ebuild b/x11-plugins/pidgin-embeddedvideo/pidgin-embeddedvideo-1.1.2.ebuild new file mode 100644 index 000000000..5fdcf31dc --- /dev/null +++ b/x11-plugins/pidgin-embeddedvideo/pidgin-embeddedvideo-1.1.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit versionator + +MY_P=${PN}-$(replace_version_separator 2 '-') + +DESCRIPTION="Pidgin plugin for sharing and viewing links to videos" +HOMEPAGE="http://code.google.com/p/pidgin-embeddedvideo/" +SRC_URI="http://pidgin-embeddedvideo.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="net-im/pidgin[gtk] + >=net-libs/webkit-gtk-1.1.12 + net-misc/curl" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + +src_compile() { + emake -j1 || die "make fail" +} + +src_install() { + emake install DESTDIR="${D}" || die "install fail" + dodoc AUTHORS ChangeLog || die "doc install fail" +} + + |