public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/fms: ChangeLog fms-0.3.66.ebuild fms-0.3.63-r1.ebuild fms-0.3.65.ebuild
@ 2012-03-08 21:20 Thomas Sachau (tommy)
  0 siblings, 0 replies; only message in thread
From: Thomas Sachau (tommy) @ 2012-03-08 21:20 UTC (permalink / raw
  To: gentoo-commits

tommy       12/03/08 21:20:25

  Modified:             ChangeLog
  Added:                fms-0.3.66.ebuild
  Removed:              fms-0.3.63-r1.ebuild fms-0.3.65.ebuild
  Log:
  Version bump, drop old
  
  (Portage version: 2.2.0_alpha90-r1/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 net-p2p/fms/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/fms/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	23 Feb 2012 21:30:23 -0000	1.27
+++ ChangeLog	8 Mar 2012 21:20:24 -0000	1.28
@@ -1,6 +1,13 @@
 # ChangeLog for net-p2p/fms
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/fms/ChangeLog,v 1.27 2012/02/23 21:30:23 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/fms/ChangeLog,v 1.28 2012/03/08 21:20:24 tommy Exp $
+
+*fms-0.3.66 (08 Mar 2012)
+
+  08 Mar 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> -fms-0.3.65.ebuild,
+  +files/fms-use-system-libs2.patch, -fms-0.3.63-r1.ebuild, +fms-0.3.66.ebuild,
+  -files/fms-fix-includes.patch, -files/fms-use-system-libs.patch:
+  Version bump, drop old
 
 *fms-0.3.65 (23 Feb 2012)
 



1.1                  net-p2p/fms/fms-0.3.66.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/fms-0.3.66.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/fms/fms-0.3.66.ebuild?rev=1.1&content-type=text/plain

Index: fms-0.3.66.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/fms/fms-0.3.66.ebuild,v 1.1 2012/03/08 21:20:24 tommy Exp $

EAPI="2"

inherit eutils cmake-utils

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.2.9
	>=dev-db/sqlite-3.6.15
	<dev-libs/libpcre-8.13"
#added dependency on <=dev-libs/libpcre-8.12 instead of blocking higher versions,
#to prevent some issues with blocker resolution in portage
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
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-03-08 21:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-08 21:20 [gentoo-commits] gentoo-x86 commit in net-p2p/fms: ChangeLog fms-0.3.66.ebuild fms-0.3.63-r1.ebuild fms-0.3.65.ebuild Thomas Sachau (tommy)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox