app-text/stdman: use sed instead of a patch

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson <telans@posteo.de>
This commit is contained in:
Theo Anderson
2020-12-21 22:32:39 +13:00
parent 1af334049d
commit 5fefbc6eeb
3 changed files with 23 additions and 35 deletions

View File

@@ -1,11 +0,0 @@
diff --git a/do_install b/do_install
index acce4650..121c1b82 100755
--- a/do_install
+++ b/do_install
@@ -16,6 +16,5 @@ mkdir -p $mandir/man3
for file in "$tmp_man"/*.3 ; do
out=$mandir/man3/$(basename "$file");
install -m 0644 "$file" "$out";
- gzip -f "$out";
done
echo "Done; it's advised to run 'sudo mandb' (GNU) or 'sudo makewhatis' (BSD) now."

View File

@@ -3,27 +3,26 @@
EAPI=7
inherit eutils
DESCRIPTION="Formatted C++ stdlib man pages (cppreference)"
HOMEPAGE="https://github.com/jeaye/stdman"
LICENSE="MIT"
SLOT="0"
IUSE=""
RDEPEND=""
PATCHES=( "${FILESDIR}/${PN}-dont-compress-files.patch" )
if [[ ${PV} == *9999 ]]; then
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/jeaye/stdman"
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="MIT"
SLOT="0"
src_prepare() {
default
# Avoid compressing files
sed -i '/gzip/d' do_install || die
}
src_compile() {
# don't need to compile anything
true

View File

@@ -3,26 +3,26 @@
EAPI=7
inherit eutils
DESCRIPTION="Formatted C++ stdlib man pages (cppreference)"
HOMEPAGE="https://github.com/jeaye/stdman"
LICENSE="MIT"
SLOT="0"
IUSE=""
RDEPEND=""
PATCHES=( "${FILESDIR}/${PN}-dont-compress-files.patch" )
if [[ ${PV} == *9999 ]]; then
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/jeaye/stdman"
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="MIT"
SLOT="0"
src_prepare() {
default
# Avoid compressing files
sed -i '/gzip/d' do_install || die
}
src_compile() {
# don't need to compile anything
true