-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Roman <[email protected]>
- Loading branch information
Showing
2 changed files
with
29 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 +1,2 @@ | ||
DIST stdman-2022.07.30.tar.gz 4191007 BLAKE2B 1e1425a9acec2fab0b3e30cfd90b0e4656dce7a2faf71f4f36de3a5c311058e5bc365d6805f941caa900daf7df8ed97d16899e3fc291f2391002cd8c358e322d SHA512 1a51ed99bf459be7bd0ebd65b601eaab2d3961773a6532ab048c962331373b724678528edc48000c165588cd6c3c37b3e90e96896980b390db325b7f3896e5a6 | ||
DIST stdman-2024.07.05.tar.gz 4773622 BLAKE2B c6928decbe3ac3f3159717c0c5df31ddb5d04f8f147f84a880899843ecad64451b58e8887e08ad13ca6442618f23ece064e1d750fc9150f745839f066937a55e SHA512 10c84a66ff53c0a8961b20b0e5e3f42e27063ba9fa36b4fcd2315e68d081107f9cf3dac2aad0e148459ca96e60aa40daa2742422f5cdd8094aa6cec0f131493a |
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,28 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DESCRIPTION="Formatted C++ stdlib man pages (cppreference)" | ||
HOMEPAGE="https://github.com/jeaye/stdman https://cppreference.com" | ||
|
||
if [[ ${PV} == 9999 ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="https://github.com/jeaye/stdman.git" | ||
else | ||
KEYWORDS="~amd64" | ||
SRC_URI="https://github.com/jeaye/stdman/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
fi | ||
|
||
LICENSE="CC-BY-SA-3.0 FDL-1.3 MIT" | ||
SLOT="0" | ||
|
||
src_prepare() { | ||
default | ||
# Avoid compressing files | ||
sed -i '/gzip/d' do_install || die | ||
} | ||
|
||
src_compile() { | ||
: | ||
} |