tommy 14/06/01 12:26:29 Modified: ChangeLog Added: fms-0.3.73.ebuild Removed: fms-0.3.70.ebuild Log: Version bump, drop old (Portage version: 2.2.6-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
Revision Changes Path 1.35 net-p2p/fms/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/ChangeLog?rev=1.35&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/ChangeLog?rev=1.35&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/ChangeLog?r1=1.34&r2=1.35 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/fms/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- ChangeLog 8 Jan 2014 06:30:00 -0000 1.34 +++ ChangeLog 1 Jun 2014 12:26:29 -0000 1.35 @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/fms # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/fms/ChangeLog,v 1.34 2014/01/08 06:30:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/fms/ChangeLog,v 1.35 2014/06/01 12:26:29 tommy Exp $ + +*fms-0.3.73 (01 Jun 2014) + + 01 Jun 2014; Thomas Sachau (Tommy[D]) <[email protected]> +fms-0.3.73.ebuild, + -fms-0.3.70.ebuild: + Version bump, drop old 08 Jan 2014; Mike Frysinger <[email protected]> fms-0.3.71.ebuild: Inherit the user eclass for enewuser/etc... 1.1 net-p2p/fms/fms-0.3.73.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/fms-0.3.73.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/fms-0.3.73.ebuild?rev=1.1&content-type=text/plain Index: fms-0.3.73.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/fms/fms-0.3.73.ebuild,v 1.1 2014/06/01 12:26:28 tommy Exp $ EAPI="5" inherit eutils cmake-utils user DESCRIPTION="A spam-resistant message board application for Freenet" HOMEPAGE="http://freenetproject.org/tools.html" SRC_URI="mirror://gentoo/${PN}-src-${PV}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="frost" RDEPEND="virtual/libiconv frost? ( net-libs/polarssl ) >=dev-libs/poco-1.4.3_p1 >=dev-db/sqlite-3.6.15" DEPEND="${RDEPEND} app-arch/unzip" S=${WORKDIR} pkg_setup() { enewgroup freenet enewuser freenet -1 -1 /var/freenet freenet } src_prepare() { edos2unix src/http/pages/showfilepage.cpp epatch "${FILESDIR}"/${PN}-use-system-libs2.patch } src_configure() { local mycmakeargs="-DI_HAVE_READ_THE_README=ON \ -DUSE_BUNDLED_SQLITE=OFF \ -DDO_CHARSET_CONVERSION=ON \ $(cmake-utils_use frost FROST_SUPPORT)" 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 #ssages." 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 }
