public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-im/mu-conference: ChangeLog mu-conference-0.7.ebuild
@ 2009-03-01 12:17 Patrick Lauer (patrick)
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick Lauer (patrick) @ 2009-03-01 12:17 UTC (permalink / raw
  To: gentoo-commits

patrick     09/03/01 12:17:46

  Modified:             ChangeLog
  Added:                mu-conference-0.7.ebuild
  Log:
  Bump to 0.7. Fixes #118113. Added ~sparc and ~amd64 keywords. Ebuild modifications by Marko Durkovic and Aiko Barz.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.22                 net-im/mu-conference/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/mu-conference/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/mu-conference/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/mu-conference/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/mu-conference/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	8 Jan 2008 08:30:42 -0000	1.21
+++ ChangeLog	1 Mar 2009 12:17:45 -0000	1.22
@@ -1,6 +1,13 @@
 # ChangeLog for net-im/mu-conference
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/ChangeLog,v 1.21 2008/01/08 08:30:42 nelchael Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/ChangeLog,v 1.22 2009/03/01 12:17:45 patrick Exp $
+
+*mu-conference-0.7 (01 Mar 2009)
+
+  01 Mar 2009; Patrick Lauer <patrick@gentoo.org>
+  +files/mu-conference-0.7.init, +mu-conference-0.7.ebuild:
+  Bump to 0.7. Fixes #118113. Added ~sparc and ~amd64 keywords. Ebuild
+  modifications by Marko Durkovic and Aiko Barz.
 
   08 Jan 2008; Krzysiek Pawlik <nelchael@gentoo.org>
   mu-conference-0.6.0-r1.ebuild, mu-conference-0.6.0-r2.ebuild:



1.1                  net-im/mu-conference/mu-conference-0.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild?rev=1.1&content-type=text/plain

Index: mu-conference-0.7.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild,v 1.1 2009/03/01 12:17:46 patrick Exp $

inherit eutils

DESCRIPTION="Multi-User Chat for jabberd"
HOMEPAGE="https://gna.org/projects/mu-conference/"
SRC_URI="http://download.gna.org/mu-conference/${PN}_${PV}.tar.gz"

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"

DEPEND="dev-libs/expat
	>=dev-libs/glib-2
	net-dns/libidn
	|| ( net-im/jabberd net-im/jabberd2 )
	mysql? ( virtual/mysql )"
RDEPEND="${DEPEND}"
IUSE="mysql"


S="${WORKDIR}/${PN}_${PV}"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# Fix missing header in src/conference_user.c in order to
	# make emerge happy and avoid QA notice.
	sed -i "/conference.h/ i #define _XOPEN_SOURCE" src/conference_user.c

	if use mysql; then
		sed -i '/^CFLAGS/ a CFLAGS:=$(CFLAGS) -DHAVE_MYSQL' src/Makefile
	else
		# Makefile is broken. Should not always link against mysql
		sed -i 's/`mysql_config --libs`//' src/Makefile
	fi
}

src_compile() {
	emake || die
}

src_install() {
	exeinto /usr/bin
	doexe src/mu-conference
	fowners jabber:jabber /usr/bin/mu-conference
	fperms 750 /usr/bin/mu-conference

	newinitd "${FILESDIR}/${P}".init mu-conference

	dodoc ChangeLog FAQ mu-conference.sql README
	docinto scripts
	dodoc scripts/*

	for i in log spool; do
		dodir /var/${i}/jabber/mu-conference
		keepdir /var/${i}/jabber/mu-conference
		fowners jabber:jabber /var/${i}/jabber/mu-conference
		fperms 770 /var/${i}/jabber/mu-conference
	done

	insinto /etc/jabber
	newins muc-default.xml mu-conference.xml
	doins style.css

	cd "${D}/etc/jabber/"
	sed -i \
		-e 's,./spool/chat.localhost,/var/spool/jabber/mu-conference,g' \
		-e 's,./syslogs,/var/log/jabber,g' \
		-e 's,./logs,/var/log/jabber/mu-conference,g' \
		-e 's,./mu-conference.pid,/var/run/jabber/mu-conference.pid,g' \
		-e "s,../style.css,/etc/jabber/style.css,g" \
		-e "s,7009,5347,g" \
		mu-conference.xml || die "sed failed"
}

pkg_postinst() {
	elog
	elog "For jabberd-2 connection:"
	elog "1. Make sure that the ip and port in /etc/jabber/mu-conference.xml"
	elog "   match the address of your jabberd router."
	elog "2. Set a common secret in mu-conference.xml and router.xml"
	elog
}







^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-im/mu-conference: ChangeLog mu-conference-0.7.ebuild
@ 2012-04-05 21:19 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 2+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-04-05 21:19 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/04/05 21:19:14

  Modified:             ChangeLog mu-conference-0.7.ebuild
  Log:
  x86 stable wrt bug #409533
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.25                 net-im/mu-conference/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mu-conference/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mu-conference/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mu-conference/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/mu-conference/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	22 May 2010 10:55:21 -0000	1.24
+++ ChangeLog	5 Apr 2012 21:19:14 -0000	1.25
@@ -1,6 +1,10 @@
 # ChangeLog for net-im/mu-conference
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/ChangeLog,v 1.24 2010/05/22 10:55:21 tove Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/ChangeLog,v 1.25 2012/04/05 21:19:14 phajdan.jr Exp $
+
+  05 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  mu-conference-0.7.ebuild:
+  x86 stable wrt bug #409533
 
   22 May 2010; Torsten Veller <tove@gentoo.org> metadata.xml:
   Remove humpback from metadata.xml (#34793)



1.3                  net-im/mu-conference/mu-conference-0.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild?r1=1.2&r2=1.3

Index: mu-conference-0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mu-conference-0.7.ebuild	6 Mar 2009 18:12:52 -0000	1.2
+++ mu-conference-0.7.ebuild	5 Apr 2012 21:19:14 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild,v 1.2 2009/03/06 18:12:52 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/mu-conference/mu-conference-0.7.ebuild,v 1.3 2012/04/05 21:19:14 phajdan.jr Exp $
 
 inherit eutils
 
@@ -9,7 +9,7 @@
 SRC_URI="http://download.gna.org/mu-conference/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 SLOT="0"
 
 DEPEND="dev-libs/expat






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-05 21:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-05 21:19 [gentoo-commits] gentoo-x86 commit in net-im/mu-conference: ChangeLog mu-conference-0.7.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-01 12:17 Patrick Lauer (patrick)

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