public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ilya Volynets (iluxa)" <iluxa@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/cppserv: ChangeLog cppserv-0.2.3.ebuild cppserv-0.2.1.ebuild cppserv-0.2.2.ebuild
Date: Wed, 04 Feb 2009 19:13:45 +0000	[thread overview]
Message-ID: <E1LUnBx-0006jO-9F@stork.gentoo.org> (raw)

iluxa       09/02/04 19:13:45

  Modified:             ChangeLog
  Added:                cppserv-0.2.3.ebuild
  Removed:              cppserv-0.2.1.ebuild cppserv-0.2.2.ebuild
  Log:
  -Remove old cppserv-0.2.x versions
  -Add cppserv-0.2.3
  (Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)

Revision  Changes    Path
1.33                 dev-cpp/cppserv/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cppserv/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cppserv/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cppserv/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/cppserv/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	3 Feb 2009 00:25:47 -0000	1.32
+++ ChangeLog	4 Feb 2009 19:13:45 -0000	1.33
@@ -1,6 +1,13 @@
 # ChangeLog for dev-cpp/cppserv
 # Copyright 2006-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/cppserv/ChangeLog,v 1.32 2009/02/03 00:25:47 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/cppserv/ChangeLog,v 1.33 2009/02/04 19:13:45 iluxa Exp $
+
+*cppserv-0.2.3 (04 Feb 2009)
+
+  04 Feb 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  -cppserv-0.2.1.ebuild, -cppserv-0.2.2.ebuild, +cppserv-0.2.3.ebuild:
+  Remove old 0.2.x versions
+  Add cppserv 0.2.3
 
 *cppserv-0.2.2 (03 Feb 2009)
 



1.1                  dev-cpp/cppserv/cppserv-0.2.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cppserv/cppserv-0.2.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cppserv/cppserv-0.2.3.ebuild?rev=1.1&content-type=text/plain

Index: cppserv-0.2.3.ebuild
===================================================================
# Copyright 2008-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/cppserv/cppserv-0.2.3.ebuild,v 1.1 2009/02/04 19:13:45 iluxa Exp $

inherit eutils apache-module multilib

DESCRIPTION="CPPSERV is an application server providing Servlet-like API in C++ and a C++ Server Pages parser."
HOMEPAGE="http://www.total-knowledge.com/progs/cppserv"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~x86 ~mips ~amd64"
IUSE="debug"

APACHE2_MOD_CONF="75_mod_cserv"
APACHE2_MOD_DEFINE="CPPSERV"

DEPEND="net-libs/socket++
	>=dev-cpp/sptk-3.5.6
	>=www-servers/apache-2
	>=dev-libs/apr-1.2
	dev-libs/boost
"

need_apache2

cppserv_build_flags() {
	local CPPSERV_DBG_FLAG
	use debug && CPPSERV_DBG_FLAG="CPPFLAGS=-DMODCSERV_DEBUG"
	echo PREFIX=/usr LIB=/$(get_libdir) ADON_VERBOSE=1 ADON_BUILD=release APRCFG_PATH=/usr/bin/apr-1-config  ${CPPSERV_DBG_FLAG}
}

src_compile() {
	emake $(cppserv_build_flags) || die "emake failed. Bug iluxa on #cppserv on irc.freenode.net immediately"
}

src_install() {
	local CPPSERV_DBG_FLAG
	use debug && CPPSERV_DBG_FLAG="CPPFLAGS=-DMODCSERV_DEBUG"
	emake $(cppserv_build_flags) DESTDIR="${D}" ${CPPSERV_DBG_FLAG} install || die "emake install failed. Bug iluxa on #cppserv on irc.freenode.net immediately"
	insinto "${APACHE_MODULES_CONFDIR}"
	doins "${FILESDIR}/${APACHE2_MOD_CONF}.conf" || die "internal ebuild error: \"${FILESDIR}/${APACHE2_MOD_CONF}.conf\" not found. Bug iluxa on #cppserv on irc.freenode.net immediately"
}






                 reply	other threads:[~2009-02-04 19:13 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1LUnBx-0006jO-9F@stork.gentoo.org \
    --to=iluxa@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox