summaryrefslogtreecommitdiff
path: root/sci-misc/tango/tango-9.2.5a.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'sci-misc/tango/tango-9.2.5a.ebuild')
-rw-r--r--sci-misc/tango/tango-9.2.5a.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-misc/tango/tango-9.2.5a.ebuild b/sci-misc/tango/tango-9.2.5a.ebuild
deleted file mode 100644
index 5493a00e359d..000000000000
--- a/sci-misc/tango/tango-9.2.5a.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Tango is an Open Source solution for SCADA and DCS"
-HOMEPAGE="https://www.tango-controls.org/"
-SRC_URI="mirror://sourceforge/tango-cs/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+dbserver java +mariadb +zeromq"
-
-DEPEND="
- net-misc/omniORB
- mariadb? ( dev-db/mariadb-connector-c )
- !mariadb? ( dev-db/mysql-connector-c )
- dbserver? (
- mariadb? ( dev-db/mariadb:*[server] )
- !mariadb? ( >=virtual/mysql-5.6[server] )
- )
- java? ( virtual/jdk:* )
- zeromq? ( net-libs/zeromq )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="${DEPEND}"
-
-src_configure() {
- local MYCONF
- if use mariadb; then
- MYCONF+=(
- $(use_enable mariadb)
- --with-mariadbclient-include="${EPREFIX}/usr/include/mysql"
- )
- fi
-
- econf \
- --with-omni="${EPREFIX}/usr" \
- $(use_enable zeromq zmq) \
- $(use_enable java) \
- $(use_enable dbserver) \
- ${MYCONF[@]}
-}