mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
Fixes a bunch of QA issues. This package is not CLANG compatible so tinderbox will generate new bugs at some point. Adjust flags patch courtesy of Anna in https://bugs.gentoo.org/658542 Initscripts should be added at some point. Closes: https://bugs.gentoo.org/927985 Closes: https://bugs.gentoo.org/927986 Closes: https://bugs.gentoo.org/927987 Closes: https://bugs.gentoo.org/929028 Signed-off-by: Joe Kappus <joe@wt.gd>
29 lines
549 B
Bash
29 lines
549 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Community fork of MTProxy"
|
|
HOMEPAGE="https://github.com/GetPageSpeed/MTProxy"
|
|
SRC_URI="https://github.com/GetPageSpeed/MTProxy/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="LGPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-libs/openssl
|
|
sys-libs/zlib
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES="
|
|
${FILESDIR}/${P}-adjust_flags.patch
|
|
${FILESDIR}/${P}-no_implicit_func.patch
|
|
"
|
|
|
|
src_install() {
|
|
dobin objs/bin/mtproto-proxy
|
|
}
|