diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 20:56:41 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 20:56:41 +0100 |
commit | d87262dd706fec50cd150aab3e93883b6337466d (patch) | |
tree | 246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-accessibility/sound-icons | |
parent | 71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'app-accessibility/sound-icons')
-rw-r--r-- | app-accessibility/sound-icons/Manifest | 3 | ||||
-rw-r--r-- | app-accessibility/sound-icons/metadata.xml | 14 | ||||
-rw-r--r-- | app-accessibility/sound-icons/sound-icons-0.1.ebuild | 30 |
3 files changed, 0 insertions, 47 deletions
diff --git a/app-accessibility/sound-icons/Manifest b/app-accessibility/sound-icons/Manifest deleted file mode 100644 index 148ed50f1803..000000000000 --- a/app-accessibility/sound-icons/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST sound-icons-0.1.tar.gz 591196 BLAKE2B 3632d544dd186eb4358ca9cacaf6babc9ccae287cc4918462dff3b7b7a5b57fe33aea65e5c0a9399aa28a294c04ec686ddee47327cda9900173c064ef4631a5c SHA512 f0ba9e1e84ace325671c7f323f01d647aa0e1a318e9adc2a6d8af4e0d795e478b2ea66007670f9c7ced9ef7310fdbccb5168b0f404579f5dff8712fe12ad93a0 -EBUILD sound-icons-0.1.ebuild 682 BLAKE2B 36acf82e4a1e9ba9943ed3ad5aa2a06c91465826e1bf0771c561356676a1363cbba87f6551838f8675e54bd0c4673c2d82d00f84d6861ca57640301fb765f3cf SHA512 5e2e7f8057cfa7ca47ee9fab1717de65746106ea71d861117597c98d492e74c65c99c85cad7daf0d550fe4884cf1cfc45b48858881f1e193c16fdc602ee1f069 -MISC metadata.xml 468 BLAKE2B 8eff8fd0170fd571a0cdb2ac23fa62751223d7629e4b740408e3aa6ccbc1957bb2cb4f6e506916de9913293f9959d46ad2118d02a200ed0617848a2a8cf992ed SHA512 9ab288130466bb7e5574fb54cf239a7ff0b5415e24b02f022df013fd3eb1ef8f733b7e1e310a2305f816de797ab592db7a3c7e33af46fea05e39139536b0f611 diff --git a/app-accessibility/sound-icons/metadata.xml b/app-accessibility/sound-icons/metadata.xml deleted file mode 100644 index 4e89c04468b7..000000000000 --- a/app-accessibility/sound-icons/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="person"> - <email>williamh@gentoo.org</email> -</maintainer> -<maintainer type="project"> - <email>accessibility@gentoo.org</email> - <name>Gentoo Accessibility Project</name> -</maintainer> -<longdescription lang="en"> -This is a collection of sound icons which can be used by speech dispatcher. -</longdescription> -</pkgmetadata> diff --git a/app-accessibility/sound-icons/sound-icons-0.1.ebuild b/app-accessibility/sound-icons/sound-icons-0.1.ebuild deleted file mode 100644 index ad29d961800f..000000000000 --- a/app-accessibility/sound-icons/sound-icons-0.1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="a collection of Sound Icons for speech-dispatcher" -HOMEPAGE="http://www.freebsoft.org" -SRC_URI="http://www.freebsoft.org/pub/projects/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -RDEPEND="app-accessibility/speech-dispatcher" - -src_compile(){ - einfo "Nothing to compile." -} - -src_install() { - dodoc README - insinto /usr/share/sounds/sound-icons - doins "${S}"/*.wav - links="`find ${S} -type l -print`" - for link in $links; do - target=`readlink -n $link` - dosym $target /usr/share/sounds/sound-icons/`basename $link` - done -} |