diff options
author | David Seifert <soap@gentoo.org> | 2019-10-18 00:37:50 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-10-18 00:37:50 +0200 |
commit | f86d2a47c95c5f7a50ee1ebc0f8d92d9a0a89c8e (patch) | |
tree | f1e7b8a617fbba4fed61eda5e274b426429d4237 /media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild | |
parent | media-sound/shorten: Port to EAPI 7 (diff) | |
download | gentoo-f86d2a47c95c5f7a50ee1ebc0f8d92d9a0a89c8e.tar.gz gentoo-f86d2a47c95c5f7a50ee1ebc0f8d92d9a0a89c8e.tar.bz2 gentoo-f86d2a47c95c5f7a50ee1ebc0f8d92d9a0a89c8e.zip |
media-sound/timidity-eawpatches: Port to EAPI 7
Bug: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild')
-rw-r--r-- | media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild | 39 |
1 files changed, 14 insertions, 25 deletions
diff --git a/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild b/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild index 942dcdb38ee7..3c9b2827791e 100644 --- a/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild +++ b/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 - -S=${WORKDIR}/eawpats +EAPI=7 DESCRIPTION="Eric Welsh's GUS patches for TiMidity" HOMEPAGE="http://www.stardate.bc.ca/eawpatches/html/default.htm" @@ -12,41 +10,32 @@ SRC_URI="http://5hdumat.samizdat.net/music/eawpats${PV}_full.tar.gz" LICENSE="free-noncomm" SLOT="0" KEYWORDS="amd64 arm ~arm64 hppa ppc ppc64 sparc x86" -IUSE="" +RESTRICT="binchecks strip" # These can be used for libmodplug too, so don't depend on timidity++ DEPEND="app-eselect/eselect-timidity" RDEPEND="" -RESTRICT="binchecks strip" +S="${WORKDIR}/eawpats" -src_unpack() { - unpack ${A} - sed -i -e "s:dir /home/user/eawpats/:dir /usr/share/timidity/eawpatches:" "${S}/linuxconfig/timidity.cfg" -} +PATCHES=( "${FILESDIR}"/${P}-fix-dir.patch ) src_install() { - local instdir=/usr/share/timidity + # Install documentation, including subdirs + local f + while IFS="" read -d $'\0' -r f; do + dodoc "${f}" + rm "${f}" || die + done < <(find . -type f -name '*.txt' -print0) # Set our installation directory - insinto ${instdir}/eawpatches + insinto /usr/share/timidity/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 + rm -rf linuxconfig/ winconfig/ patref24.hlp ultrasnd.ini || die - # 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) + doins -r . } pkg_postinst() { |