diff options
author | Sam James <sam@gentoo.org> | 2022-01-20 15:19:49 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-01-20 15:19:49 +0000 |
commit | 7b01b4e5c717e91eee103485209b12deb985adf3 (patch) | |
tree | bbc2a86a11e49e8a4715271091adecb997a07d47 /app-text | |
parent | profiles/arch/x86: mask net-fs/samba[cpu_flags_x86_aes] (diff) | |
download | gentoo-7b01b4e5c717e91eee103485209b12deb985adf3.tar.gz gentoo-7b01b4e5c717e91eee103485209b12deb985adf3.tar.bz2 gentoo-7b01b4e5c717e91eee103485209b12deb985adf3.zip |
app-text/opensp: use BDEPEND
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/opensp/opensp-1.5.2-r7.ebuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/app-text/opensp/opensp-1.5.2-r7.ebuild b/app-text/opensp/opensp-1.5.2-r7.ebuild index 7482559846fb..b64c81d3a7ca 100644 --- a/app-text/opensp/opensp-1.5.2-r7.ebuild +++ b/app-text/opensp/opensp-1.5.2-r7.ebuild @@ -1,14 +1,16 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit flag-o-matic autotools + +inherit autotools flag-o-matic MY_P=${P/opensp/OpenSP} DESCRIPTION="A free, object-oriented toolkit for SGML parsing and entity management" HOMEPAGE="http://openjade.sourceforge.net/" SRC_URI="mirror://sourceforge/openjade/${MY_P}.tar.gz" +S="${WORKDIR}"/${MY_P} LICENSE="MIT" SLOT="0" @@ -16,11 +18,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~ IUSE="doc elibc_glibc nls static-libs test" RESTRICT="!test? ( test )" -RDEPEND=" - elibc_glibc? ( net-libs/libnsl:0= )" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) +RDEPEND="elibc_glibc? ( net-libs/libnsl:0= )" +DEPEND="${RDEPEND}" +BDEPEND="nls? ( sys-devel/gettext ) doc? ( app-text/xmlto app-text/docbook-xml-dtd:4.1.2 @@ -31,8 +31,6 @@ DEPEND="${RDEPEND} app-text/sgml-common )" -S=${WORKDIR}/${MY_P} - PATCHES=( "${FILESDIR}"/${P}-fix-segfault.patch "${FILESDIR}"/${P}-c11-using.patch |