From 4551b41523452c0d743a71cca34e4dca2ca7538c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 4 Jan 2023 12:06:28 +0000 Subject: gentoo auto-resync : 04:01:2023 - 12:06:28 --- x11-misc/xdialog/Manifest | 2 +- x11-misc/xdialog/xdialog-2.3.1-r1.ebuild | 61 ++++++++++++++++++++++++++++++++ x11-misc/xdialog/xdialog-2.3.1.ebuild | 55 ---------------------------- 3 files changed, 62 insertions(+), 56 deletions(-) create mode 100644 x11-misc/xdialog/xdialog-2.3.1-r1.ebuild delete mode 100644 x11-misc/xdialog/xdialog-2.3.1.ebuild (limited to 'x11-misc/xdialog') diff --git a/x11-misc/xdialog/Manifest b/x11-misc/xdialog/Manifest index 41b42b1cf39b..7c04e0363bee 100644 --- a/x11-misc/xdialog/Manifest +++ b/x11-misc/xdialog/Manifest @@ -1,5 +1,5 @@ AUX xdialog-2.3.1-install.patch 352 BLAKE2B 75c9c6e7443ba0404e378d5a76d413d46930663840818a4b8a107ba1329647bd1adf90d19f01500212bbc60e7a213a9a22f177fb6742bd4499bc91cf3a8fb8b9 SHA512 fd89f4407c34b4850608248d707d9868a33c3d7bf5517b7f307410570322043c2cee8eaaa4afe9b12074fccf2205a7a127f7ab703732a0e086a5ee6f15c3c36d AUX xdialog-2.3.1-no-strip.patch 1385 BLAKE2B 5928f4989bb2d0e150790674d72ad11a97206f4370ad1049bce64ed71d8bfc504e214bda3fb76bc35ab2d5279ed4bcc02e29792526b3c649a49b5d6ef78eb59b SHA512 d210139d4e5b8fc4842f4fec4ebb7a9bc7d44a807d389d405b8c3c08b31f83a8b0f3fc6358e9cd858cf0fa2bc1f5e8d0c5f4fd23d63055c5cec0572e5e7ae23c DIST Xdialog-2.3.1.tar.bz2 457938 BLAKE2B d532bf9d25a349865baa3b9f484ca86d5bd7d946ca7e5b786f29eb65d297dafd9e58aa333ba671b836906d9620b900148d203be961d5ca3754977d01fc128fac SHA512 2a0f6e15297ae3ef54a41da1b1fe2ef376d28757d47433df2b8e9918cd4f95871a630b94ec544bd848e518df7f86934030a71bf0371a1466286bf7d912335525 -EBUILD xdialog-2.3.1.ebuild 929 BLAKE2B 5e6d753f2561386d6318a2ccf9eb66a6b268b52abf9f9837d1a916de3577be77a5ef302aca15afaaeff86360f171efb38e225b98ad89d91c36ea119fa730873a SHA512 d4088304be09a6ae932412aea50bb0f8b8a4aae823afbecf516f3dd5250a726e3890b875f7fee504f070846f39aec0909aab500d5357f0d51c4d6719b9990dd4 +EBUILD xdialog-2.3.1-r1.ebuild 996 BLAKE2B 400b19ad6ddfeb6d14fc9d1a97966d3dd6a37af9295d3cb74b682b051d8ba0614c5f7b7dbc002c81e7288d8a10e920340f149a29c56681ee928fe93ae25ddcd8 SHA512 240f067dbd6c9116c1ded751a27265cbf1faf2eee270a0745ecde22352424d333131bc87a0c44d8495dbce14e7920d584496e19b63c4d628ea7ad44ddf6f8bb4 MISC metadata.xml 273 BLAKE2B e41a84edc2f2bf01256d6c759fec49da44a20e3d595a6fe56f96239ab26213551ae190621a5e8f9523b777c42364680fd61a6423b08eada73b97eb4e81253dd7 SHA512 985a49dc2d598b61be8510f6f86c4894825a56392af613ecdc68de499242f1e7e910f8320e0fd0540bc5f42dde80a4f0b18b6919320ee60aa39da1441c147274 diff --git a/x11-misc/xdialog/xdialog-2.3.1-r1.ebuild b/x11-misc/xdialog/xdialog-2.3.1-r1.ebuild new file mode 100644 index 000000000000..b04058431d62 --- /dev/null +++ b/x11-misc/xdialog/xdialog-2.3.1-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Drop-in replacement for cdialog using GTK" +HOMEPAGE="http://xdialog.free.fr/" +SRC_URI="http://${PN}.free.fr/Xdialog-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ~hppa ppc x86" +IUSE="doc examples nls" + +RDEPEND=" + dev-libs/glib:2 + >=x11-libs/gtk+-2.2:2 +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +S="${WORKDIR}/${P/x/X}" + +DOCS=( AUTHORS BUGS ChangeLog README ) + +PATCHES=( + "${FILESDIR}"/${P}-no-strip.patch + "${FILESDIR}"/${P}-install.patch +) + +src_prepare() { + default + + sed -i -e 's:configure.in:configure.ac:' configure.in || die + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable nls) \ + --with-gtk2 +} + +src_install() { + default + + rm -r "${ED}"/usr/share/doc || die + use doc && local HTML_DOCS=( doc/. ) + einstalldocs + + if use examples; then + docinto examples + dodoc samples/* + fi +} diff --git a/x11-misc/xdialog/xdialog-2.3.1.ebuild b/x11-misc/xdialog/xdialog-2.3.1.ebuild deleted file mode 100644 index e2052afacdc9..000000000000 --- a/x11-misc/xdialog/xdialog-2.3.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Drop-in replacement for cdialog using GTK" -HOMEPAGE="http://xdialog.free.fr/" -SRC_URI="http://${PN}.free.fr/Xdialog-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ppc x86" -IUSE="doc examples nls" - -RDEPEND=" - dev-libs/glib:2 - >=x11-libs/gtk+-2.2:2 -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" - -S="${WORKDIR}/${P/x/X}" - -DOCS=( AUTHORS BUGS ChangeLog README ) - -PATCHES=( "${FILESDIR}"/${P}-{no-strip,install}.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable nls) \ - --with-gtk2 -} - -src_install() { - default - - rm -r "${D}"/usr/share/doc || die - use doc && local HTML_DOCS=( doc/. ) - einstalldocs - - if use examples; then - insinto "/usr/share/doc/${PF}/examples" - doins samples/* - fi -} -- cgit v1.2.3