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 | eb804e8bcc0abc7f64796a6241bed6edfde99348 (patch) | |
tree | d21907d43cea31e42741f7ff4b8856f87bc96d25 /x11-themes | |
parent | Initial version (diff) | |
download | historical-eb804e8bcc0abc7f64796a6241bed6edfde99348.tar.gz historical-eb804e8bcc0abc7f64796a6241bed6edfde99348.tar.bz2 historical-eb804e8bcc0abc7f64796a6241bed6edfde99348.zip |
Initial commit.
Package-Manager: portage-2.2.0_alpha28/cvs/Linux x86_64
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/notify-osd-icons/ChangeLog | 10 | ||||
-rw-r--r-- | x11-themes/notify-osd-icons/Manifest | 4 | ||||
-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 |
4 files changed, 53 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/Manifest b/x11-themes/notify-osd-icons/Manifest new file mode 100644 index 000000000000..fdade4806d90 --- /dev/null +++ b/x11-themes/notify-osd-icons/Manifest @@ -0,0 +1,4 @@ +DIST notify-osd-icons_0.7.tar.gz 518154 RMD160 7798cfe59a6815de1f137ac08c849840a5f5653e SHA1 0714945f4f2d84f1d568558b387a7b81f6a8a5bd SHA256 aba4ee6d1338ae064bff80ca986ea385010d50a4598bffd3457c9fba744a6a28 +EBUILD notify-osd-icons-0.7.ebuild 901 RMD160 d378450a818548866ed268fda631e2747d3e7f06 SHA1 fd42d8f92144c2bb0fb545b022d2b0e91b689182 SHA256 bfb086b0cf36f4be01e06557f86172aef6ad8e8d1fb9ecf37c4e277302e92da2 +MISC ChangeLog 372 RMD160 b9da0b085541243c4f5bd8cc6d55954fa4dad5b6 SHA1 13b1cb9199b2ac83048d8aa30a5b9977abbd1bba SHA256 83b96cd624e7240828de19238b0cb3ac61879fb89ff5d3bb5cdc74e2605d488e +MISC metadata.xml 271 RMD160 f5550f51d7c9f7bb15177eeb66d3de3f6511f45a SHA1 13cd5d11fbd7f0dfd5967b8757efd71d4d273e23 SHA256 b0ab8f8a76df2649ab818da3d391589e88d0befc9607eb6c3be7f1746b2d4392 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 +} |