summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmadeusz Piotr Żołnowski <aidecoe@gentoo.org>2019-07-07 22:48:36 +0100
committerAmadeusz Piotr Żołnowski <aidecoe@gentoo.org>2019-07-07 22:49:43 +0100
commit2917dfc7353e3f40aa61252d6f09a52b8331ff89 (patch)
tree8992c9b5156f806043499232914412b3f70eb658 /app-text/dbacl/dbacl-1.14.1.ebuild
parentgnome-extra/gnome-commander: Fix typo (diff)
downloadgentoo-2917dfc7353e3f40aa61252d6f09a52b8331ff89.tar.gz
gentoo-2917dfc7353e3f40aa61252d6f09a52b8331ff89.tar.bz2
gentoo-2917dfc7353e3f40aa61252d6f09a52b8331ff89.zip
app-text/dbacl: Bump version
This version has not been updated for so long, because upstream put it on sourceforge rather then his homepage. Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Amadeusz Piotr Żołnowski <aidecoe@gentoo.org>
Diffstat (limited to 'app-text/dbacl/dbacl-1.14.1.ebuild')
-rw-r--r--app-text/dbacl/dbacl-1.14.1.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/app-text/dbacl/dbacl-1.14.1.ebuild b/app-text/dbacl/dbacl-1.14.1.ebuild
new file mode 100644
index 000000000000..07965efdea80
--- /dev/null
+++ b/app-text/dbacl/dbacl-1.14.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Digramic Bayesian text classifier"
+HOMEPAGE="http://www.lbreyer.com/gpl.html"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~s390 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="interactive"
+
+RDEPEND="interactive? (
+ sys-libs/slang:=
+ sys-libs/readline:=
+ sys-libs/ncurses:= )"
+
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ # See bug #352636 for reference
+ export ac_cv_lib_ncurses_initscr=$(usex interactive)
+ export ac_cv_lib_readline_readline=$(usex interactive)
+ export ac_cv_lib_slang_SLsmg_init_smg=$(usex interactive)
+ default
+}