diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-24 23:31:02 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-24 23:31:02 +0000 |
commit | 03e1f04d5f0bfcd7058ba1b0b1ccd6f8d44b66ed (patch) | |
tree | 3185b80b164f9d49acac014c7e29a395e3a2a3fe /media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild | |
parent | Remove timidity-update script, instead depend on eselect-timidity, and inform... (diff) | |
download | gentoo-2-03e1f04d5f0bfcd7058ba1b0b1ccd6f8d44b66ed.tar.gz gentoo-2-03e1f04d5f0bfcd7058ba1b0b1ccd6f8d44b66ed.tar.bz2 gentoo-2-03e1f04d5f0bfcd7058ba1b0b1ccd6f8d44b66ed.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.
(Portage version: 2.1.2_rc2-r1)
Diffstat (limited to 'media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild')
-rw-r--r-- | media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild b/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild new file mode 100644 index 000000000000..faa6b5a1e420 --- /dev/null +++ b/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild,v 1.1 2006/11/24 23:31:02 flameeyes Exp $ + +IUSE="" + +S=${WORKDIR}/eawpats + +DESCRIPTION="Eric Welsh's GUS patches for TiMidity" +HOMEPAGE="http://www.stardate.bc.ca/eawpatches/html/default.htm" +SRC_URI="http://5hdumat.samizdat.net/music/eawpats${PV}_full.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86-fbsd" + +# These can be used for libmodplug too, so don't depend on timidity++ +DEPEND="app-admin/eselect-esd" +RDEPEND="" + +src_unpack() { + unpack ${A} + sed -i -e "s:dir /home/user/eawpats/:dir /usr/share/timidity/eawpatches:" "${S}/linuxconfig/timidity.cfg" +} + +src_install() { + local instdir=/usr/share/timidity + + # Set our installation directory + insinto ${instdir}/eawpatches + + # Install base timidity configuration for timidity-update + doins linuxconfig/timidity.cfg + rm -rf linuxconfig/ winconfig/ + + # Install base eawpatches + doins *.cfg *.pat + rm *.cfg *.pat + + # Install patches from subdirectories + for d in `find . -type f -name \*.pat | sed 's,/[^/]*$,,' | sort -u`; do + insinto ${instdir}/eawpatches/${d} + doins ${d}/*.pat + done + + # Install documentation, including subdirs + dodoc $(find . -name \*.txt) +} + +pkg_postinst() { + eselect timidity update --global --if-unset +} |