diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-27 20:32:52 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-27 20:32:52 +0000 |
commit | 81ad28d857e9f1c4492edfb0d95242d990818cdd (patch) | |
tree | 3280c030a505f60039be76e07039b3c7e1f5a890 /x11-themes/notify-osd-icons | |
parent | Initial version (diff) | |
download | gentoo-2-81ad28d857e9f1c4492edfb0d95242d990818cdd.tar.gz gentoo-2-81ad28d857e9f1c4492edfb0d95242d990818cdd.tar.bz2 gentoo-2-81ad28d857e9f1c4492edfb0d95242d990818cdd.zip |
Initial commit.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes/notify-osd-icons')
-rw-r--r-- | x11-themes/notify-osd-icons/ChangeLog | 10 | ||||
-rw-r--r-- | x11-themes/notify-osd-icons/metadata.xml | 9 | ||||
-rw-r--r-- | x11-themes/notify-osd-icons/notify-osd-icons-0.7.ebuild | 30 |
3 files changed, 49 insertions, 0 deletions
diff --git a/x11-themes/notify-osd-icons/ChangeLog b/x11-themes/notify-osd-icons/ChangeLog new file mode 100644 index 000000000000..791efb637e6f --- /dev/null +++ b/x11-themes/notify-osd-icons/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-themes/notify-osd-icons +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/notify-osd-icons/ChangeLog,v 1.1 2011/03/27 20:32:52 ssuominen Exp $ + +*notify-osd-icons-0.7 (27 Mar 2011) + + 27 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> + +notify-osd-icons-0.7.ebuild: + Initial commit. + diff --git a/x11-themes/notify-osd-icons/metadata.xml b/x11-themes/notify-osd-icons/metadata.xml new file mode 100644 index 000000000000..f1d365960b36 --- /dev/null +++ b/x11-themes/notify-osd-icons/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <maintainer> + <email>ssuominen@gentoo.org</email> + <name>Samuli Suominen</name> + </maintainer> +</pkgmetadata> diff --git a/x11-themes/notify-osd-icons/notify-osd-icons-0.7.ebuild b/x11-themes/notify-osd-icons/notify-osd-icons-0.7.ebuild new file mode 100644 index 000000000000..5dcc344a2c84 --- /dev/null +++ b/x11-themes/notify-osd-icons/notify-osd-icons-0.7.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/notify-osd-icons/notify-osd-icons-0.7.ebuild,v 1.1 2011/03/27 20:32:52 ssuominen Exp $ + +EAPI=2 + +DESCRIPTION="Icons for on-screen-display notification agent" +HOMEPAGE="http://launchpad.net/notify-osd" +SRC_URI="mirror://ubuntu/pool/main/n/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="CCPL-Attribution-ShareAlike-3.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-misc/notify-osd" +DEPEND="" + +S=${WORKDIR}/${PN} + +src_install() { + emake DESTDIR="${D}" install || die + + # Source: debian/notify-osd-icons.links + local path=/usr/share/notify-osd/icons/gnome/scalable/status + dosym notification-battery-000.svg ${path}/notification-battery-empty.svg + dosym notification-battery-020.svg ${path}/notification-battery-low.svg + + dodoc AUTHORS debian/changelog +} |