diff options
author | 2021-06-30 19:38:44 +0100 | |
---|---|---|
committer | 2021-06-30 19:38:44 +0100 | |
commit | 0e36eab8dc57df5118ae29aab56ff266e282ac77 (patch) | |
tree | 36257bfc698949f86d68f06aec86c01587bb3bc2 /net-p2p/dbhub/dbhub-0.451-r2.ebuild | |
parent | net-p2p/opendchub: add missing libcrypt dependency, fix other deps (diff) | |
download | gentoo-0e36eab8dc57df5118ae29aab56ff266e282ac77.tar.gz gentoo-0e36eab8dc57df5118ae29aab56ff266e282ac77.tar.bz2 gentoo-0e36eab8dc57df5118ae29aab56ff266e282ac77.zip |
net-p2p/dbhub: add missing libcrypt dependency, perl subslot operator
* Add missing libcrypt dependency
* We link against libperl when USE=perl => add a subslot operator on dev-lang/perl
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-p2p/dbhub/dbhub-0.451-r2.ebuild')
-rw-r--r-- | net-p2p/dbhub/dbhub-0.451-r2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net-p2p/dbhub/dbhub-0.451-r2.ebuild b/net-p2p/dbhub/dbhub-0.451-r2.ebuild new file mode 100644 index 000000000000..c091435449b1 --- /dev/null +++ b/net-p2p/dbhub/dbhub-0.451-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic + +DESCRIPTION="Hub software for Direct Connect, fork of opendchub" +HOMEPAGE="https://sourceforge.net/projects/dbhub/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tbz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="debug nls perl switch-user" + +DEPEND=" + virtual/libcrypt:= + perl? ( dev-lang/perl:= ) + switch-user? ( sys-libs/libcap )" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-gentoo.patch + "${FILESDIR}"/${PN}-no-dynaloader.patch + "${FILESDIR}"/${PN}-fix-buffer-overflows.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + append-flags -fcommon + econf \ + $(use_enable debug) \ + $(use_enable nls) \ + $(use_enable perl) \ + $(use_enable switch-user switch_user) +} |