diff options
author | 2008-03-10 19:50:14 +0000 | |
---|---|---|
committer | 2008-03-10 19:50:14 +0000 | |
commit | 6b166387f013058052753f7c7696669296ddd6f1 (patch) | |
tree | 4b97b60e8c52953f05f86d998405d99bbf85fe9b /net-im | |
parent | Version bump. (diff) | |
download | gentoo-2-6b166387f013058052753f7c7696669296ddd6f1.tar.gz gentoo-2-6b166387f013058052753f7c7696669296ddd6f1.tar.bz2 gentoo-2-6b166387f013058052753f7c7696669296ddd6f1.zip |
Added net-im/pymsn-t-0.11.3 (bug #212577)
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/pymsn-t/ChangeLog | 10 | ||||
-rw-r--r-- | net-im/pymsn-t/pymsn-t-0.11.3.ebuild | 67 |
2 files changed, 75 insertions, 2 deletions
diff --git a/net-im/pymsn-t/ChangeLog b/net-im/pymsn-t/ChangeLog index 11abf469bb65..bfc7c0d617a2 100644 --- a/net-im/pymsn-t/ChangeLog +++ b/net-im/pymsn-t/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/pymsn-t -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/ChangeLog,v 1.10 2007/06/04 20:48:44 griffon26 Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/ChangeLog,v 1.11 2008/03/10 19:50:14 griffon26 Exp $ + +*pymsn-t-0.11.3 (10 Mar 2008) + + 10 Mar 2008; Maurice van der Pot <griffon26@gentoo.org> + +pymsn-t-0.11.3.ebuild: + Version bump to 0.11.3. 04 Jun 2007; Maurice van der Pot <griffon26@gentoo.org> files/pymsn-t-0.11.2-initd: diff --git a/net-im/pymsn-t/pymsn-t-0.11.3.ebuild b/net-im/pymsn-t/pymsn-t-0.11.3.ebuild new file mode 100644 index 000000000000..616849dab461 --- /dev/null +++ b/net-im/pymsn-t/pymsn-t-0.11.3.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/pymsn-t-0.11.3.ebuild,v 1.1 2008/03/10 19:50:14 griffon26 Exp $ + +NEED_PYTHON=2.3 + +inherit eutils multilib python + +MY_PN="pymsnt" +S=${WORKDIR}/${MY_PN}-${PV} +DESCRIPTION="Python based jabber transport for MSN" +HOMEPAGE="http://msn-transport.jabberstudio.org/" +SRC_URI="http://msn-transport.jabberstudio.org/tarballs/${MY_PN}-${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~ppc" +IUSE="" + +DEPEND="net-im/jabber-base" +RDEPEND="${DEPEND} + >=dev-python/twisted-2.5.0 + >=dev-python/twisted-words-0.5.0 + >=dev-python/twisted-web-0.7.0 + >=dev-python/imaging-1.1" + +src_install() { + local inspath + + python_version + inspath=/usr/$(get_libdir)/python${PYVER}/site-packages/${PN} + insinto ${inspath} + doins -r data src + newins PyMSNt.py ${PN}.py + + insinto /etc/jabber + newins config-example.xml ${PN}.xml + fperms 600 /etc/jabber/${PN}.xml + fowners jabber:jabber /etc/jabber/${PN}.xml + dosed \ + "s:<!-- <spooldir>[^\<]*</spooldir> -->:<spooldir>/var/spool/jabber</spooldir>:" \ + /etc/jabber/${PN}.xml + dosed \ + "s:<pid>[^\<]*</pid>:<pid>/var/run/jabber/${PN}.pid</pid>:" \ + /etc/jabber/${PN}.xml + dosed \ + "s:<host>[^\<]*</host>:<host>example.org</host>:" \ + /etc/jabber/${PN}.xml + dosed \ + "s:<jid>msn</jid>:<jid>msn.example.org</jid>:" \ + /etc/jabber/${PN}.xml + + newinitd "${FILESDIR}/${PN}-0.11.2-initd" ${PN} + dosed "s:INSPATH:${inspath}:" /etc/init.d/${PN} +} + +pkg_postinst() { + python_version + python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" + + elog "A sample configuration file has been installed in /etc/jabber/${PN}.xml." + elog "Please edit it and the configuration of your Jabber server to match." +} + +pkg_postrm() { + python_version + python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" +} |