Sync with portage [Tue Nov 22 19:01:43 MSK 2011].

mhiretskiy
root 13 years ago
parent 0342b6dc78
commit cd7906764a

@ -1,3 +1,2 @@
DIST at-spi2-core-2.0.2.tar.bz2 503654 RMD160 97eea48189b980c3b9532736d4f3b62513dae8d4 SHA1 001bbbc959a10981ade25a4db0b076b9e7e7000b SHA256 15e13433d1923c96139c109568295313de636a83dbb3700c8467fcb9c5e4e6ce
DIST at-spi2-core-2.2.1.tar.xz 430856 RMD160 9812e9b69776d97cb900f0da563c9e1e174d4af2 SHA1 c7569c9e25e0259be73449eb7ba0f2de135b4f12 SHA256 2a4129420decca3657e163a4dbb1a3cb28acafe32ea1292417fdd81084d48fac
DIST at-spi2-core-2.2.2.tar.xz 429408 RMD160 f05ec1e2756e461b97038355a460e2e5d5352414 SHA1 56ff79614c5ab6c5b44b9ad9dfdf6440f92fd32d SHA256 d9b8ab2324d42b68552ec787b19619631c934528dc859da2349ea5f0ee7cc8b7
DIST at-spi2-core-2.2.3.tar.xz 429444 RMD160 cb98cce6aa359c4f8e3377a46b95f0b8b316f65b SHA1 8c410a62ec133c812b4c1006e4944f0bcd92183c SHA256 fb97f0a02fa378795e50857e22e640e099be1768081e28ca2dbdb3835f5b6af1

@ -1,47 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.0.2-r1.ebuild,v 1.1 2011/08/14 14:16:52 nirbheek Exp $
EAPI="3"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit eutils gnome2
DESCRIPTION="D-Bus accessibility specifications and registration daemon"
HOMEPAGE="http://live.gnome.org/Accessibility"
LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~amd64 ~x86"
IUSE="doc +introspection"
RDEPEND="
>=dev-libs/glib-2.28:2
>=sys-apps/dbus-1
x11-libs/libX11
x11-libs/libXi
x11-libs/libXtst
introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
doc? ( >=dev-util/gtk-doc-1.9 )
"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README"
# xevie is deprecated/broken since xorg-1.6/1.7
G2CONF="${G2CONF} --disable-xevie"
}
src_prepare() {
# disable teamspaces test since that requires Novell.ICEDesktop.Daemon
epatch "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch"
# https://bugzilla.gnome.org/show_bug.cgi?id=652215
# Fixed in upstream git master branch, but not in gnome-3-0 branch
epatch "${FILESDIR}/${PN}-2.0.2-abort-if-already-running.patch"
gnome2_src_prepare
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.2.2.ebuild,v 1.1 2011/11/20 15:23:04 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.2.3.ebuild,v 1.1 2011/11/22 13:09:15 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"

@ -1 +1,2 @@
DIST bitstring-2.2.0.zip 584654 RMD160 0ef2c6b67f5914a2524f1cd7644b40f8ba421729 SHA1 cd12c16b8d05a98b0e5a7dafc82dcb5891325812 SHA256 7c39ffcc2a2d62f6ea5a0114ea903c9bafd05056c94d5385c56d04bb9d0f4a3d
DIST bitstring-3.0.1.zip 623680 RMD160 bc5c3a89d251bc2c70dac052a90c77744eb260e7 SHA1 990ce2661aeb4e98bd6230a3c795110549ff8511 SHA256 d75d20f1c4c7543cf500e95eab9596877fa1c4d7d9952d7402dae77dc410419e

@ -0,0 +1,27 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bitstring/bitstring-3.0.1.ebuild,v 1.1 2011/11/22 13:26:10 grozin Exp $
EAPI=3
PYTHON_DEPEND="*"
SUPPORT_PYTHON_ABIS=1
inherit distutils
DESCRIPTION="A pure Python module for creation and analysis of binary data"
HOMEPAGE="http://python-bitstring.googlecode.com/"
SRC_URI="http://python-bitstring.googlecode.com/files/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
src_test() {
testing() {
PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" test_${PN}.py
}
pushd test > /dev/null
python_execute_function testing
popd > /dev/null
}

@ -0,0 +1,57 @@
--- setup.py
+++ setup.py
@@ -13,7 +13,6 @@
from distutils.core import setup
from distutils.command.build import build
-from sphinx import setup_command
import os
import os.path as osp
import sys
@@ -40,30 +39,6 @@
return splist
-# Sphinx build (documentation)
-class MyBuild(build):
- def has_doc(self):
- setup_dir = os.path.dirname(os.path.abspath(__file__))
- return os.path.isdir(os.path.join(setup_dir, 'doc'))
- sub_commands = build.sub_commands + [('build_doc', has_doc)]
-
-
-class MyBuildDoc(setup_command.BuildDoc):
- def run(self):
- build = self.get_finalized_command('build')
- sys.path.insert(0, os.path.abspath(build.build_lib))
- dirname = self.distribution.get_command_obj('build').build_purelib
- self.builder_target_dir = osp.join(dirname, 'spyderlib', 'doc')
- try:
- setup_command.BuildDoc.run(self)
- except UnicodeDecodeError:
- print >>sys.stderr, "ERROR: unable to build documentation because Sphinx do not handle source path with non-ASCII characters. Please try to move the source package to another location (path with *only* ASCII characters)."
- sys.path.pop(0)
-
-
-cmdclass = {'build': MyBuild, 'build_doc': MyBuildDoc}
-
-
NAME = 'spyder'
LIBNAME = 'spyderlib'
from spyderlib import __version__, __project_url__
@@ -88,7 +63,7 @@
get_package_data(LIBNAME, ('.mo', '.svg', '.png', '.css')),
'spyderplugins':
get_package_data('spyderplugins', ('.mo', '.svg', '.png'))},
- requires=["rope (>=0.9.2)", "sphinx (>=0.6.0)", "PyQt4 (>=4.4)"],
+ requires=["rope (>=0.9.2)", "PyQt4 (>=4.4)"],
scripts=[osp.join('scripts', fname) for fname in
(['spyder', 'spyder.bat'] if os.name == 'nt' else ['spyder'])],
classifiers=['License :: OSI Approved :: MIT License',
@@ -102,5 +77,4 @@
'Programming Language :: Python :: 2.7',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
- 'Topic :: Software Development :: Widget Sets'],
- cmdclass=cmdclass)
+ 'Topic :: Software Development :: Widget Sets'])

@ -19,7 +19,8 @@
<flag name='pep8'>Add support for <pkg>dev-python/pep8</pkg></flag>
<flag name='pyflakes'>Add support for <pkg>dev-python/pyflakes</pkg></flag>
<flag name='pylint'>Add support for <pkg>dev-python/pylint</pkg></flag>
<flag name='rope'>Add support for <pkg>sci-libs/rope</pkg></flag>
<flag name='rope'>Add support for <pkg>dev-python/rope</pkg></flag>
<flag name='scipy'>Add support for <pkg>sci-libs/scipy</pkg></flag>
<flag name='sphinx'>Add support for <pkg>dev-python/sphinx</pkg></flag>
</use>
</pkgmetadata>

@ -1,11 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/spyder-2.1.2.ebuild,v 1.1 2011/11/18 10:02:59 grozin Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/spyder-2.1.2.ebuild,v 1.2 2011/11/22 13:49:22 grozin Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython *-pypy-*"
inherit distutils eutils
@ -16,22 +16,28 @@ SRC_URI="http://spyderlib.googlecode.com/files/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc ipython matplotlib numpy +pyflakes pylint +rope scipy pep8"
IUSE="doc ipython matplotlib numpy pep8 +pyflakes pylint +rope scipy sphinx"
RDEPEND=">=dev-python/PyQt4-4.4[webkit]
ipython? ( dev-python/ipython )
matplotlib? ( dev-python/matplotlib )
numpy? ( dev-python/numpy )
pep8? ( dev-python/pep8 )
pyflakes? ( >=dev-python/pyflakes-0.3 )
pylint? ( dev-python/pylint )
rope? ( >=dev-python/rope-0.9.3 )
scipy? ( sci-libs/scipy )
pep8? ( dev-python/pep8 )"
sphinx? ( dev-python/sphinx )"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
PYTHON_MODNAME="spyderlib spyderplugins"
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}/${P}-disable_sphinx_dependency.patch"
}
src_compile() {
distutils_src_compile

@ -1,2 +1,3 @@
DIST jquery-rails-1.0.14.gem 255488 RMD160 34009ca170df905eb1961e50e2f7d95c399d1131 SHA1 cd06f6c688e140afea70493fdcc20f9795f6388c SHA256 31db0d30831fa3fc2f295a543bc9ff5fcc5a4c753c26491a8203a5841ce38c6b
DIST jquery-rails-1.0.16.gem 257536 RMD160 2d893ebe9f35b3d6d42c8f54d2b5621c68c5dc59 SHA1 e696b895611aa13eb7781f721e02ee1661f0c93a SHA256 e1a87dcbeac2f29709b326d8a697c236618cb49d69eed35aeefc1f39f0433d9f
DIST jquery-rails-1.0.18.gem 263168 RMD160 559a424028797dd59cbd0fea6307a82529859542 SHA1 60bf1c6c7ba3cdb7f3327eec22954dd2077ea6b6 SHA256 bada406218857961cc6704c1ab83a49d35ce35ee930afe77b85151f36c841956

@ -0,0 +1,26 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jquery-rails/jquery-rails-1.0.18.ebuild,v 1.1 2011/11/22 06:39:34 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
RUBY_FAKEGEM_EXTRAINSTALL="vendor"
inherit ruby-fakegem
DESCRIPTION="jQuery! For Rails! So great."
HOMEPAGE="http://www.rubyonrails.org"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
ruby_add_rdepend "=dev-ruby/railties-3* >=dev-ruby/thor-0.14"

@ -7,7 +7,7 @@ DIST postfix-2.8.4.tar.gz 3646391 RMD160 fbeb785c5ed08febf5cf71ea375b10120c1f62b
DIST postfix-2.8.5.tar.gz 3647010 RMD160 db4761f14b146c233426fa1afe49782e64f0c9e0 SHA1 49ef711c80b5a3434258ab24ae00940932503e80 SHA256 f8ed6c98bf5058c363da936a8034c64cee38ca67110e9212491de862116e1c17
DIST postfix-2.8.6.tar.gz 3647498 RMD160 1f85ff0e9432109342436144f6963d39b79910e1 SHA1 32613ad01cad10ae04aad626f9a69ac9126b3d28 SHA256 8b427a5dfe95da98918fcafce4032bac5d6190603fbc090da3c5c3a22c74dae5
DIST postfix-2.8.7.tar.gz 3647643 RMD160 ab0700f8f340fad11bf2a294a36ff1d70a1a8783 SHA1 81c87aceff4d9af67a304354bab9c99ac98fc8a0 SHA256 5c13465ab47414e9aa2e857851eff1a3f020cebd056e0dde6094ece3552806e5
DIST postfix-2.9-20111120.tar.gz 3689609 RMD160 bc5b39456866a713138295b9411d4c4d96589562 SHA1 a3406796fd72bc352078e06b2590d9e7c88f0c10 SHA256 2c169109379518cbbd7855141ebba89dea25cc17dbfe43e62c0402a5e7824a18
DIST postfix-2.9-20111121.tar.gz 3687797 RMD160 5acc4c7a4125a184763c020e4a9ad0aecc9044f6 SHA1 e82f80a5f618c1c52e388b124e9850a289909482 SHA256 456555b56e58f2f59a6a2e3a81ed016f9775b954ac277c2701f8db7e2ce4fe0c
DIST postfix-vda-2.7.2.patch 59667 RMD160 ebec1fa4a4c6b3c0160407b09aacf8357c936148 SHA1 ac712922f45856965118fa7b8551ece1ccb524db SHA256 f9b12376983833ef9305f7696e9792b62058f242ff2630aeb0866cf686f0a14b
DIST postfix-vda-v10-2.8.1.patch 56777 RMD160 42f6351d645cc7a211aea86cc35e1f3b10b50da1 SHA1 6b36480be036e7b7aa834fd904a2aa57c537cd40 SHA256 13ca7430b68dc19e21ee26c1c1109e1527a656777fa2f224cd3ce2d594435f12
DIST postfix-vda-v10-2.8.3.patch 56777 RMD160 ce30005d590d884c589612e65dbd34cbdbf84a31 SHA1 c27217b9af33c86a44bbb4469b7ebd4203210f7a SHA256 02599bdf16e7d77fe6043d1dac972daecdd40c4b2758579200d6ccb11e83acaa

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.9_pre20111120.ebuild,v 1.2 2011/11/21 08:18:00 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.9_pre20111121.ebuild,v 1.1 2011/11/22 07:11:39 eras Exp $
EAPI=4

@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.39.0.ebuild,v 1.1 2011/11/21 22:25:59 eva Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.39.0.ebuild,v 1.2 2011/11/22 08:39:57 eva Exp $
EAPI="2"
EAPI="4"
inherit eutils versionator flag-o-matic
@ -35,6 +35,8 @@ DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
dev-util/pkgconfig"
DOCS="AUTHORS ChangeLog NEWS README TODO"
src_configure() {
export GST_REGISTRY="${T}/home/registry.cache.xml"
@ -48,8 +50,7 @@ src_configure() {
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
default
# plugins are loaded without the help of libtool files
find "${D}" -name '*.la' -delete || die "failed to remove *.la files"

@ -1,22 +0,0 @@
>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1 x11-libs/libX11 x11-libs/libXi x11-libs/libXtst introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) >=dev-util/intltool-0.40 doc? ( >=dev-util/gtk-doc-1.9 ) >=sys-apps/sed-4
>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1 x11-libs/libX11 x11-libs/libXi x11-libs/libXtst introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
2
mirror://gnome/sources/at-spi2-core/2.0/at-spi2-core-2.0.2.tar.bz2
http://live.gnome.org/Accessibility
LGPL-2
D-Bus accessibility specifications and registration daemon
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
doc +introspection
3
compile configure install postinst postrm preinst prepare setup unpack

@ -1,7 +1,7 @@
>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1 x11-libs/libX11 x11-libs/libXi x11-libs/libXtst introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) >=dev-util/intltool-0.40 doc? ( >=dev-util/gtk-doc-1.9 ) app-arch/xz-utils >=sys-apps/sed-4
>=dev-libs/glib-2.28:2 >=sys-apps/dbus-1 x11-libs/libX11 x11-libs/libXi x11-libs/libXtst introspection? ( >=dev-libs/gobject-introspection-0.9.6 )
2
mirror://gnome/sources/at-spi2-core/2.2/at-spi2-core-2.2.2.tar.xz
mirror://gnome/sources/at-spi2-core/2.2/at-spi2-core-2.2.3.tar.xz
http://live.gnome.org/Accessibility
LGPL-2

@ -0,0 +1,22 @@
app-arch/unzip >=app-admin/eselect-python-20091230 dev-lang/python
app-arch/unzip >=app-admin/eselect-python-20091230 dev-lang/python
0
http://python-bitstring.googlecode.com/files/bitstring-3.0.1.zip
http://python-bitstring.googlecode.com/
MIT
A pure Python module for creation and analysis of binary data
~amd64 ~x86
distutils multilib python toolchain-funcs
3
compile install postinst postrm prepare test

@ -1,5 +1,5 @@
>=dev-python/PyQt4-4.4[webkit] ipython? ( dev-python/ipython ) matplotlib? ( dev-python/matplotlib ) numpy? ( dev-python/numpy ) pyflakes? ( >=dev-python/pyflakes-0.3 ) pylint? ( dev-python/pylint ) rope? ( >=dev-python/rope-0.9.3 ) scipy? ( sci-libs/scipy ) pep8? ( dev-python/pep8 ) doc? ( dev-python/sphinx ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
>=dev-python/PyQt4-4.4[webkit] ipython? ( dev-python/ipython ) matplotlib? ( dev-python/matplotlib ) numpy? ( dev-python/numpy ) pyflakes? ( >=dev-python/pyflakes-0.3 ) pylint? ( dev-python/pylint ) rope? ( >=dev-python/rope-0.9.3 ) scipy? ( sci-libs/scipy ) pep8? ( dev-python/pep8 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
>=dev-python/PyQt4-4.4[webkit] ipython? ( dev-python/ipython ) matplotlib? ( dev-python/matplotlib ) numpy? ( dev-python/numpy ) pep8? ( dev-python/pep8 ) pyflakes? ( >=dev-python/pyflakes-0.3 ) pylint? ( dev-python/pylint ) rope? ( >=dev-python/rope-0.9.3 ) scipy? ( sci-libs/scipy ) sphinx? ( dev-python/sphinx ) doc? ( dev-python/sphinx ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
>=dev-python/PyQt4-4.4[webkit] ipython? ( dev-python/ipython ) matplotlib? ( dev-python/matplotlib ) numpy? ( dev-python/numpy ) pep8? ( dev-python/pep8 ) pyflakes? ( >=dev-python/pyflakes-0.3 ) pylint? ( dev-python/pylint ) rope? ( >=dev-python/rope-0.9.3 ) scipy? ( sci-libs/scipy ) sphinx? ( dev-python/sphinx ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
0
http://spyderlib.googlecode.com/files/spyder-2.1.2.zip
@ -8,7 +8,7 @@ MIT
Python IDE with matlab-like features
~amd64 ~x86
distutils eutils multilib portability python toolchain-funcs user
doc ipython matplotlib numpy +pyflakes pylint +rope scipy pep8
doc ipython matplotlib numpy pep8 +pyflakes pylint +rope scipy sphinx

@ -0,0 +1,22 @@
test? ( ruby_targets_ruby18? ( =dev-ruby/railties-3*[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( =dev-ruby/railties-3*[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
ruby_targets_ruby18? ( =dev-ruby/railties-3*[ruby_targets_ruby18] >=dev-ruby/thor-0.14[ruby_targets_ruby18] ) ruby_targets_ree18? ( =dev-ruby/railties-3*[ruby_targets_ree18] >=dev-ruby/thor-0.14[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
0
mirror://rubygems/jquery-rails-1.0.18.gem
http://www.rubyonrails.org
MIT
jQuery! For Rails! So great.
~amd64
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test
2
compile configure install prepare setup test unpack

@ -1,7 +1,7 @@
>=dev-libs/libpcre-3.4 dev-lang/perl berkdb? ( >=sys-libs/db-3.2 ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r1 ) ) ldap? ( net-nds/openldap ) ldap-bind? ( net-nds/openldap[sasl] ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-0.9.6g ) ssl? ( dev-libs/openssl )
>=dev-libs/libpcre-3.4 dev-lang/perl berkdb? ( >=sys-libs/db-3.2 ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r1 ) ) ldap? ( net-nds/openldap ) ldap-bind? ( net-nds/openldap[sasl] ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-0.9.6g ) dovecot-sasl? ( net-mail/dovecot ) net-mail/mailbase selinux? ( sec-policy/selinux-postfix ) !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/mini-qmail !mail-mta/msmtp[mta] !mail-mta/nbsmtp !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/qmail-ldap !mail-mta/sendmail !<mail-mta/ssmtp-2.64-r2 !>=mail-mta/ssmtp-2.64-r2[mta] !net-mail/fastforward
0
ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-2.9-20111120.tar.gz vda? ( http://vda.sourceforge.net/VDA/postfix-vda-v10-2.8.5.patch )
ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-2.9-20111121.tar.gz vda? ( http://vda.sourceforge.net/VDA/postfix-vda-v10-2.8.5.patch )
http://www.postfix.org/
IBM

@ -12,7 +12,7 @@ debug nls opengl
2
4
configure install postinst

@ -1,12 +1,12 @@
>=dev-libs/glib-2.25.9:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.11.15 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.4.4 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.1.15 <dev-libs/folks-0.3 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf:0.10 >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2:2 x11-libs/libX11 net-voip/telepathy-connection-managers >=net-im/telepathy-logger-0.1.5 <net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.25.9:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.11.15 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.4.4 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.1.15 <dev-libs/folks-0.3 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf:0.10 >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2:2 x11-libs/libX11 net-voip/telepathy-connection-managers >=net-im/telepathy-logger-0.1.5 <net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.25.9:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.11.15 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.4.4 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.1.15 <dev-libs/folks-0.3 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf:0.10 >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2:2 x11-libs/libX11 net-im/telepathy-connection-managers >=net-im/telepathy-logger-0.1.5 <net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.25.9:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.11.15 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.4.4 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.1.15 <dev-libs/folks-0.3 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf:0.10 >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2:2 x11-libs/libX11 net-im/telepathy-connection-managers >=net-im/telepathy-logger-0.1.5 <net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/empathy/2.32/empathy-2.32.2.tar.bz2
http://live.gnome.org/Empathy
GPL-2
Telepathy client and library using GTK+
alpha amd64 ~ia64 ppc ~sparc x86
alpha
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability python toolchain-funcs user versionator
eds nautilus networkmanager spell test webkit debug

@ -1,5 +1,5 @@
>=dev-libs/glib-2.27.2:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.14.1 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.7 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.4 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 >=media-libs/gstreamer-0.10.32:0.10 >=media-libs/gst-plugins-base-0.10.32:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2 x11-libs/libX11 net-voip/telepathy-connection-managers >=net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) map? ( >=media-libs/libchamplain-0.7.1:0.8[gtk] >=media-libs/clutter-gtk-0.10:0.10 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.27.2:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.14.1 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.7 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.4 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 >=media-libs/gstreamer-0.10.32:0.10 >=media-libs/gst-plugins-base-0.10.32:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2 x11-libs/libX11 net-voip/telepathy-connection-managers >=net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) map? ( >=media-libs/libchamplain-0.7.1:0.8[gtk] >=media-libs/clutter-gtk-0.10:0.10 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.27.2:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.14.1 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.7 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.4 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 >=media-libs/gstreamer-0.10.32:0.10 >=media-libs/gst-plugins-base-0.10.32:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2 x11-libs/libX11 net-im/telepathy-connection-managers >=net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) map? ( >=media-libs/libchamplain-0.7.1:0.8[gtk] >=media-libs/clutter-gtk-0.10:0.10 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.27.2:2 >=x11-libs/gtk+-2.22:2 >=dev-libs/dbus-glib-0.51 >=net-libs/telepathy-glib-0.14.1 >=media-libs/libcanberra-0.4[gtk] >=x11-libs/libnotify-0.7 >=gnome-base/gnome-keyring-2.26 >=net-libs/gnutls-2.8.5 >=dev-libs/folks-0.4 >=dev-libs/libunique-1.1.6:1 net-libs/farsight2 >=media-libs/gstreamer-0.10.32:0.10 >=media-libs/gst-plugins-base-0.10.32:0.10 media-libs/gst-plugins-bad media-plugins/gst-plugins-gconf >=net-libs/telepathy-farsight-0.0.14 dev-libs/libxml2 x11-libs/libX11 net-im/telepathy-connection-managers >=net-im/telepathy-logger-0.2.0 eds? ( >=gnome-extra/evolution-data-server-1.2 ) map? ( >=media-libs/libchamplain-0.7.1:0.8[gtk] >=media-libs/clutter-gtk-0.10:0.10 ) nautilus? ( >=gnome-extra/nautilus-sendto-2.31.7 ) networkmanager? ( >=net-misc/networkmanager-0.7 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) webkit? ( >=net-libs/webkit-gtk-1.1.15:2 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/empathy/2.34/empathy-2.34.0.tar.bz2

@ -1,22 +0,0 @@
>=dev-libs/glib-2.28:2 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.0.2:3 x11-libs/pango >=dev-libs/dbus-glib-0.51 >=dev-libs/folks-0.6.2 dev-libs/libgee:0 >=gnome-base/gnome-keyring-2.91.4-r300 >=media-libs/libcanberra-0.25[gtk3] media-sound/pulseaudio[glib] >=net-libs/gnutls-2.8.5 >=net-libs/telepathy-glib-0.16.0 >=net-libs/webkit-gtk-1.3.13:3 >=x11-libs/libnotify-0.7 dev-libs/libxml2:2 gnome-base/gsettings-desktop-schemas media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad >=net-im/telepathy-logger-0.2.8 net-libs/farsight2 >=net-libs/telepathy-farsight-0.0.14 net-voip/telepathy-connection-managers x11-libs/libX11 call? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/clutter-gst:1.0 net-libs/telepathy-farstream ) eds? ( >=gnome-extra/evolution-data-server-1.2 ) geoloc? ( >=app-misc/geoclue-0.11 ) gnome-online-accounts? ( net-libs/gnome-online-accounts ) map? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/libchamplain:0.12[gtk] ) networkmanager? ( >=net-misc/networkmanager-0.7 ) sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) v4l? ( || ( sys-fs/udev[gudev] sys-fs/udev[extras] ) media-plugins/gst-plugins-v4l2:0.10 >=media-video/cheese-2.91.91.1 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 >=sys-devel/gettext-0.17 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt app-arch/xz-utils >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.28:2 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.0.2:3 x11-libs/pango >=dev-libs/dbus-glib-0.51 >=dev-libs/folks-0.6.2 dev-libs/libgee:0 >=gnome-base/gnome-keyring-2.91.4-r300 >=media-libs/libcanberra-0.25[gtk3] media-sound/pulseaudio[glib] >=net-libs/gnutls-2.8.5 >=net-libs/telepathy-glib-0.16.0 >=net-libs/webkit-gtk-1.3.13:3 >=x11-libs/libnotify-0.7 dev-libs/libxml2:2 gnome-base/gsettings-desktop-schemas media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad >=net-im/telepathy-logger-0.2.8 net-libs/farsight2 >=net-libs/telepathy-farsight-0.0.14 net-voip/telepathy-connection-managers x11-libs/libX11 call? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/clutter-gst:1.0 net-libs/telepathy-farstream ) eds? ( >=gnome-extra/evolution-data-server-1.2 ) geoloc? ( >=app-misc/geoclue-0.11 ) gnome-online-accounts? ( net-libs/gnome-online-accounts ) map? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/libchamplain:0.12[gtk] ) networkmanager? ( >=net-misc/networkmanager-0.7 ) sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) v4l? ( || ( sys-fs/udev[gudev] sys-fs/udev[extras] ) media-plugins/gst-plugins-v4l2:0.10 >=media-video/cheese-2.91.91.1 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/empathy/3.2/empathy-3.2.1.1.tar.xz
http://live.gnome.org/Empathy
GPL-2
Telepathy client and library using GTK+
~amd64 ~x86 ~x86-linux
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability python toolchain-funcs user versionator
call debug eds +map +geoloc gnome-online-accounts +networkmanager sendto spell test +v4l
>=net-im/telepathy-mission-control-5.7.6
4
compile configure install postinst postrm preinst prepare setup test unpack

@ -1,5 +1,5 @@
>=dev-libs/glib-2.28:2 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.0.2:3 x11-libs/pango >=dev-libs/dbus-glib-0.51 >=dev-libs/folks-0.6.2 dev-libs/libgee:0 >=gnome-base/gnome-keyring-2.91.4-r300 >=media-libs/libcanberra-0.25[gtk3] media-sound/pulseaudio[glib] >=net-libs/gnutls-2.8.5 >=net-libs/telepathy-glib-0.16.0 >=net-libs/webkit-gtk-1.3.13:3 >=x11-libs/libnotify-0.7 dev-libs/libxml2:2 gnome-base/gsettings-desktop-schemas media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad >=net-im/telepathy-logger-0.2.8 net-libs/farsight2 >=net-libs/telepathy-farsight-0.0.14 net-voip/telepathy-connection-managers x11-libs/libX11 call? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/clutter-gst:1.0 net-libs/telepathy-farstream ) eds? ( >=gnome-extra/evolution-data-server-1.2 ) geoloc? ( >=app-misc/geoclue-0.11 ) gnome-online-accounts? ( net-libs/gnome-online-accounts ) map? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/libchamplain:0.12[gtk] ) networkmanager? ( >=net-misc/networkmanager-0.7 ) sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) v4l? ( || ( sys-fs/udev[gudev] sys-fs/udev[extras] ) media-plugins/gst-plugins-v4l2:0.10 >=media-video/cheese-2.91.91.1 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 >=sys-devel/gettext-0.17 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt app-arch/xz-utils >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.28:2 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.0.2:3 x11-libs/pango >=dev-libs/dbus-glib-0.51 >=dev-libs/folks-0.6.2 dev-libs/libgee:0 >=gnome-base/gnome-keyring-2.91.4-r300 >=media-libs/libcanberra-0.25[gtk3] media-sound/pulseaudio[glib] >=net-libs/gnutls-2.8.5 >=net-libs/telepathy-glib-0.16.0 >=net-libs/webkit-gtk-1.3.13:3 >=x11-libs/libnotify-0.7 dev-libs/libxml2:2 gnome-base/gsettings-desktop-schemas media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad >=net-im/telepathy-logger-0.2.8 net-libs/farsight2 >=net-libs/telepathy-farsight-0.0.14 net-voip/telepathy-connection-managers x11-libs/libX11 call? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/clutter-gst:1.0 net-libs/telepathy-farstream ) eds? ( >=gnome-extra/evolution-data-server-1.2 ) geoloc? ( >=app-misc/geoclue-0.11 ) gnome-online-accounts? ( net-libs/gnome-online-accounts ) map? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/libchamplain:0.12[gtk] ) networkmanager? ( >=net-misc/networkmanager-0.7 ) sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) v4l? ( || ( sys-fs/udev[gudev] sys-fs/udev[extras] ) media-plugins/gst-plugins-v4l2:0.10 >=media-video/cheese-2.91.91.1 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.28:2 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.0.2:3 x11-libs/pango >=dev-libs/dbus-glib-0.51 >=dev-libs/folks-0.6.2 dev-libs/libgee:0 >=gnome-base/gnome-keyring-2.91.4-r300 >=media-libs/libcanberra-0.25[gtk3] media-sound/pulseaudio[glib] >=net-libs/gnutls-2.8.5 >=net-libs/telepathy-glib-0.16.0 >=net-libs/webkit-gtk-1.3.13:3 >=x11-libs/libnotify-0.7 dev-libs/libxml2:2 gnome-base/gsettings-desktop-schemas media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad >=net-im/telepathy-logger-0.2.8 net-libs/farsight2 >=net-libs/telepathy-farsight-0.0.14 net-im/telepathy-connection-managers x11-libs/libX11 call? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/clutter-gst:1.0 net-libs/telepathy-farstream ) eds? ( >=gnome-extra/evolution-data-server-1.2 ) geoloc? ( >=app-misc/geoclue-0.11 ) gnome-online-accounts? ( net-libs/gnome-online-accounts ) map? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/libchamplain:0.12[gtk] ) networkmanager? ( >=net-misc/networkmanager-0.7 ) sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) v4l? ( || ( sys-fs/udev[gudev] sys-fs/udev[extras] ) media-plugins/gst-plugins-v4l2:0.10 >=media-video/cheese-2.91.91.1 ) app-text/scrollkeeper >=app-text/gnome-doc-utils-0.17.3 >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.16 >=sys-devel/gettext-0.17 test? ( sys-apps/grep >=dev-libs/check-0.9.4 ) dev-libs/libxslt app-arch/xz-utils >=sys-apps/sed-4 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
>=dev-libs/glib-2.28:2 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.0.2:3 x11-libs/pango >=dev-libs/dbus-glib-0.51 >=dev-libs/folks-0.6.2 dev-libs/libgee:0 >=gnome-base/gnome-keyring-2.91.4-r300 >=media-libs/libcanberra-0.25[gtk3] media-sound/pulseaudio[glib] >=net-libs/gnutls-2.8.5 >=net-libs/telepathy-glib-0.16.0 >=net-libs/webkit-gtk-1.3.13:3 >=x11-libs/libnotify-0.7 dev-libs/libxml2:2 gnome-base/gsettings-desktop-schemas media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-bad >=net-im/telepathy-logger-0.2.8 net-libs/farsight2 >=net-libs/telepathy-farsight-0.0.14 net-im/telepathy-connection-managers x11-libs/libX11 call? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/clutter-gst:1.0 net-libs/telepathy-farstream ) eds? ( >=gnome-extra/evolution-data-server-1.2 ) geoloc? ( >=app-misc/geoclue-0.11 ) gnome-online-accounts? ( net-libs/gnome-online-accounts ) map? ( >=media-libs/clutter-1.7.14:1.0 >=media-libs/clutter-gtk-0.90.3:1.0 media-libs/libchamplain:0.12[gtk] ) networkmanager? ( >=net-misc/networkmanager-0.7 ) sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 ) spell? ( >=app-text/enchant-1.2 >=app-text/iso-codes-0.35 ) v4l? ( || ( sys-fs/udev[gudev] sys-fs/udev[extras] ) media-plugins/gst-plugins-v4l2:0.10 >=media-video/cheese-2.91.91.1 ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
0
mirror://gnome/sources/empathy/3.2/empathy-3.2.1.2.tar.xz

@ -1,22 +0,0 @@
>=net-dns/avahi-0.6[dbus,gtk3] >=dev-libs/glib-2.15.1 >=net-libs/gnutls-1.4 >=sys-libs/e2fsprogs-libs-1.36 >=x11-libs/gtk+-2.10:2 >=net-libs/libsoup-2.3:2.4 >=dev-util/pkgconfig-0.14 >=dev-util/intltool-0.35.0 doc? ( >=dev-util/gtk-doc-1.4 ) >=sys-apps/sed-4
>=net-dns/avahi-0.6[dbus,gtk3] >=dev-libs/glib-2.15.1 >=net-libs/gnutls-1.4 >=sys-libs/e2fsprogs-libs-1.36 >=x11-libs/gtk+-2.10:2 >=net-libs/libsoup-2.3:2.4
0
mirror://gnome/sources/libepc/0.4/libepc-0.4.0.tar.bz2
test
http://live.gnome.org/libepc/
LGPL-2
Easy Publish and Consume library for network discovered services
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
doc
4
compile configure install postinst postrm preinst prepare test unpack

@ -1,22 +0,0 @@
>=net-dns/avahi-0.6[dbus,gtk3] >=dev-libs/glib-2.15.1 >=net-libs/gnutls-1.4 >=sys-libs/e2fsprogs-libs-1.36 >=x11-libs/gtk+-3.0:3 >=net-libs/libsoup-2.3:2.4 >=dev-util/pkgconfig-0.14 >=dev-util/intltool-0.35.0 doc? ( >=dev-util/gtk-doc-1.4 ) app-arch/xz-utils >=sys-apps/sed-4
>=net-dns/avahi-0.6[dbus,gtk3] >=dev-libs/glib-2.15.1 >=net-libs/gnutls-1.4 >=sys-libs/e2fsprogs-libs-1.36 >=x11-libs/gtk+-3.0:3 >=net-libs/libsoup-2.3:2.4
0
mirror://gnome/sources/libepc/0.4/libepc-0.4.1.tar.xz
test
http://live.gnome.org/libepc/
LGPL-2
Easy Publish and Consume library for network discovered services
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
doc
4
compile configure install postinst postrm preinst prepare test unpack

@ -0,0 +1,22 @@
>=net-dns/avahi-0.6[dbus,gtk3] >=dev-libs/glib-2.15.1:2 >=net-libs/gnutls-1.4 >=sys-libs/e2fsprogs-libs-1.36 >=x11-libs/gtk+-3.0:3 >=net-libs/libsoup-2.3:2.4 >=dev-util/pkgconfig-0.14 >=dev-util/intltool-0.35.0 doc? ( >=dev-util/gtk-doc-1.4 ) app-arch/xz-utils >=sys-apps/sed-4
>=net-dns/avahi-0.6[dbus,gtk3] >=dev-libs/glib-2.15.1:2 >=net-libs/gnutls-1.4 >=sys-libs/e2fsprogs-libs-1.36 >=x11-libs/gtk+-3.0:3 >=net-libs/libsoup-2.3:2.4
0
mirror://gnome/sources/libepc/0.4/libepc-0.4.3.tar.xz
test
http://live.gnome.org/libepc/
LGPL-2
Easy Publish and Consume library for network discovered services
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
doc
4
compile configure install postinst postrm preinst prepare test unpack

@ -6,15 +6,15 @@ http://infa.abo.fi/~patrik/sn/files/sn-0.3.8.tar.bz2
http://infa.abo.fi/~patrik/sn/
GPL-2
Hassle-free Usenet news system for small sites
x86 ~ppc
multilib toolchain-funcs
~amd64 x86 ~ppc
eutils multilib portability toolchain-funcs user
4
compile install
compile install prepare

@ -1,22 +0,0 @@
msn? ( >=net-voip/telepathy-butterfly-0.5.0 ) jabber? ( >=net-voip/telepathy-gabble-0.8.0 ) sip? ( >=net-voip/telepathy-sofiasip-0.5.18 ) zeroconf? ( >=net-voip/telepathy-salut-0.3.10 ) icq? ( >=net-voip/telepathy-haze-0.3.2 ) yahoo? ( >=net-voip/telepathy-haze-0.3.2 ) irc? ( >=net-irc/telepathy-idle-0.1.5 )
0
http://telepathy.freedesktop.org/
as-is
Meta-package for Telepathy Connection Managers
alpha amd64 ia64 ppc sparc x86 ~x86-linux
msn irc yahoo icq jabber sip zeroconf
-

@ -6,7 +6,7 @@ mirror://gentoo/openrc-0.9.4.tar.bz2
http://www.gentoo.org/proj/en/base/openrc/
BSD-2
OpenRC manages the services, startup and shutdown of a host
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd
eutils flag-o-matic multilib pam portability toolchain-funcs user
debug elibc_glibc ncurses pam selinux unicode kernel_linux kernel_FreeBSD

@ -1,4 +1,4 @@
dev-lang/perl >=sys-devel/make-3.79 >=sys-devel/flex-2.5.4 >=sys-devel/bison-1.875d || ( >=sys-devel/gcc-3.0 >=sys-devel/gcc-apple-4.2.1 ) || ( >=sys-devel/binutils-2.18 >=sys-devel/binutils-apple-3.2.3 ) libffi? ( dev-util/pkgconfig virtual/libffi ) ocaml? ( dev-lang/ocaml ) udis86? ( amd64? ( dev-libs/udis86[pic] ) !amd64? ( dev-libs/udis86 ) )
dev-lang/perl >=sys-devel/make-3.79 >=sys-devel/flex-2.5.4 >=sys-devel/bison-1.875d || ( >=sys-devel/gcc-3.0 >=sys-devel/gcc-apple-4.2.1 ) || ( >=sys-devel/binutils-2.18 >=sys-devel/binutils-apple-3.2.3 ) gold? ( >=sys-devel/binutils-2.22 ) libffi? ( dev-util/pkgconfig virtual/libffi ) ocaml? ( dev-lang/ocaml ) udis86? ( amd64? ( dev-libs/udis86[pic] ) !amd64? ( dev-libs/udis86 ) )
dev-lang/perl libffi? ( virtual/libffi ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
0
http://llvm.org/pre-releases/3.0/rc3/llvm-3.0rc3.src.tar.gz
@ -8,7 +8,7 @@ UoI-NCSA
Low Level Virtual Machine
~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos
eutils flag-o-matic multilib portability toolchain-funcs user
debug +libffi multitarget ocaml test udis86 vim-syntax
debug gold +libffi multitarget ocaml test udis86 vim-syntax

@ -1,22 +0,0 @@
dev-libs/libgcrypt virtual/os-headers || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
dev-libs/libgcrypt
0
mirror://gnu/freeipmi/freeipmi-1.0.7.tar.gz http://ftp.gluster.com/pub/freeipmi/1.0.7/freeipmi-1.0.7.tar.gz
http://www.gnu.org/software/freeipmi/
GPL-3
Provides Remote-Console and System Management Software as per IPMI v1.5/2.0
~amd64 ~x86
autotools eutils libtool multilib portability toolchain-funcs user
debug
4
configure install prepare test

@ -1,7 +1,7 @@
dev-libs/libgcrypt virtual/os-headers || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
dev-libs/libgcrypt sys-apps/openrc
0
mirror://gnu/freeipmi/freeipmi-1.0.7.tar.gz http://ftp.gluster.com/pub/freeipmi/1.0.7/freeipmi-1.0.7.tar.gz
mirror://gnu/freeipmi/freeipmi-1.0.9.tar.gz http://ftp.gluster.com/pub/freeipmi/1.0.9/freeipmi-1.0.9.tar.gz
http://www.gnu.org/software/freeipmi/
GPL-3

@ -1 +1 @@
Tue, 22 Nov 2011 01:06:44 +0000
Tue, 22 Nov 2011 14:06:43 +0000

@ -1 +1 @@
Tue, 22 Nov 2011 01:06:44 +0000
Tue, 22 Nov 2011 14:06:43 +0000

@ -1 +1 @@
Tue, 22 Nov 2011 01:06:45 +0000
Tue, 22 Nov 2011 14:06:45 +0000

@ -1 +1 @@
Tue Nov 22 01:06:44 UTC 2011
Tue Nov 22 14:06:43 UTC 2011

@ -1 +1 @@
Tue, 22 Nov 2011 01:30:01 +0000
Tue, 22 Nov 2011 14:30:01 +0000

@ -1 +1 @@
1321923901 Tue Nov 22 01:05:01 2011 UTC
1321970701 Tue Nov 22 14:05:01 2011 UTC

@ -1,4 +1,3 @@
DIST empathy-2.32.2.tar.bz2 2936340 RMD160 36d42e08343e49c1963405caeb35e76400bab209 SHA1 b956af129aaecc54491c7bc01892bb29c33c1d32 SHA256 f90a45955205fd8bd783a55acae4603197caab4f16a880106f8639cbbbe5e861
DIST empathy-2.34.0.tar.bz2 3361496 RMD160 a76e9633d88dbd48c5d494d3393566a88a5b35c4 SHA1 cc82c871fb1d3dbc428b851c59ad44184f064d10 SHA256 6efa0ae3ac3580ac9600f889c92497f36983e22da79d547a65030a14691369d1
DIST empathy-3.2.1.1.tar.xz 3195440 RMD160 20af11b464744e9fc16d10f38fb2a4aa6639ddd6 SHA1 2d6cc3a8864ea7a276c36e493700fb68a73d0d43 SHA256 2b4ce3184fcd8c2260654f925e4055a7e02513c5eefa4745bcdf82c9039b7681
DIST empathy-3.2.1.2.tar.xz 3183768 RMD160 f3f5b7cfb852a1f82d6a6e3b2a62aba95ac1042f SHA1 6bf4e0d0c3fcfb8c62269ad324b21c6a15f2dab1 SHA256 44e149ecadce6269a6d31d93bbd7d4a4bda8d092d4e95de9d5ca09cf067d8ab7

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-2.32.2.ebuild,v 1.14 2011/03/22 19:40:56 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-2.32.2.ebuild,v 1.15 2011/11/22 01:01:42 pacho Exp $
EAPI="3"
GCONF_DEBUG="yes"
@ -13,7 +13,7 @@ HOMEPAGE="http://live.gnome.org/Empathy"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~ia64 ppc ~sparc x86"
KEYWORDS="alpha"
# FIXME: Add location support once geoclue stops being idiotic with automagic deps
IUSE="eds nautilus networkmanager spell test webkit" # map
@ -40,7 +40,7 @@ RDEPEND=">=dev-libs/glib-2.25.9:2
>=net-libs/telepathy-farsight-0.0.14
dev-libs/libxml2:2
x11-libs/libX11
net-voip/telepathy-connection-managers
net-im/telepathy-connection-managers
>=net-im/telepathy-logger-0.1.5
<net-im/telepathy-logger-0.2.0
@ -104,6 +104,6 @@ src_test() {
pkg_postinst() {
gnome2_pkg_postinst
elog "Empathy needs telepathy's connection managers to use any IM protocol."
elog "See the USE flags on net-voip/telepathy-connection-managers"
elog "See the USE flags on net-im/telepathy-connection-managers"
elog "to install them."
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-2.34.0-r2.ebuild,v 1.4 2011/11/06 13:00:29 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-2.34.0-r2.ebuild,v 1.5 2011/11/22 01:01:42 pacho Exp $
EAPI="4"
GCONF_DEBUG="yes"
@ -41,7 +41,7 @@ RDEPEND=">=dev-libs/glib-2.27.2:2
>=net-libs/telepathy-farsight-0.0.14
dev-libs/libxml2
x11-libs/libX11
net-voip/telepathy-connection-managers
net-im/telepathy-connection-managers
>=net-im/telepathy-logger-0.2.0
eds? ( >=gnome-extra/evolution-data-server-1.2 )
@ -115,6 +115,6 @@ src_test() {
pkg_postinst() {
gnome2_pkg_postinst
elog "Empathy needs telepathy's connection managers to use any IM protocol."
elog "See the USE flags on net-voip/telepathy-connection-managers"
elog "See the USE flags on net-im/telepathy-connection-managers"
elog "to install them."
}

@ -1,120 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-3.2.1.1.ebuild,v 1.1 2011/11/04 05:12:33 tetromino Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_DEPEND="2:2.4"
inherit gnome2 python
DESCRIPTION="Telepathy client and library using GTK+"
HOMEPAGE="http://live.gnome.org/Empathy"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-linux"
IUSE="call debug eds +map +geoloc gnome-online-accounts +networkmanager sendto spell test +v4l"
# FIXME: gst-plugins-bad is required for the valve plugin. This should move to good
# eventually at which point the dep can be dropped
# libgee extensively used in libempathy
# gdk-pixbuf and pango extensively used in libempathy-gtk
RDEPEND=">=dev-libs/glib-2.28:2
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-3.0.2:3
x11-libs/pango
>=dev-libs/dbus-glib-0.51
>=dev-libs/folks-0.6.2
dev-libs/libgee:0
>=gnome-base/gnome-keyring-2.91.4-r300
>=media-libs/libcanberra-0.25[gtk3]
media-sound/pulseaudio[glib]
>=net-libs/gnutls-2.8.5
>=net-libs/telepathy-glib-0.16.0
>=net-libs/webkit-gtk-1.3.13:3
>=x11-libs/libnotify-0.7
dev-libs/libxml2:2
gnome-base/gsettings-desktop-schemas
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10
media-libs/gst-plugins-bad
>=net-im/telepathy-logger-0.2.8
net-libs/farsight2
>=net-libs/telepathy-farsight-0.0.14
net-voip/telepathy-connection-managers
x11-libs/libX11
call? (
>=media-libs/clutter-1.7.14:1.0
>=media-libs/clutter-gtk-0.90.3:1.0
media-libs/clutter-gst:1.0
net-libs/telepathy-farstream )
eds? ( >=gnome-extra/evolution-data-server-1.2 )
geoloc? ( >=app-misc/geoclue-0.11 )
gnome-online-accounts? ( net-libs/gnome-online-accounts )
map? (
>=media-libs/clutter-1.7.14:1.0
>=media-libs/clutter-gtk-0.90.3:1.0
media-libs/libchamplain:0.12[gtk] )
networkmanager? ( >=net-misc/networkmanager-0.7 )
sendto? ( >=gnome-extra/nautilus-sendto-2.90.0 )
spell? (
>=app-text/enchant-1.2
>=app-text/iso-codes-0.35 )
v4l? (
|| ( sys-fs/udev[gudev] sys-fs/udev[extras] )
media-plugins/gst-plugins-v4l2:0.10
>=media-video/cheese-2.91.91.1 )
"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.17.3
>=dev-util/intltool-0.35.0
>=dev-util/pkgconfig-0.16
>=sys-devel/gettext-0.17
test? (
sys-apps/grep
>=dev-libs/check-0.9.4 )
dev-libs/libxslt
"
PDEPEND=">=net-im/telepathy-mission-control-5.7.6"
pkg_setup() {
DOCS="CONTRIBUTORS AUTHORS ChangeLog NEWS README"
G2CONF="${G2CONF}
--disable-coding-style-checks
--disable-schemas-compile
--disable-static
--disable-meego
--disable-Werror
$(use_enable call)
$(use_enable debug)
$(use_with eds)
$(use_enable geoloc location)
$(use_enable gnome-online-accounts goa)
$(use_enable map)
$(use_with networkmanager connectivity nm)
$(use_enable sendto nautilus-sendto)
$(use_enable spell)
$(use_with v4l cheese)
$(use_enable v4l gudev)"
# Build time python tools need python2
python_set_active_version 2
python_pkg_setup
}
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
emake check
}
pkg_postinst() {
gnome2_pkg_postinst
elog "Empathy needs telepathy's connection managers to use any IM protocol."
elog "See the USE flags on net-voip/telepathy-connection-managers"
elog "to install them."
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-3.2.1.2.ebuild,v 1.1 2011/11/13 19:29:25 eva Exp $
# $Header: /var/cvsroot/gentoo-x86/net-im/empathy/empathy-3.2.1.2.ebuild,v 1.2 2011/11/22 01:01:42 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -44,7 +44,7 @@ RDEPEND=">=dev-libs/glib-2.28:2
>=net-im/telepathy-logger-0.2.8
net-libs/farsight2
>=net-libs/telepathy-farsight-0.0.14
net-voip/telepathy-connection-managers
net-im/telepathy-connection-managers
x11-libs/libX11
call? (
@ -115,6 +115,6 @@ src_test() {
pkg_postinst() {
gnome2_pkg_postinst
elog "Empathy needs telepathy's connection managers to use any IM protocol."
elog "See the USE flags on net-voip/telepathy-connection-managers"
elog "See the USE flags on net-im/telepathy-connection-managers"
elog "to install them."
}

@ -1,3 +1,2 @@
DIST libepc-0.4.0.tar.bz2 441692 RMD160 d7fdf4580f731142a608fb3630cf2927fdda705d SHA1 bb61763e0138ac7b85b3d3c3029f5b2c0ab94d10 SHA256 2b0e3696ae3d50bc6d07d482520ef455eb9b42a96c4228081de757ef813edb6c
DIST libepc-0.4.1.tar.xz 374932 RMD160 7df85c4effdfb216a8a1ee256c2e161649e5522b SHA1 23f42e956ce12750d7954e222a168c3a8fbbc4af SHA256 1377defd339122a5ef71509d3b761810c58f178985d655b74bc34760ef4ae49e
DIST libepc-0.4.2.tar.xz 375176 RMD160 d3ff2f4a831b41a7d01870b01e982fa3011032a0 SHA1 af6fb5bdeaec36c950b3705923139791d5458e2d SHA256 3dff25a7f2f0d024b7609389f13664789b0ab45a0e5740908395e3d49cceefc2
DIST libepc-0.4.3.tar.xz 375196 RMD160 c40c2e523a7d8d71f319b82035008dc11c68cab2 SHA1 4c588d34c0e74f254dc91f9749b5c5ddef645920 SHA256 57303bc180ef1447e060a64590fd359365390e14a90dddc8b8af8d3a6551e454

@ -1,39 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libepc/libepc-0.4.0.ebuild,v 1.1 2011/08/16 22:29:17 nirbheek Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
GNOME_TARBALL_SUFFIX="bz2"
inherit gnome2
DESCRIPTION="Easy Publish and Consume library for network discovered services"
HOMEPAGE="http://live.gnome.org/libepc/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=">=net-dns/avahi-0.6[dbus,gtk3]
>=dev-libs/glib-2.15.1
>=net-libs/gnutls-1.4
>=sys-libs/e2fsprogs-libs-1.36
>=x11-libs/gtk+-2.10:2
>=net-libs/libsoup-2.3:2.4"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.14
>=dev-util/intltool-0.35.0
doc? ( >=dev-util/gtk-doc-1.4 )"
DOCS="AUTHORS ChangeLog NEWS README"
# FIXME: 2 out of 16 tests fail, upstream bug #578792
RESTRICT="test"
src_test() {
unset DBUS_SYSTEM_BUS_ADDRESS
emake check || die "emake check failed"
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libepc/libepc-0.4.1.ebuild,v 1.1 2011/10/09 22:41:00 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/net-libs/libepc/libepc-0.4.3.ebuild,v 1.1 2011/11/22 13:21:38 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=">=net-dns/avahi-0.6[dbus,gtk3]
>=dev-libs/glib-2.15.1
>=dev-libs/glib-2.15.1:2
>=net-libs/gnutls-1.4
>=sys-libs/e2fsprogs-libs-1.36
>=x11-libs/gtk+-3.0:3
@ -34,5 +34,5 @@ RESTRICT="test"
src_test() {
unset DBUS_SYSTEM_BUS_ADDRESS
emake check || die "emake check failed"
emake check
}

@ -0,0 +1,56 @@
--- sn-0.3.8/Makefile.orig
+++ sn-0.3.8/Makefile
@@ -94,39 +94,39 @@
ar rc $@ $^
ranlib $@
-snsplit: snsplit.o sn.a
+snsplit: snsplit.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snscan: snscan.o sn.a
+snscan: snscan.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS) $(ZLIB)
sncat: snscan
ln -s snscan sncat
sncancel: snscan
ln -s snscan sncancel
-snprimedb: snprimedb.o sn.a
+snprimedb: snprimedb.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-sndumpdb: sndumpdb.o sn.a
+sndumpdb: sndumpdb.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snntpd: snntpd.o post.o commands.o list.o sn.a
+snntpd: snntpd.o post.o commands.o list.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS) $(ZLIB)
-snsend: snsend.o sn.a
+snsend: snsend.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS) $(ZLIB)
snstore: snsend
ln -s snsend snstore
-snfetch: snfetch.o sn.a
+snfetch: snfetch.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snexpire: snexpire.o sn.a
+snexpire: snexpire.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snmail: snmail.o sn.a
+snmail: snmail.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snget: snget.o get.o sn.a
+snget: snget.o get.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-sngetd: sngetd.o get.o sn.a
+sngetd: sngetd.o get.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snnewgroup: snnewgroup.o sn.a
+snnewgroup: snnewgroup.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-sndelgroup: sndelgroup.o sn.a
+sndelgroup: sndelgroup.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
-snlockf: snlockf.o
+snlockf: snlockf.o sn.a lib/libstuff.a
$(LD) `cat cc-flags` $^ -o $@ $(LIBS)
%: %.in sed-cmd

@ -0,0 +1,21 @@
--- lib/readln.c
+++ lib/readln.c
@@ -9,6 +9,7 @@
* Get a single line from an fd.
*/
+#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
--- lib/cmdopen.c
+++ lib/cmdopen.c
@@ -6,6 +6,7 @@
*/
#include <unistd.h>
+#include <stdlib.h>
#include <fcntl.h>
#include <sys/wait.h>

@ -1,14 +1,16 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/sn/sn-0.3.8.ebuild,v 1.3 2009/09/23 19:45:43 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/net-nntp/sn/sn-0.3.8.ebuild,v 1.4 2011/11/22 01:39:53 radhermit Exp $
inherit toolchain-funcs
EAPI=4
inherit toolchain-funcs eutils
DESCRIPTION="Hassle-free Usenet news system for small sites"
SRC_URI="http://infa.abo.fi/~patrik/sn/files/${P}.tar.bz2"
HOMEPAGE="http://infa.abo.fi/~patrik/sn/"
KEYWORDS="x86 ~ppc"
KEYWORDS="~amd64 x86 ~ppc"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
@ -17,26 +19,30 @@ RDEPEND="sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_prepare() {
epatch "${FILESDIR}"/${P}-qa.patch
epatch "${FILESDIR}"/${P}-parallel-make.patch
sed -i -e 's/-g -Wall -pedantic -O/-Wall -pedantic/' Makefile || die
}
src_compile() {
make cc-flags || die "make cc-flags failed"
emake cc-flags
echo ${CFLAGS} >>cc-flags
emake -j1 \
CC="$(tc-getCC)" LD="$(tc-getCC)" \
emake CC="$(tc-getCC)" LD="$(tc-getCC) ${LDFLAGS}" \
SNROOT=/var/spool/news \
BINDIR=/usr/sbin \
MANDIR=/usr/share/man \
|| die "emake failed"
MANDIR=/usr/share/man
}
src_install() {
dodir /var/spool/news /usr/sbin /usr/share/man/man8
mknod -m 600 "${D}"/var/spool/news/.fifo p
make install \
emake install \
SNROOT="${D}"/var/spool/news \
BINDIR="${D}"/usr/sbin \
MANDIR="${D}"/usr/share/man \
|| die "make install failed"
dodoc CHANGES FAQ INSTALL* INTERNALS README* THANKS TODO || die "dodoc failed"
MANDIR="${D}"/usr/share/man
dodoc CHANGES FAQ INSTALL* INTERNALS README* THANKS TODO
fowners news:news /var/spool/news{,/.fifo}
}

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>gnome</herd>
<herd>voip</herd>
<herd>net-im</herd>
<use>
<flag name='zeroconf'>Enable Link-Local Messaging via the zeroconf or Bonjour protocol.</flag>
<flag name='sip'>Enable SIP/SIMPLE messaging and calling.</flag>
<flag name='irc'>Enable Internet Relay Chat (IRC) support.</flag>
<flag name='yahoo'>Enable Yahoo! messaging support.</flag>
<flag name='jabber'>Enable XMPP protocol handler (this is also Google Talk).</flag>
</use>
</pkgmetadata>

@ -1,25 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-connection-managers/telepathy-connection-managers-1.ebuild,v 1.12 2011/08/06 10:03:28 zmedico Exp $
DESCRIPTION="Meta-package for Telepathy Connection Managers"
HOMEPAGE="http://telepathy.freedesktop.org/"
SRC_URI=""
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-linux"
IUSE="msn irc yahoo icq jabber sip zeroconf"
DEPEND=""
# These version support the 0.18.0 Telepathy specification
# They work with Mission Control 5.2
RDEPEND="msn? ( >=net-voip/telepathy-butterfly-0.5.0 )
jabber? ( >=net-voip/telepathy-gabble-0.8.0 )
sip? ( >=net-voip/telepathy-sofiasip-0.5.18 )
zeroconf? ( >=net-voip/telepathy-salut-0.3.10 )
icq? ( >=net-voip/telepathy-haze-0.3.2 )
yahoo? ( >=net-voip/telepathy-haze-0.3.2 )
irc? ( >=net-irc/telepathy-idle-0.1.5 )"

@ -13,3 +13,4 @@ slotmove =dev-java/icedtea-bin-1* 0 6
move app-text/notmuch net-mail/notmuch
move dev-util/gtest dev-cpp/gtest
move net-misc/get-flash-videos media-video/get_flash_videos
move net-voip/telepathy-connection-managers net-im/telepathy-connection-managers

@ -1418,8 +1418,9 @@ dev-python/spyder:numpy - Add support for dev-python/numpy
dev-python/spyder:pep8 - Add support for dev-python/pep8
dev-python/spyder:pyflakes - Add support for dev-python/pyflakes
dev-python/spyder:pylint - Add support for dev-python/pylint
dev-python/spyder:rope - Add support for sci-libs/rope
dev-python/spyder:rope - Add support for dev-python/rope
dev-python/spyder:scipy - Add support for sci-libs/scipy
dev-python/spyder:sphinx - Add support for dev-python/sphinx
dev-python/sympy:imaging - Add support for dev-python/imaging
dev-python/sympy:ipython - Add support for dev-python/ipython
dev-python/sympy:mathml - Add support for mathml
@ -4130,11 +4131,6 @@ net-voip/ekiga:static - Statically link to opal and ptlib
net-voip/ekiga:xcap - Enable XML Configuration Access Protocal
net-voip/linphone:video - Enable video support (display/capture)
net-voip/sflphone:iax - Support for IAX (Inter Asterisk eXchange)
net-voip/telepathy-connection-managers:irc - Enable Internet Relay Chat (IRC) support.
net-voip/telepathy-connection-managers:jabber - Enable XMPP protocol handler (this is also Google Talk).
net-voip/telepathy-connection-managers:sip - Enable SIP/SIMPLE messaging and calling.
net-voip/telepathy-connection-managers:yahoo - Enable Yahoo! messaging support.
net-voip/telepathy-connection-managers:zeroconf - Enable Link-Local Messaging via the zeroconf or Bonjour protocol.
net-voip/yate:h323 - Build H.323 Channel plugin
net-voip/yate:ilbc - Build ILBC codec plugin
net-voip/yate:sctp - Support for Stream Control Transmission Protocol
@ -4660,6 +4656,7 @@ sys-devel/gdb:multitarget - Support all known targets in one gdb binary
sys-devel/gettext:git - When running `autopoint`, use git to store the internal development files; this requires git at runtime, but will be faster/smaller than raw archives
sys-devel/kgcc64:multislot - Allow for SLOTs to include minor version (eg. 3.3.4 instead of just 3.3)
sys-devel/libperl:ithreads - Enable Perl threads, has some compatibility problems
sys-devel/llvm:gold - Build the gold linker plugin
sys-devel/llvm:llvm-gcc - Build LLVM with sys-devel/llvm-gcc
sys-devel/llvm:multitarget - Build all host targets (default: host only)
sys-devel/llvm:udis86 - Enable support for dev-libs/udis86 disassembler library

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.9.4.ebuild,v 1.4 2011/11/21 22:37:21 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.9.4.ebuild,v 1.5 2011/11/22 09:20:51 xarthisius Exp $
EAPI=4
@ -13,7 +13,7 @@ DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
HOMEPAGE="http://www.gentoo.org/proj/en/base/openrc/"
if [[ ${PV} != "9999" ]] ; then
SRC_URI="mirror://gentoo/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
fi
LICENSE="BSD-2"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.0_rc3.ebuild,v 1.1 2011/11/09 22:54:04 voyageur Exp $
# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.0_rc3.ebuild,v 1.2 2011/11/22 13:42:23 voyageur Exp $
EAPI="3"
inherit eutils flag-o-matic multilib toolchain-funcs
@ -12,7 +12,7 @@ SRC_URI="http://llvm.org/pre-releases/${PV/_rc*}/${PV/3.0_}/${P/_}.src.tar.gz"
LICENSE="UoI-NCSA"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug +libffi multitarget ocaml test udis86 vim-syntax"
IUSE="debug gold +libffi multitarget ocaml test udis86 vim-syntax"
DEPEND="dev-lang/perl
>=sys-devel/make-3.79
@ -20,6 +20,7 @@ DEPEND="dev-lang/perl
>=sys-devel/bison-1.875d
|| ( >=sys-devel/gcc-3.0 >=sys-devel/gcc-apple-4.2.1 )
|| ( >=sys-devel/binutils-2.18 >=sys-devel/binutils-apple-3.2.3 )
gold? ( >=sys-devel/binutils-2.22 )
libffi? ( dev-util/pkgconfig
virtual/libffi )
ocaml? ( dev-lang/ocaml )
@ -80,6 +81,10 @@ src_prepare() {
sed -e 's,\$(RPATH) -Wl\,\$(\(ToolDir\|LibDir\)),$(RPATH) -Wl\,'"${EPREFIX}"/usr/$(get_libdir)/${PN}, \
-e '/OmitFramePointer/s/-fomit-frame-pointer//' \
-i Makefile.rules || die "rpath sed failed"
if use gold; then
sed -e 's,\$(SharedLibDir),'"${EPREFIX}"/usr/$(get_libdir)/${PN}, \
-i tools/gold/Makefile || die "gold rpath sed failed"
fi
epatch "${FILESDIR}"/${PN}-2.6-commandguide-nops.patch
epatch "${FILESDIR}"/${PN}-2.9-nodoctargz.patch
@ -102,6 +107,9 @@ src_configure() {
CONF_FLAGS="${CONF_FLAGS} --enable-pic"
fi
if use gold; then
CONF_FLAGS="${CONF_FLAGS} --with-binutils-include=${EPREFIX}/usr/include/"
fi
if use ocaml; then
CONF_FLAGS="${CONF_FLAGS} --enable-bindings=ocaml"
else

@ -11,6 +11,7 @@
3. A compiler infrastructure - LLVM is also a collection of source code that implements the language and compilation strategy. The primary components of the LLVM infrastructure are a GCC-based C and C++ front-end, a link-time optimization framework with a growing set of global and interprocedural analyses and transformations, static back-ends for many popular (and some obscure) architectures, a back-end which emits portable C code, and a Just-In-Time compilers for several architectures.
4. LLVM does not imply things that you would expect from a high-level virtual machine. It does not require garbage collection or run-time code generation (In fact, LLVM makes a great static compiler!). Note that optional LLVM components can be used to build high-level virtual machines and other systems that need these services.</longdescription>
<use>
<flag name='gold'>Build the gold linker plugin</flag>
<flag name='llvm-gcc'>Build LLVM with <pkg>sys-devel/llvm-gcc</pkg></flag>
<flag name='multitarget'>Build all host targets (default: host only)</flag>
<flag name='udis86'>Enable support for <pkg>dev-libs/udis86</pkg> disassembler library</flag>

@ -1,3 +1,3 @@
DIST freeipmi-0.8.9.tar.gz 2775329 RMD160 01c9441596502f60b0c3336dae9db9ff3774a132 SHA1 d80fac5de458363f32c589baef12315a9a471b06 SHA256 8c1c18d83b74e2f657b7c6ccbc6be8eb2c0270d7c0424105bee34fdebe794ea0
DIST freeipmi-1.0.7.tar.gz 3188884 RMD160 78b3d3cc3bbf599ae9ea79a25bf2015a9d49ddee SHA1 ecdc56a947640a57667bc76370ee7a4ad9a473db SHA256 244129a0b4030c70ea56bd43269d95c8135976ecb779313183417ae5ca8d784c
DIST freeipmi-1.0.8.tar.gz 3191387 RMD160 5c224466b2ede8fd95468fa66e98e5dfcfe554e1 SHA1 33646700344a79d0a9e78fedbc6bffd61d357846 SHA256 f719e7ba64f8a716412631d811d1634c06feaf9f3abf938d5e2995ba66d42ada
DIST freeipmi-1.0.9.tar.gz 3191723 RMD160 a7561004d783edd670db2233a7da12d7e37fd3f7 SHA1 6037a9e6e13881be80ba926d145e97ec92828010 SHA256 a43b065fe600f398dd82914149e958531ee1e6208ac292de2cd41af722433d02

@ -1,31 +0,0 @@
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/files/bmc-watchdog.initd.2,v 1.1 2011/09/07 06:20:45 flameeyes Exp $
extra_commands="condrestart"
PIDFILE=/var/run/$SVCNAME.pid
start() {
rm -f $PIDFILE
ebegin "Starting $SVCNAME"
start-stop-daemon \
--start --exec /usr/sbin/$SVCNAME \
--pidfile $PIDFILE -- ${OPTIONS}
eend $?
}
stop() {
ebegin "Stopping $SVCNAME"
start-stop-daemon \
--stop \
--pidfile $PIDFILE
eend $?
rm -f $PIDFILE
}
condrestart() {
service_started && restart
}

@ -1,25 +0,0 @@
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/files/ipmidetectd.initd.2,v 1.1 2011/09/07 06:20:45 flameeyes Exp $
PIDFILE=/var/run/$SVCNAME.pid
start() {
rm -f $PIDFILE
ebegin "Starting $SVCNAME"
start-stop-daemon --background --make-pidfile \
--start --exec /usr/sbin/$SVCNAME \
--pidfile $PIDFILE
eend $?
}
stop() {
ebegin "Stopping $SVCNAME"
start-stop-daemon \
--stop \
--pidfile $PIDFILE
eend $?
rm -f $PIDFILE
}

@ -1,71 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/freeipmi-1.0.7.ebuild,v 1.1 2011/09/28 21:27:03 flameeyes Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="Provides Remote-Console and System Management Software as per IPMI v1.5/2.0"
HOMEPAGE="http://www.gnu.org/software/freeipmi/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz
http://ftp.gluster.com/pub/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="dev-libs/libgcrypt"
DEPEND="${RDEPEND}
virtual/os-headers"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.0.5-strictaliasing.patch
AT_M4DIR="config" eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
--disable-dependency-tracking \
--enable-fast-install \
--disable-static \
--disable-init-scripts \
--enable-logrotate-config \
--localstatedir=/var
}
# There are no tests
src_test() { :; }
src_install() {
emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install || die "emake install failed"
find "${D}" -name '*.la' -delete
# freeipmi by defaults install _all_ commands to /usr/sbin, but
# quite a few can be run remotely as standard user, so move them
# in /usr/bin afterwards.
dodir /usr/bin
for file in ipmi{detect,ping,power,console}; do
mv "${D}"/usr/{s,}bin/${file} || die
# The default install symlinks these commands to add a dash
# after the ipmi prefix; we repeat those after move for
# consistency.
rm "${D}"/usr/sbin/${file/ipmi/ipmi-}
dosym ${file} /usr/bin/${file/ipmi/ipmi-}
done
dodoc AUTHORS ChangeLog* DISCLAIMER* NEWS README* TODO doc/*.txt
keepdir \
/var/cache/ipmimonitoringsdrcache \
/var/lib/freeipmi \
/var/log/{freeipmi,ipmiconsole}
newinitd "${FILESDIR}"/ipmidetectd.initd.2 ipmidetectd
newinitd "${FILESDIR}"/bmc-watchdog.initd.2 bmc-watchdog
newconfd "${FILESDIR}"/bmc-watchdog.confd bmc-watchdog
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/freeipmi-1.0.7-r1.ebuild,v 1.1 2011/10/18 09:01:08 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/freeipmi-1.0.9.ebuild,v 1.1 2011/11/22 01:51:50 flameeyes Exp $
EAPI=4
Loading…
Cancel
Save