diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-02-27 23:31:44 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-02-27 23:32:36 +0100 |
commit | 51b061083a0aeaa9580055a8082153be17990fe4 (patch) | |
tree | 89e7bc19be3f56133f28b0e09c5f72b0aef62358 /dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild | |
parent | dev-db/mariadb: Stabilize 10.5.13 ppc, #829392 (diff) | |
download | gentoo-51b061083a0aeaa9580055a8082153be17990fe4.tar.gz gentoo-51b061083a0aeaa9580055a8082153be17990fe4.tar.bz2 gentoo-51b061083a0aeaa9580055a8082153be17990fe4.zip |
dev-embedded/mcu8051ide: EAPI-8 bump, switch to cmake.eclass
Fix HOMEPAGE
Fix appdata installation path
Fix desktop file
Drop install of useless files
Don't install compressed manpages
Closes: https://bugs.gentoo.org/735720
Closes: https://bugs.gentoo.org/735726
Closes: https://bugs.gentoo.org/834305
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild')
-rw-r--r-- | dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild b/dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild new file mode 100644 index 000000000000..25736dcc3994 --- /dev/null +++ b/dev-embedded/mcu8051ide/mcu8051ide-1.4.10-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Graphical IDE for microcontrollers based on 8051" +HOMEPAGE="https://sourceforge.net/projects/mcu8051ide/" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" + +# The doxygen dependency is suspect, but it appears to be used at runtime. +RDEPEND=" + >=app-doc/doxygen-1.7 + >=app-text/hunspell-1.3 + >=dev-embedded/sdcc-2.5[mcs51] + >=dev-lang/tcl-8.5.9:* + >=dev-lang/tk-8.5.9:* + >=dev-tcltk/bwidget-1.8 + >dev-tcltk/itcl-3.3 + >=dev-tcltk/tcllib-1.11 + >=dev-tcltk/tclx-8.4 + >=dev-tcltk/tdom-0.8 + >=dev-tcltk/tkimg-1.4 + >=dev-util/indent-2.2 +" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/gzip" + +PATCHES=( + # Patches thanks to Debian + "${FILESDIR}"/${P}-cmake.patch + "${FILESDIR}"/${P}-appdata.patch + "${FILESDIR}"/${P}-desktop-file.patch +) + +src_prepare() { + cmake_src_prepare + gunzip doc/man/mcu8051ide.1.gz || die +} + +src_install() { + cmake_src_install + doman doc/man/mcu8051ide.1 +} |