commit:     3a16092fe497e21b58aacee358ce2025cd5c1fbb
Author:     Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 08:36:30 2022 +0000
Commit:     Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 08:37:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a16092f

dev-embedded/srecord: Add missing ghostscript-gpl dependency.

Raise EAPI to 7.
Fix doc path to avoid portage warning.

Closes: https://bugs.gentoo.org/505824
Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 dev-embedded/srecord/srecord-1.64-r1.ebuild | 43 +++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/dev-embedded/srecord/srecord-1.64-r1.ebuild 
b/dev-embedded/srecord/srecord-1.64-r1.ebuild
new file mode 100644
index 000000000000..aa4b0214e17d
--- /dev/null
+++ b/dev-embedded/srecord/srecord-1.64-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A collection of powerful tools for manipulating EPROM load files"
+HOMEPAGE="http://srecord.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-libs/libgcrypt:0"
+DEPEND="${RDEPEND}
+       app-text/ghostscript-gpl
+       dev-libs/boost
+       sys-apps/groff
+       test? ( app-arch/sharutils )"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.57-libtool.patch )
+
+src_prepare() {
+       default
+
+       cp etc/configure.ac "${S}"
+       eautoreconf
+}
+
+src_configure() {
+       econf $(use_enable static-libs static)
+}
+
+src_install() {
+       default
+       find "${ED}" -name '*.la' -delete || die
+
+       mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}"
+}

Reply via email to