dev-embedded/gpsim: new revision 0.32.1-r1

- added support to the gui
- improved configure.ac (conftest.c error and missing libs)

Closes: https://bugs.gentoo.org/922300
Closes: https://bugs.gentoo.org/949813
Signed-off-by: Fabio Rossi <rossi.f@inwind.it>
Closes: https://github.com/gentoo/gentoo/pull/40615
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Fabio Rossi
2025-02-17 14:14:20 +01:00
committed by Sam James
parent 37196c8d1f
commit 83f9cf691f
3 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
--- ./configure.ac 2025-02-17 13:54:52.780179636 +0100
+++ ./configure.ac.new 2025-02-17 13:55:02.913179831 +0100
@@ -169,11 +169,6 @@
fi
X_LDFLAGS="$X_LDFLAGS -lm"
-wi_LIB_READLINE
- if test "$wi_cv_lib_readline" != yes; then
- AC_MSG_ERROR(Cannot find readline library)
- fi
-
# Checks for programs.
AC_PROG_CXX
AC_PROG_CXXCPP
@@ -186,6 +181,11 @@
AC_PROG_LEX(noyywrap)
LT_INIT
+wi_LIB_READLINE
+ if test "$wi_cv_lib_readline" != yes; then
+ AC_MSG_ERROR(Cannot find readline library)
+ fi
+
# Checks for libraries.
AC_LANG([C++])
#AC_CHECK_LIB([gpsim], [main])

View File

@@ -0,0 +1,10 @@
--- ./configure.ac.orig 2025-02-17 13:47:15.764170851 +0100
+++ ./configure.ac 2025-02-17 13:47:52.610171559 +0100
@@ -167,6 +167,7 @@
echo linking with gtk-$GTK_VERSION_T
AC_DEFINE_UNQUOTED([GTK_VERSION],"$GTK_VERSION_T",[gtk version])
fi
+X_LDFLAGS="$X_LDFLAGS -lm"
wi_LIB_READLINE
if test "$wi_cv_lib_readline" != yes; then

View File

@@ -0,0 +1,56 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="A simulator for the Microchip PIC microcontrollers"
HOMEPAGE="https://gpsim.sourceforge.net"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
IUSE="doc gui"
RDEPEND="
gui? ( x11-libs/gtk+:2 )
>=dev-embedded/gputils-0.12
dev-libs/glib:2
dev-libs/popt
sys-libs/readline:0=
"
DEPEND="${RDEPEND}"
BDEPEND="
app-alternatives/lex
virtual/pkgconfig
app-alternatives/yacc
"
DOCS=( ANNOUNCE AUTHORS ChangeLog HISTORY PROCESSORS README README.MODULES \
TODO doc/gpsim.pdf )
HTML_DOCS=( doc/gpsim.html.LyXconv/gpsim.html )
PATCHES=(
"${FILESDIR}"/${P}-missing-lib-m.patch
"${FILESDIR}"/${P}-configure.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
$(usex gui "" --disable-gui)
--disable-static
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}