Portage is a package management system used by Gentoo Linux
# ChangeLog for app-accessibility/sound-icons
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sound-icons/ChangeLog,v 1.1 2007/09/12 06:01:35 williamh Exp $
*sound-icons-0.1 (12 Sep 2007)
12 Sep 2007; William Hubbs
+sound-icons-0.1.ebuild:
Initial commit.
DIST sound-icons-0.1.tar.gz 591196 RMD160 374efa5d8efaa4ee1be94efaec5636c484753aba SHA1 4d9284f88a95fac6eddb1becc8a7111589755a93 SHA256 382dda1d14a07b3125a8b5084695aa9ba5cb0fff02e5aab69fd6c7e23cbcf4d7
EBUILD sound-icons-0.1.ebuild 795 RMD160 f5ef01ae5f5d96a2dc9182f812b64041d0209dce SHA1 a3938af1efab24da026dd0a6dc26aa4f75c8d7ad SHA256 a1c9f4dc58aa73ac1e61734148fb27a21c0b0fe1dae87dc9a91a940fbdd1446e
MISC ChangeLog 377 RMD160 dcf4ffb32def05b0e7a1bb042146fa786b15526f SHA1 ea1fd7e824b3938699c84d99e45d2f89b5cee07e SHA256 82efbbb7b534d62ac5df659295de9137b43e7dd6a88c3f8413a8841d3a9698d1
MISC metadata.xml 353 RMD160 7ca8162fc8d093d19ceaad2a0f2f26ae35a17a96 SHA1 955bf690e8179311c33382e3afc0fea5b019e126 SHA256 d614cc19678812f0174ea88f03dc858dfa40f482217ffc8e1d6b0771bb059341
This is a collection of sound icons which can be used by speech dispatcher.
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sound-icons/sound-icons-0.1.ebuild,v 1.1 2007/09/12 06:01:35 williamh Exp $
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="~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
}