summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsen Arsenović <arsen@gentoo.org>2023-01-21 12:54:02 +0100
committerArsen Arsenović <arsen@gentoo.org>2023-01-21 12:54:02 +0100
commit80ae2ad9720642e1a5243efe36958fc5de33f4d7 (patch)
treee8dc8dd8e0f17e595692c2a435d189a5f8b1644b /app-eselect
parentapp-eselect/eselect-wxwidgets: add 20230114-r1, drop broken sed (diff)
downloadgentoo-80ae2ad9720642e1a5243efe36958fc5de33f4d7.tar.gz
gentoo-80ae2ad9720642e1a5243efe36958fc5de33f4d7.tar.bz2
gentoo-80ae2ad9720642e1a5243efe36958fc5de33f4d7.zip
app-eselect/eselect-wxwidgets: drop 20230114
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
Diffstat (limited to 'app-eselect')
-rw-r--r--app-eselect/eselect-wxwidgets/eselect-wxwidgets-20230114.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/app-eselect/eselect-wxwidgets/eselect-wxwidgets-20230114.ebuild b/app-eselect/eselect-wxwidgets/eselect-wxwidgets-20230114.ebuild
deleted file mode 100644
index ee897138e4c9..000000000000
--- a/app-eselect/eselect-wxwidgets/eselect-wxwidgets-20230114.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib
-
-WXWRAP_VER=1.4
-
-DESCRIPTION="Eselect module and wrappers for wxWidgets"
-HOMEPAGE="https://gitweb.gentoo.org/proj/eselect-wxwidgets.git/"
-SRC_URI="https://dev.gentoo.org/~sam/distfiles/app-eselect/eselect-wxwidgets/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-
-RDEPEND=">=app-admin/eselect-1.4.13"
-
-src_prepare() {
- sed \
- -e "/^LIBDIR=/s:lib:$(get_libdir):" \
- -e "/^EPREFIX=/s:'':'${EPREFIX}':" \
- -i {wx-config,wxrc}-"${WXWRAP_VER}" || die
- sed -i '34s/^/exec/' "wx-config-${WXWRAP_VER}" || die
- eapply_user
-}
-
-src_install() {
- insinto /usr/share/eselect/modules
- doins wxwidgets.eselect
-
- insinto /usr/share/aclocal
- newins wxwin.m4-3.0 wxwin.m4
-
- newbin "wx-config-${WXWRAP_VER}" wx-config
- newbin "wxrc-${WXWRAP_VER}" wxrc
-
- keepdir /var/lib/wxwidgets
- keepdir /usr/share/bakefile/presets
-}
-
-pkg_postinst() {
- if [[ ! -e ${EROOT}/var/lib/wxwidgets/current ]]; then
- echo 'WXCONFIG="none"' > "${EROOT}"/var/lib/wxwidgets/current
- fi
-
- elog "This eselect module only controls the version of wxGTK used when"
- elog "building packages outside of portage. If you are not doing development"
- elog "with wxWidgets or bakefile you will never need to use it."
-}