mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc
|
|
inherit verify-sig
|
|
|
|
DESCRIPTION="Indents C/C++ source code"
|
|
HOMEPAGE="https://invisible-island.net/bcpp/"
|
|
SRC_URI="https://invisible-island.net/archives/${PN}/${P}.tgz"
|
|
SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${P}.tgz.asc )"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
|
|
BDEPEND="verify-sig? ( >=sec-keys/openpgp-keys-thomasdickey-20240114 )"
|
|
|
|
src_compile() {
|
|
emake CPPFLAGS='-DBCPP_CONFIG_DIR=\"/etc/bcpp/\"'
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dodoc CHANGES MANIFEST README VERSION txtdocs/hirachy.txt \
|
|
txtdocs/manual.txt
|
|
|
|
insinto /etc/bcpp
|
|
doins bcpp.cfg indent.cfg
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "Check the documentation for more information on how to"
|
|
elog "Run bcpp. Please note that in order to get help for"
|
|
elog "bcpp, please run bcpp -h and not the command by itself."
|
|
elog ""
|
|
elog "Configuration files are at ${EPREFIX}/etc/bcpp."
|
|
elog "To use them, use the -c option followed by the filename."
|
|
}
|