forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-doc/halibut: version bump to 1.2, EAPI bump to 6
Package-Manager: Portage-2.3.5, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST halibut-1.0.tar.gz 940897 SHA256 0d039adb88cb8de6f350563514d013209c2d321d1e5c49ea56462c6803f29adb SHA512 9651ac0611060971f8b5412f6456e4e85b3107c90e7fab3352294b8c3de17dfa4935b86ec23a6431ee821b26d2d5fd2addf1114e69026d714bc9d9f94a79e12c WHIRLPOOL 99cfee05b66c7c81375f47edd6342b34e43d9019a82ab4ba5443a1ef7b2b7dc69bfdc321f6c7026ebb8cca6d2cff78ad3107232ac432939d81427646e632a413 | ||
DIST halibut-1.1.tar.gz 956743 SHA256 b964950d11ed09d3af28ac095da539613f6e50d650f01fe72b4ae752724c80a0 SHA512 01b0563ebb3678dc1ff1cef1d752d5ebffed70ef73a10d8266d84da3b4401006b686104bbe3e1984ebd3a54254f16d008011b3be8c29a3b9f1e3a033d61cdb15 WHIRLPOOL bc4b20fb9c4bb60db0c75a9009d913b694fad445674e4e7ded6388cdcc18e1386b4744835a11588daf412dddbc9b6a5a436f294db8b4c0d801f39245b9bc6d5a | ||
DIST halibut-1.2.tar.gz 991975 SHA256 1aedfb6240f27190c36a390fcac9ce732edbdbaa31c85ee675b994e2b083163f SHA512 b04cc5c52f2d7cd2bb9a36a1aa896c6a4fd11bcfc5fad3d9c74576bf2576ce237cd7ac3ceeff3bd10dfd5a229614d06d23323509d3a83ff74b4a1965e1d726fc WHIRLPOOL 1ff682b819c35e2fbee52bddff04d1653109ff7f9efb0ca07a4a39c6de729c91f22c1259c32cacd1a0b347b64af1e856629ce379595ccd6aa93bceda4526c094 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="6" | ||
|
||
inherit toolchain-funcs | ||
|
||
DESCRIPTION="yet another free document preparation system" | ||
HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/halibut/" | ||
SRC_URI="http://www.chiark.greenend.org.uk/~sgtatham/${PN}/${P}/${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~ppc ~x86" | ||
IUSE="" | ||
|
||
src_compile() { | ||
tc-export CC | ||
CFLAGS="${CFLAGS}" \ | ||
CPPFLAGS="${CPPFLAGS}" \ | ||
LFLAGS="${LDFLAGS}" \ | ||
BUILDDIR="${S}/build" \ | ||
VERSION="${PV}" \ | ||
emake || die "make failed" | ||
emake -C doc || die "make in doc failed" | ||
} | ||
|
||
DOCS=( doc/halibut.txt ) | ||
HTML_DOCS=( | ||
doc/index.html | ||
doc/IndexPage.html | ||
doc/input.html | ||
doc/intro.html | ||
doc/licence.html | ||
doc/manpage.html | ||
doc/output.html | ||
doc/running.html | ||
) | ||
|
||
src_install() { | ||
dobin build/halibut | ||
doman doc/halibut.1 | ||
doinfo doc/halibut.info | ||
einstalldocs | ||
} |