Sync with portage [Tue Nov 6 17:19:55 MSK 2012].

mhiretskiy
root 12 years ago
parent 4b739c73bf
commit 689534d20c

@ -1,11 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/puppet-2.7.18-r1.ebuild,v 1.1 2012/09/10 15:38:59 prometheanfire Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/puppet/puppet-2.7.18-r1.ebuild,v 1.2 2012/11/06 10:04:44 graaff Exp $
EAPI="4"
# ruby19: dev-ruby/ruby-ldap has no ruby19
#USE_RUBY="ruby18 ruby19 ree18"
USE_RUBY="ruby18"
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST="test"

@ -1,4 +1,2 @@
DIST layman-1.4.1.tar.gz 59960 SHA256 6dfa2a99b6ec4ee2f7a0a9f1e293dbb1bf2a52e408098aebd5031d93f8c4f248 SHA512 8473439b7a7b51af4a35f1229a272438696028451a217195ee1c412cab02a7bd68499c4515cfb5fabc7704bf8afea3eb8809738434dc5978c3d1de131a62ad13 WHIRLPOOL 6cf8da63764ceddd44131022c3014f0a6892b84c093f01794fba1311031e695fbbc4f96c6a7fce5fef461b849ec67d07df830575ae01f33da2fecc842d5bfc22
DIST layman-1.4.2.tar.gz 60655 SHA256 a10418aa33f4f849c190b5c15b37abac81058858be3cb107d084057cef56ccfd SHA512 b3e4c706873b594876dfe9664b6debd5e75332ea5016a4eb7a91dfdca116c217dba6fe9235ebfbed148e8f05bda44859a2c145ae59f4d45cf5e59fdb89a7370b WHIRLPOOL 05a0953555617f29213e920cf2449ecc281a23348255362701d32d1c6b46e5b770055c3e588a23d9e3344e6bcdcd126e876275599eb4b017b45ab8b07a98afc5
DIST layman-2.0.0_rc3.tar.gz 74440 SHA256 fcbf59924f2fa62ef16ace2b4d66f9677c57396209b9c41a3548486f8d7453ab SHA512 5e18565f208ca18fbf14a9e3c255f26bf6b806fd809108ca05e2f2ebf46b1bd2557f3bacdef78df802832a5868e5533feb24103e7fb2d997302a961b01582a0d WHIRLPOOL 1a52406fad2fc42f8b8fba8545b33898696e8a05f4166815cd0c143328ffdd0b22eff04115d6541e038d605ff2a896521773709a41d1dc610929701831d9e62f
DIST layman-2.0.0_rc4.tar.gz 81058 SHA256 b3a4a97c2c7abae0bf41968b373176cc2becbcfef18de33dda8a3fbef0d60eef SHA512 0726e2144008be087d340992f799899c2c7b2292c106d6214eb7194817ad319be3c292f7d81cd1b6756af367d3af8f4062f4f5d95c994804b55730028e2e198b WHIRLPOOL 6bf22e26ef509cfb026709423e93f3c3deb6b0c806ed637fbf61734ef6015035cf7ba4d05a93aa924b669244fe173378a61737fb15337035f5b32318ae049843

@ -1,88 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-1.4.1.ebuild,v 1.11 2012/03/10 23:34:58 dolsen Exp $
EAPI="2"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
PYTHON_USE_WITH="xml"
inherit eutils distutils
DESCRIPTION="Tool to manage Gentoo overlays."
HOMEPAGE="http://layman.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="bazaar cvs darcs git mercurial subversion test"
COMMON_DEPS="dev-lang/python"
DEPEND="${COMMON_DEPS}
test? ( dev-vcs/subversion )"
RDEPEND="${COMMON_DEPS}
bazaar? ( dev-vcs/bzr )
cvs? ( dev-vcs/cvs )
darcs? ( dev-vcs/darcs )
git? ( dev-vcs/git )
mercurial? ( dev-vcs/mercurial )
subversion? (
|| (
>=dev-vcs/subversion-1.5.4[webdav-neon]
>=dev-vcs/subversion-1.5.4[webdav-serf]
)
)"
RESTRICT_PYTHON_ABIS="2.4 3.*"
src_test() {
testing() {
for suite in layman/tests/{dtest,external}.py ; do
PYTHONPATH="." "$(PYTHON)" ${suite} \
|| die "test suite '${suite}' failed"
done
}
python_execute_function testing
}
src_install() {
distutils_src_install
dodir /etc/layman
cp etc/* "${D}"/etc/layman/
doman doc/layman.8
dohtml doc/layman.8.html
keepdir /var/lib/layman
}
pkg_postinst() {
distutils_pkg_postinst
einfo "You are now ready to add overlays into your system."
einfo
einfo " layman -L"
einfo
einfo "will display a list of available overlays."
einfo
elog "Select an overlay and add it using"
elog
elog " layman -a overlay-name"
elog
elog "If this is the very first overlay you add with layman,"
elog "you need to append the following statement to your"
elog "/etc/make.conf file:"
elog
elog " source /var/lib/layman/make.conf"
elog
elog "If you modify the 'storage' parameter in the layman"
elog "configuration file (/etc/layman/layman.cfg) you will"
elog "need to adapt the path given above to the new storage"
elog "directory."
elog
ewarn "Please add the 'source' statement to make.conf only AFTER "
ewarn "you added your first overlay. Otherwise portage will fail."
epause 5
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-1.4.2-r3.ebuild,v 1.8 2012/06/17 18:57:29 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-1.4.2-r3.ebuild,v 1.9 2012/11/06 07:17:09 dolsen Exp $
EAPI="2"
PYTHON_DEPEND="2:2.5"
@ -70,7 +70,6 @@ src_install() {
pkg_postinst() {
distutils_pkg_postinst
einfo "You are now ready to add overlays into your system."
einfo
einfo " layman -L"
@ -83,7 +82,12 @@ pkg_postinst() {
elog
elog "If this is the very first overlay you add with layman,"
elog "you need to append the following statement to your"
elog "/etc/make.conf file:"
# This relates to #441902 bug.
if [[ -e "${ROOT}"/etc/portage/make.conf ]] ; then
elog "/etc/portage/make.conf file:"
else
elog "/etc/make.conf file:"
fi
elog
elog " source /var/lib/layman/make.conf"
elog

@ -1,98 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/layman/layman-2.0.0_rc3.ebuild,v 1.3 2012/09/20 13:06:17 aballier Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
PYTHON_DEPEND="2:2.6"
RESTRICT_PYTHON_ABIS="2.4 3.*"
PYTHON_USE_WITH="xml"
inherit eutils distutils prefix
DESCRIPTION="Tool to manage Gentoo overlays"
HOMEPAGE="http://layman.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="bazaar cvs darcs git mercurial subversion test"
COMMON_DEPS="dev-lang/python"
DEPEND="${COMMON_DEPS}
test? ( dev-vcs/subversion )"
RDEPEND="${COMMON_DEPS}
bazaar? ( dev-vcs/bzr )
cvs? ( dev-vcs/cvs )
darcs? ( dev-vcs/darcs )
git? ( dev-vcs/git )
mercurial? ( dev-vcs/mercurial )
subversion? (
|| (
>=dev-vcs/subversion-1.5.4[webdav-neon]
>=dev-vcs/subversion-1.5.4[webdav-serf]
)
)"
src_prepare() {
eprefixify etc/layman.cfg layman/config.py
}
src_test() {
testing() {
for suite in layman/tests/{dtest,external}.py ; do
PYTHONPATH="." "$(PYTHON)" ${suite} \
|| die "test suite '${suite}' failed"
done
}
python_execute_function testing
}
src_install() {
distutils_src_install
insinto /etc/layman
doins etc/layman.cfg || die
doman doc/layman.8
dohtml doc/layman.8.html
keepdir /var/lib/layman
}
pkg_postinst() {
distutils_pkg_postinst
ewarn "The installed db file '%(storage)/overlays.xml'"
ewarn "has been renamed to '%(storage)/installed.xml'"
if [ -f "${EROOT}/var/lib/layman/overlays.xml" ]; then
mv "${EROOT}/var/lib/layman/overlays.xml" "${EROOT}/var/lib/layman/installed.xml"
einfo "${EROOT}/var/lib/layman/overlays.xml has been moved to ${EROOT}/var/lib/layman/installed.xml"
fi
einfo "You are now ready to add overlays into your system."
einfo
einfo " layman -L"
einfo
einfo "will display a list of available overlays."
einfo
elog "Select an overlay and add it using"
elog
elog " layman -a overlay-name"
elog
elog "If this is the very first overlay you add with layman,"
elog "you need to append the following statement to your"
elog "/etc/make.conf file:"
elog
elog " source /var/lib/layman/make.conf"
elog
elog "If you modify the 'storage' parameter in the layman"
elog "configuration file (/etc/layman/layman.cfg) you will"
elog "need to adapt the path given above to the new storage"
elog "directory."
elog
ewarn "Please add the 'source' statement to make.conf only AFTER "
ewarn "you added your first overlay. Otherwise portage will fail."
}

@ -1 +1,2 @@
DIST cb2bib-1.4.8.tar.gz 853163 SHA256 d4fec10ec626a4caea70a42f0ed0ef05daaad15ec23d01314f35c5e73f4d5070 SHA512 809d4ba43545db47cdea68accd5bf9c9fe6d887e9b4dc00a76acd4e8d36ccbd834b517e17a21768879280ca55433b15ba198379169508278ef12b35749328ac2 WHIRLPOOL 897f774d99d5ef21937a6a6e7213c1baa8d5d124b06a5bef24d49544cc4cefb0d4955d502a815180915410b9e98d375653e0904d81c007eed5b62b9db2875081
DIST cb2bib-1.4.9.tar.gz 853588 SHA256 a12e3f05df5f05e180bc1ff3af8cfcb2fc6142cd2ab7d452706e86a449e1b359 SHA512 95e990772ccb0d789f18dc8b54fc37e432a91e76a7cd6355aa0ddafca5f9cc4d468fc433a50f4006d3eaed35136e9535ae09123a7fd55fbb989fb64234a96308 WHIRLPOOL 65b6b80a689f45a78863450c27e20ec9e5f33a33d32e9fbf7ece370465b77983fcb05c690b962843c9232f5dc6c9bd4dc3fbc7a487573e13348b9b9b15b58de9

@ -0,0 +1,48 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/cb2bib/cb2bib-1.4.9.ebuild,v 1.1 2012/11/06 10:16:16 pesa Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="Tool for extracting unformatted bibliographic references"
HOMEPAGE="http://www.molspaces.com/cb2bib/"
SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
IUSE="debug +lzo +webkit"
DEPEND="
x11-libs/libX11
x11-libs/qt-core:4
x11-libs/qt-gui:4
lzo? ( dev-libs/lzo:2 )
webkit? ( x11-libs/qt-webkit:4 )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DC2B_USE_LZO=$(use lzo && echo ON || echo OFF)
-DC2B_USE_WEBKIT=$(use webkit && echo ON || echo OFF)
)
cmake-utils_src_configure
}
pkg_postinst() {
einfo
elog "For best functionality, emerge the following packages:"
elog " app-text/poppler[utils] - for data import from PDF files"
elog " app-text/dvipdfm - for data import from DVI files"
elog " app-text/bibutils - for data import from ISI, endnote format"
elog " media-fonts/jsmath - for displaying mathematical notation"
elog " media-libs/exiftool - for proper UTF-8 metadata writing in PDF"
elog " text strings"
elog " virtual/latex-base - to check for BibTeX file correctness and to get"
elog " nice printing through the shell script bib2pdf"
einfo
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/f2c/f2c-20060507.ebuild,v 1.8 2011/04/30 17:52:11 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/f2c/f2c-20060507.ebuild,v 1.9 2012/11/06 06:35:59 ulm Exp $
inherit eutils toolchain-funcs
@ -11,7 +11,7 @@ HOMEPAGE="http://www.netlib.org/f2c"
# thing.
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="as-is"
LICENSE="HPND"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/f2c/f2c-20100827.ebuild,v 1.2 2012/08/31 06:59:53 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/f2c/f2c-20100827.ebuild,v 1.3 2012/11/06 06:35:59 ulm Exp $
EAPI=4
@ -16,7 +16,7 @@ SRC_URI="
mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}.orig.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.debian.tar.gz"
LICENSE="as-is"
LICENSE="HPND"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="doc"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r1.ebuild,v 1.2 2012/08/30 09:14:37 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8-r1.ebuild,v 1.4 2012/11/06 08:04:59 pinkbyte Exp $
EAPI=4
@ -20,7 +20,7 @@ SRC_URI="
# GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
LICENSE="LGPL-2.1 GPL-2 MaxMind2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
IUSE="ipv6 perl-geoipupdate static-libs"
RDEPEND="
@ -36,6 +36,8 @@ src_prepare() {
sed -e "s:usr local share GeoIP:usr share GeoIP:" \
-e "s:usr local etc:etc:" \
-i apps/geoipupdate-pureperl.pl || die
sed -e 's|yahoo.com|98.139.183.24|g' \
-i test/country_test_name.txt test/region_test.txt || die
eautoreconf
}

@ -1,16 +1,18 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/libestr-0.1.4.ebuild,v 1.1 2012/09/17 20:15:33 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/libestr-0.1.4.ebuild,v 1.3 2012/11/06 07:13:18 pinkbyte Exp $
EAPI=4
inherit eutils
DESCRIPTION="Library for some string essentials"
HOMEPAGE="http://libestr.adiscon.com/"
SRC_URI="http://libestr.adiscon.com/files/download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~x86"
KEYWORDS="amd64 ~arm ~hppa ~x86"
IUSE="debug static-libs"
DEPEND=""
@ -20,7 +22,7 @@ src_configure() {
econf $(use_enable debug) $(use_enable static-libs static)
}
src_install() {
emake install DESTDIR="${D}"
find "${D}" -name "*.la" -delete || die
src_install() {
default
prune_libtool_files
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20110801-r2.ebuild,v 1.5 2012/10/16 14:21:42 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libf2c/libf2c-20110801-r2.ebuild,v 1.6 2012/11/06 06:33:37 ulm Exp $
EAPI=4
@ -10,7 +10,7 @@ DESCRIPTION="Library that converts FORTRAN to C source"
HOMEPAGE="http://www.netlib.org/f2c/"
SRC_URI="${HOMEPAGE}/${PN}.zip -> ${P}.zip"
LICENSE="as-is"
LICENSE="HPND"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="static-libs"

@ -1,11 +1,11 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cgkit/cgkit-2.0.0_alpha9-r1.ebuild,v 1.3 2012/06/14 18:49:09 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/cgkit/cgkit-2.0.0_alpha9-r1.ebuild,v 1.4 2012/11/06 07:44:44 idella4 Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit distutils
inherit distutils eutils
MY_P="${P/_/}"
@ -48,6 +48,10 @@ src_prepare() {
sed -e "s:INC_DIRS = \[\]:INC_DIRS = \['/usr/include'\]:" -i setup.py
sed -e "160s/as/as_/;168s/as/as_/" -i cgkit/flockofbirds.py
# Remove invalid test
rm -f unittests/test_pointcloud.py || die
epatch "${FILESDIR}"/${PN}-2.0.0-test.patch
}
src_compile() {

@ -0,0 +1,11 @@
diff -ur cgkit-2.0.0alpha9.orig/unittests/test_sequence.py cgkit-2.0.0alpha9/unittests/test_sequence.py
--- unittests/test_sequence.py 2009-08-15 19:37:35.000000000 +0800
+++ unittests/test_sequence.py 2012-11-07 06:58:07.024791790 +0800
@@ -594,6 +594,7 @@
("spam1_5.tif", "foo0006.tif")], list(ong))
+@unittest.skip("Seeks absent dep 3delight")
class TestSeqUtils(unittest.TestCase):
"""Test the sequence utilities.
"""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/coverage/coverage-3.5.3.ebuild,v 1.3 2012/11/05 22:33:51 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/coverage/coverage-3.5.3.ebuild,v 1.4 2012/11/06 10:57:49 ago Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
DEPEND="dev-python/setuptools"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.58.1.ebuild,v 1.3 2012/11/05 17:48:10 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.58.1.ebuild,v 1.4 2012/11/06 10:58:11 ago Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.logilab.org/pub/common/${P}.tar.gz mirror://pypi/${PN:0:1}/${
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="test"
# dev-python/unittest2 is not required with Python >=3.2.

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.1.ebuild,v 1.3 2012/11/06 01:18:51 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.1.ebuild,v 1.4 2012/11/06 10:58:40 ago Exp $
EAPI="3"
@ -24,7 +24,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
IUSE="cairo doc excel examples fltk gtk latex qt4 test tk wxwidgets"
SLOT="0"
KEYWORDS="~amd64 ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-freebsd ~x86-linux ~x86-macos"
KEYWORDS="amd64 ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
# Main license: matplotlib
# Some modules: BSD

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/netaddr/netaddr-0.7.10.ebuild,v 1.1 2012/09/22 18:49:38 maksbotan Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/netaddr/netaddr-0.7.10.ebuild,v 1.2 2012/11/06 10:54:47 ago Exp $
EAPI="4"
SUPPORT_PYTHON_ABIS="1"
@ -14,7 +14,7 @@ SRC_URI="mirror://github/drkjam/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 ~x86"
IUSE="cli"
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/oauthlib-0.3.0.ebuild,v 1.3 2012/08/27 16:02:36 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/oauthlib-0.3.0.ebuild,v 1.4 2012/11/06 10:55:03 ago Exp $
EAPI="4"
@ -20,7 +20,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
KEYWORDS="amd64 ~arm ~x86"
IUSE="test"
RDEPEND="dev-python/pycrypto"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/paver/paver-1.1.1.ebuild,v 1.1 2012/09/29 23:59:28 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/paver/paver-1.1.1.ebuild,v 1.2 2012/11/06 10:55:18 ago Exp $
EAPI="4"
PYTHON_DEPEND="2"
@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 ~x86"
IUSE="doc"
DEPEND="dev-python/setuptools"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/psutil-0.6.1.ebuild,v 1.1 2012/08/24 09:39:04 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/psutil-0.6.1.ebuild,v 1.2 2012/11/06 10:55:33 ago Exp $
EAPI="4"
PYTHON_DEPEND="*"
@ -16,7 +16,7 @@ SRC_URI="http://psutil.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 ~x86"
IUSE=""
# A broken test

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyalsa/pyalsa-1.0.26.ebuild,v 1.2 2012/11/05 22:25:39 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyalsa/pyalsa-1.0.26.ebuild,v 1.3 2012/11/06 10:55:53 ago Exp $
EAPI="2"
PYTHON_DEPEND="2"
@ -15,7 +15,7 @@ SRC_URI="mirror://alsaproject/pyalsa/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ppc64 ~sparc ~x86"
KEYWORDS="amd64 ppc ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="media-libs/alsa-lib"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/pyasn1-modules-0.0.4.ebuild,v 1.3 2012/11/05 22:35:15 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/pyasn1-modules-0.0.4.ebuild,v 1.4 2012/11/06 10:56:38 ago Exp $
EAPI="4"
SUPPORT_PYTHON_ABIS="1"
@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
RDEPEND="dev-python/pyasn1"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1/pyasn1-0.1.4.ebuild,v 1.3 2012/11/05 22:40:32 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1/pyasn1-0.1.4.ebuild,v 1.4 2012/11/06 10:56:16 ago Exp $
EAPI="4"
SUPPORT_PYTHON_ABIS="1"
@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="dev-python/setuptools"

@ -1,11 +1,11 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycairo/pycairo-1.10.0-r2.ebuild,v 1.10 2012/06/02 11:59:24 marienz Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycairo/pycairo-1.10.0-r2.ebuild,v 1.11 2012/11/06 06:10:40 idella4 Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6 3:3.1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 2.5 3.0 *-jython *-pypy-*"
RESTRICT_PYTHON_ABIS="2.5 3.0 *-jython"
inherit eutils python waf-utils
@ -71,7 +71,21 @@ src_test() {
}
python_execute_function -q -s test_installation
python_execute_py.test -P '${T}/tests/${PYTHON_ABI}${EPREFIX}$(python_get_sitedir)' -s
testing() {
# Need a variable for the pypy minor version and a variable to set 2 distinct pythonpaths
local pypy_v= PyPath= exit_status=0
pypy_v=$(python_get_version)
if [[ "${PYTHON_ABI:4:4}" == "pypy" ]]; then
PyPath=$(find "${T}"/tests/2.7-pypy-$pypy_v/ -name site-packages)
PYTHONPATH="${PyPath}" py.test-${PYTHON_ABI} "${WORKDIR}/${P}-${PYTHON_ABI}"/test || exit_status=1
else
PyPath="${T}/tests/${PYTHON_ABI}${EPREFIX}"$(python_get_sitedir)
PYTHONPATH="${PyPath}" py.test "${WORKDIR}/${P}-${PYTHON_ABI}"/test || exit_status=1
fi
return $exit_status
}
python_execute_function testing
}
src_install() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/pycups-1.9.62.ebuild,v 1.3 2012/11/05 22:36:56 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/pycups-1.9.62.ebuild,v 1.4 2012/11/06 10:57:01 ago Exp $
EAPI="3"
@ -13,7 +13,7 @@ HOMEPAGE="http://cyberelk.net/tim/data/pycups/"
SRC_URI="http://cyberelk.net/tim/data/pycups/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ppc ppc64 ~sh ~sparc ~x86"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sh ~sparc ~x86"
SLOT="0"
IUSE="doc examples"

@ -0,0 +1,39 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypgsql/pypgsql-2.5.1-r1.ebuild,v 1.1 2012/11/06 11:22:45 idella4 Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
inherit distutils
MY_P="pyPgSQL-${PV}"
DESCRIPTION="Python Interface to PostgreSQL"
HOMEPAGE="http://pypgsql.sourceforge.net/ http://pypi.python.org/pypi/pyPgSQL"
SRC_URI="mirror://sourceforge/pypgsql/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE=""
DEPEND="dev-db/postgresql-base"
RDEPEND="${DEPEND}
dev-python/egenix-mx-base"
S="${WORKDIR}/${MY_P}"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DOCS="Announce"
PYTHON_MODNAME="pyPgSQL"
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}
doins -r examples
}

@ -0,0 +1,63 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.3.2-r1.ebuild,v 1.1 2012/11/06 09:26:13 idella4 Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="py.test: simple powerful testing with Python"
HOMEPAGE="http://pytest.org/ http://pypi.python.org/pypi/pytest"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc"
RDEPEND=">=dev-python/py-1.4.7"
DEPEND="${RDEPEND}
app-arch/unzip
dev-python/setuptools"
DOCS="CHANGELOG README.txt"
PYTHON_MODNAME="pytest.py _pytest"
src_prepare() {
distutils_src_prepare
# Disable versioning of py.test script to avoid collision with versioning performed by distutils_src_install().
sed -e "s/return points/return {'py.test': target}/" -i setup.py || die "sed failed"
}
src_compile() {
distutils_src_compile
dodocs() {
if [[ "${PYTHON_ABI}" == "2.7" ]]; then
mkdir doc/en/.build || die
PYTHONPATH="${S}/doc:${S}/build-${PYTHON_ABI}"/lib emake -C doc/en html
fi
}
use doc && python_execute_function dodocs
}
src_test() {
testing() {
local exit_status=0
PYTHONPATH="${S}/build-${PYTHON_ABI}/lib" "$(PYTHON)" build-${PYTHON_ABI}/lib/pytest.py || exit_status=1
return $exit_status
}
python_execute_function testing
}
src_install() {
distutils_src_install
python_generate_wrapper_scripts -E -f -q "${ED}usr/bin/py.test"
# Bug 380275: Test suite pre-compiles modules
python_clean_installation_image -q
use doc && dohtml -r doc/en/_build/html/
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild,v 1.3 2012/11/05 22:13:34 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10.ebuild,v 1.4 2012/11/06 10:57:26 ago Exp $
EAPI=4
@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-solaris"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-solaris"
IUSE="doc examples sasl ssl"
# If you need support for openldap-2.3.x, please use python-ldap-2.3.9.

@ -0,0 +1,41 @@
--- CMakeLists.txt.old 2012-11-05 15:19:11.501044743 +0100
+++ CMakeLists.txt 2012-11-05 15:19:25.415250207 +0100
@@ -8,7 +8,6 @@
find_package(SDL_mixer REQUIRED)
find_package(OpenGL REQUIRED)
find_package(Boost COMPONENTS filesystem system REQUIRED)
-add_definitions(-DBOOST_FILESYSTEM_VERSION=2)
if(${MINGW})
set(INTL_LIBRARY intl)
--- src/system/utility/FileUtility.cpp.old 2012-11-05 21:26:07.865488297 +0100
+++ src/system/utility/FileUtility.cpp 2012-11-05 21:30:44.881208230 +0100
@@ -20,7 +20,7 @@
while (dir_it != boost::filesystem::directory_iterator()) {
if (boost::filesystem::is_regular_file(*dir_it))
- files.push_back(dir_it->filename());
+ files.push_back(dir_it->path().filename().string());
++dir_it;
}
return files;
@@ -32,8 +32,8 @@
while (dir_it != boost::filesystem::directory_iterator()) {
if (boost::filesystem::is_directory(*dir_it))
- if (dir_it->path().filename()[0] != '.')
- subDirs.push_back(dir_it->path().filename());
+ if (dir_it->path().filename().string()[0] != '.')
+ subDirs.push_back(dir_it->path().filename().string());
++dir_it;
}
return subDirs;
@@ -45,7 +45,7 @@
while (dir_it != boost::filesystem::directory_iterator()) {
if (boost::filesystem::is_directory(*dir_it))
- if (dir_it->path().filename()[0] != '.')
+ if (dir_it->path().filename().string()[0] != '.')
++count;
++dir_it;
}

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.4.3.ebuild,v 1.4 2012/08/29 04:23:28 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.4.3.ebuild,v 1.5 2012/11/06 08:53:49 tupone Exp $
EAPI=2
inherit eutils multilib toolchain-funcs flag-o-matic cmake-utils games
inherit eutils multilib toolchain-funcs flag-o-matic boost-utils cmake-utils games
DESCRIPTION="Help a girl by name of Violet to struggle with hordes of monsters."
HOMEPAGE="http://code.google.com/p/violetland/"
@ -18,8 +18,7 @@ RDEPEND="media-libs/libsdl[audio,video]
media-libs/sdl-image[png]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-ttf
<dev-libs/boost-1.50
>=dev-libs/boost-1.37
dev-libs/boost
virtual/opengl
virtual/glu"
DEPEND="${RDEPEND}
@ -32,20 +31,12 @@ src_prepare() {
-e "/README_EN.TXT/d" \
-e "/README_RU.TXT/d" \
CMakeLists.txt || die "sed failed"
# how do I hate boost? Let me count the ways...
local boost_ver=$(best_version "<dev-libs/boost-1.50")
epatch "${FILESDIR}"/${P}-boost150.patch
boost_ver=${boost_ver/*boost-/}
boost_ver=${boost_ver%.*}
boost_ver=${boost_ver/./_}
einfo "Using boost version ${boost_ver}"
append-cxxflags \
-I/usr/include/boost-${boost_ver}
append-ldflags \
-L/usr/$(get_libdir)/boost-${boost_ver}
export BOOST_INCLUDEDIR="/usr/include/boost-${boost_ver}"
export BOOST_LIBRARYDIR="/usr/$(get_libdir)/boost-${boost_ver}"
append-cxxflags -I$(boost-utils_get_includedir)
append-ldflags -L$(boost-utils_get_libdir)
export BOOST_INCLUDEDIR=$(boost-utils_get_includedir)
export BOOST_LIBRARYDIR=-L$(boost-utils_get_libdir)
}
src_configure() {

@ -1,2 +1,3 @@
DIST 98925-cwp-1.6.2.tar.bz2 198917 SHA256 a3e1b0b456e330d490f5e68b2b36a573689b2271612945fcb64d73b606630c7c SHA512 b9c9be0aab50084344dbe2fb7c0f3befa4d90f083b6a4927ca742a5a267ee8847704dd32eb58aa5700a14841a988673bd565794d3fc5b184289836d2b5eeb6ce WHIRLPOOL f3458c771ef281817c49bae0483155942a88506e4815dfed0688f4bee5fa3f0c51ecc4da65952c4b0be09f08b77797efc60f165fbb45dd203cedd9d4a1d8207e
DIST 98925-cwp-1.6.6.tar.bz2 199034 SHA256 d3683983e73656a65e4ae166d583ad3efa6e8a62ef87dac35fd9583559b7e81d SHA512 cb827b1bae6067a4a83d5129b318495647f4c0ca5445fbc92b73a9c3293fc6fd276bfb99c3103c8754a260208f589ec9cd89d9e3ac058586a0d8b2c67846f243 WHIRLPOOL 249fe087c11c133cefb924bfc8689eacca220105a6f68ea7470f38801f04adc744ea8ec71a49712f8c717f877dcd3a23c93576289d9cfd79d47b20e20f5151f0
DIST 98925-cwp-1.6.7.tar.bz2 199388 SHA256 40eb4a0103da0cc3d02d9654dc374591dbaec3da85bb15fd8074cf011ed0e351 SHA512 430dc337fc7bf53e365a9c06642777b954355f130c726ee62ca61705e26f19e55632a3cdadd3db83af0b81f3e2ce4ddcf09104410eda0fdcfd2130102358b7a1 WHIRLPOOL 9b1335cbe1f3d6292ec72d57e99c57cc559ec78e2aa2a27c20e9995b6ae489310e704434530b09258fbda0647652e9d7ee777e5ed3a7eb41223657761799b6a5

@ -0,0 +1,26 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/customizable-weather/customizable-weather-1.6.7.ebuild,v 1.1 2012/11/06 11:32:43 kensington Exp $
EAPI=4
KDE_LINGUAS="br de el es fr hu it nb nl pl ro ru sr sr@Latn tr zh_CN"
inherit kde4-base
MY_P="cwp-${PV}"
DESCRIPTION="KDE4 weather plasmoid. It aims to be highly customizable, but is a little harder to setup."
HOMEPAGE="http://www.kde-look.org/content/show.php/Customizable+Weather+Plasmoid?content=98925"
SRC_URI="http://www.kde-look.org/CONTENT/content-files/98925-${MY_P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="debug"
RDEPEND="
$(add_kdebase_dep plasma-workspace)
"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"

@ -1,2 +1,3 @@
DIST kde-gtk-config-2.0.tar.bz2 79054 SHA256 90c62ff78904f43463743909a9ae92868355b75e9d65f6e1254b331220f46538 SHA512 40a84353a516e87effcb838236e5443271dbf8d8a36c53f17582c2cfbc8b84fa18f5d9086cc64a971fb5722fa47cf31204067b7e0b62a225f48a7b20751f2a96 WHIRLPOOL c1f15e135f946b7a776a5714e5f6b48bc23bca818a29249d0f0acc1c862ea23adb43475bb24d53b9d83d006f1889350eaf15b1e7edb92a19dbbaaad4f8682f96
DIST kde-gtk-config-2.1.1.tar.bz2 85883 SHA256 2d97a1b56a34896ee673a8e2acf0ce7bda331d489af0c7cc45df442f3a43f748 SHA512 094077ccfe441321e68a631943780c15e0cdcbff2d9cbbc7f803b295ebbc84c02d7fa3a79c03017901d37fe2e72c17610246965eea7678c793909d7ab4e3e39a WHIRLPOOL d490d668aa888ba27de924f47fa4e86b08c5760b04609c7c5e6d1d0c76830ac48c0aaf460c3575e1357a5095a1d827fd8ab25e954708bc14914946b03de61fc9
DIST kde-gtk-config-2.1.tar.bz2 86123 SHA256 2f30c813b9ba480e9b19a4523bbc0ecaea80fcebb70c2eff62dd7c79f3a8b744 SHA512 0cec0c063ffce570b54741f8a2eac23c2aa2625300c95baf877f372de2f13a84a102739bf2f4fc7c488d3aa8c52fe9639945bc4a1594b951e11dfa93a26d72bd WHIRLPOOL 2b1db01307fe692583a2f5f2c98cce5b3d8f227eeed12668b3ee247ae80766f5eb94b9a24d55ed4aabaf4ca4439b45971f94cde0184f7737e4ab909bdd35a5ef

@ -0,0 +1,42 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild,v 1.1 2012/11/06 08:53:31 kensington Exp $
EAPI=4
KDE_LINGUAS="ca cs da de el es et eu fr ga gl hu id it ja km lt nds nl pl pt
pt_BR ru sv uk zh_CN"
inherit kde4-base
DESCRIPTION="KDE systemsettings kcm to set GTK application look&feel"
HOMEPAGE="http://projects.kde.org/projects/playground/base/kde-gtk-config"
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
SLOT="4"
IUSE="debug"
CDEPEND="
dev-libs/glib:2
x11-libs/gtk+:2
x11-libs/gtk+:3
"
DEPEND="
${CDEPEND}
dev-util/automoc
"
RDEPEND="
${CDEPEND}
!kde-misc/kcm_gtk
$(add_kdebase_dep kcmshell)
"
pkg_postinst() {
kde4-base_pkg_postinst
einfo
elog "If you notice missing icons in your GTK applications, you may have to install"
elog "the corresponding themes for GTK. A good guess would be x11-themes/oxygen-gtk"
elog "for example."
einfo
}

@ -18,3 +18,8 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[Except as contained in this notice, the name of <copyright holders>
shall not be used in advertising or otherwise to promote the sale, use
or other dealings in this Software without prior written authorization
from <copyright holders>.]

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.65.2-r1.ebuild,v 1.14 2011/05/02 15:52:49 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.65.2-r1.ebuild,v 1.15 2012/11/06 11:09:08 eras Exp $
inherit eutils flag-o-matic multilib
@ -32,7 +32,6 @@ DEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.65.2.ebuild,v 1.7 2012/06/04 21:15:21 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.65.2.ebuild,v 1.8 2012/11/06 11:09:08 eras Exp $
inherit eutils flag-o-matic multilib
@ -32,7 +32,6 @@ DEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.66.3.ebuild,v 1.1 2011/08/02 18:44:26 hanno Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.66.3.ebuild,v 1.2 2012/11/06 11:09:08 eras Exp $
inherit eutils flag-o-matic multilib
@ -33,7 +33,6 @@ DEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.68.2.20120626.ebuild,v 1.1 2012/06/27 15:46:18 hanno Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.68.2.20120626.ebuild,v 1.2 2012/11/06 11:09:08 eras Exp $
inherit eutils flag-o-matic multilib
@ -33,7 +33,6 @@ DEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.69.0.ebuild,v 1.1 2012/09/26 16:04:38 hanno Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.69.0.ebuild,v 1.2 2012/11/06 11:09:08 eras Exp $
inherit eutils flag-o-matic multilib
@ -33,7 +33,6 @@ DEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1 +1 @@
DIST esmtp-1.2.tar.bz2 127921 RMD160 3fcd5908273087858dca8162c8440760774d8bf0 SHA1 01405c2ea5821c080edb37b16b1523234a442915 SHA256 a0d26931bf731f97514da266d079d8bc7d73c65b3499ed080576ab606b21c0ce
DIST esmtp-1.2.tar.bz2 127921 SHA256 a0d26931bf731f97514da266d079d8bc7d73c65b3499ed080576ab606b21c0ce

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/esmtp/esmtp-1.2.ebuild,v 1.8 2011/06/22 21:32:29 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/esmtp/esmtp-1.2.ebuild,v 1.9 2012/11/06 11:13:13 eras Exp $
DESCRIPTION="esmtp is a user configurable relay-only Mail Transfer Agent (MTA) with a sendmail compatible syntax"
HOMEPAGE="http://esmtp.sourceforge.net/"
@ -20,7 +20,6 @@ RDEPEND="net-libs/libesmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.76-r1.ebuild,v 1.3 2012/10/30 21:00:04 swift Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.76-r1.ebuild,v 1.4 2012/11/06 11:14:52 eras Exp $
EAPI="3"
@ -54,7 +54,6 @@ RDEPEND="${DEPEND}
!mail-mta/mini-qmail
!<mail-mta/msmtp-1.4.19-r1
!>=mail-mta/msmtp-1.4.19-r1[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.76.ebuild,v 1.12 2012/10/30 21:00:04 swift Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.76.ebuild,v 1.13 2012/11/06 11:14:52 eras Exp $
EAPI="3"
@ -54,7 +54,6 @@ RDEPEND="${DEPEND}
!mail-mta/mini-qmail
!<mail-mta/msmtp-1.4.19-r1
!>=mail-mta/msmtp-1.4.19-r1[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.77.ebuild,v 1.13 2012/10/30 21:00:04 swift Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.77.ebuild,v 1.14 2012/11/06 11:14:52 eras Exp $
EAPI="3"
@ -55,7 +55,6 @@ RDEPEND="${DEPEND}
!mail-mta/mini-qmail
!<mail-mta/msmtp-1.4.19-r1
!>=mail-mta/msmtp-1.4.19-r1[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.80.1.ebuild,v 1.8 2012/11/04 19:32:38 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.80.1.ebuild,v 1.9 2012/11/06 11:14:52 eras Exp $
EAPI="3"
@ -58,7 +58,6 @@ RDEPEND="${COMMON_DEPEND}
!mail-mta/mini-qmail
!<mail-mta/msmtp-1.4.19-r1
!>=mail-mta/msmtp-1.4.19-r1[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.80.ebuild,v 1.8 2012/10/30 21:00:04 swift Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.80.ebuild,v 1.9 2012/11/06 11:14:52 eras Exp $
EAPI="3"
@ -58,7 +58,6 @@ RDEPEND="${COMMON_DEPEND}
!mail-mta/mini-qmail
!<mail-mta/msmtp-1.4.19-r1
!>=mail-mta/msmtp-1.4.19-r1[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,4 +1,4 @@
DIST genqmail-20080406.tar.bz2 10252 RMD160 e6b2982447dbe3e92407435831469fba49fe3c9d SHA1 e825bc226d181105e8723360208d8c3f98142025 SHA256 501ca2120c7619569bd9ac3e0035cb0022bfd0cdc9c720b5c43c9e3a4eb07ce8
DIST mini-qmail-kit-0.52.tar.gz 6174 RMD160 48c9a90f51fe48026035749d88370a7e8cbd5261 SHA1 7dc1ce9766be90c2aaa40c0ef4e31e5047dab363 SHA256 8796d7ba7a6b1ff49df371491e2cebb1dca81169fa3d98d730f9d717067cf6d6
DIST netqmail-1.05.tar.gz 252264 RMD160 e5bd8557c58a2686233449254b146e74389a7652 SHA1 fe4cbe97bd2f18a5ca1b36e4fbbd6c524256a829 SHA256 59788abf252e2da224542c1c8b727311335c61d990f24f4edf28f6eb5483f676
DIST netqmail-1.06.tar.gz 260941 RMD160 d31598afa862abb35bc1feb8d038ab619b5a17a2 SHA1 9ee9a603e2ad3d8e1d34b900e19b7a5d275f538b SHA256 8e7d98d15211fc9f9c28109e942e2268f42a6672d68df92a42f2afa90ff00532
DIST genqmail-20080406.tar.bz2 10252 SHA256 501ca2120c7619569bd9ac3e0035cb0022bfd0cdc9c720b5c43c9e3a4eb07ce8
DIST mini-qmail-kit-0.52.tar.gz 6174 SHA256 8796d7ba7a6b1ff49df371491e2cebb1dca81169fa3d98d730f9d717067cf6d6
DIST netqmail-1.05.tar.gz 252264 SHA256 59788abf252e2da224542c1c8b727311335c61d990f24f4edf28f6eb5483f676
DIST netqmail-1.06.tar.gz 260941 SHA256 8e7d98d15211fc9f9c28109e942e2268f42a6672d68df92a42f2afa90ff00532

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/mini-qmail/mini-qmail-1.05-r1.ebuild,v 1.7 2012/03/18 15:24:14 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/mini-qmail/mini-qmail-1.05-r1.ebuild,v 1.8 2012/11/06 11:15:43 eras Exp $
inherit eutils toolchain-funcs fixheadtails
@ -21,7 +21,6 @@ RDEPEND="
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/mini-qmail/mini-qmail-1.05.ebuild,v 1.14 2012/06/04 21:05:00 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/mini-qmail/mini-qmail-1.05.ebuild,v 1.15 2012/11/06 11:15:43 eras Exp $
inherit eutils toolchain-funcs fixheadtails user
@ -20,7 +20,6 @@ RDEPEND="
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/mini-qmail/mini-qmail-1.06.ebuild,v 1.9 2012/03/18 15:24:14 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/mini-qmail/mini-qmail-1.06.ebuild,v 1.10 2012/11/06 11:15:43 eras Exp $
GENQMAIL_PV=20080406
@ -27,7 +27,6 @@ RDEPEND="
!mail-mta/exim
!mail-mta/maildrop
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.28.ebuild,v 1.8 2012/08/19 15:57:27 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.28.ebuild,v 1.9 2012/11/06 11:16:40 eras Exp $
EAPI=4
inherit multilib python
@ -33,7 +33,6 @@ RDEPEND="${CDEPEND}
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.30.ebuild,v 1.1 2012/10/22 09:35:22 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.30.ebuild,v 1.2 2012/11/06 11:16:40 eras Exp $
EAPI=4
inherit multilib python eutils
@ -33,7 +33,6 @@ RDEPEND="${CDEPEND}
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1 +0,0 @@
DIST nbsmtp-1.00.tar.bz2 104090 RMD160 a701bca7715c5965f8ac337225d01c4f86abca36 SHA1 02a2a4967c06afd862f943e6594c08eed8c6674a SHA256 9e63fe490ce4df513d1c61640deaf9b603ba96ab4afd0f306d584c11b2e2989f

@ -1,9 +0,0 @@
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/files/mailer.conf,v 1.1 2005/04/25 13:49:47 ferdy Exp $
# Execute the "real" sendmail program from nbsmtp
# ( they are hardlinks to /usr/bin/wrapper-nbsmtp )
#
sendmail /usr/bin/sendmail.nbsmtp
send-mail /usr/bin/sendmail.nbsmtp
mailq /usr/bin/mailq.nbsmtp
newaliases /usr/bin/newaliases.nbsmtp

@ -1,12 +0,0 @@
--- hmac_md5.c.orig 2006-09-17 17:44:33.000000000 +0100
+++ hmac_md5.c 2006-09-17 17:45:07.000000000 +0100
@@ -5,8 +5,8 @@
* Code taken from RFC2104.
*/
-#include <openssl/md5.h>
#include <string.h>
+#include <openssl/md5.h>
#include "hmac_md5.h"

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>net-mail</herd>
</pkgmetadata>

@ -1,58 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-1.00-r2.ebuild,v 1.10 2011/03/28 09:15:27 eras Exp $
inherit eutils
DESCRIPTION="Extremely simple MTA to get mail off the system to a relayhost"
SRC_URI="http://www.gentoo-es.org/~ferdy/${P}.tar.bz2"
HOMEPAGE="http://nbsmtp.ferdyx.org"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc sparc x86"
LICENSE="GPL-2"
IUSE="ssl ipv6 debug"
DEPEND="ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/ssmtp"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-openssl.patch
}
src_compile() {
econf $(use_enable ssl) \
$(use_enable debug) \
$(use_enable ipv6) || die
emake || die
}
src_install() {
dodir /usr/{{s,}bin,lib}
dobin nbsmtp
dobin scripts/nbqueue
dobin scripts/wrapper-nbsmtp
doman nbsmtprc.5 nbsmtp.8
dodoc INSTALL DOCS Doxyfile
dohard /usr/bin/wrapper-nbsmtp /usr/bin/sendmail
dohard /usr/bin/wrapper-nbsmtp /usr/sbin/sendmail
dohard /usr/bin/wrapper-nbsmtp /usr/lib/sendmail
dohard /usr/bin/wrapper-nbsmtp /usr/bin/mailq
dohard /usr/bin/wrapper-nbsmtp /usr/bin/newaliases
}

@ -1,63 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-1.00-r3.ebuild,v 1.6 2011/03/28 09:15:27 eras Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Extremely simple MTA to get mail off the system to a relayhost"
SRC_URI="http://www.gentoo-es.org/~ferdy/${P}.tar.bz2"
HOMEPAGE="http://nbsmtp.ferdyx.org"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
LICENSE="GPL-2"
IUSE="ssl ipv6 debug"
DEPEND="ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/ssmtp"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-openssl.patch
sed -i \
-e '/CFLAGS=/a\LDLIBS=@LIBS@' \
-e '/$(CC) -o/d' \
Makefile.in || die 'Failed to sed Makefile.in'
}
src_compile() {
tc-export CC
econf $(use_enable ssl) \
$(use_enable debug) \
$(use_enable ipv6) || die
emake || die
}
src_install() {
dodir /usr/{{s,}bin,lib}
dobin nbsmtp
dobin scripts/nbqueue
dobin scripts/wrapper-nbsmtp
doman nbsmtprc.5 nbsmtp.8
dodoc INSTALL DOCS Doxyfile
dohard /usr/bin/wrapper-nbsmtp /usr/bin/sendmail
dohard /usr/bin/wrapper-nbsmtp /usr/sbin/sendmail
dohard /usr/bin/wrapper-nbsmtp /usr/lib/sendmail
dohard /usr/bin/wrapper-nbsmtp /usr/bin/mailq
dohard /usr/bin/wrapper-nbsmtp /usr/bin/newaliases
}

@ -1,7 +1,7 @@
DIST big-todo.103.patch 5546 RMD160 a16a429796d869b8217e42b7ddb607c95d9bbcd8 SHA1 ba5c3923ff972a4f3ddd5ae1519938a4716612d1 SHA256 afa0a249e3271badd442f0bdae39997d9fe536157d8a0d62b6706f3dfcd11a72
DIST genqmail-20080406.tar.bz2 10252 RMD160 e6b2982447dbe3e92407435831469fba49fe3c9d SHA1 e825bc226d181105e8723360208d8c3f98142025 SHA256 501ca2120c7619569bd9ac3e0035cb0022bfd0cdc9c720b5c43c9e3a4eb07ce8
DIST netqmail-1.05-tls-smtpauth-20060105.patch 147837 RMD160 18a3edd3ea7e7a8e4d6cadbd3c0bd5e8cb041caa SHA1 1a0fb2367504a4c0f2196e13f753437f47d4b621 SHA256 326af9647e752e158f7672ca3fb592fe23c5f44502ddfcd6b5b6bc6c7ecf4c27
DIST netqmail-1.05-tls-smtpauth-20070417.patch 67942 RMD160 81a00e06fa67a4073b1a5bf5195fbbac675cd46b SHA1 d24cb13cf1371044fc2dfe20471478f59b5524e5 SHA256 573de07d57ac6941a42dda645079213cf36fcbb7f3a8c254b8447709e5e5cd60
DIST netqmail-1.05.tar.gz 252264 RMD160 e5bd8557c58a2686233449254b146e74389a7652 SHA1 fe4cbe97bd2f18a5ca1b36e4fbbd6c524256a829 SHA256 59788abf252e2da224542c1c8b727311335c61d990f24f4edf28f6eb5483f676
DIST netqmail-1.06.tar.gz 260941 RMD160 d31598afa862abb35bc1feb8d038ab619b5a17a2 SHA1 9ee9a603e2ad3d8e1d34b900e19b7a5d275f538b SHA256 8e7d98d15211fc9f9c28109e942e2268f42a6672d68df92a42f2afa90ff00532
DIST qmail-spp-0.42.tar.gz 18689 RMD160 5511722c52346692488a63bca53106d580a004c7 SHA1 76a94051b017dd331d8c791e466bb2a936ceba41 SHA256 1518e7e82d10fbbb8ecc520f51daf503edeb9c3a9fb935be65a8185e7b53808d
DIST big-todo.103.patch 5546 SHA256 afa0a249e3271badd442f0bdae39997d9fe536157d8a0d62b6706f3dfcd11a72
DIST genqmail-20080406.tar.bz2 10252 SHA256 501ca2120c7619569bd9ac3e0035cb0022bfd0cdc9c720b5c43c9e3a4eb07ce8
DIST netqmail-1.05-tls-smtpauth-20060105.patch 147837 SHA256 326af9647e752e158f7672ca3fb592fe23c5f44502ddfcd6b5b6bc6c7ecf4c27
DIST netqmail-1.05-tls-smtpauth-20070417.patch 67942 SHA256 573de07d57ac6941a42dda645079213cf36fcbb7f3a8c254b8447709e5e5cd60
DIST netqmail-1.05.tar.gz 252264 SHA256 59788abf252e2da224542c1c8b727311335c61d990f24f4edf28f6eb5483f676
DIST netqmail-1.06.tar.gz 260941 SHA256 8e7d98d15211fc9f9c28109e942e2268f42a6672d68df92a42f2afa90ff00532
DIST qmail-spp-0.42.tar.gz 18689 SHA256 1518e7e82d10fbbb8ecc520f51daf503edeb9c3a9fb935be65a8185e7b53808d

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r4.ebuild,v 1.29 2012/06/04 21:02:40 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r4.ebuild,v 1.30 2012/11/06 11:17:40 eras Exp $
inherit eutils toolchain-funcs fixheadtails flag-o-matic user
@ -40,7 +40,6 @@ RDEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r8.ebuild,v 1.14 2012/06/04 21:02:40 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r8.ebuild,v 1.15 2012/11/06 11:17:40 eras Exp $
inherit eutils toolchain-funcs fixheadtails flag-o-matic user
@ -40,7 +40,6 @@ RDEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.06.ebuild,v 1.13 2012/02/12 20:57:22 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.06.ebuild,v 1.14 2012/11/06 11:17:40 eras Exp $
GENQMAIL_PV=20080406
QMAIL_SPP_PV=0.42
@ -45,7 +45,6 @@ RDEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.05.ebuild,v 1.6 2012/06/04 21:06:18 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.05.ebuild,v 1.7 2012/11/06 11:18:38 eras Exp $
inherit eutils flag-o-matic autotools user
@ -30,7 +30,6 @@ RDEPEND="virtual/shadow
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.06.ebuild,v 1.3 2012/06/04 21:06:18 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.06.ebuild,v 1.4 2012/11/06 11:18:38 eras Exp $
inherit eutils flag-o-matic autotools user
@ -30,7 +30,6 @@ RDEPEND="virtual/shadow
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.10-r1.ebuild,v 1.4 2012/08/05 20:58:01 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.10-r1.ebuild,v 1.5 2012/11/06 11:18:38 eras Exp $
EAPI=4
inherit eutils flag-o-matic autotools user multilib
@ -33,7 +33,6 @@ RDEPEND="virtual/shadow
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.10.ebuild,v 1.1 2012/06/05 13:48:56 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.10.ebuild,v 1.2 2012/11/06 11:18:38 eras Exp $
EAPI=4
inherit eutils flag-o-matic autotools user multilib
@ -33,7 +33,6 @@ RDEPEND="virtual/shadow
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11.ebuild,v 1.5 2012/09/18 10:15:28 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11.ebuild,v 1.6 2012/11/06 11:18:38 eras Exp $
EAPI=4
WANT_AUTOMAKE="1.10.3"
@ -34,7 +34,6 @@ RDEPEND="virtual/shadow
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap

@ -1,4 +1,4 @@
DIST postfix-2.10-20121022.tar.gz 3814259 SHA256 f98add945130d369b18527be23d83e1467da2f4a2abc49dcdbdff2566d0d2e48 SHA512 b5f75eed3d29d1883e8e327e8c20b58ffa27681f41923c517ea883edb50a08ec855143956c86fd3282ecc3525144463d04a5e73562f7d159812ed4b6209c1139 WHIRLPOOL 588228815f727be4541dd06b3265a5d7ed5bb6504780dc800e93227c4dc47aade9bca928d8b0ab809f6d0bed6c044aadc3fb46b45f196fdd62708a41e02ee1d6
DIST postfix-2.10-20121031.tar.gz 3814909 SHA256 665a707181b7a32848c96f0609d1c450bd0aefeb4246a70bdb69975e33dd06c5 SHA512 7280b95a52913fce6b597e68d20620ad9a5f73c348b1dc63538221ba6d86ebd7c0114d9afae74d6597dcc58fbe7907f2ea00f31a1b84b1e68aa662cf49c8b129 WHIRLPOOL f4007607e01c0831409b219198be7a720e0e027dd4c0b5abd53da765a160f6d006ab96f3d98fc5b9468f151d17039fffe83d1aafe6359ed1fe7e93ba8d7153d3
DIST postfix-2.8.12.tar.gz 3641269 SHA256 f46b0117cab52e862b12869810327e2bd248a60f209079a875818ee2653de087 SHA512 55141e75da43b13975f85af636dceeed7783440fb5f7b83642e5a146d8a06af3a847beff77fe0dd495c58c7caed492dbb2dc52f542f44b9388f2ded30e37acee WHIRLPOOL 1d3c454fc938546c74b666feb109229a71b4e55d72c6f3833a15a81ec8eb3b48e318df69611fe4c40ac970332a8fcdfe98fa235863ae44bdf952b2b74537100c
DIST postfix-2.8.9.tar.gz 3648498 SHA256 6a63bafad1002abbab2d2592a40dc4b3e35defd97f2026d6ccc398e5d7ee9bf3 SHA512 74c3735e8e701f223c2730345fb3d2876e839579d431d21c9b5ae870eac06c17978e2071dd31e3e08f947d2a20281e644af011749407f9bd7afaf53ce278ca6a WHIRLPOOL 1809ece94697c7ae6a8e9dfaf3a89ddc7e1f2e049e51d02f6772f554b4af5040cc07538886ec32491cc40b57c17e03e32663ef3f811324f7a2a0cbe926ff7c8a
DIST postfix-2.9.4.tar.gz 3760718 SHA256 58343afcc727594cc1f9a3980562d8199aa55fc2cf2330da6b9ddfbf31502679 SHA512 f8932ae510805261b4a6c204bd4bba41d50e1833f87326b986ef174b51eb695cf0588d7d98850bb7b83ba56f1257406da072c423cc768f68d3723daf645b9490 WHIRLPOOL 7d7d619e0fa8375f1b653b9e1a0a2fa723929ab87db05445f2c2a73c213e91476d202806a439dd9792499e6a4d43c86f84133e90ffbd3bc9828ba1a925d8d11c

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.10_pre20121022.ebuild,v 1.2 2012/11/02 15:13:27 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.10_pre20121031.ebuild,v 1.2 2012/11/06 11:19:44 eras Exp $
EAPI=4
inherit eutils multilib ssl-cert toolchain-funcs flag-o-matic pam user versionator
@ -45,7 +45,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/qmail-ldap
@ -268,7 +267,7 @@ pkg_preinst() {
# performance loss with useless DNS lookups and useless connection attempts.
[[ -d ${ROOT}/etc/postfix ]] && {
if [[ "$(${D}/usr/sbin/postconf -dh inet_protocols)" != "ipv4" ]]; then
if [[ ! -n "$(${D}/usr/sbin/postconf -c ${ROOT}/etc/postfix -nh inet_protocols)" ]];
if [[ ! -n "$(${D}/usr/sbin/postconf -c ${ROOT}/etc/postfix -n inet_protocols)" ]];
then
ewarn "\nCOMPATIBILITY: adding inet_protocols=ipv4 to main.cf."
ewarn "That will keep the same behaviour as previous postfix versions."

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.8.12.ebuild,v 1.1 2012/08/02 14:02:39 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.8.12.ebuild,v 1.2 2012/11/06 11:19:44 eras Exp $
EAPI=4
@ -45,7 +45,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.8.9.ebuild,v 1.9 2012/06/17 16:37:02 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.8.9.ebuild,v 1.10 2012/11/06 11:19:44 eras Exp $
EAPI=4
@ -45,7 +45,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/qmail-ldap

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.9.4.ebuild,v 1.11 2012/10/30 17:10:15 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.9.4.ebuild,v 1.12 2012/11/06 11:19:44 eras Exp $
EAPI=4
@ -46,7 +46,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/qmail-ldap

@ -1,7 +1,7 @@
DIST genqmail-20080406.tar.bz2 10252 RMD160 e6b2982447dbe3e92407435831469fba49fe3c9d SHA1 e825bc226d181105e8723360208d8c3f98142025 SHA256 501ca2120c7619569bd9ac3e0035cb0022bfd0cdc9c720b5c43c9e3a4eb07ce8
DIST qmail-1.03.tar.gz 220668 RMD160 b851f273f1d365d38efd949b1efcf35768ffa30f SHA1 18fb960481291a0503e93a94df3f6094edb7f27a SHA256 21ed6c562cbb55092a66197c35c8222b84115d1acab0854fdb1ad1f301626f88
DIST qmail-ldap-1.03-20060201-controls20060401d.patch 195962 RMD160 1da9243da1d70faf9305d1740dc6ff2aaf98f261 SHA1 c7a3af8f28920487d5b2c6d920976aa6e40908ee SHA256 49b4418d620af20bb2f3a1b3a9413b51c831bfe7c9ea153f0aef3d5dc76a3577
DIST qmail-ldap-1.03-20060201.patch.gz 270788 RMD160 c5702f1e4ddc9b5c4bd7d9960d6bab8514ef9d97 SHA1 c413cabc489cad971d1492d08400d5c0c291899b SHA256 92ba895df1957109ad856cc1d1554ece4d25d59017e77127dd52d76afd05525a
DIST qmail-ldap-1.03-queue-custom-error.patch 2472 RMD160 9d653c77c4f3982945f98e031d6b729628ef102a SHA1 1a23226c1725fccd462fe42f8e523f1b234d5912 SHA256 77536616109591ef5f4bc0f309879167a14b3d6ce4778ff3f2dcaee9a424c25a
DIST qmail-ldap-1.03-spp-0.42.patch 13618 RMD160 508570102eea891b09bcf7e26c33ebe9c19526b3 SHA1 b8f9a133f56565a54a6083656e9b9d86a59e6698 SHA256 0f673a5944347d5e46c7beffd5d9fa760cecb2e61a3291c3392ffa6777cee8c8
DIST qmail-spp-0.42.tar.gz 18689 RMD160 5511722c52346692488a63bca53106d580a004c7 SHA1 76a94051b017dd331d8c791e466bb2a936ceba41 SHA256 1518e7e82d10fbbb8ecc520f51daf503edeb9c3a9fb935be65a8185e7b53808d
DIST genqmail-20080406.tar.bz2 10252 SHA256 501ca2120c7619569bd9ac3e0035cb0022bfd0cdc9c720b5c43c9e3a4eb07ce8
DIST qmail-1.03.tar.gz 220668 SHA256 21ed6c562cbb55092a66197c35c8222b84115d1acab0854fdb1ad1f301626f88
DIST qmail-ldap-1.03-20060201-controls20060401d.patch 195962 SHA256 49b4418d620af20bb2f3a1b3a9413b51c831bfe7c9ea153f0aef3d5dc76a3577
DIST qmail-ldap-1.03-20060201.patch.gz 270788 SHA256 92ba895df1957109ad856cc1d1554ece4d25d59017e77127dd52d76afd05525a
DIST qmail-ldap-1.03-queue-custom-error.patch 2472 SHA256 77536616109591ef5f4bc0f309879167a14b3d6ce4778ff3f2dcaee9a424c25a
DIST qmail-ldap-1.03-spp-0.42.patch 13618 SHA256 0f673a5944347d5e46c7beffd5d9fa760cecb2e61a3291c3392ffa6777cee8c8
DIST qmail-spp-0.42.tar.gz 18689 SHA256 1518e7e82d10fbbb8ecc520f51daf503edeb9c3a9fb935be65a8185e7b53808d

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/qmail-ldap/qmail-ldap-1.03-r8.ebuild,v 1.6 2012/02/12 20:55:26 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/qmail-ldap/qmail-ldap-1.03-r8.ebuild,v 1.7 2012/11/06 11:20:22 eras Exp $
GENQMAIL_PV=20080406
QMAIL_SPP_PV=0.42
@ -52,7 +52,6 @@ RDEPEND="
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,2 +1,2 @@
DIST sendmail.8.14.4.tar.gz 2080472 RMD160 d998062ee6b4e80eb90cc6e790f971bd02b52254 SHA1 ba192f9a5114437aaec952f503fa2f09ee6dbe57 SHA256 bc0109437c5018b3ea8999edb63506db2f3b31c4c1ab4367cb56236a7df97cb1
DIST sendmail.8.14.5.tar.gz 2092508 RMD160 0961ed4d6bcda73908670c20c8de6c14cac4d0dd SHA1 86dd2a8ad5eac892cd02cf67792a25efccacc100 SHA256 fb65a86a0f87f12aefb933ee8990540f7a680a594f7fedfdd28918f3934bfb88
DIST sendmail.8.14.4.tar.gz 2080472 SHA256 bc0109437c5018b3ea8999edb63506db2f3b31c4c1ab4367cb56236a7df97cb1
DIST sendmail.8.14.5.tar.gz 2092508 SHA256 fb65a86a0f87f12aefb933ee8990540f7a680a594f7fedfdd28918f3934bfb88 SHA512 178addd247f1c7c8ca90d70b9240db4cad4e55f0710d5df0fe979e5473a182d2035150c352836576a28bb2b9660b0d5ebfcd95269a156ac0d2c3dba3edb60452 WHIRLPOOL 2e073759a44d535629d9cce91da4a7082e085defeb9491a4470a8a8c8b18e1545129527c0138a74edb405a9c9724e5a597ee99c7852a423696c495ad8fef783f

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.11 2012/06/04 21:12:20 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.4.ebuild,v 1.12 2012/11/06 11:21:03 eras Exp $
EAPI="2"
@ -31,7 +31,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5-r1.ebuild,v 1.3 2012/06/04 21:12:20 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5-r1.ebuild,v 1.4 2012/11/06 11:21:03 eras Exp $
EAPI="2"
@ -31,7 +31,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5-r2.ebuild,v 1.1 2012/06/14 18:21:12 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5-r2.ebuild,v 1.2 2012/11/06 11:21:03 eras Exp $
EAPI="4"
inherit eutils multilib toolchain-funcs user
@ -30,7 +30,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5.ebuild,v 1.3 2012/06/04 21:12:20 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5.ebuild,v 1.4 2012/11/06 11:21:03 eras Exp $
EAPI="2"
@ -31,7 +31,6 @@ RDEPEND="${DEPEND}
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp[mta]
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix

@ -1 +1,2 @@
DIST libvisio-0.0.19.tar.xz 323536 SHA256 a1493bdaa3ee0a2cdf668a05d02d38220652f17caa7bc6da3206c40a90f813c7 SHA512 114155ca8f6227193e4097cc6a7990c9d7ce63205555975613c0a438435511598bf179459e23411db9d6b4f7f5649d3844a9995e39039c604be545d063cfb0f0 WHIRLPOOL 9db857577717a74145ead59967db2e35e68508f8f22af7639776afe6da1e97db4ef86c4318efc930dd2ad68e743e835e504ff3bd74b83f7bee453e20bd94bb3b
DIST libvisio-0.0.20.tar.xz 373708 SHA256 48a956f5df0f03d86fd29d96e388c961951ae45b2c896259d479c08a1370bf46 SHA512 6717a34b1258a44e06cd9ec9e1e0057e59ba6bbe9d4997ef27a1251591e6902c4194047c8356cedd149db9c3d09385e8925ced93b98aef881b21d3f8d3c00e1c WHIRLPOOL e2c74a6b714d0bd15aa6042095ff34177e9a7b37360e1fa112754ad7dafc320195fd5aa1f08d9bfffb393aef70f149fac89ca33c68af9df364a241cff2e16967

@ -0,0 +1,48 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/libvisio-0.0.20.ebuild,v 1.1 2012/11/06 11:55:48 scarabeus Exp $
EAPI=4
EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/contrib/libvisio/"
inherit base
[[ ${PV} == 9999 ]] && inherit autotools git-2
DESCRIPTION="Library parsing the visio documents"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/libvisio"
[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc static-libs"
RDEPEND="
app-text/libwpd:0.9
app-text/libwpg:0.2
"
DEPEND="${RDEPEND}
>=dev-libs/boost-1.46
virtual/pkgconfig
sys-devel/libtool
doc? ( app-doc/doxygen )
"
src_prepare() {
[[ -d m4 ]] || mkdir "m4"
base_src_prepare
[[ ${PV} == 9999 ]] && eautoreconf
}
src_configure() {
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
$(use_enable static-libs static) \
--disable-werror \
$(use_with doc docs)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}

@ -1 +1 @@
Tue, 06 Nov 2012 06:07:01 +0000
Tue, 06 Nov 2012 12:07:01 +0000

@ -1 +1 @@
Tue, 06 Nov 2012 06:07:01 +0000
Tue, 06 Nov 2012 12:07:02 +0000

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack
DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby18] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby18] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby18] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby18] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby18] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) virtual/ruby-ssl[ruby_targets_ruby18] ) ) emacs? ( virtual/emacs ) xemacs? ( app-editors/xemacs ) selinux? ( sec-policy/selinux-puppet ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) )
DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby18] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby18] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby18] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby18] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby18] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) virtual/ruby-ssl[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby19] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby19] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby19] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby19] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby19] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby19] ) virtual/ruby-ssl[ruby_targets_ruby19] ) ) emacs? ( virtual/emacs ) xemacs? ( app-editors/xemacs ) selinux? ( sec-policy/selinux-puppet ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) )
DESCRIPTION=A system automation and configuration management software
EAPI=4
HOMEPAGE=http://puppetlabs.com/
IUSE=augeas diff doc emacs ldap minimal rrdtool selinux shadow sqlite3 vim-syntax xemacs test elibc_FreeBSD ruby_targets_ruby18 test test
IUSE=augeas diff doc emacs ldap minimal rrdtool selinux shadow sqlite3 vim-syntax xemacs test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 test test
KEYWORDS=~amd64 ~hppa ~ppc ~sparc ~x86
LICENSE=Apache-2.0 GPL-2
RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby18] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby18] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby18] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby18] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby18] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) virtual/ruby-ssl[ruby_targets_ruby18] ) emacs? ( virtual/emacs ) xemacs? ( app-editors/xemacs ) rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] ) selinux? ( sys-libs/libselinux[ruby] sec-policy/selinux-puppet ) >=app-portage/eix-0.18.0 ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] )
REQUIRED_USE=|| ( ruby_targets_ruby18 )
RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby18] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby18] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby18] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby18] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby18] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby18] ) virtual/ruby-ssl[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/facter-1.5.6[ruby_targets_ruby19] augeas? ( dev-ruby/ruby-augeas[ruby_targets_ruby19] ) diff? ( dev-ruby/diff-lcs[ruby_targets_ruby19] ) doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ldap? ( dev-ruby/ruby-ldap[ruby_targets_ruby19] ) shadow? ( dev-ruby/ruby-shadow[ruby_targets_ruby19] ) sqlite3? ( dev-ruby/sqlite3[ruby_targets_ruby19] ) virtual/ruby-ssl[ruby_targets_ruby19] ) emacs? ( virtual/emacs ) xemacs? ( app-editors/xemacs ) rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] ) selinux? ( sys-libs/libselinux[ruby] sec-policy/selinux-puppet ) >=app-portage/eix-0.18.0 ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] )
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 )
SLOT=0
SRC_URI=mirror://rubygems/puppet-2.7.18.gem
_eclasses_=elisp-common cdb887d0e278ea6e82ea2a5d4792c52a eutils d40dc948067bd3db1c8ebf7d51897313 java-utils-2 2d9eb3508fa5d6759e39354b74545567 multilib 9aa8a023e062fca0ba79362d9d0cc488 ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xemacs-elisp-common 81f5b5356f3397c277e83736c42256b5
_md5_=d90e80e65cdba0ddbe875c3f9f08556e
_md5_=8ebbcbb755100f48bb28656a4eff56bb

@ -1,13 +0,0 @@
DEFINED_PHASES=compile install postinst postrm prepare setup test
DEPEND=dev-lang/python test? ( dev-vcs/subversion ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] )
DESCRIPTION=Tool to manage Gentoo overlays.
EAPI=2
HOMEPAGE=http://layman.sourceforge.net/
IUSE=bazaar cvs darcs git mercurial subversion test
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=dev-lang/python bazaar? ( dev-vcs/bzr ) cvs? ( dev-vcs/cvs ) darcs? ( dev-vcs/darcs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( || ( >=dev-vcs/subversion-1.5.4[webdav-neon] >=dev-vcs/subversion-1.5.4[webdav-serf] ) ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] )
SLOT=0
SRC_URI=mirror://sourceforge/layman/layman-1.4.1.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=c4612e9c7bb9c7eff0356e89b4b6fd26

@ -10,4 +10,4 @@ RDEPEND=dev-lang/python bazaar? ( dev-vcs/bzr ) cvs? ( dev-vcs/cvs ) darcs? ( de
SLOT=0
SRC_URI=mirror://sourceforge/layman/layman-1.4.2.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5c91464c9724dc078f635eb9052c55c7
_md5_=08adaeae2d19bae9972c4a2962a31953

@ -1,13 +0,0 @@
DEFINED_PHASES=compile install postinst postrm prepare setup test
DEPEND=dev-lang/python test? ( dev-vcs/subversion ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] )
DESCRIPTION=Tool to manage Gentoo overlays
EAPI=3
HOMEPAGE=http://layman.sourceforge.net/
IUSE=bazaar cvs darcs git mercurial subversion test
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2
RDEPEND=dev-lang/python bazaar? ( dev-vcs/bzr ) cvs? ( dev-vcs/cvs ) darcs? ( dev-vcs/darcs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( || ( >=dev-vcs/subversion-1.5.4[webdav-neon] >=dev-vcs/subversion-1.5.4[webdav-serf] ) ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] )
SLOT=0
SRC_URI=mirror://sourceforge/layman/layman-2.0.0_rc3.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 prefix 21058c21ca48453d771df15500873ede python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=211f13ddfed8a8503951ff75d194d12f

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst prepare test unpack
DEPEND=x11-libs/libX11 x11-libs/qt-core:4 x11-libs/qt-gui:4 lzo? ( dev-libs/lzo:2 ) webkit? ( x11-libs/qt-webkit:4 ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=Tool for extracting unformatted bibliographic references
EAPI=4
HOMEPAGE=http://www.molspaces.com/cb2bib/
IUSE=debug +lzo +webkit
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=x11-libs/libX11 x11-libs/qt-core:4 x11-libs/qt-gui:4 lzo? ( dev-libs/lzo:2 ) webkit? ( x11-libs/qt-webkit:4 )
SLOT=0
SRC_URI=http://www.molspaces.com/dl/progs/cb2bib-1.4.9.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils d9d351169c1d554e8f47f1a19f17becd eutils d40dc948067bd3db1c8ebf7d51897313 flag-o-matic 192fcbe64c4a25ea391beffaaeca2537 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=8eace2776553f64348499b23a8db78d9

@ -3,9 +3,9 @@ DEPEND=dev-libs/libf2c
DESCRIPTION=Fortran to C converter
HOMEPAGE=http://www.netlib.org/f2c
KEYWORDS=amd64 ppc ppc64 x86 ~x86-fbsd
LICENSE=as-is
LICENSE=HPND
RDEPEND=dev-libs/libf2c
SLOT=0
SRC_URI=mirror://gentoo/f2c-20060507.tar.bz2
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=dd204af8d237e9190772724c2c9d3c77
_md5_=15c2b102230e865b76759082465f2441

@ -4,9 +4,9 @@ EAPI=4
HOMEPAGE=http://www.netlib.org/f2c
IUSE=doc
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd
LICENSE=as-is
LICENSE=HPND
RDEPEND=dev-libs/libf2c
SLOT=0
SRC_URI=mirror://debian/pool/main/f/f2c/f2c_20100827.orig.tar.gz mirror://debian/pool/main/f/f2c/f2c_20100827-1.debian.tar.gz
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f0fee88e5b6c6b1850aaf5682caf82e5
_md5_=387bd56e5f5b3631ca7f4e5e874cd8cd

@ -4,10 +4,10 @@ DESCRIPTION=easily lookup countries by IP addresses, even when Reverse DNS entri
EAPI=4
HOMEPAGE=http://www.maxmind.com/app/ip-location
IUSE=ipv6 perl-geoipupdate static-libs
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos
LICENSE=LGPL-2.1 GPL-2 MaxMind2
RDEPEND=perl-geoipupdate? ( dev-perl/PerlIO-gzip dev-perl/libwww-perl )
SLOT=0
SRC_URI=http://www.maxmind.com/download/geoip/api/c/GeoIP-1.4.8.tar.gz http://geolite.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz ipv6? ( http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz )
_eclasses_=autotools f4bee52a728da1f76470f4b8d246c50f libtool 2b273eea1976cfaed3449345d94331ac multilib 9aa8a023e062fca0ba79362d9d0cc488 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=bab3b92e84d5587ba843b3c126d6527f
_md5_=e6a9881872c7d36a2aa86de0811a7012

@ -3,8 +3,9 @@ DESCRIPTION=Library for some string essentials
EAPI=4
HOMEPAGE=http://libestr.adiscon.com/
IUSE=debug static-libs
KEYWORDS=~amd64 ~arm ~hppa ~x86
KEYWORDS=amd64 ~arm ~hppa ~x86
LICENSE=LGPL-2.1
SLOT=0
SRC_URI=http://libestr.adiscon.com/files/download/libestr-0.1.4.tar.gz
_md5_=d66a4fb68382b93d9f6c2521f4a357e5
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=491d414489c911bbf143fa6adfce4182

@ -5,8 +5,8 @@ EAPI=4
HOMEPAGE=http://www.netlib.org/f2c/
IUSE=static-libs
KEYWORDS=amd64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux
LICENSE=as-is
LICENSE=HPND
SLOT=0
SRC_URI=http://www.netlib.org/f2c//libf2c.zip -> libf2c-20110801.zip
_eclasses_=eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f90a334dea459de9a07b474d6cff9cc5
_md5_=c66dc46718d6f525c28bf5f4a3d57dd8

@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 MPL-1.1 GPL-2
RDEPEND=>=dev-libs/boost-1.48[python] dev-python/pyprotocols dev-python/pyopengl dev-python/pygame dev-python/imaging 3ds? ( media-libs/lib3ds ) =dev-lang/python-2*
SLOT=0
SRC_URI=mirror://sourceforge/cgkit/cgkit-2.0.0alpha9.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=e4be685306e6a6b9067f091547b5dd29
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5a86c2885c200213551489a5026e9cc6

@ -3,10 +3,10 @@ DEPEND=dev-python/setuptools dev-lang/python
DESCRIPTION=Code coverage measurement for Python
EAPI=3
HOMEPAGE=http://nedbatchelder.com/code/coverage/ http://pypi.python.org/pypi/coverage
KEYWORDS=~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=BSD
RDEPEND=dev-python/setuptools dev-lang/python
SLOT=0
SRC_URI=mirror://pypi/c/coverage/coverage-3.5.3.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=a41aad82d611ff390fa7381568d6f2e1
_md5_=8a6636aac5e0dcb0f4c08a673a8fcf7d

@ -4,10 +4,10 @@ DESCRIPTION=Useful miscellaneous modules used by Logilab projects
EAPI=3
HOMEPAGE=http://www.logilab.org/project/logilab-common http://pypi.python.org/pypi/logilab-common
IUSE=test
KEYWORDS=~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
KEYWORDS=amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=LGPL-2.1
RDEPEND=dev-python/setuptools dev-python/unittest2 dev-lang/python
SLOT=0
SRC_URI=ftp://ftp.logilab.org/pub/common/logilab-common-0.58.1.tar.gz mirror://pypi/l/logilab-common/logilab-common-0.58.1.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=74ff47c7e3f497642691a184d9e0c106
_md5_=1112f46fedac7e89481beb0c4d8d6083

@ -4,10 +4,10 @@ DESCRIPTION=Pure python plotting library with matlab like syntax
EAPI=3
HOMEPAGE=http://matplotlib.sourceforge.net/ http://pypi.python.org/pypi/matplotlib
IUSE=cairo doc excel examples fltk gtk latex qt4 test tk wxwidgets
KEYWORDS=~amd64 ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-freebsd ~x86-linux ~x86-macos
KEYWORDS=amd64 ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=BitstreamVera BSD matplotlib MIT OFL-1.1
RDEPEND=dev-python/numpy dev-python/python-dateutil dev-python/pytz media-libs/freetype:2 media-libs/libpng gtk? ( dev-python/pygtk ) wxwidgets? ( dev-python/wxpython:2.8 ) dev-python/pyparsing cairo? ( dev-python/pycairo ) excel? ( dev-python/xlwt ) fltk? ( dev-python/pyfltk ) latex? ( virtual/latex-base app-text/ghostscript-gpl app-text/dvipng app-text/poppler[utils] dev-texlive/texlive-fontsrecommended ) qt4? ( || ( dev-python/PyQt4[X] dev-python/pyside[X] ) ) =dev-lang/python-2* tk? ( =dev-lang/python-2*[tk] )
SLOT=0
SRC_URI=mirror://sourceforge/matplotlib/matplotlib-1.1.1.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils d40dc948067bd3db1c8ebf7d51897313 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=bb80a1f834bbf1b0e8e8420e43bac6f4
_md5_=12529743e1ac771568577ce0b6d5b9ad

@ -4,10 +4,10 @@ DESCRIPTION=Network address representation and manipulation library
EAPI=4
HOMEPAGE=https://github.com/drkjam/netaddr http://pypi.python.org/pypi/netaddr
IUSE=cli
KEYWORDS=~amd64 ~x86
KEYWORDS=amd64 ~x86
LICENSE=BSD
RDEPEND=cli? ( dev-python/ipython ) dev-lang/python
SLOT=0
SRC_URI=mirror://github/drkjam/netaddr/netaddr-0.7.10.tar.gz
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 9aa8a023e062fca0ba79362d9d0cc488 python 3db636724bc2886c6425058e210067d2 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=f90423fe3aacc6e769c0e913dadaf8e2
_md5_=de2936b1b6eba5201faa15d3364ce99f

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save