diff options
author | Joonas Niilola <juippis@gentoo.org> | 2021-03-21 10:07:36 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-03-21 10:07:36 +0200 |
commit | c316deffd6304fb3a11748bc415e88b4fb180af3 (patch) | |
tree | 8fc1ce486ae893c5dc7d8dd329aeafd6dae0ad8d /dev-cpp/notcurses | |
parent | dev-cpp/notcurses: initial ebuild 2.2.3 (diff) | |
download | gentoo-c316deffd6304fb3a11748bc415e88b4fb180af3.tar.gz gentoo-c316deffd6304fb3a11748bc415e88b4fb180af3.tar.bz2 gentoo-c316deffd6304fb3a11748bc415e88b4fb180af3.zip |
dev-cpp/notcurses: install manpages unconditionally
- 150 kb worth of files in total.
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-cpp/notcurses')
-rw-r--r-- | dev-cpp/notcurses/notcurses-2.2.3.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/dev-cpp/notcurses/notcurses-2.2.3.ebuild b/dev-cpp/notcurses/notcurses-2.2.3.ebuild index e605c199a795..8cf6e10a7538 100644 --- a/dev-cpp/notcurses/notcurses-2.2.3.ebuild +++ b/dev-cpp/notcurses/notcurses-2.2.3.ebuild @@ -8,11 +8,11 @@ inherit cmake-multilib DESCRIPTION="Blingful TUIs and character graphics" HOMEPAGE="https://notcurses.com" -SRC_URI="https://github.com/dankamongmen/notcurses/archive/v${PV}.tar.gz -> ${P}.tar.gz doc? ( https://github.com/dankamongmen/notcurses/releases/download/v${PV}/notcurses-doc-${PV}.tar.gz )" +SRC_URI="https://github.com/dankamongmen/notcurses/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/dankamongmen/notcurses/releases/download/v${PV}/notcurses-doc-${PV}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+doc" DEPEND="dev-libs/libunistring media-video/ffmpeg @@ -40,12 +40,11 @@ src_test() { src_install() { cmake-multilib_src_install - if use doc ; then - # we use this tortured form lest we try, every time we release a - # x.y.1 or x.y.3, to install the source dir as a man page. - # exploit the fact that there's a bijection from html<>man. - for i in ../*.html ; do - doman ../$(basename $i .html) - done - fi + + # we use this tortured form lest we try, every time we release a + # x.y.1 or x.y.3, to install the source dir as a man page. + # exploit the fact that there's a bijection from html<>man. + for i in ../*.html ; do + doman ../$(basename $i .html) + done } |