summaryrefslogtreecommitdiff
path: root/x11-misc/xdialog/xdialog-2.3.1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-01-04 12:06:28 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-01-04 12:06:28 +0000
commit4551b41523452c0d743a71cca34e4dca2ca7538c (patch)
tree2b9ae4a442d7c2810f92833363fd36db073888f0 /x11-misc/xdialog/xdialog-2.3.1.ebuild
parent27e5574c9ed56a2633e25f7fa8f591554266a1b4 (diff)
gentoo auto-resync : 04:01:2023 - 12:06:28
Diffstat (limited to 'x11-misc/xdialog/xdialog-2.3.1.ebuild')
-rw-r--r--x11-misc/xdialog/xdialog-2.3.1.ebuild55
1 files changed, 0 insertions, 55 deletions
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
-}