diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2018-08-26 15:45:38 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2018-08-26 15:46:09 +0300 |
commit | e216cd8652873446227e4bffac6f6bb038afad92 (patch) | |
tree | a7a6520694c34af553870c4d937242dcac80a272 /app-text/sdcv/sdcv-0.5.2.ebuild | |
parent | media-plugins/vdr-skinelchi: cleanup old (diff) | |
download | gentoo-e216cd8652873446227e4bffac6f6bb038afad92.tar.gz gentoo-e216cd8652873446227e4bffac6f6bb038afad92.tar.bz2 gentoo-e216cd8652873446227e4bffac6f6bb038afad92.zip |
app-text/sdcv: version bump
- Readline support is now optional.
- Tests are available.
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'app-text/sdcv/sdcv-0.5.2.ebuild')
-rw-r--r-- | app-text/sdcv/sdcv-0.5.2.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/app-text/sdcv/sdcv-0.5.2.ebuild b/app-text/sdcv/sdcv-0.5.2.ebuild new file mode 100644 index 000000000000..722ad64a802e --- /dev/null +++ b/app-text/sdcv/sdcv-0.5.2.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PLOCALES="cs fr ru sk uk zh_CN zh_TW" +: ${CMAKE_MAKEFILE_GENERATOR:="ninja"} + +inherit cmake-utils l10n + +DESCRIPTION="Console version of Stardict program" +HOMEPAGE="https://dushistov.github.io/sdcv/" +SRC_URI="https://github.com/Dushistov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="darkterm nls readline test" + +RDEPEND=" + >=dev-libs/glib-2.6.1 + sys-libs/zlib + readline? ( sys-libs/readline:= ) +" +DEPEND="${RDEPEND} + nls? ( >=sys-devel/gettext-0.14.1 ) + test? ( app-misc/jq ) +" + +PATCHES=( + "${FILESDIR}/${PN}-t_list.patch" + "${FILESDIR}/${PN}-t_interactive.patch" +) + +src_prepare() { + if use darkterm; then + sed -i 's/;34m/;36m/' src/libwrapper.cpp || die + fi + + rm_loc() { + rm "po/${1}.po" || die + } + l10n_for_each_disabled_locale_do rm_loc + + # do not install locale-specific man pages unless asked to + if ! has uk ${LINGUAS-uk}; then + sed -ni '/share\/man\/uk/!p' CMakeLists.txt || die + fi + + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DENABLE_NLS="$(usex nls)" + -DWITH_READLINE="$(usex readline)" + -DBUILD_TESTS="$(usex test ON OFF)" + ) + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + use nls && cmake-utils_src_compile lang +} + +src_install() { + # with USE=nls, but empty intersection of LINGUAS and list of + # supported translations, this directory is required, see bug 583386 + mkdir -p "${BUILD_DIR}/locale" + cmake-utils_src_install + dodoc doc/DICTFILE_FORMAT +} |