Install this version:
emerge -a =www-apps/privatebin-2.0.6
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =www-apps/privatebin-2.0.6
Or alternatively:
emerge --autounmask-write -a =www-apps/privatebin-2.0.6
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 2.0.6 | 8 | ~amd64 |
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit webapp
DESCRIPTION="A minimalist, open source online pastebin where the server has zero knowledge of pasted data"
HOMEPAGE="https://privatebin.info/"
SRC_URI="https://github.com/PrivateBin/PrivateBin/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
#SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-lang/php-7.3[fpm,zlib,gd]
"
DEPEND="
app-admin/webapp-config
"
S=${WORKDIR}/PrivateBin-${PV}
pkg_setup() {
webapp_pkg_setup
}
src_install() {
webapp_src_preinst
insinto "${MY_HTDOCSDIR}"
doins -r .
webapp_src_install
}
pkg_postinst() {
webapp_pkg_postinst
local mydir="${VHOST_ROOT}/${MY_HTDOCSBASE}/${PN}"
echo
if [ ! -e $mydir/cfg/conf.php ]; then
elog
elog Please copy conf.sample.php to conf.php
elog in $mydir/cfg and tune it to your needs
elog
else
elog
elog See release notes at
elog https://github.com/PrivateBin/PrivateBin/releases/tag/${PVw}
elog
elog And maybe look at diff conf.sample.php conf.php at
elog $mydir
elog
fi
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | privatebin-2.0.6.tar.gz | 801466 bytes | https://github.com/PrivateBin/PrivateBin/archive/refs/tags/2.0.6.tar.gz |