diff options
author | Michael Weber <xmw@gentoo.org> | 2010-11-07 17:22:06 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2010-11-07 17:22:06 +0000 |
commit | 38c5eef14ae7f58789b454fa7a3f5fe11217cca0 (patch) | |
tree | 265bd622dc9f1ee256a3b9baec5ea0086772b85f /x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild | |
parent | dev-lisp/cl-cxml removal, p.masked from 17Sep2010, wrt bug #337963 (diff) | |
download | gentoo-2-38c5eef14ae7f58789b454fa7a3f5fe11217cca0.tar.gz gentoo-2-38c5eef14ae7f58789b454fa7a3f5fe11217cca0.tar.bz2 gentoo-2-38c5eef14ae7f58789b454fa7a3f5fe11217cca0.zip |
Initial import
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild')
-rw-r--r-- | x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild b/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild new file mode 100644 index 000000000000..fc14238f4947 --- /dev/null +++ b/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1.ebuild,v 1.1 2010/11/07 17:22:06 xmw Exp $ + +EAPI=3 + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="Pidgin plugin to notify by writining '1's and '0's to (led) control files" +HOMEPAGE="http://sites.google.com/site/simohmattila/led-notification" +MY_PN=${PN/pidgin-/} +MY_P=${MY_PN}-${PV} +SRC_URI="http://sites.google.com/site/simohmattila/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="net-im/pidgin + x11-libs/gtk+:2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${P}-hardware.patch +} + +src_compile() { + $(tc-getCC) \ + ${CFLAGS} -fpic $(pkg-config --cflags gtk+-2.0 pidgin) \ + -shared ${MY_PN}.c -o ${MY_PN}.so \ + ${LDFLAGS} $(pkg-config --libs gtk+-2.0 pidgin) || die +} + +src_install() { + insinto ${EPREFIX}/usr/$(get_libdir)/pidgin + insopts -m755 + doins ${MY_PN}.so || die + dodoc README || die +} |