diff options
author | 2006-11-24 23:34:15 +0000 | |
---|---|---|
committer | 2006-11-24 23:34:15 +0000 | |
commit | bbfdd9d5b856b6f831e46498ee0f4be25bf078df (patch) | |
tree | d8dda59610038dc224d7c747325fd88fc053d678 /media-sound/timidity-shompatches | |
parent | Remove timidity-update script, instead depend on eselect-timidity, and inform... (diff) | |
download | historical-bbfdd9d5b856b6f831e46498ee0f4be25bf078df.tar.gz historical-bbfdd9d5b856b6f831e46498ee0f4be25bf078df.tar.bz2 historical-bbfdd9d5b856b6f831e46498ee0f4be25bf078df.zip |
Remove dependency on timidity++ (so that these patchsets can be used with libmodplug when it will work), remove message regarding timidity-updater, and use eselect timidity to set the current patchset if none was selected before.
Package-Manager: portage-2.1.2_rc2-r1
Diffstat (limited to 'media-sound/timidity-shompatches')
3 files changed, 54 insertions, 1 deletions
diff --git a/media-sound/timidity-shompatches/ChangeLog b/media-sound/timidity-shompatches/ChangeLog index 9b1ca26e463e..d58d32c47686 100644 --- a/media-sound/timidity-shompatches/ChangeLog +++ b/media-sound/timidity-shompatches/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for media-sound/timidity-shompatches # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity-shompatches/ChangeLog,v 1.10 2006/11/22 23:39:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity-shompatches/ChangeLog,v 1.11 2006/11/24 23:34:15 flameeyes Exp $ + +*timidity-shompatches-19960409-r4 (24 Nov 2006) + + 24 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> + +timidity-shompatches-19960409-r4.ebuild: + Remove dependency on timidity++ (so that these patchsets can be used with + libmodplug when it will work), remove message regarding timidity-updater, + and use eselect timidity to set the current patchset if none was selected + before. 22 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> timidity-shompatches-19960409-r3.ebuild: diff --git a/media-sound/timidity-shompatches/files/digest-timidity-shompatches-19960409-r4 b/media-sound/timidity-shompatches/files/digest-timidity-shompatches-19960409-r4 new file mode 100644 index 000000000000..672de26845c3 --- /dev/null +++ b/media-sound/timidity-shompatches/files/digest-timidity-shompatches-19960409-r4 @@ -0,0 +1,3 @@ +MD5 983e7f802644f681e1ac3243431de2c4 shominst-0409.zip 9977604 +RMD160 fb4d6b3005fb7710672b72b140687d61681c39c1 shominst-0409.zip 9977604 +SHA256 8669c15b5b4ad9acff24a9877d4806c86c58262a0be9f7de14ab11ddd7751605 shominst-0409.zip 9977604 diff --git a/media-sound/timidity-shompatches/timidity-shompatches-19960409-r4.ebuild b/media-sound/timidity-shompatches/timidity-shompatches-19960409-r4.ebuild new file mode 100644 index 000000000000..c934a94f4893 --- /dev/null +++ b/media-sound/timidity-shompatches/timidity-shompatches-19960409-r4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity-shompatches/timidity-shompatches-19960409-r4.ebuild,v 1.1 2006/11/24 23:34:15 flameeyes Exp $ + +IUSE="" + +DESCRIPTION="Matsumoto Shoji's patch collection for TiMidity(SC-55 style 10MB)" +HOMEPAGE="http://www.i.h.kyoto-u.ac.jp/~shom/timidity/shominst/shominst-0409.txt" +SRC_URI="http://www.i.h.kyoto-u.ac.jp/~shom/timidity/shominst/shominst-0409.zip" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86-fbsd" + +RDEPEND="" + +DEPEND="app-arch/unzip + app-admin/eselect-timidity" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + sed -i -e "s:dir /nethome/sak95/shom/lib/timidity/:dir /usr/share/timidity/shompatches/:" timidity.cfg + sed -i -e "s:^source :source shompatches/:" timidity.cfg sfx.cfg +} + +src_install() { + insinto /usr/share/timidity/shompatches + doins *.cfg + + # Install patches from subdirectories + for d in `find . -type f -name \*.pat | sed 's,/[^/]*$,,' | sort -u`; do + insinto /usr/share/timidity/shompatches/${d} + doins ${d}/*.pat + done +} + +pkg_postinst() { + eselect timidity update --global --if-unset +} |