Sync with portage [Wed May 15 10:03:05 MSK 2013].

mhiretskiy
root 11 years ago
parent 5cbf2f0115
commit 66bf534a20

@ -1,2 +1,3 @@
DIST orca-2.32.1.tar.bz2 2653300 SHA256 44da9da70c1b47bc87fda8f3b9da4cc1df9993d92388434f5707d39b5a832629 SHA512 d51c5ddfc979e57404b44961bd244dd639551bf9fd086326a4274a9713ec6eebe9aee6a381ee4abf47f211e034ebd2985c8a90303590094997bc10021364f796 WHIRLPOOL 2dcc5168947a25c5b918a6e98daeec246d712c34bc12ce55aa1edc1258c73b83aa7cba23d94f521bc9aec8e763601f7523a9cd91d6abc6119eb2defc47835c55
DIST orca-3.6.3.tar.xz 3699564 SHA256 403d2328b5fdbf8ccdd5759cdaf8c757ba897330339ef4429b3695d775d05763 SHA512 0e903946688a395a894530fa8aea5a7709fc3029aa284bcc819f6f12a623996ba4914ce1948caf297775ad17b15859bc5f5e39c30115597f4e309ef835812171 WHIRLPOOL 69d857bf27fa940d413dc781304d2acf81f6b90cfc06f481042545b4fe301587b6e9b4d67f309c04f026bf03ed4f0c791965b7021e30a04a1249d50059bf8caa
DIST orca-3.8.1.tar.xz 3612844 SHA256 acca5393d33c2e21a167dd1584bfc7c3038fba1feddf2e5edf4c41e07d19ad03 SHA512 b5770fbc18d4d60afedbc40549016048b1281254a8d825f4569e5e4496ff1e5d3defe427b1a6eb52dc84bb905f9a2c3d1f6cfb05216ce9654aab1e1763cbbeef WHIRLPOOL a825604d9afaba559947ef15eb1625114d3f517c53fa1d5efccb8241c05d9d6b5b5cf678d57ace19333a4037fdbdcadc3a356bcf00d985c7a0ee8d5a3c765c9c

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-3.6.3-r1.ebuild,v 1.8 2013/02/07 21:13:53 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-3.6.3-r1.ebuild,v 1.9 2013/05/14 22:34:57 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -31,11 +31,11 @@ COMMON_DEPEND="
${PYTHON_DEPS}
"
RDEPEND="${COMMON_DEPEND}
app-accessibility/speech-dispatcher[python]
app-accessibility/speech-dispatcher[python,${PYTHON_USEDEP}]
dev-libs/atk[introspection]
dev-python/pyatspi[${PYTHON_USEDEP}]
dev-python/pycairo
dev-python/setproctitle
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/setproctitle[${PYTHON_USEDEP}]
x11-libs/libwnck:3[introspection]
x11-libs/pango[introspection]
"
@ -69,10 +69,4 @@ src_install() {
python_doscript src/orca/orca
}
python_foreach_impl run_in_build_dir installing
}
run_in_build_dir() {
pushd "${BUILD_DIR}" > /dev/null || die
"$@"
popd > /dev/null
}
}

@ -0,0 +1,72 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/orca/orca-3.8.1.ebuild,v 1.1 2013/05/14 22:34:57 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python3_3 )
PYTHON_REQ_USE="threads"
inherit gnome2 python-r1
DESCRIPTION="Extensible screen reader that provides access to the desktop"
HOMEPAGE="http://projects.gnome.org/orca/"
LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
# liblouis is not in portage yet
# it is used to provide contracted braille support
# XXX: Check deps for correctness
COMMON_DEPEND="
>=app-accessibility/at-spi2-atk-2.5.91:2
>=app-accessibility/at-spi2-core-2.5.91:2
>=dev-libs/atk-2.5.91
>=dev-libs/glib-2.28:2
>=dev-python/pygobject-3.2.2:3[${PYTHON_USEDEP}]
>=x11-libs/gtk+-3.5.16:3[introspection]
${PYTHON_DEPS}
"
RDEPEND="${COMMON_DEPEND}
>=app-accessibility/speech-dispatcher-0.8[python,${PYTHON_USEDEP}]
dev-libs/atk[introspection]
dev-python/pyatspi[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-python/setproctitle[${PYTHON_USEDEP}]
x11-libs/libwnck:3[introspection]
x11-libs/pango[introspection]
"
DEPEND="${COMMON_DEPEND}
app-text/yelp-tools
>=dev-util/intltool-0.40
virtual/pkgconfig
"
src_prepare() {
gnome2_src_prepare
python_copy_sources
}
src_configure() {
python_foreach_impl run_in_build_dir gnome2_src_configure
}
src_compile() {
python_foreach_impl run_in_build_dir gnome2_src_compile
}
src_install() {
DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README TODO"
installing() {
gnome2_src_install
# Massage shebang to make python_doscript happy
sed -e 's:#!'"${PYTHON}:#!/usr/bin/python:" \
-i src/orca/orca || die
python_doscript src/orca/orca
}
python_foreach_impl run_in_build_dir installing
}

@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.8-r2.ebuild,v 1.1 2013/04/04 16:09:31 williamh Exp $
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.8-r2.ebuild,v 1.2 2013/05/14 22:48:07 eva Exp $
EAPI=5
PYTHON_COMPAT=( python3_2 )
PYTHON_COMPAT=( python3_2 python3_3 )
inherit eutils python-r1

@ -1,4 +1,4 @@
DIST seahorse-2.32.0.tar.bz2 2491230 SHA256 f55468237246a485317d59e2fbc1b1ef5f5bd4c5a7b9ff6f40c3d921af0ed52d SHA512 b75d94dbce8a00ecec4c230975104b0868f5b51bbcaf18a3b0a2520156c1b1336ad60a978775657fdca0bdabd0ebcd52a5e086a25ed8be1cbae9354245705879 WHIRLPOOL ce686c02f8f3935e963ef2fcf4b334372cb8698eb67353891276c79e3f587e50d3b9cb8bd5291eaff21e1e7bc48a82ddc8fa87a24cdf39e1c1732846d71d1e5d
DIST seahorse-3.6.3.tar.xz 1995252 SHA256 9b712da1989725547a8093e638725ee6de74d7870661545a15374c7ebf335cc1 SHA512 e0a48a6391d46fb80f510f7d881fe87d78281db4f00960f54511121068bd9a8347f07cbd56c76a2a7863e34f9fc6043c6dbe73eea93b85eebdfe7bf5c8193a5c WHIRLPOOL cc66e3176c5ac74611dea7aec7fe9e2b31fc51b9b9b6f5421bc6823b55f8eb8a73895c3f375e4bfad1519ed5966b7f77f0f878253e1cf736a4b2d6255cc80541
DIST seahorse-3.8.0.tar.xz 2017552 SHA256 0b12d1cda37d1b70ad96bb6ec2ee08b093d48844ca7fa62b4905732232a890c9 SHA512 e57a1fa3843bcba70b701608d7dfadd7f156c4ba26b973b00aaaf3493cc73099e62100ab346229c4ff3bb3500e5451542284723db90ef5bc9aa66ee2dfcdb0d6 WHIRLPOOL 549997f44e47777b09ceb78a13830927075020f62369d633cc7bf1e6a78017eb9811ab20a8e91ca49102c0d9f419df8109275c05df2dd51e306546b748fe3a75
DIST seahorse-3.8.1.tar.xz 2064984 SHA256 c1a1d97618a37a79e19902e00f3a0de7cfb947b52eb9282ea09e5f9f73151e7a SHA512 ade4a6e4b76d3cf7ad8f1f3df9b4c0eec6228bd4138d492f38f340d73960259179238961cf28d87e7a16354f6a19d5de7a980e250507d21bfd21b27d24fdd9e1 WHIRLPOOL 7fd14c9a5da902acea3b18d611aa42ed44c4c9513c1c43eb8f7fb289cd6bb82f8098bd65d02b33a33366a8682fa236f49e81d471dbcaf9bfc49048d153c9bc0b
DIST seahorse-3.8.2.tar.xz 2012712 SHA256 b3837d088b7e3f7ebc41cb3f11c5c85e2df7e06bdc538a3e85bb1a13c34c9a12 SHA512 bef79052b874e752a6adcce7273bb5bc0ef513c9814374494f5da1e78e8653f0ef59ea7b5233e59419113e2b18d35578e2d902cc8ffbdeb50a419a0257fc3ada WHIRLPOOL 59ad2c53bfed0ca731e1fe1e61af215eea5c7a81c133a6fd5b5787731626a3fd44fca58b490063a5c4d1ccffed614f5ae6ccd59d4d551b02ea66c9d45456834f

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.8.1.ebuild,v 1.2 2013/04/21 11:50:21 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.8.1.ebuild,v 1.3 2013/05/14 20:09:54 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@ -57,7 +57,7 @@ src_configure() {
--enable-ssh \
--enable-pkcs11 \
--disable-static \
--enable-hkp \
--enable-hkp \
$(use_enable avahi sharing) \
$(use_enable debug) \
$(use_enable ldap) \

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.8.0.ebuild,v 1.1 2013/03/28 16:29:29 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-3.8.2.ebuild,v 1.1 2013/05/14 20:09:54 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@ -8,7 +8,7 @@ GCONF_DEBUG="yes"
inherit gnome2
DESCRIPTION="A GNOME application for managing encryption keys"
HOMEPAGE="http://www.gnome.org/projects/seahorse/index.html"
HOMEPAGE="http://projects.gnome.org/seahorse/index.html"
LICENSE="GPL-2+ FDL-1.1+"
SLOT="0"
@ -52,16 +52,14 @@ src_prepare() {
}
src_configure() {
G2CONF="${G2CONF}
--enable-pgp
--enable-ssh
--enable-pkcs11
--disable-static
--enable-hkp
$(use_enable avahi sharing)
$(use_enable debug)
$(use_enable ldap)
ITSTOOL=$(type -P true)"
gnome2_src_configure
gnome2_src_configure \
--enable-pgp \
--enable-ssh \
--enable-pkcs11 \
--disable-static \
--enable-hkp \
$(use_enable avahi sharing) \
$(use_enable debug) \
$(use_enable ldap) \
ITSTOOL=$(type -P true)
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.8.ebuild,v 1.5 2013/05/12 14:05:46 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.8.ebuild,v 1.6 2013/05/14 14:06:18 jer Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/tmux/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~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 ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="vim-syntax"
COMMON_DEPEND="

@ -1,3 +1,2 @@
DIST tracker-0.14.5.tar.xz 6065728 SHA256 cabef75eb18ad35208000dc472bdc20a74269799414527ee6e1c1c1cfb28eec8 SHA512 ab65d5618ef51d23b65e3d6972834e573415dba52e7bb9f20f8f9d4d4aab467b667301e6540083401d91c9e36cb63fdb2259f6dd9e975e9ff60bf1f83245b777 WHIRLPOOL 4c2c5ad9ff0d7a35c5e9c6bc42b354b9967a436cb1a8b2b640ca09e102a428e268bd011e0405a2b331f80df5a69dcd7e0afc693ae4969604ee41088e5da0c25b
DIST tracker-0.16.0.tar.xz 5921104 SHA256 299c6a180370522d1d794c184aaef8d8222d3f737d564b8e5ca25b8751470c4f SHA512 621b0ab202bfbe6f29d8d75333a8f051b677c14c9c352d09afef92aca7f908b82307ceea4e1e55f14fc0666d8256019ff7e2664737eb34b6ab8c22a742696a40 WHIRLPOOL 245a64d577bccd65798ad90459a027d5f5b9cc344fcff298ed8912562a7391b982b2fb5ba12aa81b9208fab35f6cb769ff27c3b694e1f0d709696f473ee329db
DIST tracker-0.16.1.tar.xz 5970452 SHA256 fbb94144826b00da0b427dc6f37d2679bd8dfec1dc992e857a47a0b453f0b771 SHA512 f980bf4558f3a69bc6044e6315c213e4413325364f3e2dcf11d92a9d7e11d61d179c6a4648769b8c5441869df242fd451d769672a6bfba79e2f311fb77e664e3 WHIRLPOOL 0a88138aa24aecd21329a35db611e9ccbea07c8e81f45c94511106232fa468ee9df75e7e20162a35b90ebae299e1a9ee7f6373420dfe6f58296416d98754f255

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.14.5.ebuild,v 1.7 2013/05/02 08:03:51 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.14.5.ebuild,v 1.8 2013/05/14 21:37:42 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -96,6 +96,7 @@ RDEPEND="
# mp3? ( qt4? ( >=dev-qt/qtgui-4.7.1:4 ) )
DEPEND="${RDEPEND}
${PYTHON_DEPS}
$(vala_depend)
>=dev-util/gtk-doc-am-1.8
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
@ -203,6 +204,7 @@ src_configure() {
FIREFOX="${S}"/firefox-version.sh \
$(use_enable flac libflac) \
$(use_enable flickr miner-flickr) \
$(use_enable gif libgif) \
$(use_enable gnome-keyring) \
$(use_enable gsf libgsf) \
$(use_enable gtk tracker-explorer) \

@ -1,265 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.16.0.ebuild,v 1.6 2013/04/28 14:27:32 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python2_{6,7} )
VALA_MIN_API_VERSION="0.14"
inherit autotools gnome2 linux-info multilib python-any-r1 vala versionator virtualx
DESCRIPTION="A tagging metadata database, search tool and indexer"
HOMEPAGE="http://projects.gnome.org/tracker/"
LICENSE="GPL-2+ LGPL-2.1+"
SLOT="0/16"
IUSE="cue eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 nautilus networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
REQUIRED_USE="
^^ ( gstreamer xine )
cue? ( gstreamer )
upnp-av? ( gstreamer )
!miner-fs? ( !cue !exif !flac !gif !gsf !iptc !iso !jpeg !mp3 !pdf !playlist !tiff !vorbis !xml !xmp !xps )
"
# According to NEWS, introspection is non-optional
# glibc-2.12 needed for SCHED_IDLE (see bug #385003)
# sqlite-3.7.16 for FTS4 support
RDEPEND="
>=app-i18n/enca-1.9
>=dev-db/sqlite-3.7.16:=
>=dev-libs/glib-2.35.1:2
>=dev-libs/gobject-introspection-0.9.5
>=dev-libs/icu-4:=
|| (
>=media-gfx/imagemagick-5.2.1[png,jpeg=]
media-gfx/graphicsmagick[imagemagick,png,jpeg=] )
>=media-libs/libpng-1.2:0=
>=x11-libs/pango-1:=
sys-apps/util-linux
cue? ( media-libs/libcue )
eds? (
>=mail-client/evolution-3.3.5:=
>=gnome-extra/evolution-data-server-3.3.5:=
<mail-client/evolution-3.5.3
<gnome-extra/evolution-data-server-3.5.3 )
elibc_glibc? ( >=sys-libs/glibc-2.12 )
exif? ( >=media-libs/libexif-0.6 )
firefox-bookmarks? ( || (
>=www-client/firefox-4.0
>=www-client/firefox-bin-4.0 ) )
flac? ( >=media-libs/flac-1.2.1 )
gif? ( media-libs/giflib )
gsf? ( >=gnome-extra/libgsf-1.13 )
gstreamer? (
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0 )
gtk? (
>=dev-libs/libgee-0.3:0.8
>=x11-libs/gtk+-3:3 )
iptc? ( media-libs/libiptcdata )
iso? ( >=sys-libs/libosinfo-0.0.2:= )
jpeg? ( virtual/jpeg:0 )
laptop? ( >=sys-power/upower-0.9 )
libsecret? ( >=app-crypt/libsecret-0.5 )
mp3? (
>=media-libs/taglib-1.6
gtk? ( x11-libs/gdk-pixbuf:2 ) )
networkmanager? ( >=net-misc/networkmanager-0.8 )
pdf? (
>=x11-libs/cairo-1:=
>=app-text/poppler-0.16:=[cairo,utils]
>=x11-libs/gtk+-2.12:2 )
playlist? ( >=dev-libs/totem-pl-parser-3 )
rss? ( net-libs/libgrss:0.5 )
thunderbird? ( || (
>=mail-client/thunderbird-5.0
>=mail-client/thunderbird-bin-5.0 ) )
tiff? ( media-libs/tiff )
upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 )
vorbis? ( >=media-libs/libvorbis-0.22 )
xine? ( >=media-libs/xine-lib-1 )
xml? ( >=dev-libs/libxml2-2.6 )
xmp? ( >=media-libs/exempi-2.1 )
xps? ( app-text/libgxps )
!gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) )
"
# strigi? ( >=app-misc/strigi-0.7 )
# mp3? ( qt4? ( >=dev-qt/qtgui-4.7.1:4 ) )
DEPEND="${RDEPEND}
${PYTHON_DEPS}
>=dev-util/gtk-doc-am-1.8
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
virtual/pkgconfig
gtk? ( >=dev-libs/libgee-0.3 )
test? (
>=dev-libs/dbus-glib-0.82-r1
>=sys-apps/dbus-1.3.1[X] )
"
PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.16 )"
function inotify_enabled() {
if linux_config_exists; then
if ! linux_chkconfig_present INOTIFY_USER; then
ewarn "You should enable the INOTIFY support in your kernel."
ewarn "Check the 'Inotify support for userland' under the 'File systems'"
ewarn "option. It is marked as CONFIG_INOTIFY_USER in the config"
die 'missing CONFIG_INOTIFY'
fi
else
einfo "Could not check for INOTIFY support in your kernel."
fi
}
pkg_setup() {
linux-info_pkg_setup
inotify_enabled
python-any-r1_pkg_setup
}
src_prepare() {
# Don't run 'firefox --version' or 'thunderbird --version'; it results in
# access violations on some setups (bug #385347, #385495).
create_version_script "www-client/firefox" "Mozilla Firefox" firefox-version.sh
create_version_script "mail-client/thunderbird" "Mozilla Thunderbird" thunderbird-version.sh
# FIXME: report broken tests
sed -e '\%"/libtracker-common/tracker-dbus/request"%,+1 d' \
-i tests/libtracker-common/tracker-dbus-test.c || die
sed -e '\%/libtracker-common/file-utils/has_write_access_or_was_created%,+1 d' \
-i tests/libtracker-common/tracker-file-utils-test.c || die
sed -e '\%/libtracker-miner/tracker-password-provider/setting%,+1 d' \
-e '\%/libtracker-miner/tracker-password-provider/getting%,+1 d' \
-i tests/libtracker-miner/tracker-password-provider-test.c || die
sed -e '\%"datetime/functions-localtime-1"%,\%"datetime/functions-timezone-1"% d' \
-i tests/libtracker-data/tracker-sparql-test.c || die
sed -e '/#if HAVE_TRACKER_FTS/,/#endif/ d' \
-i tests/libtracker-sparql/tracker-test.c || die
sed -e 's/\({ "本州最主流的风味",.*TRUE, \) 8/\1 5/' \
-e 's/\({ "ホモ・サピエンス.*TRUE, \) 13/\1 10/' \
-i tests/libtracker-fts/tracker-parser-test.c || die
# Fails inside portage, not outside
sed -e '\%/steroids/tracker/tracker_sparql_update_async%,+1 d' \
-i tests/tracker-steroids/tracker-test.c || die
eautoreconf # See bug #367975
gnome2_src_prepare
}
src_configure() {
local myconf=""
if use gstreamer ; then
myconf="${myconf} --enable-generic-media-extractor=gstreamer"
if use upnp-av; then
myconf="${myconf} --with-gstreamer-backend=gupnp-dlna"
else
myconf="${myconf} --with-gstreamer-backend=discoverer"
fi
elif use xine ; then
myconf="${myconf} --enable-generic-media-extractor=xine"
else
myconf="${myconf} --enable-generic-media-extractor=external"
fi
# if use mp3 && (use gtk || use qt4); then
if use mp3 && use gtk; then
#myconf="${myconf} $(use_enable !qt4 gdkpixbuf) $(use_enable qt4 qt)"
myconf="${myconf} --enable-gdkpixbuf"
fi
# unicode-support: libunistring, libicu or glib ?
# According to NEWS, introspection is required
# FIXME: disabling streamanalyzer for now since tracker-sparql-builder.h
# is not being generated
# XXX: disabling qt since tracker-albumart-qt is unstable; bug #385345
# nautilus extension is in a separate package, nautilus-tracker-tags
gnome2_src_configure \
--disable-hal \
--disable-libstreamanalyzer \
--disable-nautilus-extension \
--disable-qt \
--enable-guarantee-metadata \
--enable-introspection \
--enable-tracker-fts \
--with-enca \
--with-unicode-support=libicu \
$(use_enable cue libcue) \
$(use_enable eds miner-evolution) \
$(use_enable exif libexif) \
$(use_enable firefox-bookmarks miner-firefox) \
$(use_with firefox-bookmarks firefox-plugin-dir "${EPREFIX}"/usr/$(get_libdir)/firefox/extensions) \
FIREFOX="${S}"/firefox-version.sh \
$(use_enable flac libflac) \
$(use_enable gsf libgsf) \
$(use_enable gtk tracker-needle) \
$(use_enable gtk tracker-preferences) \
$(use_enable iptc libiptcdata) \
$(use_enable iso libosinfo) \
$(use_enable jpeg libjpeg) \
$(use_enable laptop upower) \
$(use_enable libsecret) \
$(use_enable miner-fs) \
$(use_enable mp3 taglib) \
$(use_enable networkmanager network-manager) \
$(use_enable pdf poppler) \
$(use_enable playlist) \
$(use_enable rss miner-rss) \
$(use_enable test functional-tests) \
$(use_enable test unit-tests) \
$(use_enable thunderbird miner-thunderbird) \
$(use_with thunderbird thunderbird-plugin-dir "${EPREFIX}"/usr/$(get_libdir)/thunderbird/extensions) \
THUNDERBIRD="${S}"/thunderbird-version.sh \
$(use_enable tiff libtiff) \
$(use_enable vorbis libvorbis) \
$(use_enable xml libxml2) \
$(use_enable xmp exempi) \
$(use_enable xps libgxps) \
${myconf}
# $(use_enable strigi libstreamanalyzer)
}
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
Xemake check XDG_DATA_HOME="${T}" XDG_CONFIG_HOME="${T}"
}
src_install() {
gnome2_src_install
# Manually symlink extensions for {firefox,thunderbird}-bin
if use firefox-bookmarks; then
dosym /usr/share/xul-ext/trackerfox \
/usr/$(get_libdir)/firefox-bin/extensions/trackerfox@bustany.org
fi
if use thunderbird; then
dosym /usr/share/xul-ext/trackerbird \
/usr/$(get_libdir)/thunderbird-bin/extensions/trackerbird@bustany.org
fi
}
create_version_script() {
# Create script $3 that prints "$2 MAX(VERSION($1), VERSION($1-bin))"
local v=$(best_version ${1})
v=${v#${1}-}
local vbin=$(best_version ${1}-bin)
vbin=${vbin#${1}-bin-}
if [[ -z ${v} ]]; then
v=${vbin}
else
version_compare ${v} ${vbin}
[[ $? -eq 1 ]] && v=${vbin}
fi
echo -e "#!/bin/sh\necho $2 $v" > "$3" || die
chmod +x "$3" || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.16.1.ebuild,v 1.3 2013/05/05 07:38:35 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.16.1.ebuild,v 1.4 2013/05/14 21:37:42 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -87,12 +87,12 @@ RDEPEND="
xmp? ( >=media-libs/exempi-2.1 )
xps? ( app-text/libgxps )
!gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) )
$(vala_depend)
"
# strigi? ( >=app-misc/strigi-0.7 )
# mp3? ( qt4? ( >=dev-qt/qtgui-4.7.1:4 ) )
DEPEND="${RDEPEND}
${PYTHON_DEPS}
$(vala_depend)
>=dev-util/gtk-doc-am-1.8
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
@ -141,11 +141,12 @@ src_prepare() {
# https://bugzilla.gnome.org/show_bug.cgi?id=699412
sed -e '/#if HAVE_TRACKER_FTS/,/#endif/ d' \
-i tests/libtracker-sparql/tracker-test.c || die
# upstream bug #????
# sed -e 's/\({ "本州最主流的风味",.*TRUE, \) 8/\1 5/' \
# -e 's/\({ "ホモ・サピエンス.*TRUE, \) 13/\1 10/' \
# -i tests/libtracker-fts/tracker-parser-test.c || die
# Fails inside portage, not outside, still fails, upstream bug #699413
# https://bugzilla.gnome.org/show_bug.cgi?id=699412
sed -e 's/\({ "本州最主流的风味",.*TRUE, \) 8/\1 5/' \
-e 's/\({ "ホモ・サピエンス.*TRUE, \) 13/\1 10/' \
-i tests/libtracker-fts/tracker-parser-test.c || die
# Fails inside portage, not outside
# https://bugzilla.gnome.org/show_bug.cgi?id=699413
sed -e '\%/steroids/tracker/tracker_sparql_update_async%,+1 d' \
-i tests/tracker-steroids/tracker-test.c || die
@ -199,6 +200,7 @@ src_configure() {
$(use_with firefox-bookmarks firefox-plugin-dir "${EPREFIX}"/usr/$(get_libdir)/firefox/extensions) \
FIREFOX="${S}"/firefox-version.sh \
$(use_enable flac libflac) \
$(use_enable gif libgif) \
$(use_enable gsf libgsf) \
$(use_enable gtk tracker-needle) \
$(use_enable gtk tracker-preferences) \

@ -1,2 +1,2 @@
DIST skrooge-1.6.0.tar.bz2 9849200 SHA256 7237400f0ae9af317ec9ac45d8d35144f827146b8cb4e37fa092412fec5f0b0e SHA512 4dd9321c9799b3fdc0a30b694c443f9157feddb26bfc4cf25ef14e38718a237da13685d0ae4394353e9dd3d98348aad16e45f0ad13c7b5baa1aeba633cf14a3f WHIRLPOOL a0016ba50114d037ddd54ff9c3662f5cd7c28390d3a082ce192f540ca5091e6fd93daad719b1960ac7fca1c32c825843b67b8cea2675b1232b3be249dfe4084b
DIST skrooge-1.7.0.tar.bz2 9903897 SHA256 c21ccebff8cd599db9d41af0fd8bbdbd6077ff563848f2f7d28e7c5a340b94ab SHA512 f09cdb10fdcce5259e5d993294a3f29fe5652eaeaebe2cf1c3d6595d30c53c8e30a40987c6678e0dc6bb762d56f4b36a011603a5b144d98a109f0b4baff73a15 WHIRLPOOL 6321d8cc14f4c0a45aeb585e14a60ad1195b8e40dd00504c4f25459e8ed098fcc0de685c8e587d45062690219ee1a6daffa74a927458c931e650acbca547bdcb
DIST skrooge-1.7.1.tar.bz2 9902534 SHA256 7427c9c4a93a9c6794e6419ef225c8f512548217ab2eac7abf217f5802cd6a88 SHA512 ff3da7a7d9c20f9240af94b4fabd219be11cb7b3fa96fc341b7d79f39d5d0cb163eab0565dc07cf41bec7564376a2ad20c1b1f85f4ba92299ebc4470ecba7b6c WHIRLPOOL 97660d34b46d0c75a9cef9f29b340b1b4ae7fdc17b4120488ec778dba93d45429ce3885266d62d7bb9160e056a08aee3213ced49fc71c2699559e50c503ad5fc

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/skrooge/skrooge-1.7.0.ebuild,v 1.1 2013/05/05 16:12:43 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/skrooge/skrooge-1.7.1.ebuild,v 1.1 2013/05/14 17:36:04 johu Exp $
EAPI=5

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/writerperfect/writerperfect-0.8.2.ebuild,v 1.1 2013/05/13 12:16:06 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/writerperfect/writerperfect-0.8.2.ebuild,v 1.2 2013/05/14 14:50:27 scarabeus Exp $
EAPI=5
@ -17,9 +17,12 @@ RDEPEND="
app-text/libwpd:0.9
app-text/libwpg:0.2
app-text/libodfgen
wps? ( app-text/libwps )
visio? ( media-libs/libvisio )
cdr? ( media-libs/libcdr )
gsf? ( gnome-extra/libgsf )
mspub? ( app-text/libmspub )
mwaw? ( app-text/libmwaw )
visio? ( media-libs/libvisio )
wps? ( app-text/libwps )
"
DEPEND="${RDEPEND}
virtual/pkgconfig

@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>graaff@gentoo.org</email>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<use>
<flag name='html'>Install HTML documentation</flag>

@ -3,6 +3,6 @@ DIST glib-1.2.10.tar.gz 421480 SHA256 6e1ce7eedae713b11db82f11434d455d8a1379f783
DIST glib-2.32.4-AS_IF-patches.tar.xz 8584 SHA256 c61a87bbed8b09148f70f2651696430ab262d8ee905ebe2e0e963bb9038c5545 SHA512 cea825c379ea9014014f8a6f3a9fcf228e6b4245c649df4d86f6d86d1d655fd927ef1115fd66521cc48b2929d8cd504a284c7a8fb5ff38dc2b83ac4140655049 WHIRLPOOL e778094ad8ebe6fdc236942c21ee8ce2266712a08672b521f931159dd81d3452fcb8b6556c98c82b60548b1d9703a3ff332d02970a01565b6f5c4bcd02e74b46
DIST glib-2.32.4.tar.xz 6178556 SHA256 a5d742a4fda22fb6975a8c0cfcd2499dd1c809b8afd4ef709bda4d11b167fae2 SHA512 bc8b2d6afae7635f940065eca3e854ee171812c7b582d55313db11d28875495dbf41fc0a260347b30f7490daa65ccc377d8a2d60bb3a26d07997606d8e3d989f WHIRLPOOL 35aec94088acff460685c0b1bb2e6fcffadb0f9f0044b93f3fa042ed82dd52efb5e56022575c0ebcfda4230d38edc26a916623f0bfcbfc8e1c6b76a3133d43bc
DIST glib-2.34.3.tar.xz 6334872 SHA256 855fcbf87cb93065b488358e351774d8a39177281023bae58c286f41612658a7 SHA512 2382e09159da2ef47384a3e52622f139577af69d6aba86ea1636f2b6b23b9f6bf89967f29394fd7f93d0528e2c58ae015864aa58a3e3e4f504c7a268b2ef4a75 WHIRLPOOL 296f29666bdd38faae41a1b0b7875dd5fb6ac23d5d27282658e73bbb614db944b3a92d5334ddcca19f959e4c5ef2bf20a5b0f19390558645f986afc2f84edd4d
DIST glib-2.36.0.tar.xz 6508276 SHA256 455a8abe8692c5174bcc7ffa15b96a7521a2f2f9fb47594405927c35cb9bb227 SHA512 86402c22b3df419112aab82bfe2c2a598992c6eadf941375b6f4f1840f9004491fafcbd95dc372262cddb29064abba54c640b1dbf281ff75c0ea209683876530 WHIRLPOOL 9db755e0a6070a63b78ebc71b6c54279faeffec57f9392c329fdbd105bfe5f74caff134c0aef7c93a542eed71e0465f7c1a42c4277ad7a8d42cf837fdc1f434c
DIST glib-2.36.1.tar.xz 6524408 SHA256 7de37586794e92c024feebe5d306bf5f245fef4803c3666af1ae8dac6ee10b24 SHA512 e738ef537fc8b05f535a42a46c3e5cf8d7c9c3aed788adea1bfd924e6031e6f3e8366850a3a1a0ea2c2a4c5e54f08eacf6cccbf32fb8a361b62a6caf9c4b7852 WHIRLPOOL 05298f71ff63b458ddc7e67c7ce0ab800109068c6bb2b0bff5ccfd76d8ed29cb5568d8a2953b71947bb0385033c3564467f9adfa377fc65c27eb765f71f71ef3
DIST glib-2.36.2.tar.xz 6615452 SHA256 5ea98451fb57d0ba523a1e836545f0a919b498863056fdd9da69d148c1347f80 SHA512 0030b2d52570c5c72aeed85e1d8611d2354efdb6200be3a4f716bd0f92a34002546c974f65ee1fd8822ac791efce9574b6148b04a88af377108f60ad65220016 WHIRLPOOL 90e2335c37f951145d511e1532e5e2ad1590895f1cbe4c1dcc5ecdd45f5d68719d5cb8204e75afcd207e21fdb207be6f8453d20ef1a8279e93d234957b276219
DIST pkg-config-0.26.tar.gz 396399 SHA256 94c1936a797c930fb3e4e5a154165b6268caba22b32d24083dd4c492a533c8af SHA512 9390d5918dd4ac520b914d2330aa7cae2587ca7b21b03bc88372fd5dbbd78e33eeb3fca39fcdb6dd10113658f03118a1c8829149c7029eb0dd80348d100170a4 WHIRLPOOL f535946a02192a9bffc7be0fae454e25aa86af8bac7f47622d52ed13f77f1ba05ff9b5693b2a501981e3991e4e1595eced22dee4ab748b310baa7d57267a62a7

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.36.0.ebuild,v 1.2 2013/04/07 17:33:00 eva Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.36.2.ebuild,v 1.1 2013/05/14 22:15:34 pacho Exp $
EAPI="5"
PYTHON_COMPAT=( python2_{5,6,7} )
@ -10,8 +10,6 @@ inherit autotools gnome.org libtool eutils flag-o-matic gnome2-utils multilib pa
DESCRIPTION="The GLib library of C routines"
HOMEPAGE="http://www.gtk.org/"
SRC_URI="${SRC_URI}
http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz" # pkg.m4 for eautoreconf
LICENSE="LGPL-2+"
SLOT="2"
@ -52,14 +50,17 @@ PDEPEND="x11-misc/shared-mime-info
pkg_setup() {
if use kernel_linux ; then
CONFIG_CHECK="~INOTIFY_USER"
if use test; then
CONFIG_CHECK="~IPV6"
WARNING_IPV6="Your kernel needs IPV6 support for running some tests, skipping them."
export IPV6_DISABLED="yes"
fi
linux-info_pkg_setup
fi
}
src_prepare() {
mv -f "${WORKDIR}"/pkg-config-*/pkg.m4 "${WORKDIR}"/ || die
# Fix gmodule issues on fbsd; bug #184301
# Fix gmodule issues on fbsd; bug #184301, upstream bug #107626
epatch "${FILESDIR}"/${PN}-2.12.12-fbsd.patch
if use test; then
@ -67,7 +68,7 @@ src_prepare() {
sed 's:^\(.*"/desktop-app-info/delete".*\):/*\1*/:' \
-i "${S}"/gio/tests/desktop-app-info.c || die "sed failed"
# Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
# Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629, upstream bug #629163
if ! has_version dev-util/desktop-file-utils ; then
ewarn "Some tests will be skipped due dev-util/desktop-file-utils not being present on your system,"
ewarn "think on installing it to get these tests run."
@ -99,6 +100,17 @@ src_prepare() {
ln -sfn $(type -P true) gio/tests/gdbus-testserver.py
fi
# Some tests need ipv6, upstream bug #667468
if [[ -n "${IPV6_DISABLED}" ]]; then
sed -i -e "/socket\/ipv6_sync/d" gio/tests/socket.c || die
sed -i -e "/socket\/ipv6_async/d" gio/tests/socket.c || die
sed -i -e "/socket\/ipv6_v4mapped/d" gio/tests/socket.c || die
fi
# Test relies on /usr/bin/true, but we have /bin/true, upstream bug #698655
sed -i -e "s:/usr/bin/true:/bin/true:" gio/tests/desktop-app-info.c || die
# thread test fails, upstream bug #679306
epatch "${FILESDIR}/${PN}-2.34.0-testsuite-skip-thread4.patch"
fi
@ -117,8 +129,9 @@ src_prepare() {
# Needed for the punt-python-check patch, disabling timeout test
# Also needed to prevent croscompile failures, see bug #267603
# Also needed for the no-gdbus-codegen patch
AT_M4DIR="${WORKDIR}" eautoreconf
eautoreconf
# FIXME: Really needed when running eautoreconf before? bug#????
[[ ${CHOST} == *-freebsd* ]] && elibtoolize
epunt_cxx

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/libdbusmenu-0.6.2.ebuild,v 1.6 2013/04/26 20:48:14 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdbusmenu/libdbusmenu-0.6.2.ebuild,v 1.7 2013/05/14 18:05:55 maekke Exp $
EAPI=4
VALA_MIN_API_VERSION=0.16
@ -14,7 +14,7 @@ SRC_URI="http://launchpad.net/${PN/lib}/${PV%.*}/${PV}/+download/${P}.tar.gz"
LICENSE="LGPL-2.1 LGPL-3"
SLOT="3"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="debug gtk +introspection"
RDEPEND=">=dev-libs/glib-2.32

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1.ebuild,v 1.3 2013/05/12 12:25:28 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1.ebuild,v 1.4 2013/05/14 18:07:33 maekke Exp $
EAPI=5
VALA_MIN_API_VERSION="0.16"
@ -14,7 +14,7 @@ SRC_URI="http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz"
LICENSE="LGPL-2.1 LGPL-3"
SLOT="3"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gtk +introspection"
RESTRICT="test" # consequence of the -no-mono.patch

@ -1,2 +1,3 @@
DIST mps-kit-1.106.2.tar.gz 1303450 SHA256 3b482620adb3e93610dc2b56a856a61f1eeb8c40d65e7bafd78bedf1294467ba SHA512 6d4a6441c4b0afd9daa0ef20a962fd9a5cd120ed324bfb7ece95ec7570f2907853ff4843fcb71537910d81339bb92cd612fa67ad0beb0ad89382339f39760a34 WHIRLPOOL 32bd80cd6ca987ccd995ed3b979855db56c996ff9d3a8de83e105ad4464fd80128c74c768d218f36953710277a880d609203ae9e92c010739137c02010fc87f6
DIST mps-kit-1.110.0.tar.gz 1920116 SHA256 b31be25c2e180d2a09ee39464ad70d2f0dfb882002add5b63d00efe6e70fdffe SHA512 b613833a9b9a79547639337e4cda897b939c45cb84579521ec63b5560ad94cb7a8b4885b51eace119fc7c3ebf725433dfca41d96c8a773df94b37abb605bb07f WHIRLPOOL d62912c64546d6049ead5c8c11709d7f8a0cdfe5c24cfc7a29818985a50dbb00a63853713642dbae2778edd3101bdc84f5fa38e7c0561bb3167b41540e9298a0
DIST mps-kit-1.111.0.tar.gz 3197286 SHA256 fefa1be5d873d151b2e211002994143583b4c8e0bf6e588e3f052b9c60bc8d8b SHA512 628ad619dbce1460265ffbfc76adb4a88a2168b80bd1d8de10509d7025e7f9cd240ccc7dda044119863d0f2db95792ca9c94a35271dac5a995e8609221d7e67b WHIRLPOOL 1092692325b210e9af1cf744629b643b0b47a7f9918a75043964f3cb1d9351dc716aacb7153c3c9859f440cb84fb2269e9fed84c37433d0972f4c6c3b08599f0

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/mps/mps-1.106.2.ebuild,v 1.4 2012/11/25 21:54:19 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/mps/mps-1.106.2.ebuild,v 1.5 2013/05/15 04:13:43 patrick Exp $
EAPI=4
DESCRIPTION="Ravenbrook Memory Pool System"
@ -31,7 +31,7 @@ src_compile() {
}
src_install() {
mkdir -p ${D}/usr/include/mps
cp ${S}/*.h ${D}/usr/include/mps
dolib.a ${S}/lii4gc/ci/*.a
mkdir -p "${D}"/usr/include/mps
cp "${S}"/*.h "${D}"/usr/include/mps
dolib.a "${S}"/lii4gc/ci/*.a
}

@ -0,0 +1,28 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/mps/mps-1.111.0.ebuild,v 1.1 2013/05/15 04:13:43 patrick Exp $
EAPI=4
inherit eutils
DESCRIPTION="Ravenbrook Memory Pool System"
MY_P="${PN}-kit-${PV}"
HOMEPAGE="http://www.ravenbrook.com/project/mps/"
SRC_URI="http://www.ravenbrook.com/project/${PN}/release/${PV}/${MY_P}.tar.gz"
LICENSE="Sleepycat"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}/
src_prepare() {
# need to fix CFLAGS, it's still being silly
sed -i -e 's/-Werror//' code/g{c,p}.gmk || die "Failed to fix CFLAGS"
}

@ -1,3 +1,4 @@
DIST totem-pl-parser-2.32.6.tar.xz 1438372 SHA256 8e6ccef547f1ad311474a975032d2482e621550ee3d4d22c725cdc6b496e4874 SHA512 25726fd95815955b5f8b6fc35cc906f9dcd3818a17f0113e8fcc3240b4fadbaabfcfe91d463ef2d69062cd19a9b6a665342a14a88d781ab70929ac40add07ac3 WHIRLPOOL 1e924e1ff461aac1259a3cd10cefe8b11dbf59f8a676004f5023abb5da623bed520c07937ea802f619a9a33f47a47f2014cbd5ed5795befe35abc8e1bc8986e9
DIST totem-pl-parser-3.4.3.tar.xz 1602000 SHA256 ab8beed4dd5d3a5d7ed5dc8b357e94dc03a8553fef6e33c2e7fb63a76e44c42b SHA512 19ecc0aab4ce486cfbe5bd6390467fb1e14279708aaeb831f8626f7350c8b8deaa59157f95f746cfd4ac8d87a496977f558fce605bed4647f877d05dc0b0ebe6 WHIRLPOOL 7b1e654dc96e07d690309662d039cacd71c6ddc9d4856f4819be33024db02ddbd88a3d87e43ee486716f9c58256cd61a701c99d541d996085c1405dc7df15f40
DIST totem-pl-parser-3.4.4.tar.xz 1607332 SHA256 b821e812da3f3e42d2f831296b4031c60a615d29857781971578ce2c0c807457 SHA512 53e3e8d720acd8f4d17f5504613ec38fc095191172f6ee103d89e7703a1003db040ce35f8e8929fdd7b806d337020720da867ecc6e1f2395e359a91bd3d4dc24 WHIRLPOOL a57ad6620e919031b7065a962c76053a4ac62854facbd477799ceb1fd4846229bb96ac449fca733d413bf38992333a529d0b499c7388a273b6eccff3e6c2264e
DIST totem-pl-parser-3.4.5.tar.xz 1608140 SHA256 a573e078692b48895cb5b041385b2760d63e2ee496c8d499eccfa942e7c79f89 SHA512 55723306d76554d000b9b957008e295d748d100eb3d442e2645f7d2ac9a64929c6ec0c70186e10dddb30f49b03bd1869b3408b96a5d50bfac52131629b726dbc WHIRLPOOL e009cc339803ba87128f5950e59f0d754a3b58d8a0cb7c18e151d289a760bad346d64e9eb1f8ebc58d2e7162bf9913291b80de0e8ae6f638b25815cba214e7f3

@ -1,71 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-2.32.6-r1.ebuild,v 1.8 2012/11/26 18:31:42 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit eutils gnome2
DESCRIPTION="Playlist parsing library"
HOMEPAGE="http://projects.gnome.org/totem/ http://developer.gnome.org/totem-pl-parser/stable/"
# eautoreconf needs:
#SRC_URI="${SRC_URI} mirror://gentoo/introspection-20110205.m4.tar.bz2"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="archive doc +introspection +quvi"
RDEPEND=">=dev-libs/glib-2.24:2
dev-libs/gmime:2.4
>=net-libs/libsoup-gnome-2.30:2.4
archive? ( >=app-arch/libarchive-2.8.4 )
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
quvi? ( >=media-libs/libquvi-0.2.15 )"
DEPEND="${RDEPEND}
!<media-video/totem-2.21
>=sys-devel/gettext-0.17
>=dev-util/intltool-0.35
doc? ( >=dev-util/gtk-doc-1.11 )"
# eautoreconf needs:
# >=dev-util/gtk-doc-am-1.11
pkg_setup() {
G2CONF="${G2CONF}
--disable-static
--disable-maintainer-mode
$(use_enable archive libarchive)
$(use_enable quvi)
$(use_enable introspection)"
DOCS="AUTHORS ChangeLog NEWS"
}
# eautoreconf needs:
#src_unpack() {
# # If gobject-introspection is installed, we don't need the extra .m4
# if has_version "dev-libs/gobject-introspection"; then
# unpack ${P}.tar.bz2
# else
# unpack ${A}
# fi
#}
src_prepare() {
# bug #386651, https://bugzilla.gnome.org/show_bug.cgi?id=661451
epatch "${FILESDIR}/${PN}-2.32.6-quvi-0.4.patch"
gnome2_src_prepare
# Disable tests requiring network access, bug #346127
sed -e 's:\(g_test_add_func.*/parser/resolution.*\):/*\1*/:' \
-e 's:\(g_test_add_func.*/parser/parsing/itms_link.*\):/*\1*/:' \
-i plparse/tests/parser.c || die "sed failed"
}
src_test() {
# This is required as told by upstream in bgo#629542
dbus-launch emake check || die "emake check failed"
}

@ -0,0 +1,64 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-3.4.5.ebuild,v 1.1 2013/05/14 19:49:02 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Playlist parsing library"
HOMEPAGE="http://projects.gnome.org/totem/ http://developer.gnome.org/totem-pl-parser/stable/"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="archive crypt +introspection +quvi test"
RDEPEND="
>=dev-libs/glib-2.31:2
dev-libs/gmime:2.6
|| ( >=net-libs/libsoup-2.42:2.4 >=net-libs/libsoup-gnome-2.30:2.4 )
archive? ( >=app-arch/libarchive-2.8.4 )
crypt? ( dev-libs/libgcrypt )
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
quvi? ( >=media-libs/libquvi-0.2.15 )
"
DEPEND="${RDEPEND}
!<media-video/totem-2.21
dev-libs/gobject-introspection-common
>=dev-util/intltool-0.35
dev-util/gtk-doc-am
>=gnome-base/gnome-common-3.6
>=sys-devel/gettext-0.17
virtual/pkgconfig
test? (
gnome-base/gvfs[http]
sys-apps/dbus )
"
# eautoreconf needs:
# dev-libs/gobject-introspection-common
# >=gnome-base/gnome-common-3.6
src_prepare() {
# Disable tests requiring network access, bug #346127
sed -e 's:\(g_test_add_func.*/parser/resolution.*\):/*\1*/:' \
-e 's:\(g_test_add_func.*/parser/parsing/itms_link.*\):/*\1*/:' \
-i plparse/tests/parser.c || die "sed failed"
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--disable-static \
$(use_enable archive libarchive) \
$(use_enable crypt libgcrypt) \
$(use_enable quvi) \
$(use_enable introspection)
}
src_test() {
# This is required as told by upstream in bgo#629542
GVFS_DISABLE_FUSE=1 dbus-launch emake check || die "emake check failed"
}

@ -0,0 +1,54 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/blockcanvas/blockcanvas-4.0.3-r1.ebuild,v 1.1 2013/05/14 17:04:41 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 virtualx
DESCRIPTION="Enthought Tool Suite: Numerical modeling"
HOMEPAGE="http://code.enthought.com/projects/block_canvas/ http://pypi.python.org/pypi/blockcanvas"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RESTRICT=test
RDEPEND=">=dev-python/apptools-4[${PYTHON_USEDEP}]
>=dev-python/chaco-4[${PYTHON_USEDEP}]
>=dev-python/codetools-4[${PYTHON_USEDEP}]
>=dev-python/etsdevtools-4[${PYTHON_USEDEP}]
>=dev-python/pyface-4[${PYTHON_USEDEP}]
>=dev-python/scimath-4[${PYTHON_USEDEP}]
>=dev-python/traitsui-4[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
dev-python/docutils[${PYTHON_USEDEP}]
dev-python/greenlet[${PYTHON_USEDEP}]
dev-python/imaging[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
${RDEPEND}
media-fonts/font-cursor-misc
media-fonts/font-misc-misc
)"
DOCS=( docs/{notes.txt,readme.txt} )
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
VIRTUALX_COMMAND="nosetests -v" virtualmake
}
python_install_all() {
use doc && local DOHTML_DOCS=( docs/build/html/. )
distutils-r1_python_install_all
}

@ -1 +1,2 @@
DIST casuarius-1.0.tar.gz 129907 SHA256 dac01b1d5edd9c1e886c63516c2ae818891f5e94109c3a1bf0b622e237dac1fc SHA512 c48f51e3c085ccdbea7e8c5be144978b88b1645e214fece3a4fc6ce65dfdfd5e9c2dfe69733741a6074629b9e2996b8489e81597071e8d16b6f8e96e9a5143e9 WHIRLPOOL e225947160419946be2becf8ec19af55e13cee0bc29d90d9477691ccbffa38b5f64853cd7c2fb23584b3504321131796c386091f1b68126177bc2a35d3ee23d8
DIST casuarius-1.1.tar.gz 139555 SHA256 8ebec38cb8ced80e8a1def9a7e5cb07a4a2a5fca723e26008ff5cecc030c1ab5 SHA512 d0a77b285b923f72274b13240ab4ae079c4f69587093c43bb7375c8ba24517ba6a7e2ba429b3e9a6ee9c73736efafff00da9cde7d533f05de0c7675de1e62080 WHIRLPOOL 1ff87430bc933973a445d7dde3af4854d796ead5bc1998a6cc56e10886b259cf0d5c8f08612894ce68ecf32e0e81227b7e8e030af69180c9dca2c373fabdfb2d

@ -0,0 +1,22 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/casuarius/casuarius-1.1.ebuild,v 1.1 2013/05/14 14:46:15 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
DESCRIPTION="Cython wrapper for the Cassowary incremental constraint solver"
HOMEPAGE="https://github.com/enthought/casuarius"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/cython-0.15.1[${PYTHON_USEDEP}]"

@ -0,0 +1,55 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/enaml/enaml-0.6.8-r1.ebuild,v 1.1 2013/05/14 18:35:30 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 virtualx
DESCRIPTION="Enthought Tool Suite: framework for writing declarative interfaces"
HOMEPAGE="http://code.enthought.com/projects/enaml/ http://pypi.python.org/pypi/enaml"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples test"
RDEPEND="
dev-python/casuarius[${PYTHON_USEDEP}]
dev-python/ply[${PYTHON_USEDEP}]
dev-python/traits[${PYTHON_USEDEP}]
|| ( dev-python/wxpython[${PYTHON_USEDEP}] dev-python/PyQt4 \
dev-python/pyside[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/wxpython[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/pyside[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}] )"
python_prepare_all() {
# crash doc and gone upstream (> 0.2.0)
sed -i -e '/enthought.debug.api/d' enamldoc/sphinx_ext.py || die
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
export ETS_TOOLKIT=qt4
export QT_API=pyside
VIRTUALX_COMMAND="nosetests -v" virtualmake
}
python_install_all() {
use doc && local HTML_DOCS=( docs/build/html/. )
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}

@ -1,2 +1 @@
DIST ets-4.2.0.tar.gz 23348 SHA256 4292924bb19f33f60dbc38f5605a73137f0cb52a037dbcf9bf02261a9735d208 SHA512 423e1f214a177a42d6196552a681159adbb25dd429e0e764325f99a5dd74f3264aacad86cbca0e0844965e31deeef2172259120e659b3c5fd2949605f61b3e59 WHIRLPOOL 0cd79decf4cbd9b5b61784c0f2e61033c7a41a8e5c63d37080eef2b7bb0646968f2cd0d9797826dd2bef0999ec8b2b12ca2340a1c3dc7ecafd0b237dfcd52b85
DIST ets-4.3.0.tar.gz 23307 SHA256 1dba8e7a423765fd1a90a8100ae6c25c341d78572e51f4855521e466c2652ac9 SHA512 2a133b9e2b757cf2af8be8059604689dbad1ce22e8750296ce824c6ca5e0e6a8de8a7f43499f44982ab2bbe0b285b2f883aaa7c8362608f1a398b773782b313c WHIRLPOOL 123593ddcd839ea61190a4cac527be14c2a12ec48eab4157e273d5bc3690835aef8d497942276d1e0e05d78db3933cfab1263532be5225e0e45af9072bba0abc

@ -1,37 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ets/ets-4.2.0-r1.ebuild,v 1.2 2013/05/12 14:25:42 idella4 Exp $
EAPI=4
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="Meta package for the Enthought Tool Suite"
HOMEPAGE="http://code.enthought.com/projects/ http://pypi.python.org/pypi/ets"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples"
# see the setup_data.py file for version numbers
RDEPEND="
>=dev-python/apptools-4.1.0[doc?,examples?]
>=dev-python/chaco-4.2.0[doc?,examples?]
>=dev-python/codetools-4.0.0[doc?,examples?]
>=dev-python/enable-4.2.0[doc?,examples?]
>=dev-python/enaml-0.2.0[doc?,examples?]
>=dev-python/encore-0.2[doc?,examples?]
>=dev-python/envisage-4.2.0[doc?,examples?]
>=dev-python/graphcanvas-4.0.0[examples?]
>=sci-visualization/mayavi-4.2.0[doc?,examples?]
>=dev-python/pyface-4.2.0[doc?,examples?]
>=dev-python/scimath-4.1.0[doc?]
>=dev-python/traits-4.2.0[doc?,examples?]
>=dev-python/traitsui-4.2.0[doc?,examples?]"
DEPEND=""

@ -1,35 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ets/ets-4.2.0.ebuild,v 1.2 2013/05/12 14:25:42 idella4 Exp $
EAPI=4
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="Meta package for the Enthought Tool Suite"
HOMEPAGE="http://code.enthought.com/projects/ http://pypi.python.org/pypi/ets"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
# see the setup_data.py file for version numbers
RDEPEND="
>=dev-python/apptools-4.0.1[doc?,examples?]
>=dev-python/chaco-4.1.0[doc?,examples?]
>=dev-python/codetools-4.0.0[doc?,examples?]
>=dev-python/enable-4.1.0[doc?,examples?]
>=dev-python/envisage-4.1.0[doc?,examples?]
>=dev-python/graphcanvas-4.0.0[examples?]
>=sci-visualization/mayavi-4.1.0[doc?,examples?]
>=dev-python/pyface-4.1.0[doc?,examples?]
>=dev-python/scimath-4.0.1[doc?]
>=dev-python/traits-4.1.0[doc?,examples?]
>=dev-python/traitsui-4.1.0[doc?,examples?]"
DEPEND=""

@ -0,0 +1,40 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ets/ets-4.3.0-r1.ebuild,v 1.1 2013/05/14 19:22:59 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Meta package for the Enthought Tool Suite"
HOMEPAGE="http://code.enthought.com/projects/ http://pypi.python.org/pypi/ets"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples"
# see the setup_data.py file for version numbers
RDEPEND="
>=dev-python/apptools-4.2.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/blockcanvas-4.0.3[doc?,${PYTHON_USEDEP}]
>=dev-python/casuarius-1.1[${PYTHON_USEDEP}]
>=dev-python/chaco-4.3.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/codetools-4.1.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/enable-4.3.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/enaml-0.6.8[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/encore-0.3[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/envisage-4.3.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/etsdevtools-4.0.2[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/etsproxy-0.1.2
>=dev-python/graphcanvas-4.0.2[examples?,${PYTHON_USEDEP}]
>=sci-visualization/mayavi-4.3.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/pyface-4.3.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/scimath-4.1.2[doc?,${PYTHON_USEDEP}]
>=dev-python/traits-4.3.0[doc?,examples?,${PYTHON_USEDEP}]
>=dev-python/traitsui-4.3.0[doc?,examples?,${PYTHON_USEDEP}]"
DEPEND=""

@ -1,37 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ets/ets-4.3.0.ebuild,v 1.2 2013/05/12 14:25:42 idella4 Exp $
EAPI=4
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="Meta package for the Enthought Tool Suite"
HOMEPAGE="http://code.enthought.com/projects/ http://pypi.python.org/pypi/ets"
SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples"
# see the setup_data.py file for version numbers
RDEPEND="
>=dev-python/apptools-4.1.0[doc?,examples?]
>=dev-python/chaco-4.2.0[doc?,examples?]
>=dev-python/codetools-4.0.0[doc?,examples?]
>=dev-python/enable-4.2.0[doc?,examples?]
>=dev-python/enaml-0.2.0[doc?,examples?]
>=dev-python/encore-0.2[doc?,examples?]
>=dev-python/envisage-4.2.0[doc?,examples?]
>=dev-python/graphcanvas-4.0.0[examples?]
>=sci-visualization/mayavi-4.2.0[doc?,examples?]
>=dev-python/pyface-4.2.0[doc?,examples?]
>=dev-python/scimath-4.1.0[doc?]
>=dev-python/traits-4.2.0[doc?,examples?]
>=dev-python/traitsui-4.2.0[doc?,examples?]"
DEPEND=""

@ -6,3 +6,4 @@ DIST lxml-3.1.0.tar.gz 3269719 SHA256 8ce453b10e47b5d7a623b75ca0eb6c39fee80d9d72
DIST lxml-3.1.1.tar.gz 3277003 SHA256 3da33ba3f6f5770973769e01dd93f923974c537239b571253725da2b8c6fd0dc SHA512 901380442a129ed863640dc8bd947f8d2f5bbc7ae451c1de2b8fc3dbf200471ed135f9741c081c1dd71891f68166ce31c532bb4a0be37e075ab9830a31209dd6 WHIRLPOOL 50d01a50cad60148ae8457c9475e3bfbf48ada914c4b1868a6472cedb411154404e4e4262ad330a153e180ad87b3fdc277cf1fd944a4b16a1822b13eaf57303d
DIST lxml-3.1.2.tar.gz 3285815 SHA256 c02153df2a5f633d7fab158bc030b17c812807bfdade535acc0fdb4e557951f9 SHA512 864038365a152391c1e22919f532e6c330c83ca5ba48c204a5c41ff5bf18de3ec3b810968765781e87050934a30023a79b68a70e72459173a23c280d84e8b45b WHIRLPOOL f9b4a7eb766d800694a2291118ad9940d9b39eb95a363e5735cc64e9ac2ec0a85080bd2f38b07f3105500ffe7dd7235c951bf8eb0356bd65f25e05c217ca89e9
DIST lxml-3.2.0.tar.gz 3324596 SHA256 eaac31ac45c3665aad9310352967184600e820bc366ceff64d01e93f15d3882c SHA512 e27cc933b2d750a1a83b3c56315a231c2c730bde4d0ab4d276a0792ee00bcbe800ed9239398ad4625ed194272b96e4743e497d8b06839fb0b9b2ad83ccb7d78b WHIRLPOOL 9b01063051d07b77a73b27fa6c90a7094bbfb73e22a1378cd5efdf7aeafb40474f46767af3fbbbbf5bf0daeab4546501808c15c63e3b315c99c9fb2410ede062
DIST lxml-3.2.1.tar.gz 3335355 SHA256 fc4924366cd0751f9cde17c2bc52e13df8b04246d4eaf6b09a496262c9ebbf6a SHA512 c3f124c643006073db80ee66b68a05990c454038477849efb7a49bdc604818aa1aceed20cfdce4387e16419399a26b6364af5176d47ef4ce9f58a072c9efb1dc WHIRLPOOL abc71a9242227c3f642959558dff6783e5e88fe38be9346367f0722454f5bec5aa3b553eb713b3e3fcbf418a0dbac56402c045635bd8da7da9db488893a9e5f1

@ -0,0 +1,67 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.2.1.ebuild,v 1.1 2013/05/14 22:39:28 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} )
inherit distutils-r1 flag-o-matic
DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries"
HOMEPAGE="http://lxml.de/ http://pypi.python.org/pypi/lxml/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD ElementTree GPL-2 PSF-2"
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 ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc examples +threads"
# Note: lib{xml2,xslt} are used as C libraries, not Python modules.
RDEPEND=">=dev-libs/libxml2-2.7.2
>=dev-libs/libxslt-1.1.15
dev-python/beautifulsoup[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
# lxml tarball contains files pregenerated by Cython.
python_prepare_all() {
# avoid replacing PYTHONPATH in tests.
sed -i -e '/sys\.path/d' test.py || die
distutils-r1_python_prepare_all
}
python_compile() {
if [[ ${EPYTHON} != python3* ]]; then
local CFLAGS=${CFLAGS}
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
cp -r -l src/lxml/tests "${BUILD_DIR}"/lib/lxml/ || die
cp -r -l src/lxml/html/tests "${BUILD_DIR}"/lib/lxml/html/ || die
ln -s "${S}"/doc "${BUILD_DIR}"/ || die
local test
for test in test.py selftest.py selftest2.py; do
einfo "Running ${test}"
"${PYTHON}" ${test} || die "Test ${test} fails with ${EPYTHON}"
done
}
python_install_all() {
if use doc; then
local DOCS=( *.txt doc/*.txt )
local HTML_DOCS=( doc/html/. )
fi
distutils-r1_python_install_all
if use examples; then
docinto examples
dodoc -r samples/*
docompress -x /usr/share/doc/${PF}/examples
fi
}

@ -0,0 +1 @@
DIST PyChef-0.2.1.tar.gz 29251 SHA256 a74e922eb275a1ea26fc1e65eeb503a610f026f144d6537160f3f380d2108489 SHA512 8d591087c649b5b0d09d4f7b7b26cec56631742833ac7b53eaaa744bd3b42d290ec37df96bdb0ea17a9c824d091d4527458d83abcdf4b2c029f921dbda425220 WHIRLPOOL d271b8991061155b8195e6b90877423ac5363064e9257a1a238b2b3a4f2a389c6b7fa8923ae85ac3f4946fa78e493556ce3fd61945d8bc8f02daa8e0325e994c

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
A Python API for interacting with a Chef server.
</longdescription>
</pkgmetadata>

@ -0,0 +1,28 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pychef/pychef-0.2.1.ebuild,v 1.1 2013/05/14 19:28:15 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="A client for the OpenStack Nova API"
HOMEPAGE="https://github.com/coderanger/pychef"
SRC_URI="mirror://pypi/P/PyChef/PyChef-${PV}.tar.gz"
S="${WORKDIR}/PyChef-${PV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/versiontools[${PYTHON_USEDEP}]
test? ( dev-python/mock[${PYTHON_USEDEP}]
virtual/python-unittest2[${PYTHON_USEDEP}] )"
RDEPEND=""
python_test() {
nosetests || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.2 2013/04/18 16:18:54 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyface/pyface-4.3.0-r1.ebuild,v 1.3 2013/05/14 18:14:42 idella4 Exp $
EAPI=5
@ -19,12 +19,13 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples test"
RDEPEND=">=dev-python/traits-4.1[${PYTHON_USEDEP}]
|| ( dev-python/wxpython dev-python/PyQt4 dev-python/pyside )"
|| ( dev-python/wxpython[${PYTHON_USEDEP}] dev-python/PyQt4 \
dev-python/pyside[${PYTHON_USEDEP}] )"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
${RDEPEND}
dev-python/traitsui
dev-python/traitsui[${PYTHON_USEDEP}]
media-fonts/font-cursor-misc
media-fonts/font-misc-misc
)"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/pypy-2.0_beta2.ebuild,v 1.5 2013/05/13 18:18:59 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/pypy-2.0_beta2.ebuild,v 1.6 2013/05/14 14:27:38 floppym Exp $
EAPI=5
@ -33,7 +33,7 @@ pkg_pretend() {
CHECKREQS_MEMORY="2G"
use amd64 && CHECKREQS_MEMORY="4G"
check-reqs_pkg_pretend
if [[ ${MERGE_TYPE} != binary && "$(gcc_version)" == "4.8" ]]; then
if [[ ${MERGE_TYPE} != binary && "$(gcc-version)" == "4.8" ]]; then
die "PyPy does not build correctly with GCC 4.8"
fi
}

@ -1,11 +1,11 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.25.ebuild,v 1.13 2013/05/06 13:57:28 yac Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.25.ebuild,v 1.14 2013/05/14 22:45:40 eva Exp $
EAPI=5
# py3.3 removed due to nosetests
PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2} pypy{1_8,1_9} )
PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} pypy{1_8,1_9} )
inherit distutils-r1
DESCRIPTION="A Python module to deal with freedesktop.org specifications"

@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.0.1.ebuild,v 1.12 2013/01/16 01:11:39 zerochaos Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.0.1.ebuild,v 1.13 2013/05/14 17:59:20 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18"
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_RECIPE_TEST="rspec"
@ -21,6 +21,8 @@ KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-ma
SLOT="0"
IUSE=""
RUBY_PATCHES=( ${P}-undefined-symbols.patch )
all_ruby_prepare() {
rm Gemfile || die
sed -i -e '/git ls-files/d' bcrypt-ruby.gemspec || die

@ -0,0 +1,42 @@
commit 94f8d0ae95ed773cb9e31a71e4046d3b97e11d70
Author: Aman Gupta <aman@tmm1.net>
Date: Sat Mar 30 19:52:19 2013 -0700
remove last of TBR code (fixes #46)
diff --git a/ext/mri/bcrypt_ext.c b/ext/mri/bcrypt_ext.c
index cce35df..13f5e4e 100644
--- a/ext/mri/bcrypt_ext.c
+++ b/ext/mri/bcrypt_ext.c
@@ -4,31 +4,6 @@
static VALUE mBCrypt;
static VALUE cBCryptEngine;
-#ifdef RUBY_VM
-# define RUBY_1_9
-#endif
-
-#ifdef RUBY_1_9
-
-/* When on Ruby 1.9+, we will want to unlock the GIL while performing
- * expensive calculations, for greater concurrency. Do not do this for
- * cheap calculations because locking/unlocking the GIL incurs some overhead as well.
- */
-#define GIL_UNLOCK_COST_THRESHOLD 9
-
-typedef struct {
- char *output;
- const char *key;
- const char *salt;
-} BCryptArguments;
-
-static VALUE bcrypt_wrapper(void *_args) {
- BCryptArguments *args = (BCryptArguments *)_args;
- return (VALUE)ruby_bcrypt(args->output, args->key, args->salt);
-}
-
-#endif /* RUBY_1_9 */
-
/* Given a logarithmic cost parameter, generates a salt for use with +bc_crypt+.
*/
static VALUE bc_salt(VALUE self, VALUE prefix, VALUE count, VALUE input) {

@ -1,4 +1,4 @@
DIST glib-2.32.4.tar.xz 6178556 SHA256 a5d742a4fda22fb6975a8c0cfcd2499dd1c809b8afd4ef709bda4d11b167fae2 SHA512 bc8b2d6afae7635f940065eca3e854ee171812c7b582d55313db11d28875495dbf41fc0a260347b30f7490daa65ccc377d8a2d60bb3a26d07997606d8e3d989f WHIRLPOOL 35aec94088acff460685c0b1bb2e6fcffadb0f9f0044b93f3fa042ed82dd52efb5e56022575c0ebcfda4230d38edc26a916623f0bfcbfc8e1c6b76a3133d43bc
DIST glib-2.34.3.tar.xz 6334872 SHA256 855fcbf87cb93065b488358e351774d8a39177281023bae58c286f41612658a7 SHA512 2382e09159da2ef47384a3e52622f139577af69d6aba86ea1636f2b6b23b9f6bf89967f29394fd7f93d0528e2c58ae015864aa58a3e3e4f504c7a268b2ef4a75 WHIRLPOOL 296f29666bdd38faae41a1b0b7875dd5fb6ac23d5d27282658e73bbb614db944b3a92d5334ddcca19f959e4c5ef2bf20a5b0f19390558645f986afc2f84edd4d
DIST glib-2.36.0.tar.xz 6508276 SHA256 455a8abe8692c5174bcc7ffa15b96a7521a2f2f9fb47594405927c35cb9bb227 SHA512 86402c22b3df419112aab82bfe2c2a598992c6eadf941375b6f4f1840f9004491fafcbd95dc372262cddb29064abba54c640b1dbf281ff75c0ea209683876530 WHIRLPOOL 9db755e0a6070a63b78ebc71b6c54279faeffec57f9392c329fdbd105bfe5f74caff134c0aef7c93a542eed71e0465f7c1a42c4277ad7a8d42cf837fdc1f434c
DIST glib-2.36.1.tar.xz 6524408 SHA256 7de37586794e92c024feebe5d306bf5f245fef4803c3666af1ae8dac6ee10b24 SHA512 e738ef537fc8b05f535a42a46c3e5cf8d7c9c3aed788adea1bfd924e6031e6f3e8366850a3a1a0ea2c2a4c5e54f08eacf6cccbf32fb8a361b62a6caf9c4b7852 WHIRLPOOL 05298f71ff63b458ddc7e67c7ce0ab800109068c6bb2b0bff5ccfd76d8ed29cb5568d8a2953b71947bb0385033c3564467f9adfa377fc65c27eb765f71f71ef3
DIST glib-2.36.2.tar.xz 6615452 SHA256 5ea98451fb57d0ba523a1e836545f0a919b498863056fdd9da69d148c1347f80 SHA512 0030b2d52570c5c72aeed85e1d8611d2354efdb6200be3a4f716bd0f92a34002546c974f65ee1fd8822ac791efce9574b6148b04a88af377108f60ad65220016 WHIRLPOOL 90e2335c37f951145d511e1532e5e2ad1590895f1cbe4c1dcc5ecdd45f5d68719d5cb8204e75afcd207e21fdb207be6f8453d20ef1a8279e93d234957b276219

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.36.0.ebuild,v 1.2 2013/03/29 14:13:29 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.36.2.ebuild,v 1.1 2013/05/14 22:11:22 pacho Exp $
EAPI="5"
GNOME_ORG_MODULE="glib"

@ -1,3 +1,4 @@
DIST gnome-devel-docs-2.32.0.tar.bz2 4841916 SHA256 38f6c48c35179d667b637e8d65bd35045d8b54b4f8079220633d9a59cafa4b26 SHA512 ff6e76c26e5c5cbf3168a6e3de67f6502745fe44ddbb62416862189e1b8fb9b35b1aeb81f4429e439a621b99bdfbf2566ae6a7c7d8cbfb2308f353bccda017c6 WHIRLPOOL 780a9016cf0a898db46fee381e7643744fc8d9e960837655f9ffd417db9d317858189fb4289333348167c306eba143f33b41a792455cb1298d27218e4edf3724
DIST gnome-devel-docs-3.6.2.tar.xz 9501068 SHA256 342ee059a2f15a9ef652e0ee7d452f78f6aa58db375a2f8e799c6fbed45841b3 SHA512 6d52bd8af8d180da295eaede27881ffef6d2a1e32e2cbb67f42f5828b2981b9f74b849b6fd84ed843bda701dc7e1831f0c284425b654f9716a09a15d7598977f WHIRLPOOL d113963619ced9e0fdd0af25375611e098ef13c94018acd5272b7376726d171cb5064fa779d7e0cab328649086c5701313f7f8f827af6eab5a189f363e03f1b4
DIST gnome-devel-docs-3.8.0.tar.xz 9585656 SHA256 e23c0099417b6e304bc43672e8375e5f6fd208062320b98d9e7c6d41a445ea52 SHA512 d0bcc1204492c082bc1d7f3840035e6ce469b6d999170e99e38b376bf0b5da8d5a800a3fe2343029b10bc96f113a105cc254467f48940d83eb282b78338a2dec WHIRLPOOL 835a7595b9e1341e1c6d5d1ec8f7807accf35ae6eff32ad74ef250487c25306d016f398718a34c2170fb50bdef941ffeb7cef050f8d9a3aad0162509a9537482
DIST gnome-devel-docs-3.8.1.tar.xz 9589132 SHA256 ffcb9e81e9a8218ab50fd28b30ad598e44dd7ba8aa34afbb977c6daecb42aa4b SHA512 8b63f5f3ad4318dc2e3ef07f260994f2883d61eeaee876bca5c418b5743bff20dc12eebbd12c8dc7cc43778f35a58d2179a42c7ae91f244670f652ec054fa9f0 WHIRLPOOL 8811ec08a8874c9d25b48441111b6151c519ee22aefc5a3200d0e9ab4fb3aec7878198c5033d6a17695a3b7d9669c4ed545fae8eddbd006ebe2a320e6c1dbcbf

@ -0,0 +1,28 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gnome-devel-docs/gnome-devel-docs-3.8.1.ebuild,v 1.1 2013/05/14 21:02:36 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Documentation for developing for the GNOME desktop environment"
HOMEPAGE="http://developer.gnome.org/"
LICENSE="FDL-1.1+ CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=""
DEPEND="app-text/yelp-tools
app-text/docbook-xml-dtd:4.1.2
app-text/docbook-xml-dtd:4.2
dev-libs/libxslt
sys-devel/gettext
virtual/pkgconfig
"
# This ebuild does not install any binaries
RESTRICT="binchecks strip"

@ -1,5 +1,4 @@
DIST valgrind-3.5.0.tar.bz2 5482423 SHA256 743a5132bbebc247169aefae6e17657677fdf0961aba1668dd4ee7028d27ba80 SHA512 fd2db7f422e3f52da0a672d895c5f3f2afd84b73d644b54ab67e6e96dcf024997ef6afec67f633dbd897e04b6b28b83f12d60fcea0ca999721e09a7dc88cc59b WHIRLPOOL 45fcac739b4f7678e37d2c5cebbd22a90ceed667fd7814fe895e68a3b8aa30bc7699c0858194dfaee9029f132f3d4973b0f243a20d6cc635ce36a8947f4f3cb2
DIST valgrind-3.6.1.tar.bz2 5974836 SHA256 49bdcc4fbcf060049b5f0dcfd8a187a6e90e0b0e57309f633b64e44430726a0e SHA512 fef0d379b525ffef10783c0de6b37a4923f9627991dbf75973e88e9810b68cba095a25bf842c2f70b1e734c1b221418a2f3d4937e0c12b6fa6b4f7984a0dc2d9 WHIRLPOOL d19cd265b438a4b66fa7a313d13983f0c935c3e67733a2fcb3d9582a15efcdbd22c88a11da6443a005f8c5da3b68e05f991e287ae54f0961b28708b2cad0244c
DIST valgrind-3.7.0.tar.bz2 6624216 SHA256 5d62c0330f1481fe2c593249192fa68ff454c19c34343978cc9ce91aa324cbf6 SHA512 0ccf6607fe6d26f0dc0f3d6e45f84645925d0a90ce4ecf6acfc6b4d374d3e909b2a628b03c0a964a45d2462cca6877f818a5f72b3e4a5bbf3a2d9b8a9a343d5f WHIRLPOOL 44bf8c423d6f3222f5e777333acc21e94dfa680509b2152289129961296d8afc090466b6407248b6e172b3c42da5448206f257bd63f8e44aba01007f92a6fde1
DIST valgrind-3.8.0.tar.bz2 7961355 SHA256 fd16585f209712642ab6baa2b5c57ec1b879ab2ac4653828d82bb7f86ba7208c SHA512 83a293f1cd71305ab94b2b7dd4929b813b419dab0c0c701c0bb65ae9c7b2571c5fabebbf399365cbb9aaf7e527fb0d68dafcf054c4085324c1c059c85454ce28 WHIRLPOOL ad8a5c1d3d9b8b26233d40d94089e3a3b8ecd5e847475462f6493b96c889b26cb3faff41109b166c5c58373fad11bc2087035c1895863384ef39cfdd25e6a17b
DIST valgrind-3.8.1.tar.bz2 7962963 SHA256 473be00576bed311a662b277a2bfbe97d9cca4058e68619a0e420c9fc19958db SHA512 ba31f5d43bd2d9533846bed6456a0eae40ac071ff8732201dd75c9e2cd7e9ce3224cb5928b9c8fc859a75ce6867a9b6a1fb2ba8ab62cd3944893d6d4156ab25c WHIRLPOOL 81e63bb649455ed29fcd60fc7f3cebde456a610118b9b24530d3b2e8aa4a7561369e992af86ffb158e1f7fc0db7b91738564402931a947a79bb789bd26a8e065

@ -1,100 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.8.0.ebuild,v 1.2 2013/04/19 12:11:01 blueness Exp $
EAPI="4"
inherit autotools eutils flag-o-matic toolchain-funcs multilib pax-utils
DESCRIPTION="An open-source memory debugger for GNU/Linux"
HOMEPAGE="http://www.valgrind.org"
SRC_URI="http://www.valgrind.org/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos ~x64-macos"
IUSE="mpi"
DEPEND="mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"
src_prepare() {
# Correct hard coded doc location
sed -i -e "s:doc/valgrind:doc/${PF}:" docs/Makefile.am || die
# Don't force multiarch stuff on OSX, bug #306467
sed -i -e 's:-arch \(i386\|x86_64\)::g' Makefile.all.am || die
# Respect CFLAGS, LDFLAGS
epatch "${FILESDIR}"/${PN}-3.7.0-respect-flags.patch
# Changing Makefile.all.am to disable SSP
epatch "${FILESDIR}"/${PN}-3.7.0-fno-stack-protector.patch
# Yet more local labels, this time for ppc32 & ppc64
epatch "${FILESDIR}"/${PN}-3.6.0-local-labels.patch
# Don't build in empty assembly files for other platforms or we'll get a QA
# warning about executable stacks.
epatch "${FILESDIR}"/${PN}-3.8.0-non-exec-stack.patch
# Regenerate autotools files
eautoreconf
}
src_configure() {
local myconf
# -fomit-frame-pointer "Assembler messages: Error: junk `8' after expression"
# while compiling insn_sse.c in none/tests/x86
# -fpie valgrind seemingly hangs when built with pie on
# amd64 (bug #102157)
# -fstack-protector more undefined references to __guard and __stack_smash_handler
# because valgrind doesn't link to glibc (bug #114347)
# -m64 -mx32 for multilib-portage, bug #398825
# -ggdb3 segmentation fault on startup
filter-flags -fomit-frame-pointer
filter-flags -fpie
filter-flags -fstack-protector
filter-flags -m64 -mx32
replace-flags -ggdb3 -ggdb2
if use amd64 || use ppc64; then
! has_multilib_profile && myconf="${myconf} --enable-only64bit"
fi
# Force bitness on darwin, bug #306467
use x86-macos && myconf="${myconf} --enable-only32bit"
use x64-macos && myconf="${myconf} --enable-only64bit"
# Don't use mpicc unless the user asked for it (bug #258832)
if ! use mpi; then
myconf="${myconf} --without-mpicc"
fi
econf ${myconf}
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS FAQ.txt NEWS README*
pax-mark m "${ED}"/usr/$(get_libdir)/valgrind/*-*-linux
if [[ ${CHOST} == *-darwin* ]] ; then
# fix install_names on shared libraries, can't turn them into bundles,
# as dyld won't load them any more then, bug #306467
local l
for l in "${ED}"/usr/lib/valgrind/*.so ; do
install_name_tool -id "${EPREFIX}"/usr/lib/valgrind/${l##*/} "${l}"
done
fi
}
pkg_postinst() {
elog "Valgrind will not work if glibc does not have debug symbols."
elog "To fix this you can add splitdebug to FEATURES in make.conf"
elog "and remerge glibc. See:"
elog "https://bugs.gentoo.org/show_bug.cgi?id=214065"
elog "https://bugs.gentoo.org/show_bug.cgi?id=274771"
elog "https://bugs.gentoo.org/show_bug.cgi?id=388703"
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.15 2013/04/07 16:56:14 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.16 2013/05/14 17:33:08 mgorny Exp $
# @ECLASS: autotools-multilib.eclass
# @MAINTAINER:
@ -19,9 +19,9 @@
# enabled. Thus, it is impossible to use AUTOTOOLS_IN_SOURCE_BUILD with
# it.
# EAPI=5 is required for meaningful MULTILIB_USEDEP.
# EAPI=4 is required for meaningful MULTILIB_USEDEP.
case ${EAPI:-0} in
5) ;;
4|5) ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.11 2013/04/07 16:56:14 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.12 2013/05/14 17:33:08 mgorny Exp $
# @ECLASS: multilib-build.eclass
# @MAINTAINER:
@ -17,9 +17,9 @@
if [[ ! ${_MULTILIB_BUILD} ]]; then
# EAPI=5 is required for meaningful MULTILIB_USEDEP.
# EAPI=4 is required for meaningful MULTILIB_USEDEP.
case ${EAPI:-0} in
5) ;;
4|5) ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac

@ -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/eclass/toolchain-funcs.eclass,v 1.120 2012/12/29 05:08:54 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.121 2013/05/14 20:40:34 vapier Exp $
# @ECLASS: toolchain-funcs.eclass
# @MAINTAINER:
@ -367,7 +367,10 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
arm*) echo arm;;
avr*) ninj avr32 avr;;
bfin*) ninj blackfin bfin;;
c6x) echo c6x;;
cris*) echo cris;;
frv) echo frv;;
hexagon) echo hexagon;;
hppa*) ninj parisc hppa;;
i?86*)
# Starting with linux-2.6.24, the 'x86_64' and 'i386'
@ -381,9 +384,11 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
;;
ia64*) echo ia64;;
m68*) echo m68k;;
metag) echo metag;;
mips*) echo mips;;
nios2*) echo nios2;;
nios*) echo nios;;
or32) echo openrisc;;
powerpc*)
# Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees
# have been unified into simply 'powerpc', but until 2.6.16,
@ -405,6 +410,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
fi
;;
s390*) echo s390;;
score) echo score;;
sh64*) ninj sh64 sh;;
sh*) echo sh;;
sparc64*) ninj sparc64 sparc;;
@ -412,6 +418,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
&& ninj sparc64 sparc \
|| echo sparc
;;
tile*) echo tile;;
vax*) echo vax;;
x86_64*freebsd*) echo amd64;;
x86_64*)
@ -423,6 +430,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
ninj x86_64 amd64
fi
;;
xtensa*) echo xtensa;;
# since our usage of tc-arch is largely concerned with
# normalizing inputs for testing ${CTARGET}, let's filter

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.586 2013/05/09 03:03:02 dirtyepic Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.589 2013/05/15 00:56:49 dirtyepic Exp $
#
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
@ -97,7 +97,7 @@ STDCXX_INCDIR=${TOOLCHAIN_STDCXX_INCDIR:-${LIBPATH}/include/g++-v${GCC_BRANCH_VE
#---->> SLOT+IUSE logic <<----
IUSE="multislot nls nptl test vanilla"
IUSE="multislot nls nptl regression-test vanilla"
if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
IUSE+=" altivec cxx fortran"
@ -114,7 +114,7 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
tc_version_is_at_least "4.2" && IUSE+=" openmp"
tc_version_is_at_least "4.3" && IUSE+=" fixed-point"
tc_version_is_at_least "4.6" && IUSE+=" graphite"
[[ ${GCC_BRANCH_VER} == 4.5 ]] && IUSE+=" lto"
tc_version_is_at_least "4.6" && IUSE+=" lto"
tc_version_is_at_least "4.7" && IUSE+=" go"
fi
fi
@ -144,7 +144,6 @@ if tc_version_is_at_least 4 ; then
if tc_version_is_at_least 4.5 ; then
RDEPEND+=" >=dev-libs/mpc-0.8.1"
fi
in_iuse lto && RDEPEND+=" lto? ( || ( >=dev-libs/elfutils-0.143 dev-libs/libelf ) )"
fi
if in_iuse graphite ; then
if tc_version_is_at_least 4.8 ; then
@ -165,7 +164,7 @@ fi
DEPEND="${RDEPEND}
>=sys-devel/bison-1.875
>=sys-devel/flex-2.5.4
test? (
regression-test? (
>=dev-util/dejagnu-1.4.4
>=sys-devel/autogen-5.5.4
)"
@ -611,6 +610,11 @@ toolchain_pkg_postinst() {
# handling of binpkgs, don't require these to be found
cp "${ROOT}/${DATAPATH}"/c{89,99} "${ROOT}"/usr/bin/ 2>/dev/null
fi
if use regression-test ; then
elog "Testsuite results have been installed into /usr/share/doc/${PF}/testsuite"
echo
fi
}
toolchain_pkg_postrm() {
@ -1096,14 +1100,7 @@ gcc_do_configure() {
confgcc+=" --without-ppl"
fi
# LTO support was added in 4.5, which depends upon elfutils. This allows
# users to enable that option, and pull in the additional library. In 4.6,
# the dependency is no longer required.
if tc_version_is_at_least "4.6" ; then
confgcc+=" --enable-lto"
elif tc_version_is_at_least "4.5" ; then
confgcc+=" $(use_enable lto)"
fi
tc_version_is_at_least "4.6" && confgcc+=" $(use_enable lto)"
case $(tc-is-softfloat) in
yes) confgcc+=" --with-float=soft" ;;
@ -1159,10 +1156,12 @@ gcc_do_configure() {
avr) confgcc+=" --enable-shared --disable-threads";;
esac
if [[ -n ${needed_libc} ]] ; then
local confgcc_no_libc="--disable-shared"
tc_version_is_at_least 4.8 && confgcc_no_libc+=" --disable-libatomic"
if ! has_version ${CATEGORY}/${needed_libc} ; then
confgcc+=" --disable-shared --disable-threads --without-headers"
confgcc+=" ${confgcc_no_libc} --disable-threads --without-headers"
elif built_with_use --hidden --missing false ${CATEGORY}/${needed_libc} crosscompile_opts_headers-only ; then
confgcc+=" --disable-shared --with-sysroot=${PREFIX}/${CTARGET}"
confgcc+=" ${confgcc_no_libc} --with-sysroot=${PREFIX}/${CTARGET}"
else
confgcc+=" --with-sysroot=${PREFIX}/${CTARGET}"
fi
@ -1478,8 +1477,10 @@ toolchain_src_compile() {
}
toolchain_src_test() {
cd "${WORKDIR}"/build
emake -k check || ewarn "check failed and that sucks :("
if use regression-test ; then
cd "${WORKDIR}"/build
emake -k check
fi
}
toolchain_src_install() {
@ -1591,7 +1592,7 @@ toolchain_src_install() {
find "${D}" -depth -type d -delete 2>/dev/null
# install testsuite results
if use test; then
if use regression-test; then
docinto testsuite
find "${WORKDIR}"/build -type f -name "*.sum" -print0 | xargs -0 dodoc
find "${WORKDIR}"/build -type f -path "*/testsuite/*.log" -print0 \

@ -1 +1,2 @@
DIST awale-1.5-no-autoreconf.patch.xz 25552 SHA256 01f8a2fdf7a0899ae4735d9eb4e0305405319e4e0db6a637e83281517862a5e7 SHA512 930e4983767c0c206575f608d2bf83e340244e0e38e8e1e65f3f4bfb8a0281729d8de9016a71ead925ab0ae6e52ba7ec6405e781bb9b3f0a685b22b0b5b52b7b WHIRLPOOL 938f065ea89c4e0d738576d4d8e27c92a7b5695a9e1eb3e4598e1aa58d7f3fed0c38d936c7053b621e35d70ca1a7fdd8f8a128955a90186aa018bfdeef9a02f2
DIST awale-1.5.tar.gz 489357 SHA256 8bf9812fd6cfe142e18a35474f6a366c1b12f960863a33421f6d2e448ed47014 SHA512 b3f33068d7d6cfd964051e15cfd84e7f2c8483c30f2ccea35e2dddb34353ea984561fdf28c0d668404d80cda89c6d5fcd0004a1a86d92325e5f6fc2f88197c61 WHIRLPOOL 05b46f8f8ea89236aa30755f4d6f39daa24135421220f35e4c96f919facb138871735ebe5f1741e29f4a2fc6572381ad2aa0768197112c22eaf961b0d9814792

@ -1,13 +1,18 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/awale/awale-1.5.ebuild,v 1.2 2013/01/27 19:27:19 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/games-board/awale/awale-1.5.ebuild,v 1.4 2013/05/14 19:10:11 hasufell Exp $
# do not use autotools related stuff in stable ebuilds
# unless you like random breakage: 469796, 469798, 424041
EAPI=5
inherit autotools eutils gnome2-utils games
inherit eutils gnome2-utils games # STABLE ARCH
# inherit autotools eutils gnome2-utils games # UNSTABLE ARCH
DESCRIPTION="Free Awale - The game of all Africa"
HOMEPAGE="http://www.nongnu.org/awale/"
SRC_URI="mirror://nongnu/awale/${P}.tar.gz"
SRC_URI="${SRC_URI} http://dev.gentoo.org/~hasufell/distfiles/${P}-no-autoreconf.patch.xz" # STABLE ARCH
LICENSE="GPL-2"
SLOT="0"
@ -18,9 +23,11 @@ RDEPEND="tk? ( dev-lang/tcl dev-lang/tk )"
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
mv configure.in configure.ac || die
epatch "${DISTDIR}"/${P}-no-autoreconf.patch.xz # STABLE ARCH
mv src/xawale.tcl src/xawale.tcl.in || die
eautoreconf
# mv configure.in configure.ac || die # UNSTABLE ARCH
# eautoreconf # UNSTABLE ARCH
}
src_configure() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/pychess/pychess-0.10.1-r1.ebuild,v 1.5 2013/01/16 15:09:19 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/games-board/pychess/pychess-0.10.1-r1.ebuild,v 1.6 2013/05/14 23:21:56 vincent Exp $
EAPI=5
@ -15,7 +15,7 @@ SRC_URI="http://pychess.googlecode.com/files/${P/_/}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="gstreamer"
DEPEND="dev-python/librsvg-python

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/FTL/FTL-1.03.1.ebuild,v 1.8 2013/05/13 03:47:43 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/FTL/FTL-1.03.1.ebuild,v 1.11 2013/05/14 19:35:38 hasufell Exp $
# TODO: update libpng to slot 1.5 when stable
@ -14,9 +14,9 @@ SRC_URI="ftl_faster_than_light-linux-${PV}.tar.gz"
LICENSE="all-rights-reserved Boost-1.0 free-noncomm MIT bundled-libs? ( FTL LGPL-2.1 ZLIB libpng )"
SLOT="0"
KEYWORDS="-* ~amd64 x86"
KEYWORDS="-* amd64 x86"
IUSE="bundled-libs"
RESTRICT="fetch bindist"
RESTRICT="fetch bindist splitdebug"
RDEPEND="
=media-libs/libpng-1.5*
@ -29,8 +29,8 @@ RDEPEND="
sys-libs/zlib
)"
QA_PREBUILT="${GAMES_PREFIX_OPT}/${PN}/bin/${PN}
${GAMES_PREFIX_OPT}/${PN}/lib/*"
QA_PREBUILT="${GAMES_PREFIX_OPT#/}/${PN}/bin/${PN}
${GAMES_PREFIX_OPT#/}/${PN}/lib/*"
S=${WORKDIR}/${PN}

@ -0,0 +1,70 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/FTL/FTL-1.03.3.ebuild,v 1.1 2013/05/14 19:35:03 hasufell Exp $
# TODO: update libpng to slot 1.5 when stable
EAPI=5
inherit eutils games
DESCRIPTION="Faster Than Light: A spaceship simulation real-time roguelike-like game"
HOMEPAGE="http://www.ftlgame.com/"
SRC_URI="FTL.Linux.${PV}.tar.gz"
LICENSE="all-rights-reserved Boost-1.0 free-noncomm MIT bundled-libs? ( FTL LGPL-2.1 ZLIB libpng )"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="bundled-libs"
RESTRICT="fetch bindist splitdebug"
RDEPEND="
=media-libs/libpng-1.5*
sys-devel/gcc[cxx]
virtual/opengl
!bundled-libs? (
media-libs/devil[png,opengl]
media-libs/freetype:2
media-libs/libsdl[X,audio,joystick,opengl,video]
sys-libs/zlib
)"
QA_PREBUILT="${GAMES_PREFIX_OPT#/}/${PN}/bin/${PN}
${GAMES_PREFIX_OPT#/}/${PN}/lib/*"
S=${WORKDIR}/${PN}
pkg_nofetch() {
einfo "Please buy & download ${SRC_URI} from:"
einfo " ${HOMEPAGE}"
einfo "and move it to ${DISTDIR}"
einfo
}
src_prepare() {
if ! use bundled-libs ; then
# no system lib for libbass available
find data/${ARCH}/lib -type f \! -name "libbass*" -delete || die
fi
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
insinto "${dir}"
doins -r data/resources
doins data/exe_icon.bmp
exeinto "${dir}"/bin
doexe data/${ARCH}/bin/${PN}
exeinto "${dir}"/lib
doexe data/${ARCH}/lib/*.so*
games_make_wrapper ${PN} "${dir}/bin/${PN}" "${dir}" "${dir}/lib"
make_desktop_entry ${PN} "Faster Than Light" "/usr/share/pixmaps/FTL.bmp"
newicon data/exe_icon.bmp FTL.bmp
dohtml ${PN}_README.html
prepgamesdirs
}

@ -1 +1,2 @@
DIST FTL.Linux.1.03.3.tar.gz 156790275 SHA256 a18983cac8cb0db8990d3b56c301d9983f0a8a5ad4850266922b7c5d538c178d SHA512 91efc51d526eb4e423d89e6b13a0400a75208007ce0fc4a3542634392ee5755256c89a628beb4f15dedc0d19197f29683cbbf4a1652fdc182dac5cd2ecd17b1f WHIRLPOOL fbfa48d9eabf8d6227e50bf5665f9e3563f71d3dce4e92752c1bc7afce9140dbfe0dca16a2ee2d189c95491fffb76eed0f62b049f7674834c4c157dd0a9dd615
DIST ftl_faster_than_light-linux-1.03.1.tar.gz 157094737 SHA256 d5e5da80e6865b0614087e09ca5eca9aee3c01906a9485ccde21267d01640264 SHA512 866e910692742e5952c78a425494dab705651d830ccee38347bf6341b60c2f0ce0f4c509dc802b89471f58a9f0235ae09c063da5eaa281c6b8fa57e4ae2986e9 WHIRLPOOL 3604967f7e7536a40f6028e721b9085c896cca0179c76eaab9a4329a09a1b9892f157aa956c5d9a92e71e329f90af2eb9e79f8db17f4a7d678ba3d2cde6eac3f

@ -1,2 +1,3 @@
DIST dunelegacy-0.96.2-src.tar.bz2 1437524 SHA256 bdf27bdaa001f37db52ab4747bd563b48334db5df6e6e8314de85a0340649173 SHA512 49af1d74ea02c051b1c03393d1dc796eb1a81b402fa8a74643c308986a88ef25fe13dafded595f4144c8a83bf8fd51ad13c85c5c926fa13c436ecb08d6d9d7c1 WHIRLPOOL 47ca519e9de003c373a88fea22b198921f2ffebfaa4b068963fe68c3e06bf2370dfbf553e13f910a8c1cd084d16b5abc6369b93397220e377dcf840f544c835d
DIST dunelegacy-0.96.3-no-autoreconf.patch.xz 8908 SHA256 fae291f43c01bcf6af437602738b506631a1f0aea2b680912ffb5e1280507975 SHA512 fc17c771a19611057b2990b76eda0eea08e011dcac455bdf7e26bba1f2e2aa6cec120f2dcbce488a2318553f9e58b4a2b5ea24c7e1e27ada9ec5740f2b66ca4c WHIRLPOOL 707abf066efbaafd95063aca23d1cdfdd6c5b01f16b5d0952b8cb4f765d08dcd0316c8876522c7bfdd476801dd1b0eab7aa0069ae0cd5bbe78118de50810d40c
DIST dunelegacy-0.96.3-src.tar.bz2 1652302 SHA256 677159c174d9f9e8eb20e5e5cec997decf8e5a7091dc1583dc23fe340c5f6222 SHA512 c84281b44bdac4eec360d90e2f23aa75468cf08c6edd6a5002c539e609312fd39e3284518ef5498201f2b0433d11cf2478cd13a2159af7c6bbef326e680fa241 WHIRLPOOL a90330135e74ee2875c18f8696aee9598cee07e185d6f7759f180d9934e5e063e0a5b449644e2744d8e480e9be35bb93277d71d0a021f3dccb0541540ef84439

@ -1,13 +1,18 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/dunelegacy/dunelegacy-0.96.3.ebuild,v 1.1 2013/03/04 16:32:18 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/games-strategy/dunelegacy/dunelegacy-0.96.3.ebuild,v 1.3 2013/05/14 21:05:56 hasufell Exp $
# do not use autotools related stuff in stable ebuilds
# unless you like random breakage: 469796, 469798, 424041
EAPI=5
inherit autotools eutils gnome2-utils games
inherit eutils gnome2-utils games # STABLE ARCH
#inherit autotools eutils gnome2-utils games # UNSTABLE ARCH
DESCRIPTION="Updated clone of Westood Studios' Dune2"
HOMEPAGE="http://dunelegacy.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2"
SRC_URI="${SRC_URI} http://dev.gentoo.org/~hasufell/distfiles/${P}-no-autoreconf.patch.xz" # STABLE ARCH
LICENSE="GPL-2"
SLOT="0"
@ -23,8 +28,9 @@ DEPEND="${RDEPEND}
REQUIRED_USE="|| ( alsa pulseaudio )"
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
eautoreconf
epatch "${DISTDIR}"/${P}-no-autoreconf.patch.xz # STABLE ARCH
# epatch "${FILESDIR}"/${P}-build.patch # UNSTABLE ARCH
# eautoreconf # UNSTABLE ARCH
}
src_install() {

@ -0,0 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/xboxdrv/files/xboxdrv.confd,v 1.1 2013/05/14 19:11:14 swegener Exp $
XBOXDRV_OPTS=""
#XBOXDRV_OPTS="${XBOXDRV_OPTS} --next-controller --config /etc/xboxdrv/controller.ini"

@ -0,0 +1,19 @@
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/xboxdrv/files/xboxdrv.initd,v 1.1 2013/05/14 19:11:14 swegener Exp $
PIDFILE="/var/run/${SVCNAME}.pid"
start() {
ebegin "Starting xboxdrv"
start-stop-daemon --start --pidfile "${PIDFILE}" --exec /usr/bin/xboxdrv -- \
--daemon --detach --pid-file "${PIDFILE}" ${XBOXDRV_OPTS}
eend $?
}
stop() {
ebegin "Stopping xboxdrv"
start-stop-daemon --stop --pidfile "${PIDFILE}"
eend $?
}

@ -0,0 +1,46 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/xboxdrv/xboxdrv-0.8.5-r1.ebuild,v 1.1 2013/05/14 19:11:14 swegener Exp $
EAPI=5
inherit base linux-info scons-utils toolchain-funcs
MY_P=${PN}-linux-${PV}
DESCRIPTION="Userspace Xbox 360 Controller driver"
HOMEPAGE="http://pingus.seul.org/~grumbel/xboxdrv/"
SRC_URI="http://pingus.seul.org/~grumbel/xboxdrv/${MY_P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/boost
virtual/udev
sys-apps/dbus
dev-libs/glib:2
virtual/libusb:1
x11-libs/libX11"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
CONFIG_CHECK="~INPUT_EVDEV ~INPUT_JOYDEV ~INPUT_UINPUT ~!JOYSTICK_XPAD"
src_compile() {
escons \
BUILD=custom \
CXX="$(tc-getCXX)" \
CXXFLAGS="-Wall ${CXXFLAGS}" \
LINKFLAGS="${LDFLAGS}"
}
src_install() {
dobin xboxdrv
doman doc/xboxdrv.1
dodoc AUTHORS NEWS PROTOCOL README TODO
newinitd "${FILESDIR}"/xboxdrv.initd xboxdrv
newconfd "${FILESDIR}"/xboxdrv.confd xboxdrv
}

@ -1,4 +1,4 @@
DIST gnome-control-center-2.32.1.tar.bz2 2280217 SHA256 7c568b57358e5c08f4d8dd76dbac7df2539135ad081872b60514b7a8ac797e66 SHA512 dc84bd222d1a2db0c4d10c56739e1d9da18945c579ae184f69080aa4b6fa0f0b908c5beafe82a82b6277630d685bed98fe8418421db4275653afbe302d810872 WHIRLPOOL 9b0fe4ed2bb741496642a57e178ca43049d53c71d9a82d311dc5a3ab6dfaf28019a8fa1b41a218b2ede11b4d0ac735034604dd9d952cb215e12327e71d0e69f4
DIST gnome-control-center-3.6.3.tar.xz 4877812 SHA256 2ae23972bc64f62b4facd12dd5adce212bda02491eb6e56bbf195332157d21fb SHA512 77cd68349dc7f58714fbd121a34ec73a5c3e67c7a42a08c20a8dfdcfc9cefdec47af0f09130b7e3f0407cb7a786234b2619fdb76462c3bdb2bbc548294bfd444 WHIRLPOOL bf4ba1b6c9cb17f6b5f22003ee89af051ad152dd5671ffe01ba5cc0339d51659a8af7c629755726d305caf75c1fe4629b268fc269862751bc24317d323395697
DIST gnome-control-center-3.8.0.tar.xz 6793712 SHA256 154653d45c224eb5daf5a756e145989c2477fc4b448af20a5b62dbb897dd74f7 SHA512 abffd5b5942c02db8ca3263faab2c4e76865f5d3b4666a6d830c6b62e87e3a922bd7564d7c3bca21e2d8394a4efb505035fe685a189a0837cdbd3a81e9a6c970 WHIRLPOOL e50737d74e54eb8675d7ab4b8199306fcb28eaa6c0cb3317f41a68e07ed9b03c3f5b02ad04bbe68e639e72e835f78941f0f4967f86cac0c677c66273fe132eac
DIST gnome-control-center-3.8.1.5.tar.xz 6809712 SHA256 6756a97eb8e89fe16bd5e50ab85d7f0e4e0fb7fa4e9df5ab49a97de03033d211 SHA512 344fb8a09b04fdf3714e5d3e7e5f52d73283898ebc1f9de059da900010ae6ab9e4bf1219ed57a2f4a83a1505dd0eaac085ab738efeb54c7047c75792a8f1dd0a WHIRLPOOL d9668827b82f95af9db03677ee32fff6a4f17f4b12be784e3ca7a9400ab084c288478409a012444264052a3f3f7819b11996a659c94de6efabbe57c4d79d2ceb
DIST gnome-control-center-3.8.2.tar.xz 6827684 SHA256 abf6c1acb0b82631e730cb32762deff905fd4f776b89b475b8e732dc73a9d1fb SHA512 3d3199969205c62a8e6039053675965a7d2b7069cd0ddb26b5568e652227084801c024c2d9c4da80e3f733419ff5159e3e360495355be13d3348755a50deedca WHIRLPOOL f2d829564918c899cf7511127f8ba9b4b77df2b9feb8ab3f2dc1d07c191e12362944547e31be531252f3d3107fa89d5483ddbfe60d001ec3a798bb5dea4e69ac

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-control-center/gnome-control-center-3.8.0-r1.ebuild,v 1.3 2013/05/09 20:08:56 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-control-center/gnome-control-center-3.8.2.ebuild,v 1.1 2013/05/14 20:56:31 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@ -9,13 +9,16 @@ GNOME2_LA_PUNT="yes" # gmodule is used, which uses dlopen
inherit autotools eutils gnome2
DESCRIPTION="GNOME Desktop Configuration Tool"
HOMEPAGE="http://www.gnome.org/"
HOMEPAGE="https://git.gnome.org/browse/gnome-control-center/"
LICENSE="GPL-2+"
SLOT="2"
IUSE="+bluetooth +colord +cups +gnome-online-accounts +i18n input_devices_wacom kerberos +socialweb systemd v4l"
IUSE="+bluetooth +colord +cups +gnome-online-accounts +i18n input_devices_wacom kerberos modemmanager +socialweb systemd v4l"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
# False positives caused by nested configure scripts
QA_CONFIGURE_OPTIONS=".*"
# gnome-session-2.91.6-r1 is needed so that 10-user-dirs-update is run at login
# g-s-d[policykit] needed for bug #403527
COMMON_DEPEND="
@ -41,7 +44,7 @@ COMMON_DEPEND="
>=x11-libs/libnotify-0.7.3
>=gnome-extra/nm-applet-0.9.7.995
>=net-misc/networkmanager-0.9.8[modemmanager]
>=net-misc/networkmanager-0.9.8[modemmanager?]
x11-apps/xmodmap
x11-libs/libX11
@ -50,10 +53,13 @@ COMMON_DEPEND="
bluetooth? ( >=net-wireless/gnome-bluetooth-3.5.5:= )
colord? ( >=x11-misc/colord-0.1.29 )
cups? ( >=net-print/cups-1.4[dbus] )
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.5.90 )
cups? (
>=net-print/cups-1.4[dbus]
>=net-fs/samba-3.6.14-r1[smbclient] )
gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8.1 )
i18n? ( >=app-i18n/ibus-1.4.99 )
kerberos? ( virtual/krb5 )
modemmanager? ( >=net-misc/modemmanager-0.7.990 )
socialweb? ( net-libs/libsocialweb )
systemd? ( >=sys-apps/systemd-31 )
v4l? (
@ -84,6 +90,7 @@ RDEPEND="${COMMON_DEPEND}
"
# PDEPEND to avoid circular dependency
PDEPEND=">=gnome-base/gnome-session-2.91.6-r1"
DEPEND="${COMMON_DEPEND}
x11-proto/xproto
x11-proto/xf86miscproto
@ -103,6 +110,10 @@ DEPEND="${COMMON_DEPEND}
# gnome-base/gnome-common
src_prepare() {
# Gentoo handles completions in a different directory, bug #465094
sed -i 's|^completiondir =.*|completiondir = $(datadir)/bash-completion|' \
shell/Makefile.am || die "sed completiondir failed"
# Make some panels optional; requires eautoreconf
# https://bugzilla.gnome.org/697478
epatch "${FILESDIR}/${PN}-3.8.0-optional-r1.patch"
@ -114,6 +125,9 @@ src_prepare() {
epatch "${FILESDIR}/${PN}-3.8.0-paths-makefiles.patch"
epatch "${FILESDIR}/${PN}-3.8.0-paths.patch"
# Make modemmanager optional, bug 463852, upstream bug #700145
epatch "${FILESDIR}/${PN}-3.8.1.5-optional-modemmanager.patch"
eautoreconf
gnome2_src_prepare
@ -125,22 +139,21 @@ src_prepare() {
}
src_configure() {
G2CONF="${G2CONF}
--disable-update-mimedb
--disable-static
--enable-documentation
$(use_enable bluetooth)
$(use_enable colord color)
$(use_enable cups)
$(use_enable gnome-online-accounts goa)
$(use_enable i18n ibus)
$(use_with socialweb libsocialweb)
$(use_enable systemd)
$(use_with v4l cheese)
$(use_enable input_devices_wacom wacom)"
# FIXME: add $(use_with kerberos) support?
if ! use kerberos; then
G2CONF+=" KRB5_CONFIG=$(type -P true)"
fi
gnome2_src_configure
! use kerberos && G2CONF+=" KRB5_CONFIG=$(type -P true)"
gnome2_src_configure \
--disable-update-mimedb \
--disable-static \
--enable-documentation \
$(use_enable bluetooth) \
$(use_enable colord color) \
$(use_enable cups) \
$(use_enable gnome-online-accounts goa) \
$(use_enable i18n ibus) \
$(use_enable modemmanager) \
$(use_with socialweb libsocialweb) \
$(use_enable systemd) \
$(use_with v4l cheese) \
$(use_enable input_devices_wacom wacom)
}

@ -1,5 +1,4 @@
DIST gnome-desktop-2.32.1.tar.bz2 1633847 SHA256 55cbecf67efe1fa1e57ac966520a7c46d799c8ba3c652a1219f60cafccb3739d SHA512 b8084d08366dab661a7ee369cd03ba62beddbdfa9a36b988b7d13d207b33d6916f7fa8691717fba7b6a70d8276779e35360b1dc385e6ec876f30ea7b8b373c28 WHIRLPOOL 0889e79b1b3956b0ef1330f661676b77bdb40e8110657ea7f4035618ea023fc4b35364629d68741f042c0b971db9fa4c7731065717612486f7546e07fe048a0d
DIST gnome-desktop-3.6.2.tar.xz 978108 SHA256 ef15cc0b34a8360fd48ceeb833515790db4de38e6945fb3661f178dc7df70236 SHA512 fd28a693e69a8679d67d6807c396a7fff2600561bbbc5ddb620f0c1c6d04bff2e0442fac024c51e493c550eb3a0e2b0693835fbcb9966ef82e9db6967f68bd69 WHIRLPOOL 4cb2a9f7b46d54bbf756af3a1fdedc1c6dbadb8967ce5aa1074ba049fa5787c95accd8fde0407d4948485e424828bc0a0f41ff7faaf5e630d668bbe2df9a7330
DIST gnome-desktop-3.6.3.tar.xz 969112 SHA256 4ba7e7db2a65e2cc867e885afa78e29d9a73cfbfc3bed91786198c486a6d1d0e SHA512 801960ab77c58e545cbabd73b3e1727e62c1254d0aa43da621f2a00f173a4ef827f0a846f15f96da209ee88c6a6296f2e827c0c04cf6addffc6b0b159b9e2a66 WHIRLPOOL 2d1a2d538adde84a56ca1edecde47db1160c388fbd3a0319ae169f4ddc854429854e26cf787e6e37ce3d28de380e5f203eed2a7b80df121aff17dd614ac09aaa
DIST gnome-desktop-3.8.0.1.tar.xz 1009836 SHA256 91260eb6242edda0040397cfae47910c10bb793361d19db0c05eac078f428c3d SHA512 951ca8ee7c013e3132a281f5083d6085d37a8e99154b7fa44d5205c01a32b6513e6c1be2239f3d97ec1719a4b3f1df0bb157653a0e1cdd94471f7a5dff17ab2a WHIRLPOOL 2601d9a2d3b548cff2b957cb23da533e0c1a9a0432522bb23352c6373fa50b19495303e02cf7e1943c8bbcd17ee9699e51f85f40c8adfa642200f78e5008a502
DIST gnome-desktop-3.8.1.tar.xz 1010712 SHA256 79c4790fdfc58a54ee32b2fd20f498f4d563d11fa40ab6599c757e45bee5b13f SHA512 aa78310a208b180f31f74c1ab7884ab9a0817e42929ff90f84b2e86a391eb9a3ea0372a6eec601bae3a38f58e6a4f99cc1a8e7d46e7018040dc14c36f192eb36 WHIRLPOOL c18e59f6401bd300e92f818ee8bbca2988d0463f19e9ff7f5ae3eeb2cb91563f6c191d466d47d1b680d7507e62da6916794a2382e5427c3b6159b0a00255d120
DIST gnome-desktop-3.8.2.tar.xz 1010336 SHA256 af4ec330fa61ee761daf2d5e481e2f9ffbd068d135d5e31a3eaf274524cba33d SHA512 6ea9154692d2a5d5b959a2c172f91c08554b72fb12f8e92a97511978804557a7e28ac743ae6dfd2ae7029f02dc905dfafb21a5177c01cc0051a17290b21aab97 WHIRLPOOL a2caea4ff1c7259dc8a7e7933d15dbac9e23bf79d893533e61c917c7154f02c0a0dc2f94da41d85cde2e4b91e5a0a94efa01af9e3da85d12788f4424af4564f9

@ -1,73 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.6.2.ebuild,v 1.2 2013/02/25 09:13:53 zmedico Exp $
EAPI="5"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
inherit eutils gnome2 multilib
DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
SLOT="3/4" # subslot = libgnome-desktop-3 soname version
IUSE="+introspection"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
# cairo[X] needed for gnome-bg
COMMON_DEPEND="
>=dev-libs/glib-2.33.3:2
>=x11-libs/gdk-pixbuf-2.21.3:2[introspection?]
>=x11-libs/gtk+-3.3.6:3[introspection?]
>=x11-libs/libXext-1.1
>=x11-libs/libXrandr-1.3
x11-libs/cairo:=[X]
x11-libs/libxkbfile
x11-libs/libX11
x11-misc/xkeyboard-config
>=gnome-base/gsettings-desktop-schemas-3.5.91
introspection? ( >=dev-libs/gobject-introspection-0.9.7 )
"
RDEPEND="${COMMON_DEPEND}
!<gnome-base/gnome-desktop-2.32.1-r1:2[doc]
"
DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.1.2
>=dev-util/gtk-doc-am-1.4
>=dev-util/intltool-0.40.6
sys-devel/gettext
x11-proto/xproto
>=x11-proto/randrproto-1.2
virtual/pkgconfig
"
# Includes X11/Xatom.h in libgnome-desktop/gnome-bg.c which comes from xproto
# Includes X11/extensions/Xrandr.h that includes randr.h from randrproto (and
# eventually libXrandr shouldn't RDEPEND on randrproto)
src_configure() {
DOCS="AUTHORS ChangeLog HACKING NEWS README"
# Note: do *not* use "--with-pnp-ids-path" argument. Otherwise, the pnp.ids
# file (needed by other packages such as >=gnome-settings-daemon-3.1.2)
# will not get installed in ${pnpdatadir} (/usr/share/libgnome-desktop-3.0).
G2CONF="${G2CONF}
--disable-static
--with-gnome-distributor=Gentoo
--enable-desktop-docs
$(use_enable introspection)
ITSTOOL=$(type -P true)"
gnome2_src_configure
}
pkg_preinst() {
gnome2_pkg_preinst
preserve_old_lib /usr/$(get_libdir)/libgnome-desktop-3.so.2
}
pkg_postinst() {
gnome2_pkg_preinst
preserve_old_lib_notify /usr/$(get_libdir)/libgnome-desktop-3.so.2
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.8.0.1.ebuild,v 1.1 2013/03/28 17:06:14 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.8.2.ebuild,v 1.1 2013/05/14 21:00:40 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
@ -8,10 +8,10 @@ GCONF_DEBUG="yes"
inherit gnome2
DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
HOMEPAGE="http://www.gnome.org/"
HOMEPAGE="https://git.gnome.org/browse/gnome-desktop"
LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
SLOT="3/4" # subslot = libgnome-desktop-3 soname version
SLOT="3/7" # subslot = libgnome-desktop-3 soname version
IUSE="+introspection"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"

@ -1,2 +1,3 @@
DIST gsettings-desktop-schemas-3.6.1.tar.xz 384248 SHA256 d9a877d209e668845d6cafcd62663b0f6e6154df5a96f581ff36f999050e67e6 SHA512 dc9d9173f4f89ece2f9b36748784d6832d28e73c5c90dabee3e7a4aa99a9f3e9f36986d85e64c9ddea8905d8de41fd5616b727b1a4b1818a30d37e66cf4ba9c4 WHIRLPOOL 87b756c86fd03ca665ec79819a92d7426190feb8ab07304ca7b7895e2de7fc98ed410bcfa494c18b0b162bd11cafa3929a83d71034dcae6025be1c84c8280788
DIST gsettings-desktop-schemas-3.8.0.tar.xz 439508 SHA256 9583384299c3b8cc21f99327a84527d3e7e55a26ada35ea81522dc4c05a5ae0c SHA512 a05d2c105418f6bdc84ed11594ba38f9057c8307999122a6adb04b4499e450ae3443c3777d8b2dc58fb08021f5488dd0cf4fdf541e7940808d2212f72cfb510c WHIRLPOOL 030ef6105aeb670484bda90af253126694542935baac84cc12ea3bb469a76a304ae8ce864d51eccc2befe1022dd1fe57ed1bdd751fbc70bad7de89ab815925c2
DIST gsettings-desktop-schemas-3.8.2.tar.xz 460228 SHA256 86070b2a4e1ab5a28f81b8fd413434eadc1f8505cbf14886d150eb925f93c827 SHA512 a5ee37f5e0c6c80fee50b9ac79f417f61a88c05e996493a081ad1c5c3ef8ccd2f71be93c93ecf01aa0a3de612245ea2fe58de5281ba1417b1d83ba098568232c WHIRLPOOL f94cb8c1d9115e03b61352f84d569673d3c8f203d1e1411184a8ef3ea5f9a2835dc8e3118147583188ec6946803a0744cf75ba72e296fe6674325d7473a9b7d5

@ -0,0 +1,31 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.8.2.ebuild,v 1.1 2013/05/14 21:42:40 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Collection of GSettings schemas for GNOME desktop"
HOMEPAGE="https://git.gnome.org/browse/gsettings-desktop-schemas"
LICENSE="LGPL-2.1+"
SLOT="0"
IUSE="+introspection"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
RDEPEND="
>=dev-libs/glib-2.31:2
introspection? ( >=dev-libs/gobject-introspection-1.31.0 )
"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.40
virtual/pkgconfig
"
src_configure() {
DOCS="AUTHORS HACKING NEWS README"
gnome2_src_configure $(use_enable introspection)
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gcalctool/gcalctool-5.32.2.ebuild,v 1.9 2012/05/05 06:25:17 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gcalctool/gcalctool-5.32.2.ebuild,v 1.10 2013/05/14 20:51:53 pacho Exp $
EAPI="4"
GCONF_DEBUG="no"
@ -19,13 +19,16 @@ IUSE=""
RDEPEND=">=x11-libs/gtk+-2.18:2
>=dev-libs/glib-2.25.10:2
dev-libs/libxml2:2
!<gnome-extra/gnome-utils-2.3"
!<gnome-extra/gnome-utils-2.3
!gnome-extra/gnome-calculator
"
DEPEND="${RDEPEND}
sys-devel/gettext
app-text/scrollkeeper
>=dev-util/intltool-0.35
virtual/pkgconfig
>=app-text/gnome-doc-utils-0.3.2"
>=app-text/gnome-doc-utils-0.3.2
"
pkg_setup() {
G2CONF="${G2CONF}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gcalctool/gcalctool-6.6.2.ebuild,v 1.2 2013/04/06 09:32:46 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gcalctool/gcalctool-6.6.2.ebuild,v 1.3 2013/05/14 20:51:53 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -21,12 +21,13 @@ COMMON_DEPEND="
dev-libs/libxml2:2
"
RDEPEND="${COMMON_DEPEND}
!<gnome-extra/gnome-utils-2.3"
!<gnome-extra/gnome-utils-2.3
!gnome-extra/gnome-calculator
"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.35
sys-devel/gettext
virtual/pkgconfig
!gnome-extra/gnome-calculator
"
src_configure() {

@ -1,2 +1,2 @@
DIST gnome-calculator-3.8.0.tar.xz 1053972 SHA256 7db18629bd7e17ab65b771d554eeef0cd3cf7985a86e5a82c755c42c1b092824 SHA512 34ff2d1f6dbef4163727bd8c7a654a2be6dee6c7a5a573dbd60b08904ed8d3913dd993f7aa1c9bb1e64370e358eb95e1b041c1a9390457232cd76f9d1acc6810 WHIRLPOOL 90a71af5f509857df2a2eaa7ff10fc68cd362b2710de59ff178f8c55da378d213ff50ba9ce8e8521ccd5b647c7247596c15bcd97072fed97036f951c9d6ab5a8
DIST gnome-calculator-3.8.1.tar.xz 1053096 SHA256 24ae856c90a3df62c52dc413ceb2c9bad15e7ad146de0469b53c70681a4ad435 SHA512 9134f10176b4e7168d4b41ff4620407d6b89ce3dc526aa50a501ae26fa14d7b00c9710fca02dc18fe52b048b6a952785a846f9e862782ee4ad6b4953e662ab3d WHIRLPOOL 9124e4cc29df618dbe2154c800d5a0ccd39f95056dcc3772d6bd340223535549d0d8a38946ce637cfa00574de9f37b64c8b4faffb5281b11c2a34466e56fe062
DIST gnome-calculator-3.8.2.tar.xz 1051348 SHA256 13d67b6dfa2501b883add8adf5470c5fea5eb1f1fa87f84e8ceda069418f1e81 SHA512 f2abf3ea38929d155de00ebe940e96d6de334b9544194dbcf4a40d327bed0e51d8c82e94f78988afd355028cc396bd745a6aee3b8b6af568e166ea61d55a422b WHIRLPOOL f40487d2bcf6406e76dc09e75e3e4b7372ecf77d8b5e4bb0ab62d0e3e083caae84013882b0778b4020e81497b25789642a50dfb23a787e5385102978f234d877

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-calculator/gnome-calculator-3.8.1.ebuild,v 1.1 2013/04/14 18:37:26 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-calculator/gnome-calculator-3.8.1.ebuild,v 1.2 2013/05/14 20:53:20 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -22,12 +22,12 @@ COMMON_DEPEND="
"
RDEPEND="${COMMON_DEPEND}
!<gnome-extra/gnome-utils-2.3
!gnome-extra/gcalctool
"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.35
sys-devel/gettext
virtual/pkgconfig
!gnome-extra/gcalctool
"
src_configure() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-calculator/gnome-calculator-3.8.0.ebuild,v 1.2 2013/04/06 09:34:41 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-calculator/gnome-calculator-3.8.2.ebuild,v 1.2 2013/05/14 20:53:20 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -21,15 +21,15 @@ COMMON_DEPEND="
dev-libs/libxml2:2
"
RDEPEND="${COMMON_DEPEND}
!<gnome-extra/gnome-utils-2.3"
!<gnome-extra/gnome-utils-2.3
!gnome-extra/gcalctool
"
DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.35
sys-devel/gettext
virtual/pkgconfig
!gnome-extra/gcalctool
"
src_configure() {
G2CONF="${G2CONF} ITSTOOL=$(type -P true)"
gnome2_src_configure
gnome2_src_configure ITSTOOL=$(type -P true)
}

@ -1,2 +1,3 @@
DIST gnome-clocks-0.1.5.tar.xz 478968 SHA256 42ee9924515fac1c57229057e57e37ea1a7915f9f43e64064f8e740433058b12 SHA512 e1c75ab5cc0a153469bc20385a1a85c11e0f2ac26fda46820f47e02f4cdfbdceb4033a1eab632299712bb31b83832920536b025071e5d0918f6f041a9e84ac5d WHIRLPOOL b4e953bfd0585939cc32b9a0b11513a80c04bf96c8b3a1de6029781f05cecfaec24161c84a215f1953cbf15dbb4944e7aa2e4d2e85e17c4e94e5c883b347be0d
DIST gnome-clocks-3.8.1.tar.xz 789520 SHA256 6140cc1ae41460c5fc799b2a52d809ed4cf9035a72be7e878160b5e591486d31 SHA512 05812d40876be5443019809839ed99fbdfd2ba3f2482466973e63ca9d9269e643fd57d650c96e798d2c269ad8bb17f8e43fb848b0dbc0ded966d5acf3a4eef1a WHIRLPOOL 3735cb12b9ea7b7d893f8fce1b4083fca1936b3c6e967a88edeb5c6d976ffd24be2318e3ff6b12f9697468713d58201d0d0d4883261af264ae9946a6cd87273a
DIST gnome-clocks-3.8.2.tar.xz 792052 SHA256 afe8405e41d8d2ac570642c2d73a43a2a45f8c6e521640d0a266e0fe0a55410f SHA512 5914e8403bd36a8e84fc5b511bb55a3a806c1b0813bc0e1130b76ddee9995bff329d57960532fbccb3577b1a1dac0cbdebcc591e0bf44c57d8924b5b8b1c01d0 WHIRLPOOL 4a172e0ab490a049e199c1a7d2aff3f1fd545bd5b9bd904b37965f50caa96df1940234fe6017dc381bc6e94259fec003da33200fbe4e95e74b67a6bf897dbb60

@ -0,0 +1,33 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-clocks/gnome-clocks-3.8.2.ebuild,v 1.1 2013/05/14 20:47:58 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
VALA_MIN_API_VERSION="0.18"
inherit gnome2 vala
DESCRIPTION="Clocks application for GNOME"
HOMEPAGE="http://live.gnome.org/GnomeClocks"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
>=dev-libs/glib-2.30:2
>=x11-libs/gtk+-3.7.12:3
>=media-libs/libcanberra-0.30
>=dev-libs/libgweather-3.7.90
>=gnome-base/gnome-desktop-3.7.90
>=x11-libs/libnotify-0.7
"
DEPEND="${RDEPEND}
$(vala_depend)"
src_prepare() {
gnome2_src_prepare
vala_src_prepare
}

@ -1,3 +1,3 @@
DIST gnome-documents-3.6.2.tar.xz 531392 SHA256 b2b548685c1074cf222a21d747e6daa8f339815219616b12bb4d2e447e2a34c2 SHA512 9e91177f9e1bbcfe835c281bfde64174a6329902c69c92927b2b7ff921fddcb277bcf8d893ceed7660004171a8814344d21b2f722db6578f08632abb9a087a30 WHIRLPOOL 5338cde49a0274abc90032d82753c686db8c05be8f3a93ed7885b59dfadf20897c0aa99a8dc6bc28217e331ea117dc57f41b48ba9a1c23c6055e2b83b9e537f9
DIST gnome-documents-3.8.0.tar.xz 649052 SHA256 8c3db90e1b7fb971e13be73b3c988942f853e9d8a8bd28690253366c147466c6 SHA512 432110753e782927555c8db84525db983e614d65e984e77fbb3f488a9ca61235c56b6da411ecc9e7ed95941860094e0fdbd10acb2024fe9301d18e75e15d01e7 WHIRLPOOL 27e2d5cb7dda54ecf104ed7034e04c424842f477f4ef4263f5c17255e67ba69442604066f911a76d16ae6336719dc8f6119caa84dacfd45d84a6a336c1a52566
DIST gnome-documents-3.8.1.tar.xz 653140 SHA256 7cd05f5f2482ddae797300b233f499cbe410cb22d358bef37a387aff232d4e9f SHA512 3d20faf52e241b698badb10425d3bf66a86939cd220e42465b7bff5c00a77242357f75cb83d5fb13d847c2ba67454c30cf3ce10a837b8bf8f62c40ecebda20e0 WHIRLPOOL e2bca78d733d33ab0d762a54097f09db0082a56214827900058ef31498be5059b751684cc82036363b2902f63860f4e28f1ca00ee404eb5a5f6a87fd205da1be
DIST gnome-documents-3.8.2.1.tar.xz 653336 SHA256 52cbe1590b47fbf446becde227e0fa3772dda589b631ab1350a034c2eae77b85 SHA512 ea92fc022a73e2b4070d0487cfcefeedc4c9542e1caeea363b61244d282544caff640d5def003eeb1224d8bb9c9ba05b5973da5d383eaf708ccbe2caa725199c WHIRLPOOL ba1b682107f7e9d710deb6e349d73c3fe31f64449bf5e4ff96bf37f9634e74e9c17a5cb6e8e819f5c099130e36aeea08e0cce7a63e7fea27ec8c63eac1bafd20

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.8.0.ebuild,v 1.1 2013/03/28 22:57:04 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.8.2.1.ebuild,v 1.1 2013/05/14 21:06:39 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"

@ -1 +1,2 @@
DIST gnome-getting-started-docs-3.8.1.tar.xz 65927440 SHA256 6406888a15af31db6d64025997d29592b2d10439637e63b319a8f50540764192 SHA512 9b1f9a01d7f9ef9df0233fd8aebae359d81701dc4ba175cc10577143e89e2a80cfe1640d33d7fbd1c53e4f2564e51d34523fbb8043a82804517b111259463186 WHIRLPOOL c0a3423ab3aa6afbac1817ce20016bcf41dbdf6af851e1d0eec49438488bc7e63bd0b55b0342cd93445fe945c4d56670cdc3849e3e4b2aa955a262e6e4acd6e4
DIST gnome-getting-started-docs-3.8.2.tar.xz 112968696 SHA256 163f986a2347c76828f2b8d3fa51666a2b9a9046520ed8d5d152e6c99662742f SHA512 937e17a4ca2cae8ce804bd133025570d49ea9ae18c7c402a5dd73a60babd7b50c02e7c6804ca0cfa4a17934d68914bb9ba2ae068c8de9ab16f879d18f40221f5 WHIRLPOOL eabc870ce608e8be0d0f17e900b2b1b2792b761946be35810b9836ff8deb7886bfadf53e0fd433ad3087466dfc65196b18439da709670b7348f0d4448f276034

@ -0,0 +1,25 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.8.2.ebuild,v 1.1 2013/05/14 21:27:38 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Help a new user get started in GNOME"
HOMEPAGE="https://help.gnome.org/"
LICENSE="CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="gnome-extra/gnome-user-docs"
DEPEND="app-text/yelp-tools
dev-util/itstool
sys-devel/gettext
virtual/pkgconfig"
# This ebuild does not install any binaries
RESTRICT="binchecks strip"

@ -1,5 +1,4 @@
DIST gnome-system-monitor-2.28.2-patches.tar.bz2 6400 SHA256 d649ec0e5a63453b3e752fee5cc933ffed4b8d7653d15b039bdeaf3f7c514a06 SHA512 bbfe8a7d7feaaa2b7d95906ce985405e59a9a756002040761055bc2347355c569783bc57c9f52b4ac429f5ef6de921a1bede13a378a58d8c294533d9825f03b3 WHIRLPOOL 940caf04d2bd88acfc8e757906e214dc0aa991af44b098b261380771abe23edc4d634f6807b12c464df01f15c6f0a1e73628e818b84003a1e61693acc0a45a55
DIST gnome-system-monitor-2.28.2.tar.bz2 2432252 SHA256 b628edfd39e3a6b374ce133f367d3568475eb4e981a367f4f9d62a9784e5ae59 SHA512 41d77fa9055ecfa1b379d7fd35c8f6401773f07a640f0b11e787cc985387d264cdb718aa0eed68e8b54f74abd301a98dbe8360160bda1e8e33459f83b3426e27 WHIRLPOOL 9782e92ee8d8e37fdd61dcb2af31ed8a68caa45e39eb2f6f3324d4484bad5b78723b1c03bdd699c6e6cf3c5de0e268f01105aaece6f7e3042118910407fe1c04
DIST gnome-system-monitor-3.6.1.tar.xz 2664660 SHA256 e79e7d50223fc590e1b01afe493e63fd1859c2d2add5abacfe4f2d07ea8edbd8 SHA512 4697f889645f22699a0124385d6617cfe4dd5a32544b453bd6ba9d80271c1b4c36f31e0041addbaf2fdc2ea98043f2f870d369f39df48ffc3a777be52d14fb4e WHIRLPOOL 4d07f3ca3b625f776cab6a7a8c48e66858cd55932f6b6f62f636b5f46258a933ef0f0c8df3a87da9e7ee8f505ce6cf7d46b468087003343e9cf60a2d4829cecb
DIST gnome-system-monitor-3.8.0.tar.xz 2805036 SHA256 2d5bdd81c19bc34f83c0ccfde998007df9ef517f5e4bfb5e36513a76c21dce86 SHA512 32b2d14bd81dc4a01180f7fc8047ea463c6b014f1a4ec70e0313d393d065609bc5c25e02685dce0272755ceb4863fecb1164a1a032bec1c8242ea5ab49e3cd00 WHIRLPOOL 49ed7752bf94d5f2511a24b5fe01e90e3deab47d0219ed653b1d2a93ed60427cb8b4193877c3c2660648a33822cd101869d7f7949ae4d9e7075bddb1d04afeb4
DIST gnome-system-monitor-3.8.2.tar.xz 2848528 SHA256 8349ec4d8e6cd041c581354fc4e844c7cda12d7f1153fc6999ceea0f8aceb58c SHA512 8ee85cffc25d1be60e97ae125894bd17dfc039af6832bf7a3ef0a8588552ed7fa2f882e5394747c22c278c9577078e38b4a0b31c4f3ad1708a8e37f36e9d3c9a WHIRLPOOL 9e910a42f4c65fa487b289bcac0abd7f43e58f300fab690c453f81e22ea2610bcbacbc6a86a329fcf240a515f291a1d14797ef449bf7b174aa8e15b1caf799cb
DIST gnome-system-monitor-3.8.2.1.tar.xz 2848744 SHA256 df4d2c4dbb4f3408b621140732efb3e38853658addd6aae73613027856f6bb44 SHA512 af4f05f4eed9fddb5f197ec4374056eedfd733205e6915f3a6783b095b68be843ef1e9c6846627d0bfa4ae25ace116fe6d6df8748788ccd305efd154bc5690ec WHIRLPOOL b931fdcd64f4635287ac05958aed0c5835c5279c895c72b59edc67e87b1ab4884b71a7262e5f4b2391618816a78c87871f897261adf4080bad1da6eb9fc85d89

@ -1,43 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.8.0.ebuild,v 1.2 2013/03/29 22:40:31 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="The Gnome System Monitor"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="0"
IUSE="systemd"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
RDEPEND=">=dev-libs/glib-2.28:2
>=x11-libs/libwnck-2.91.0:3
>=gnome-base/libgtop-2.28.2:2
>=x11-libs/gtk+-3.5.12:3[X(+)]
>=x11-themes/gnome-icon-theme-2.31
>=dev-cpp/gtkmm-3.3.18:3.0
>=dev-cpp/glibmm-2.27:2
>=dev-libs/libxml2-2.0:2
>=gnome-base/librsvg-2.35:2
systemd? ( >=sys-apps/systemd-38 )
"
DEPEND="${RDEPEND}
>=app-text/gnome-doc-utils-0.20
>=dev-util/intltool-0.41.0
>=sys-devel/gettext-0.17
virtual/pkgconfig
systemd? ( !=sys-apps/systemd-43* )
"
src_configure() {
gnome2_src_configure \
$(use_enable systemd) \
ITSTOOL=$(type -P true)
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.8.2.ebuild,v 1.1 2013/05/13 18:17:46 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.8.2.1.ebuild,v 1.1 2013/05/14 21:37:58 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"

@ -1,3 +1,4 @@
DIST gnome-user-docs-2.32.0.tar.bz2 17858824 SHA256 d42c4435590e5b79c8fcf1d917aee485096c02cdc84338bc31f769219ccc87f7 SHA512 d180295b46338f27f827a1dafb2da129cf34c8453e95adc60ee3205c5623038d08ca2aa744d55a67dbe8054b381de0d3c77293663053dc92a556b27cd1cfeb4a WHIRLPOOL 30ac61319d421a20b81831849aae54055b3a8df4720e636b0562e71abd579920f9c53f5e1a24934faf7d9e5bf5e8bfe8e5702489c234b6ad4da32ef4c3fed9e0
DIST gnome-user-docs-3.6.2.tar.xz 8142108 SHA256 9c13bda8d2690760699456d5d91d241455af51e21a732689d68f15cbf3664152 SHA512 39d302098b90e1c15c7887727b99c9940757df9964d0844191d1914959bb1d2b70a9a194421a5b75edb50c4dd755d3799c0e557231c6e385e72a21e91c1f2da7 WHIRLPOOL 2f114b9ffdc42b9d38aa61ea94698a48db425d18f43c1e5863005d1cca37d8bff787b3b2c61bea214cc1c3979797ebfeea5608e77f1d65af36f2a94567ed02b5
DIST gnome-user-docs-3.8.0.tar.xz 9049504 SHA256 91a93ab79ac852e2a5ec7b7b0feb154a25fffb61bbf3a6ba1313c1759c531f0b SHA512 291a366b0b7d2929c31b525eee662064bac404e8c248b3ae23e91580c80074b530c82c7b5f1711b2549363042cfab1784d6b4dba7dbf9b8081f16036123ec385 WHIRLPOOL aca77eb1babea807e29a08ccf673219ee6b62e68db9115e6ca4482a952f5dc4f323150c02ce3ce3402efbb6e0a53447370d8d9df0d4809f0f511acd33c4c35fd
DIST gnome-user-docs-3.8.1.tar.xz 9087892 SHA256 096715cb70525d70be64f5ea6e7e81eaedb2b43d7c51ad2e45d9a28387c0fbf3 SHA512 3f2527bd0dd03e8c0eb9f61c301bad64e8f18380c267291e4a352989d32c4cfc438b4e4713a7b90c00847eb1f907cf6e5a59eab41e182ffbe367ad85c4d3f7c0 WHIRLPOOL 26902ff023ecc3af5280cf96d5c0544b5e904afe4def7d97d05a938984b31b077a274b97f7681093f7c000789bdeee58267dd5ec07dc56dd306127f0008836ba

@ -0,0 +1,47 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-docs/gnome-user-docs-3.8.1.ebuild,v 1.1 2013/05/14 21:40:28 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="GNOME end user documentation"
HOMEPAGE="https://git.gnome.org/browse/gnome-user-docs"
LICENSE="CC-BY-3.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="test"
# Newer gnome-doc-utils is needed for RNGs
# libxml2 needed for xmllint
# scrollkeeper is referenced in gnome-user-docs.spec, but is not used
RDEPEND=""
DEPEND="test? (
>=app-text/gnome-doc-utils-0.20.5
dev-libs/libxml2 )"
# eautoreconf requires:
# app-text/yelp-tools
# rebuilding translations requires:
# dev-libs/libxml2
# dev-util/gettext
# dev-util/itstool
# This ebuild does not install any binaries
RESTRICT="binchecks strip"
src_configure() {
# itstool is only needed for rebuilding translations
# xmllint is only needed for tests
gnome2_src_configure \
$(usex test XMLLINT=$(type -P true)) \
ITSTOOL=$(type -P true)
}
src_compile() {
# Do not compile; "make all" with unset LINGUAS rebuilds all translations,
# which can take > 2 hours on a Core i7.
return
}

@ -7,8 +7,6 @@
introspection</flag>
<flag name="packagekit">Use packagekit to search for programs to open
unknown file types</flag>
<flag name="sendto">Enable the nemo-sendto extension to send files to
various locations/devices</flag>
<flag name="tracker">Add support for <pkg>app-misc/tracker</pkg> search</flag>
</use>
</pkgmetadata>

@ -1 +1 @@
DIST swfdec-gnome-2.30.1.tar.bz2 176616 RMD160 93655b9b18b3a51cb18eac0909e4cf7b77b6d5ae SHA1 dd75516c52bce253f8b30cb6ba11beaee8cdd016 SHA256 e684a2ae44ff52b925796734813c32fa222d4aba0aa85fd77276e99a12317b88
DIST swfdec-gnome-2.30.1.tar.bz2 176616 SHA256 e684a2ae44ff52b925796734813c32fa222d4aba0aa85fd77276e99a12317b88

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

@ -1,2 +1,3 @@
DIST yelp-xsl-3.6.1.tar.xz 589500 SHA256 9cac9770d6ace354f3e56a2e60933bb0cd894a4263a3bf1db6e8900f86f8cdd6 SHA512 8c097361d1f238b02d750e702f4eb72d56630e71b168634f4cabbfa9724719fced9b582c6c2e693b94f9045ec00313478b04e8d7a1f3fc87fd7ad140f7e5847a WHIRLPOOL 15e90968cf321ae8ca5f9acc6e1407f6b15a3d17b779ffdbe0380c4b5905870b3e3917f46e4a87ac19c07eccd105f1513e3f0041932af25d68abc9abc6c53475
DIST yelp-xsl-3.8.0.tar.xz 590616 SHA256 d89e280743460dae534617eef4751c46581ea3a7fa202b5a351daf192505d6e9 SHA512 e2677b4eb519cea432923ba5f97bc4a088031f62dece9befa25e02e08ed5442c1adfd2edcbd71796ec2a5a7b806c5e0f3cf75b7f23add568c5adfba4f416534b WHIRLPOOL cfbf6a880afea15197ef336a20f5a92859679b5e418d790b83f4535521298b954f68867f2514b113f877b3024e5b4667fae74c1760ac5ddb38c0930e5d4436f7
DIST yelp-xsl-3.8.1.tar.xz 590760 SHA256 afc519be07ffcbdcc20d1acfd1d901cfd03c7b4cf0667036534f2726bb68b40d SHA512 30590c19545c14de4a6391ce0e52bc05cb14d0e0982d956e4a91d3bd80e89a091bff7d3cc8e74dbb438acf4038d57dd557359a38576fcd4fbe05e8b87a14087b WHIRLPOOL 4f7a9615d0aee444cb078a142fe783ff2d3b714aacfec3339420cca66a811c851937ea97ff926fc9eb7eacb1bbe9d269f02bc8d26b6a48371883611d56de9a8c

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp-xsl/yelp-xsl-3.8.1.ebuild,v 1.1 2013/05/14 20:02:50 pacho Exp $
EAPI="5"
inherit gnome.org
DESCRIPTION="XSL stylesheets for yelp"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+"
SLOT="0"
IUSE=""
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux"
RDEPEND="
>=dev-libs/libxml2-2.6.12:=
>=dev-libs/libxslt-1.1.8:=
"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
>=dev-util/itstool-1.2.0
sys-devel/gettext
virtual/awk
virtual/pkgconfig
"

@ -1,3 +1,4 @@
DIST yelp-2.30.2+webkit.tar.xz 739928 SHA256 00d84338e3975174a5735deb39e2b4b49816cbedae8130ccba64abc72ae85cd5 SHA512 711baba2243916f11c4d4e24e1013dcf87f89a411c88dc0c2151ba67213ac720f71a5f17d1a6037b8978b372a95d1902d753e03ac0936fd90bce7dcb6f7da53a WHIRLPOOL 6b3736922b20c5a057c153010883d40eede244729f8f83fb480d8c1fafb8a631b93edc507de341fc59913e28a0af9f048cb3b0f591fa3ac4cf15a76bebaf70dd
DIST yelp-3.6.2.tar.xz 851824 SHA256 f83d10cb6dfbbaa7d3d5a9ff930edd4a0eef657de0e8aeeaaef0b187038681e1 SHA512 3cbc497b19de4f8f84f4f9159b929eae5b3a92e2cc10dffee56628608a1cf4d8ffa3091620af0e5a3a3a1de9385b1b6c020771de01781e32d695587e51c52f2c WHIRLPOOL d2762e8b90d76f0b07722e6ebe45ead118e79412744961ae74219f9f311ec640fbd49bfb0471a2c1f0032eb30cc6bf6b8e13d718910b7475e7c7b09b4266e32d
DIST yelp-3.8.0.tar.xz 1431296 SHA256 f4a02dad614bfc04b6a998440123633145f4011c3a1d35415492d2ff76c1707f SHA512 3656ead6538a40894bdc5bcb0d6b81c3f9269fd31dbc8dba8c30f6efa8b5a0e84cab4303daa6e6e206b6e480bb5e6ead93c73d37102e1b4a93f6be8f8e1d9193 WHIRLPOOL f380761257c8c0f71369bde6af52abd85c4f86a8035bd261ba85ed0f4736bbbc917bb87f52214c34bc967f7b0b6ed5b6ec6ecfd9c42246102c4c290b86c11c78
DIST yelp-3.8.1.tar.xz 1425460 SHA256 73b3941316194dea8ea7d1d2b1f6612424c5d80ee1871ef627455893ad15606e SHA512 d9bf1cc6fdc500a674e7e56faafcabf7dc89b8051d647749abae254e5d295845cbd147c417d9b634355336244ed1afd4b41e6d76d5f1e853a1c95c58710ac95c WHIRLPOOL 0de23c9648917b325d02f7b6a530f2bc0e6609142f9c5d6e8b6bad2dff7f7a3cc03670e0068329a7cdb957c16edeaf427dbaf6470390e2a54b4028a8b1dc3784

@ -0,0 +1,54 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp/yelp-3.8.1.ebuild,v 1.1 2013/05/14 19:59:31 pacho Exp $
EAPI="5"
GCONF_DEBUG="yes"
inherit autotools eutils gnome2
DESCRIPTION="Help browser for GNOME"
HOMEPAGE="http://projects.gnome.org/yelp/ https://live.gnome.org/Yelp"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE=""
RDEPEND="
app-arch/bzip2:=
>=app-arch/xz-utils-4.9:=
dev-db/sqlite:3=
>=dev-libs/glib-2.25.11:2
>=dev-libs/libxml2-2.6.5:2
>=dev-libs/libxslt-1.1.4
>=gnome-extra/yelp-xsl-3.6.1
>=net-libs/webkit-gtk-1.3.10:3
>=x11-libs/gtk+-2.91.8:3
x11-themes/gnome-icon-theme-symbolic
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.13
>=dev-util/intltool-0.41.0
>=sys-devel/gettext-0.17
virtual/pkgconfig
gnome-base/gnome-common
"
# If eautoreconf:
# gnome-base/gnome-common
src_prepare() {
# Fix compatibility with Gentoo's sys-apps/man
# https://bugzilla.gnome.org/show_bug.cgi?id=648854
epatch "${FILESDIR}/${PN}-3.0.3-man-compatibility.patch"
eautoreconf
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--disable-static \
--enable-bz2 \
--enable-lzma \
ITSTOOL=$(type -P true)
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail/claws-mail-3.9.1.ebuild,v 1.9 2013/05/13 21:32:22 fauli Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail/claws-mail-3.9.1.ebuild,v 1.10 2013/05/14 18:21:30 maekke Exp $
EAPI="5"
@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/sylpheed-claws/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~hppa ~mips ~x86 ~x86-fbsd"
KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd"
IUSE="archive bogofilter calendar clamav dbus debug doc gdata gtk3 +imap ipv6 ldap +libcanberra +libindicate +libnotify networkmanager nntp +notification pda pdf perl +pgp python rss session smime spamassassin spam-report spell +gnutls startup-notification valgrind webkit xface"
REQUIRED_USE="networkmanager? ( dbus )

@ -50,5 +50,59 @@ DIST thunderbird-17.0.5esr-uk.xpi 471142 SHA256 30270bfb9b6a99cae60a37fa08614af1
DIST thunderbird-17.0.5esr-vi.xpi 478454 SHA256 b48c5fa9fe9d3c7719e45955730e01fead4f28dd8f4d72df75e247c57fce3326 SHA512 1c741c8c6a78c191467c6f21f6de37e200bfee3703146999d4f141ea91adfceb4e8188e1397758569d120e6a2cbcd947515dae0fb2a5596a025729ee042a1adb WHIRLPOOL 704009c7bc31bc99bbe5e103cdb84e855c96a8863aa738660c21f993bcf503d6d1df4345228513c0c8403d510c2ef20f67005dda43614c5e4c50e4fc4ca64984
DIST thunderbird-17.0.5esr-zh-CN.xpi 436082 SHA256 0c775bc64658bfd657a1125e776b529a6097c25dd760e8ef74e8e9ac58065d04 SHA512 f827cbd42865ed5395a1121902d835c00395559db32b7328febc301122d365edd0daafc805457ec81667165017fca75c3dd88e7befd0cbcb4b8f998c6aefce5e WHIRLPOOL fee45c4d16c40fd7ab96885de2a07fbacea53906eb0934187a810a4227639f91b469815e393f0bcfb2f1313d089ce23649f524b9ec6cc95472609f7272d7f71e
DIST thunderbird-17.0.5esr-zh-TW.xpi 437591 SHA256 194b9a773cdf8a078b11928e56807b58a111d849af272116c8323d5c147ceb69 SHA512 acba4f4e5fe86c17c10c333b5a70fce7220d6161141f307d9ecc410185c8de8fc23db2445955e615d6eecfd2af75ca5b43ea0bc8d737bf2a8d8f33938823cb5a WHIRLPOOL e43115377eb2345d6b27789e382f368e76fa733352e4a5d1c8ffc12b460d13775da2a97af8df79f754a9f2ad57631ec85d8775a1e366210dab96f599b6c53b9e
DIST thunderbird-17.0.6esr-ar.xpi 445977 SHA256 3cac8aefb6a36adff9ba9b863435b1ec43b439325659fd14cd2b392226f3eb70 SHA512 2cfbffd451d7ca2d5022f32984332fcf0bc3cbde8e21e66723dbc854758308fbf595ccdebb8d32dbce01746d69c828d957aa802ee7acc241c53f2f943b3aba63 WHIRLPOOL d10716f1c6e8d238bd44a79999230ec89e01e9382c276a037f8d1194b1eede6077068ac283e5b772de3265cff5269d41dc8d97061b0125bb244a32ae2d8941bb
DIST thunderbird-17.0.6esr-ast.xpi 388039 SHA256 fd8c488f2b6bc7d5ad5d73c78a906b2134680eac57f1c892b935e58e659b7ddf SHA512 2e2ff438967116c3c329bceaaa70ba127f4a377d1045a2683548ca79388b702472132a8fe91e1f45d7d3bc264554dc4c4f57d92fc25fbf6518d9b2bc36c308fe WHIRLPOOL da15aecdee0a7a8c9b14c50126e803be230c30e476c07fa3e7bbd78165beaf7772c0b1b43fdab4d283b05a62084f2bd2dba63c9891ab514992970fa086fbb37e
DIST thunderbird-17.0.6esr-be.xpi 426695 SHA256 ee253179135b8d935d2eadfe97d508bb31ea3041fafba2bb9b7e4811e16e7015 SHA512 3c0b3851c4f419e856d0dfe06ce2364dd13c2179690d9dee7bd90086737f775d11858c0ac4ca19c1e99def8e887603cb3d18db7dc0cc1caacadf4996fbb9f831 WHIRLPOOL 204498ea97600c91142e2b95d36a28fc4e2b5cd1f440db62038e9284cfd09c2500eed99123c156712a6b2ad9656d458fe338b0edb161f33a0ec7ee5344275347
DIST thunderbird-17.0.6esr-bg.xpi 467638 SHA256 8b95e8817b3af4a54cdc2634621b58e6b1dfaf192eb6d6d450873727ed1a3a38 SHA512 12af3954322af52a7e315d6cb6c00b335151a4b4a43d309ba76574dcd3c58caca58c00512439782ee76895035be0fac0d5d87bd866257d808095729080103cf7 WHIRLPOOL 630c6b85a5ecff1a4f03fef8883332e97477d0a9d0bbaf58cd60c837d6396213293131ea1dd4727992e9e86cb2fed7051e5f50522da0c2a94385e050ef5cb708
DIST thunderbird-17.0.6esr-bn-BD.xpi 520602 SHA256 fae5d2d937ea0460aaf025c3b6328af7a9f3637a7cc5f6861d2cda08183e5c45 SHA512 40df7d6c16c0973b4e85174e3c61acc228fead4d04d1cb0e5424d89bb10a78c79f524b31095d14514b502f5e41ede0ffeebd4a519568b4fe45af673f8ba10376 WHIRLPOOL f98330c83d3531db3ebf02ea1e83279d95c88625e7e88188836df1b03244244e2a2ce1fe137e5233f1c8842cbdb74de0045e75b5a78fa38cc7bcb0af34d3d93f
DIST thunderbird-17.0.6esr-br.xpi 417072 SHA256 c54258f01e83f71bb1826fbea344028524dddcc77539d03fe9376832ada6f54e SHA512 4fd805da87a02512f6d882800b5b190c5a1ff5b65757284d9dbf2239d86472122d8e7631becbc0949503f97ba88bce6c8a78690026f98eb26c2ff778f7a43166 WHIRLPOOL 8b77401d42fbb696afc645af1a464ae5b7ef202dc99248dc71dcba8db1378639390cd21e1be89ffaa2a667fa8beddf501aaf09870f9a76b52161840f83ba8ddb
DIST thunderbird-17.0.6esr-ca.xpi 418408 SHA256 e6ace93ff41867080f42ed5adfb70803986ec0b54811683621e6944492cdfc41 SHA512 9bd5e7c97d3bf809e22345856541215e7ed2be93442f2fc6104af7e6aa05f68c60ce8d95349611aa1df1aeae5fb0bd302e365e84552947692a473e28d0ec4329 WHIRLPOOL a8476e8da39baff855e8133f0c8b93c54737b0218dcfaf7e5f18b5c80a99d2a777b7a1f848b385a187239f75c2babd697e6b2861e46feeefebd279895267a2a8
DIST thunderbird-17.0.6esr-cs.xpi 420627 SHA256 2e7dd4e30935f78772f38a133a3695e36d511c8defb5b02181708b8f50bd4e60 SHA512 b84bb94093c2c80e78f8286aee8961922e7ca6b071818ca670a454afd78a1b8a13a9b0b1f2256b0b810627d6cd71828f2eeb38eebe0a5b824587413ce66daccc WHIRLPOOL 31740fda9e888f3e4cea5c2428b6a75ea583a79ecb09194becdd6f5f8988e994f98a31eeff5550f688b572bb05d8a11df819bf8ad59ec6044d7b0696ba0a859f
DIST thunderbird-17.0.6esr-da.xpi 398981 SHA256 f37bd8014c1288cf40084c07d97e0abee47fe973d826e2faf7689d221abdc9d7 SHA512 7e012838b6cc27a9db79c7efb129c12dec873b8f418b4aba131a98fa902fbe01e2d519af0b865e94e1ea7ab8653f4a9cf210bef2c724bb7a8de10c0b7b3ad531 WHIRLPOOL d5d9a53ba8e0b9c7292857fa215a1a42a79cfb9058d410fff3a190353c228e87d6712c15a2380a63ac1b6f3aa64cda9a7d69fb6f20b245168f89612a617da7d7
DIST thunderbird-17.0.6esr-de.xpi 393632 SHA256 216ad172402e3e041894a108aab8c149954742a086d6d9caf61fa5abea09133a SHA512 0667f0d02a313a5339c84c67e90108f7191828ad28b6d65271d2a1a7fb3d57568bf14774475c516326f9ce16e4a27ec35abe4f1268f8516c8830ca8e235e4e33 WHIRLPOOL 771626b0bc867311e60c2cbb7bcc0f7032c7352a4ccc2a566fd4fc7d608c52823d0686426464bcc774b4517bcfb2e7aa4c8d5a102f5888cb3fd0b850c487eab8
DIST thunderbird-17.0.6esr-el.xpi 447926 SHA256 662050e75367c4253b782943e3e6e73067c8c830f0256aa53560744b38902976 SHA512 fd18bc39bd7ef4a6239bf5903f85b799cdb0887fadf51323977714c35ae761565cfdc8c3394b96024b4ffdc53d731d0f09c8e4c0a21fd2dda0d2821945dd9dd6 WHIRLPOOL 01812e022d0e99b2949ea6e0771112b0e8ea7ce563d5c22722a778f4cff086cdcb2297e7a989847cc92757ab03aa5930b936190116266afeba768e753f387852
DIST thunderbird-17.0.6esr-en-GB.xpi 390694 SHA256 e560d585b29e0aa20fc023e1378cb38b1c3da900e38ea7f454b9587d4bd93d88 SHA512 73d8f709c097561a83a50ba826f0b2821eb067012728e4853d0e47e7ee29f7a11aa2cff576d9438bc8db92ce8e0f7366864bd601431481d86a16b340ae817590 WHIRLPOOL eaaa7d8f04339500d853f33bef130f35602f940be899f7303a3d46dd03ae33ea9301bc4ca86c43b723bd5d3b43170c805e0063c2a6a98dab1f04d76555d35e10
DIST thunderbird-17.0.6esr-es-AR.xpi 415499 SHA256 0980cd1b1731d57144906aa0f13670c7a0f37f89b39c3236e7037b84d4dab1cc SHA512 fdea2358323e35110c7b9188fcc0ce4e63fb0ee7519f13d82d1102f6e1f2c0eb446b469d2e347027bda165bed66ac5ef2b709cd7d0130a1fa45fb964745c694d WHIRLPOOL 61bd588b47a9edcc3e6a3afa27994bba1c90a5dbc06f8a7c076b34c0d1e59bffff905d6200684e809df0a2993f4ed0849113323422a66eb5b57c792e9d30719e
DIST thunderbird-17.0.6esr-es-ES.xpi 356861 SHA256 e1d1f79b2a5159d909ef0c85c8245872f63e12b5548891f0d4b57d5331082c5a SHA512 5cdd78e60816b1ed62836569d764209f34769aa768278ad965f7ec01d483d9b28e3919f26301758df219bb09cb57db1872950ead670c698f46ad74bda368769b WHIRLPOOL d7793b096aa01285205f17f69f99a20bd96b2981e8c56553e931786b83694066d971759b34ece323ac5d08284630cad6d94d29c19ebbb3b070ecc84da19c3887
DIST thunderbird-17.0.6esr-et.xpi 411892 SHA256 b8c0c3312b90fab5d39a1ee546c0e7b01b4ea342ad6cfae4a6f6853b083d6568 SHA512 35115b27b5496b6d6f17b52a0db0a9ce4ac92ac46c99d3dea37eb36883b64163c33f95ebcaa7cd8223278d02ff4e036c271266821231e3145ada8f01742aad0e WHIRLPOOL 1dbb3fbc6fd34b0516d0472c1a002b43c257618402fa704779fda62d192d0a221364e4eb390f5fc0bc00ea401d5697d19ef4f2557b74d542ebbb04a19c7f4221
DIST thunderbird-17.0.6esr-eu.xpi 407190 SHA256 9974a9dd3769fb04236d15d294f51833f9274f59593139290ae62cbfb01211a8 SHA512 611369e31ab72a882015b30bb794932f077555aee7b2ca3e542694f67650478f9570c96109963cd425bd532c7fc6299414cc5f31dc00e97460503db5af520fae WHIRLPOOL 447acbe87fd861f8337ac5b99c84304348b9de350c5c31af39064d9e890c6897c9c15bbd1a3ec76ab46e6964b6bc04c98f28ee4c717a21d2ba36012d428f0eb8
DIST thunderbird-17.0.6esr-fi.xpi 413620 SHA256 22808e9a1bcfa24519242a1743e1023128c8ca4a837dd7354a74f215fad889b3 SHA512 c91b759a434ee37af95745f477ee0d33dd49e23961d462764a10cebd94acce8797088aff661ca999291b9c80655751cd359967f368e48b3396418baa6f79092a WHIRLPOOL 453941b7696fa130e70858a49356e8f7b73e38d289455f39be2d235fcd113375a1fdcef08062645cee47dd9b93b91e09f00f9b50cd45e668e21280348875c2e1
DIST thunderbird-17.0.6esr-fr.xpi 420826 SHA256 c140e599ba4f9d93bf9b69a54357dba336537f54f9f7458c1e030bdf3c78d18f SHA512 68719860cad36c8602e2042b30956745b6183b2e65d075949d6f298b6e61b84f4f3c5ea70734bdb91ba628805bef83002d3ad61453d77af814ac586b86014c15 WHIRLPOOL 3afb2f647c31395d9959e7efb1470d6ed8960b36c0a69f2cf11444edf0043b2b69703fe3e77b22a03dbeb5639f300fe0179e409caa1aa6954df9c199269c9cac
DIST thunderbird-17.0.6esr-fy-NL.xpi 415713 SHA256 8c562f6b66ed4d9d695cad38516234ea8cd7d465ada90a5e5fdccc58cf6edcab SHA512 d3976aa3b3ea9eca0bd71cd40ec8de0c3b1d748cae52ca1d7f711ca351a145189d152118472e8b42af22d4a8eade6048a0afe412a7cee1295a4fdab1a41e2b7b WHIRLPOOL 85787e00188ca290e095ad60361d4493a7ba4397a23f731f38ed15c67414cda6625c457c8b167f2219b03ec56e8c0c8416370ea31906541ffe5fb5356ec5d830
DIST thunderbird-17.0.6esr-ga-IE.xpi 425395 SHA256 ff11b04d4fe79dc0ff4068ce65eb405ee6a3765e38b90b0b7b1715d5e9efba81 SHA512 8bc1299c10f9eee3cff5fcfc49ded5ceab2eec6ded68446282404152e4a9d003f2d004d78374f5d4d52eb8dca6ce8c9e8c46a209ee2dc51ff42f0b3f6755640f WHIRLPOOL 399d938f168936af27c790e700c14c24627103fc9514f6a86be24414ddf89fa5a7d65f9db4c7ad0961a14ca1add2761247b16b97a7e3df57304c42f2641db8ef
DIST thunderbird-17.0.6esr-gd.xpi 428940 SHA256 61e544331e78964c8e525ac2c1ac96f1fcb7f1af6daa94fc49c3550537f876a0 SHA512 6c80bdd7f8de681f2fbb4ae77f275ee33a10cc0cfd835f32652da95454161790200f3dff76099538262bb3f3ccf34f29d99fbffe09188e18f832547eef6c9758 WHIRLPOOL df665d708857b4ad1b0b1fdd75410dc0b310518fd2a481638547e3e2fc7be598dcdc9276d6fb3b9582bd14eee00cfbaa6ad449ab9659f93ea26d154a68ad307b
DIST thunderbird-17.0.6esr-gl.xpi 410370 SHA256 2839ae526fe12a88555df178ec4bd2b37fa9af3296c3bd58762a4227cee69329 SHA512 c8452917e108ac9f76a345d26ef7652db8672cfcd9fa728ef8d91dc5c041d6716601c0f37e056854a062498d39a766a057e678b2af551ca4e722b082ce2347b2 WHIRLPOOL 48e5d7bde45ad101c4cf64d25ccf46e8c9d5b93d32b4bad1af47d3d75b0229e6895872c629b4cfc389988f53024a95051bd39c80b97b5b5bec75cd71183ec860
DIST thunderbird-17.0.6esr-he.xpi 439504 SHA256 d0fa6eeacd87f4dc4951ba5b024a1cfe68f89dc5f82bd68216c75afa34580cff SHA512 3ae443aca082f147b448359eed58647e61d36cd43a0b57240dc9fb098372e4368d72941de9eb694c7d0047338985479a0ca885b409f2d4179f2302e7b1e860f4 WHIRLPOOL a974a4e852a690fed2ad293f2657d36232fe5c5598989d652a19afcc8489fe0ba2a3539939ffb30e4abb5115b4bbe21328214185b9d4570078f6b1fb45b188ff
DIST thunderbird-17.0.6esr-hu.xpi 433187 SHA256 dffe35138492e2b2a10192d8e57316c4a06fdd456e8f1f8c502e7298b831f88c SHA512 80ca414b22dcdac4a8a08bdf2ac9cab6dc906a788224bc31fe3c80b66a536bd6c2d5a982e6b2c4e7cebb9b1dd172d45c53c05a802ee85c52b37288a6e924effd WHIRLPOOL c79afaf05f139d0ac730895050efb52848c279819b30c39e5a56c4dc200297e4a2aba9e430d4e898201e3362ddf2b0a885d6cbac681a9926a9fe4534dcc153c9
DIST thunderbird-17.0.6esr-id.xpi 439575 SHA256 8950f4c44591362299b7fd6eaa4182f8fdb5c994d5252ac59fcab332ee543beb SHA512 dabadc2f4a1576e4fa5393db6b8df460d6cf6a9100cb49e0f9433b1945a415ffb160b8dff8617bc41b7b1a366626e45c27ca80d9ef6af3717ed65c608594ca8c WHIRLPOOL 2bf0944c2e4dcb455f86adddbb33e9d70f643f67f3a140c2491a6f82776f98b8018a5fcb3b9c6969a44a559942009810369e7e24418d925b76ff66304456f298
DIST thunderbird-17.0.6esr-is.xpi 414069 SHA256 3baa04190b767a4823fda7f17ca9d11469936268b985ebb615369b5971bd252f SHA512 f5e4501b348e9980d3411b45703cf8be7ff8c319608951c46334d5412c8bb807460f9528377877f2f592c1efda2574cab1e336ac9e121eb97652c848bae8e070 WHIRLPOOL 9f8c806a4421c2a1f6f2348e2d456ebe84ad9f88fbe5934541a6212bb298dd4173fccba00f6b48dd6dc1ed181cfa5f0b19b4df1adf868a77d3815c1a4297b473
DIST thunderbird-17.0.6esr-it.xpi 348621 SHA256 4d50e3b0e7d557fbf600e50a9776ce7bcbe6f9f7ffc2d9e9d617b69ffcdb96de SHA512 230ed9f01e45f048a8d17c060ff1f134d85cfa905ec84e81d915aa610a4e95dfcd3db6651d4641d672e759fa7108ee259db18c8fd5dfd10cf4e5d21392a1172c WHIRLPOOL ad6c5fa8f7abd59f822126f705d07533f8e2d8ea5312a8c26e9778bd8083e44e536cb29c29b1e38a96d9b4b08ae8ab1bfb22a0548645d191f621340d7d721db7
DIST thunderbird-17.0.6esr-ja.xpi 463488 SHA256 3fb3a5b08020d1af7723f30b69bbc787f2b443231ee567aaf1d90bef040be11c SHA512 2fd5aa6c27324972a2a3ecf5a236e991eeca8814ea986651accc2ca6f879861cdb6eef072f71b5f3b9b0ec0832fb504b161d23e91ddd38122f2f5b9c84e58e55 WHIRLPOOL 9a9f8791ba5fc9f20686e2e2823e0100da7410b5fa9e24b81721181ddd4e204520d9df61518feae9804b4bbae0d02f7c7710023a6b01a49c7f325715c80c8f14
DIST thunderbird-17.0.6esr-ko.xpi 412964 SHA256 bfc853f8b7731838e6a61709ffb1ffdbf883119161b38174ceb7a7874469e21c SHA512 77da488f379e8bcfec8bc6c8822dbd9b81e9c6c3de8663d2acc5c9fa0d0660454091044e327922d153a45a192b72f341e3fba156750b6e3a4763679e26d0d003 WHIRLPOOL 3d4a6aefeb44e75d80437e5b8370e0f3cb3602188eace0c8ad7531e9036ae82de422e72c03902bbc44ccf3e6e5a367ee6ed078a38b38028c765045bd2dcf0952
DIST thunderbird-17.0.6esr-lt.xpi 519803 SHA256 cd7b6c6de154036e04ce6bf3370728fd29f26edee22456d7b7eb277c9025dee2 SHA512 6f630d741f6bff7ea71d3ac8b065c87a1626a6edfc2882eab8fbbe15bb96cdb1b18210815aa075513565f95f724344e156c887b2d21c696b321d007b8b58c289 WHIRLPOOL f713138c83e232e41302d918e3a7e30f39c6308c2b0861d0964c4314aa409f64f3298de1b48ec26e119b201102d6e85e90690d1127480567af1149d2cfcb20dd
DIST thunderbird-17.0.6esr-nb-NO.xpi 408520 SHA256 026ed27e8a71b9cd2fd334d8ada33d9519e3abdb57f3ee4c197ed41dad6940c5 SHA512 54b7b2978fc0af27875757590015b6cd429e01239974aae19eb0e87e7019959d767cbd1355a1888e88444c7692feefd402a6dcb9f893aeb7d1cf3397400dd684 WHIRLPOOL cd80ddc6a38d033161f999c480f3ec464cb840eeb76008529d00f1a77cf4887c94b46d60e4db53bd95467646f784c96c4f823d3f5b084bfe6d1826c796606f2d
DIST thunderbird-17.0.6esr-nl.xpi 408527 SHA256 e96e603afbe588e53488344ba58d0c3c9cafef70c66728ab5dbf5d6dae247421 SHA512 84cce2f8b291bd150e4bcb0cde1271e294934096d16aff57e8d9a73e58b07a449ab806d61ee6ed5ee90f2e79bd2dd5032510e4d1168eef7b0ac51b47e7329f4f WHIRLPOOL eb6d7b3842c0d5bfa4b4eac6813211d4b0bc6de7ceea029fd13cb312bd602651ea2a89bdfb64ca2146ef075df67a47de0a22814d4db3c884e21250132105c3d1
DIST thunderbird-17.0.6esr-nn-NO.xpi 431472 SHA256 dbc77a175cb9ef75b6c6dd7a10ca6a1bfaa26e5820e666972f5c6b2203676039 SHA512 c4cac1ab2d2771c12746b4a81ac50d59f310699160d9854600192c4afbfd9083f00bbc29f207fe34166ccc72b7ed863487563fbd8368dc0b75ad2fda5ce63072 WHIRLPOOL 39ee856f193a456b85b9f7b9ff5a0d2841fe92b7a276961c8e5261f5ea2b705ac7c035b2b018a9223feeca50c55d92d178ff579d0c6ec87021dae3094f7cabb5
DIST thunderbird-17.0.6esr-pa-IN.xpi 492444 SHA256 b56035f2c92882a852d1611b3d3f330b1a7a53d2b44be58e274257cb720dcee1 SHA512 d528bbedf08a3658820b03ab321931d2e8b557751a8fac35c5554c7f06d6875053b23df73e1535b92c62c0731de39f37296687c9715f4eaea67859b621b2fca5 WHIRLPOOL cf8607fb98ad0f0a13a6f7a41d480da500725ea255ffe70cf979f475ccb92450e51efb5031487ef7614abf62a1bd7a772ba381720a0980698b107222f38169d2
DIST thunderbird-17.0.6esr-pl.xpi 402114 SHA256 bb74a6496498925cd37b1bcbdb68bd3ae7c6edc6e65fbe813682ad8c0018cf5d SHA512 f47decae165c0aad0cf3f8c21be5a96d8c142b084d6ffad32beb9e6b84b712ab301945dde9b0885ec627c219080d9ce697da9a989f0cb5a1b8effb42919e0077 WHIRLPOOL 327e1b31d7bece41a70c523f40a4b2f7eb360fb7d20a838da5bc0b066f10ab2be46c850353c13fa97e1744c2d9f791659c427dd6a074db38c58f9ba90eb4451d
DIST thunderbird-17.0.6esr-pt-BR.xpi 415778 SHA256 d83dd1f78bfe2f052b154e437cc73f8398657ebeeca3889728f04ed13c9c6bf6 SHA512 799c406dd8da52afb9e8a92a582c36f3f201fbe803da5b99dfe1868f521bd79eae7b6fddd032eeb1108b8238eb4e182c40bfd770bb21ba522e6fa4afeecd6a1c WHIRLPOOL cc1066b04c39a7bc09b82d12f6c4b6e15a56f94aab31b4729bea39ca25d72a1c377db71201b78bd6d473e4d2d70afe9a053c989c7be137b2783d644b25c838d2
DIST thunderbird-17.0.6esr-pt-PT.xpi 445754 SHA256 729df52370439dfb18760e6a02ef7b4a24f6061135aa09a95fa7848d6f9f1b49 SHA512 f343b25b693e6bd15373b77dcefed908bc61c35460c019ec189c10f93731e2bc79040e11700ca35b748b9b1aa7705e0fe65a3ef2312bc7ee27516be95823bc1a WHIRLPOOL 6a922e199c746ec3643bd1576b24b46b371df5f78dc7be68aa0b8a14e403fb79461ba6781116c39104006b60f46cad2c70dc4d8fcf195dc2462f5f9ac98f633b
DIST thunderbird-17.0.6esr-rm.xpi 415531 SHA256 2cb0f3b87a62306de65d36fac4fd42f14841adf8737a6b2d801065fca549d087 SHA512 243dd39be450714dc32f0fb7bbdc57653215d41d55ab56f9dc16557f89fdabb37e413fc979dba162285f271f78e49b39a3f8d43216b48d2df856721b9c58bc3b WHIRLPOOL 620f429c94cc068a300f3f33fb8fdb9496149639210df3721a4ec9bb1b27e4fc79daedb04173b0ab59dc81b92f4291907eb5f859fbab9081fa77119a78b65284
DIST thunderbird-17.0.6esr-ro.xpi 480494 SHA256 180835cafe1ae745a34c6bd3a8c7ee1b7557e70525a11135de1eea6c59722a43 SHA512 06c2f1bb94049f01801379ef1b9d233b803e95c450285693b0e77a84737bae4f61c2806e85042a5226a8b40084a87a097ce8a22387bc250edbb1347a89c1f639 WHIRLPOOL 612e48d3441bd26fcefc239449ef2d4dbe58e8699c339d5996dc91ae83d247ab0d6cff68a9043c398e9ce356b0e657cef27aad2cac892934f9119fb2b5d9ad1d
DIST thunderbird-17.0.6esr-ru.xpi 415708 SHA256 7735bc42e44569710c3de2e9481820ffca910ea19dd22c247416de6c0de3fd80 SHA512 6e77775c39a7b42d9c3753b7fa78a3896436e41c539cd1403da987ab71e3d2e31c309e2159798d90308e1f8bf7b07ea1abc77049664e77b67d9ea537d8c25ef6 WHIRLPOOL 91eac634dd64b413096f355ff07eb060d710ba4e3ffc3eefcd46fbaa5cffc0a1eb4f3239a41f1787f09b7643bcfb3df1e97809723872ef99b55465c2d2bae110
DIST thunderbird-17.0.6esr-si.xpi 494164 SHA256 caa7a9b73b6a7a618ab70fdb660eee14c89721ff195f5f07c54acdb7ffe6fd4a SHA512 0357598f81a90e58865b17f9035355819d7786f388083a558e53fa0c5348fc1537291b4d5b662201797ed1cff1b4d41e41505bc304e3f44c7cb87b030b65d2b9 WHIRLPOOL 192ab1b5e0bfe3ef5eac5e1cc42cf63ad520e2a0c9b71f6cb7aab04d725a8337d89e99b58a1f961a82e2cbbc232d255c9f81eb52a371673b286bb6252ba8f7e0
DIST thunderbird-17.0.6esr-sk.xpi 429757 SHA256 f755108b99a804494854e88ee080039237bb9eac987dbf848fc84b8b4869eb3c SHA512 9a50500d59992c6b8854ed41860c3886684516385be00644a820be1a42bf09f36d1082341f595ebb421070f2df09bf85488ce282179b093f38bfeb1a2ffe84dd WHIRLPOOL 5b368ca60303c3b989c03dc2eb561be5a8921104a8bb6b66ca8d2a33c08644efdc8dd43aebe6bb504ae181a725eec1945810f9cd292709ff91b99bc5944573bd
DIST thunderbird-17.0.6esr-sl.xpi 442096 SHA256 ca0ac38dfb6b391ca450f0978f2c88a61c8d98f1b6d5aac57c45ca43b59b8d4b SHA512 4319d729481687234333ffad6c9c26d0f7f5e2c392e8cc3eab83596104109a7fc1bb5c072c9c1f3390eec97503bcdd3f8f4f23b2e8ceb58c1ddb35a3217cfd4a WHIRLPOOL a138335a0294903003a7ee095e9d63a5d789a23ae03ea15395dd254950e51c76405f3784a66018f59529c8ac31252dbc2cdfe6903e69a57f48a256906903af1a
DIST thunderbird-17.0.6esr-sq.xpi 418781 SHA256 7f6c59a15722e2c1e297579bd528c4647424c0bfbc12da1ce95a89bc4cd4fe95 SHA512 892c5fcba6fec7fbb31efc05b1fc27c0c2c653b3d51d958ee3dc92ccd79e7313272c2e0fe29666844f2e5c2e50a08f153f1ad76b60acb8d4bc0dbc47b8a4cd77 WHIRLPOOL 12dd30e90d78c1e064cbee07367d99aa85607063865926e4d57f6be04c1df3fb355b9db6a3a1ce56ac5b9f7ee6c41aba165c3b101e2ed45dff560f0706c29ed7
DIST thunderbird-17.0.6esr-sr.xpi 502502 SHA256 72649975597b5cfa4127334b104688ce1feeb7e62e82282debafdf8914506794 SHA512 9524c55f4a2b62593140280458595c5a7cfd11d0ddbd60ccea320a88437f05f7b9e263e705fd04461756603cfda66db8c7aba55061a7027276f092c41127d5f5 WHIRLPOOL 1526a3a8deb651ea2203400b6df4bf5f903f07f8b4aafc524127618c0a32a47d28bc462eaf2b0b086b0b6b42f34796036984d9938e4972d0b42c426f0718e07b
DIST thunderbird-17.0.6esr-sv-SE.xpi 413218 SHA256 59750592767c531c44f09e2812de432f7f5bb27bcd25433a05172f427feac392 SHA512 163d4266a814e9b15fc5dbb6e68b12d83ec82368a84520ed1c94d82e6b415ba1f7d4ba5bde477260c372550545bac4736dcd0334ea5c4598d02c177df18adc47 WHIRLPOOL 280c319a5857d26b14940bfa9f5cd32ceb0540a186a732ae9f878a44d854b91031b944ebdad61d85b006adef4c3471f81544eee98f0403e1517ded3bb3a0bf90
DIST thunderbird-17.0.6esr-ta-LK.xpi 517913 SHA256 a02df902d82d648599f842a116ac84257e8186b60d8d127075fb267193b7efa7 SHA512 febcd6f68fd538bac0dec8e734cf5df117e05806bbb70e92dc44c4b33bc7d8a7ccdcf26b93e16aee0470ac866a8164e9d1c326aa267a7561e9427fbc99216a32 WHIRLPOOL ad915e37e37c5944ed458824b645c8b6e65a368a4d85652d6f2d5e13df7427b33512d855f01e37feb9717d8570f91dbaebeed21790efd272ee5209338986fa0c
DIST thunderbird-17.0.6esr-tr.xpi 444945 SHA256 3397f9de18a0665f01951daca8cd2d4f82ed64d0d52279ddcc9727a7357e2c51 SHA512 7f506b732cc3ba1cd8ee96bd7aa8e36130ef8d3318ef530552d0f3ae73c4e6e3e5550bb0119f4adcdc74b4a0af746a74dcc5e39f64e139c78603736c6a371ba3 WHIRLPOOL 569d4a4fce1c47e12a3e6450839ec398099ee0a46e8e3b72d59e04ed21bf545c97935b9bddbd2ed12b718aea2e4df4fd115c4b637f5960293e3aab0fce8bc08a
DIST thunderbird-17.0.6esr-uk.xpi 471143 SHA256 b77465dee6e83506077a7738362b143ce6fb71e46a774074ace3054dd1dbcbf1 SHA512 3b7a8d2107e35f4dd75b179b137f57de62c8af056a5df6375ae590e42143ccc7895e90c47de18f39e52c858c74cc63ec341507a7f4c16bd7008621592d74db95 WHIRLPOOL d7c3ff548460eae0fd3c1fd56f30783607e55e6f87755b9167808d3a67f0aae82aa8bf4f57ec6b0d3e0cfc0213b6a04a6eae8013ace0b240d91d8c2a2271208a
DIST thunderbird-17.0.6esr-vi.xpi 478454 SHA256 1b45a26d5fe25968afa67820a3e917124bccc088a57a95f8667f01d05af853fc SHA512 e4d58c9de87015c58e6cf24cbd91fd93db3debeb09e54e0f75403729ad5850741c65b7b26ddc250d3ee3d7c502b46ae60ce88dbb2b77e664a32ea858e64fb372 WHIRLPOOL 23225c568300cb13f37f03da06990c5234470d28c398510e3da83a98aa9fd0e476155f65ce09292e121e4cc22a22bb0bc36f2bf4dd6059be92fc642f86f4cb9b
DIST thunderbird-17.0.6esr-zh-CN.xpi 436083 SHA256 ab7bb32363d8681d961f5affa41070965b1d63e700506b744b529adabf329c87 SHA512 3025a64c2150275abf6557c0bea4743860333d92bfd3370b1ef4e9231d3a9bc982bb73c111b64346ae79831614fbac5e9f8e01e47625d3d397f36795851c2a71 WHIRLPOOL 39d0608a0c65bdc066b9126fc1b7b724675cce4f68205160093c3a2f89769fc2b9aacebb7850daaba71ca953badb0feba998dea47f29050167ed7d1b8f26a872
DIST thunderbird-17.0.6esr-zh-TW.xpi 437591 SHA256 4c11cdaf70f57ec3e09fdd68476bcb73aa0a7eb2c3519e8c4bb14397cba94011 SHA512 03211b5252b24b9552a7d45d312d54217759c6e7092799bb2cb8f40b6bbadeff8d804a8d3c371b8ec5b0d6ec537bff5b5123fd154b0f31cb5af76ef87aa82dac WHIRLPOOL a615fd6bffc22cb8784bc86b670b195768acc4ed9d6e45f42fec1714798e88eee5bfb6347f1f5d0355fa5d156a848c54574dc9961b28933acc0e67b7cef501bc
DIST thunderbird-bin_i686-17.0.5.tar.bz2 21480241 SHA256 e1a0282baff12d00c5fe58e7e7f4058eecacd99911d79c5d473b2814042d8f3e SHA512 6b2e51f52745456b60f5517dfb26f5404e0248f414531147a9822feb45a0aa6df791fe1d63f2949ead4268ba3f37945bc2bd3a1fc7c51e8bb9e517bbe95d9da5 WHIRLPOOL 9649cb0bd5c17947fc7ad11a956ff63eb32045f006aa56880c18349e6a49b05244647a55ad5aa59728ab5990f9ca1465c6abc2685ad7dba4b8f5b660f5eec5ea
DIST thunderbird-bin_i686-17.0.6.tar.bz2 21509701 SHA256 f498d80615659890cfcc641dd436aec5ac5c46ed1082d27ae85700a8c39b4f91 SHA512 90454981e362927f80d76c50a75cfed36263955d43a69c9ab37759e4d19aad57b242f3291e37311eced456bff4f2fd849adbb8138786a64b8cc0b6f1f5c24cd6 WHIRLPOOL dc1da3175aae0277ef7a2734cbe50f04f79d693a7bb28152fadfcc8730735b03530d4672da38321251be79a53a003628441f83616442aac2cf9b93aeaad8aa88
DIST thunderbird-bin_x86_64-17.0.5.tar.bz2 25986322 SHA256 a715ed8d694c5df39cec0387dd8a64e07de484f995c5213882bb9e336b3a917b SHA512 fefb1bfd2689811cf3abae70217171ca74a370e0681c10bb67035dfade60e73ee993fafe4cab98c9b6b5a7ab05c6ea80486299e96d8426c206bd02d4691b1cf0 WHIRLPOOL 4d365c9de3aa52bff976d4ad135d9d4e4528eb3a49d63da8810b9523af8a9f491dc02b89cdc13e70c24192892ca69f78627546a831f2921692a74b461b22966d
DIST thunderbird-bin_x86_64-17.0.6.tar.bz2 25984715 SHA256 5b2b458b12d49f95b6f1bf1f39999d6966d72e2104b661fc7f59146959cbeff2 SHA512 1c5dbb9ddcaba1c69691fe82aae91437c824ae05297fb8e13603c15d0d10f03d1925ae7bb0dc2229278d23ad03999e60a202b93d2f6871bbd4da778eaf28118d WHIRLPOOL 1940e257fbff03720ea4d672a307c6d4419056bfed3ed09cd120626fc12475bf24b0f29e42b2d1200cb50ddecc0581cc0809b311acaeb212ee762dbc63d24eaf

@ -0,0 +1,137 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-17.0.6.ebuild,v 1.1 2013/05/15 00:09:35 jdhore Exp $
EAPI="5"
MOZ_ESR="1"
# Can be updated using scripts/get_langs.sh from mozilla overlay
MOZ_LANGS=(ar ast be bg bn-BD br ca cs da de el en en-GB en-US es-AR es-ES et eu
fi fr fy-NL ga-IE gd gl he hu id is it ja ko lt nb-NO nl nn-NO pa-IN pl pt-BR
pt-PT rm ro ru si sk sl sq sr sv-SE ta-LK tr uk vi zh-CN zh-TW)
# Convert the ebuild version to the upstream mozilla version, used by
MOZ_PN="${PN/-bin}"
MOZ_PV="${PV/_beta/b}"
MOZ_PV="${MOZ_PV/_rc/rc}"
if [[ ${MOZ_ESR} == 1 ]]; then
# ESR releases have slightly version numbers
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${MOZ_PN}-${MOZ_PV}"
# Upstream ftp release URI that's used by mozlinguas.eclass
# We don't use the http mirror because it deletes old tarballs.
MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/mozilla.org/${MOZ_PN}/releases/"
inherit eutils multilib pax-utils fdo-mime gnome2-utils mozlinguas nsplugins
DESCRIPTION="Thunderbird Mail Client"
SRC_URI="${SRC_URI}
amd64? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 )
x86? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )"
HOMEPAGE="http://www.mozilla.com/thunderbird"
RESTRICT="strip mirror"
KEYWORDS="-* ~amd64 ~x86"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="+crashreporter"
DEPEND="app-arch/unzip"
RDEPEND="virtual/freedesktop-icon-theme
dev-libs/dbus-glib
gnome-base/gconf
gnome-base/orbit
=media-libs/libpng-1.5*
x11-libs/libXrender
x11-libs/libXt
x11-libs/libXmu
>=x11-libs/gtk+-2.2:2
>=media-libs/alsa-lib-1.0.16
crashreporter? ( net-misc/curl )
!net-libs/libproxy[spidermonkey]
"
QA_PREBUILT="
opt/${MOZ_PN}/*.so
opt/${MOZ_PN}/${MOZ_PN}
opt/${MOZ_PN}/${PN}
opt/${MOZ_PN}/crashreporter
opt/${MOZ_PN}/plugin-container
opt/${MOZ_PN}/mozilla-xremote-client
opt/${MOZ_PN}/updater
"
S="${WORKDIR}/${MOZ_PN}"
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
}
src_install() {
declare MOZILLA_FIVE_HOME="/opt/${MOZ_PN}"
local size sizes icon_path name
sizes="16 22 24 32 48 256"
icon_path="${S}/chrome/icons/default"
name="Thunderbird"
# Install icons and .desktop for menu entry
for size in ${sizes}; do
newicon -s ${size} "${icon_path}/default${size}.png" "${PN}-icon.png"
done
# Install a 48x48 icon into /usr/share/pixmaps for legacy DEs
newicon "${S}"/chrome/icons/default/default48.png ${PN}-icon.png
domenu "${FILESDIR}"/icon/${PN}.desktop
# Install thunderbird in /opt
dodir ${MOZILLA_FIVE_HOME%/*}
mv "${S}" "${D}"${MOZILLA_FIVE_HOME}
# Install language packs
mozlinguas_src_install
# Create /usr/bin/thunderbird-bin
dodir /usr/bin/
cat <<EOF >"${D}"/usr/bin/${PN}
#!/bin/sh
unset LD_PRELOAD
LD_LIBRARY_PATH="${MOZILLA_FIVE_HOME}"
exec ${MOZILLA_FIVE_HOME}/thunderbird "\$@"
EOF
fperms 0755 /usr/bin/${PN}
# revdep-rebuild entry
insinto /etc/revdep-rebuild
doins "${FILESDIR}"/10${PN}
# Enable very specific settings for thunderbird-3
cp "${FILESDIR}"/thunderbird-gentoo-default-prefs.js \
"${D}/${MOZILLA_FIVE_HOME}/defaults/pref/all-gentoo.js" || \
die "failed to cp thunderbird-gentoo-default-prefs.js"
# Plugins dir
share_plugins_dir
pax-mark mr "${ED}"/${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird,plugin-container}
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,3 +1,3 @@
DIST eog-plugins-3.4.1.tar.xz 320108 SHA256 e1f7c4a0a9cc825d1ac8a64cc3d8db4da3054d294e4cd60b28eba13643d71055 SHA512 f078b12c2cdfb11cedb140c665974192b54889b71110a6e973c252cb16ace034ce6159890bda8f18d5aa7c707b8182335bcd6a594c835728d6632e2ab55da0f2 WHIRLPOOL 4b3ba766b647784f735a68233e73730f8f80b006748e4eb3fc2c9cd9331b18a19c9ab48989c50f493894547f08ae3bf47787eeee001c7232f29adb7bd5eac713
DIST eog-plugins-3.6.1.tar.xz 330580 SHA256 0270ae05f6cdd9c73472323370c4779f1148c77f3f8890c89fb8488cf83051ac SHA512 53815828f11539e4b59a07a97e6dfd5a8921d2d24c112f1baa4856c1eba1778eb9421c77e4dca4f7f7b8dee70837427b6aea0647845ee5695211ad3c18cbd755 WHIRLPOOL c1a7f7397647aca2abf76cc351ad96b231feb5fa58b350c5f1be4f00bdf8d6673094a0de5c6a1e4e36b43608085bc450c31bfe25d53a9090559549c7202926fd
DIST eog-plugins-3.8.0.tar.xz 345588 SHA256 a7e4822c46654f67ef25cbc82e4c955ee84ecae92cf356e15a136032cff35e78 SHA512 c700036a7846d32ba3c5a38a0a1faa59debd1bdffa749c2ca33a91c1d7cdeb6fb9dce4c730689bdce39ab4ebc04a35eb3719e9fd5f0e531451241facab7b95c6 WHIRLPOOL daf0b78fdf6f2c71ee90ad9c4c44ec4278b28787ff0a98a86bf88ad3f65a2fe6f5baffb6878f7ec127073dd18ebacf3b274d83d1ebfd662cb85232592720c5e3
DIST eog-plugins-3.8.1.tar.xz 346504 SHA256 5cf8dab5b6622b9e712da4094185112cc84baa96f2775cc76bf654b1c443cfb9 SHA512 572427e3f77e64333fa10c0a69854e9291e766c97a02ccd86b7602ecb86bd3719e20850634397958917e9ab6c85877298936069ca972a2a3173ffccf46c9d33e WHIRLPOOL 46d16380ac153c5249e0eced7828c334b4277d9f19d69f3f5ed200a78fe02cdf5bb3f21db41af0dcc7878627f4388442da4e7d0bb180007aae6801d8f0521cbf

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

Loading…
Cancel
Save