diff options
author | 2020-03-18 19:01:01 +0100 | |
---|---|---|
committer | 2020-03-18 19:01:01 +0100 | |
commit | b6d3f6a1bcf19e80cfce0b070d7d8c2c9b47ab18 (patch) | |
tree | c5767ab238b56dbaf1d9e1e92d5c272c570b0747 /net-p2p/fms/fms-0.3.82.ebuild | |
parent | sys-apps/shadow: stable 4.8-r4 for hppa, bug #702252 (diff) | |
download | gentoo-b6d3f6a1bcf19e80cfce0b070d7d8c2c9b47ab18.tar.gz gentoo-b6d3f6a1bcf19e80cfce0b070d7d8c2c9b47ab18.tar.bz2 gentoo-b6d3f6a1bcf19e80cfce0b070d7d8c2c9b47ab18.zip |
net-p2p/fms: Version bump
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: Thomas Sachau <tommy@gentoo.org>
Diffstat (limited to 'net-p2p/fms/fms-0.3.82.ebuild')
-rw-r--r-- | net-p2p/fms/fms-0.3.82.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/net-p2p/fms/fms-0.3.82.ebuild b/net-p2p/fms/fms-0.3.82.ebuild new file mode 100644 index 000000000000..574d26fb3ac5 --- /dev/null +++ b/net-p2p/fms/fms-0.3.82.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit eutils cmake-utils user + +DESCRIPTION="A spam-resistant message board application for Freenet" +#FMS oly has a homepage within freenet, so the closest is a wiki linking to it +HOMEPAGE="https://github.com/freenet/wiki/wiki/FMS" +SRC_URI="https://dev.gentoo.org/~tommy/distfiles/${PN}-src-${PV}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="frost ssl" + +RDEPEND="virtual/libiconv + frost? ( net-libs/mbedtls ) + ssl? ( net-libs/mbedtls ) + >=dev-libs/poco-1.4.3_p1 + >=dev-db/sqlite-3.6.15" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR} +PATCHES=( "${FILESDIR}"/${PN}-use-system-libs4.patch ) + +pkg_setup() { + enewgroup freenet + enewuser freenet -1 -1 /var/freenet freenet +} + +src_prepare() { + rm -rv libs + edos2unix src/http/pages/showfilepage.cpp + edos2unix CMakeLists.txt + + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( -DI_HAVE_READ_THE_README=ON \ + -DUSE_BUNDLED_SQLITE=OFF \ + -DDO_CHARSET_CONVERSION=ON \ + -DFROST_SUPPORT=$(use frost && echo ON || echo OFF) \ + -DFCP_SSL_SUPPORT=$(use ssl && echo ON || echo OFF) ) + cmake-utils_src_configure +} + +src_install() { + insinto /var/freenet/fms + dobin "${CMAKE_BUILD_DIR}"/fms || die + doins *.htm || die "doinstall failed" + doins -r fonts images styles translations || die + fperms -R o-rwx /var/freenet/fms/ /usr/bin/fms + fowners -R freenet:freenet /var/freenet/fms/ /usr/bin/fms + doinitd "${FILESDIR}/fms" || die "installing init.d file failed" + dodoc readme.txt || die "installing doc failed" +} + +pkg_postinst() { + if ! has_version 'net-p2p/freenet' ; then + ewarn "FMS needs a freenet node to up-/download messages." + ewarn "Please make sure to have a node you can connect to" + ewarn "or install net-p2p/freenet to get FMS working." + fi + elog "By default, the FMS NNTP server will listen on port 1119," + elog "and the web configuration interface will be running at" + elog "http://localhost:8080. For more information, read" + elog "${ROOT}usr/share/doc/${PF}/readme.txt.bz2" + if use frost; then + elog " " + elog "You need to enable frost on the config page" + elog "and restart fms for frost support." + fi +} |