diff --git a/app-crypt/hashcat-bin/Manifest b/app-crypt/hashcat-bin/Manifest new file mode 100644 index 000000000000..be9038cc5eb2 --- /dev/null +++ b/app-crypt/hashcat-bin/Manifest @@ -0,0 +1 @@ +DIST hashcat-0.39.7z 716387 RMD160 d5c8983c5938e273d055772a1ae59970e5109beb SHA1 baf0d3660cfc241c635f772eef1682980744521d SHA256 9d86cb175030de5b5872077028456f944c18e94749fc79cb63fb2f74106bed4e diff --git a/app-crypt/hashcat-bin/hashcat-bin-0.39.ebuild b/app-crypt/hashcat-bin/hashcat-bin-0.39.ebuild new file mode 100644 index 000000000000..d61fb35bb452 --- /dev/null +++ b/app-crypt/hashcat-bin/hashcat-bin-0.39.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashcat-bin/hashcat-bin-0.39.ebuild,v 1.2 2012/07/02 01:19:04 zerochaos Exp $ + +EAPI=4 + +MY_P="hashcat-${PV}" + +inherit eutils pax-utils +DESCRIPTION="An multi-threaded multihash cracker" +HOMEPAGE="http://hashcat.net/hashcat/" + +SRC_URI="http://hashcat.net/files/${MY_P}.7z" + +#license applies to this version per http://hashcat.net/forum/thread-1348.html +LICENSE="hashcat" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + app-arch/p7zip" + +S="${WORKDIR}/${MY_P}" + +RESTRICT="strip" +QA_PREBUILT="hashcat-cli*.bin" + +src_install() { + dodoc docs/* + rm -rf *.exe docs + use x86 && rm hashcat-cli64.bin + use amd64 && rm hashcat-cli32.bin + + #I assume this is needed but I didn't check + pax-mark m hashcat-cli*.bin + + insinto /opt/${PN} + doins -r "${S}"/* + + dodir /usr/bin + if [ -f "${ED}"/opt/${PN}/hashcat-cli32.bin ] + then + fperms +x /opt/${PN}/hashcat-cli32.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/hashcat-cli32.bin + echo 'cd /opt/hashcat-bin' >> "${ED}"/usr/bin/hashcat-cli32.bin + echo 'echo "Warning: hashcat-cli32.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/hashcat-cli32.bin + echo './hashcat-cli32.bin $@' >> "${ED}"/usr/bin/hashcat-cli32.bin + fperms +x /usr/bin/hashcat-cli32.bin + fi + if [ -f "${ED}"/opt/${PN}/hashcat-cli64.bin ] + then + fperms +x /opt/${PN}/hashcat-cli64.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/hashcat-cli64.bin + echo 'cd /opt/hashcat-bin' >> "${ED}"/usr/bin/hashcat-cli64.bin + echo 'echo "Warning: hashcat-cli64.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/hashcat-cli64.bin + echo './hashcat-cli64.bin $@' >> "${ED}"/usr/bin/hashcat-cli64.bin + fperms +x /usr/bin/hashcat-cli64.bin + fi +} diff --git a/games-util/nforenum/metadata.xml b/app-crypt/hashcat-bin/metadata.xml similarity index 56% rename from games-util/nforenum/metadata.xml rename to app-crypt/hashcat-bin/metadata.xml index d3c2cc926f0b..88e9eb110229 100644 --- a/games-util/nforenum/metadata.xml +++ b/app-crypt/hashcat-bin/metadata.xml @@ -1,5 +1,10 @@ -games +crypto + +zerochaos@gentoo.org +Rick Farina + + diff --git a/app-crypt/hashcat-gui/Manifest b/app-crypt/hashcat-gui/Manifest new file mode 100644 index 000000000000..9576eeb6c8ef --- /dev/null +++ b/app-crypt/hashcat-gui/Manifest @@ -0,0 +1 @@ +DIST hashcat-gui-0.5.1.zip 130106 RMD160 d91a57592dbfd95e7dc5f81c9c54c7e1765d2f5e SHA1 907d21a4844a515b9c23285570de4ef25e9009de SHA256 d8294724ce6ea5980ba98f43e44be6dd706c0bffc56128d2cd0db3c71aedd0d3 diff --git a/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild b/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild new file mode 100644 index 000000000000..5ee715c080b5 --- /dev/null +++ b/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild,v 1.1 2012/07/02 02:12:24 zerochaos Exp $ + +EAPI=4 + +inherit eutils qt4-r2 + +DESCRIPTION="A gui for the *hashcat* suite of tools" +HOMEPAGE="https://github.com/scandium/hashcat-gui" +#HOMEPAGE="http://hashcat.net/hashcat-gui/" + +SRC_URI="https://github.com/scandium/hashcat-gui/zipball/b6b01be723742ad89ba31fdb2c30b35306318f8b -> ${P}.zip" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="" + +RDEPEND="app-crypt/hashcat-bin + app-crypt/oclhashcat-plus-bin + app-crypt/oclhashcat-lite-bin + x11-libs/qt-gui + x11-libs/qt-core" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/scandium-hashcat-gui-b6b01be + +src_prepare() { + sed -i 's#./hashcat#/opt/hashcat-bin#g' src/mainwindow.cpp + sed -i 's#./oclHashcat-plus#/opt/oclhashcat-plus-bin#g' src/mainwindow.cpp + sed -i 's#./oclHashcat-lite#/opt/oclhashcat-lite-bin#g' src/mainwindow.cpp +} + +src_install() { + dodoc ChangeLog FAQ INSTALL README TODO + + cd src + eqmake4 -config release + emake + + dobin hashcat-gui +} diff --git a/app-crypt/hashcat-gui/metadata.xml b/app-crypt/hashcat-gui/metadata.xml new file mode 100644 index 000000000000..88e9eb110229 --- /dev/null +++ b/app-crypt/hashcat-gui/metadata.xml @@ -0,0 +1,10 @@ + + + +crypto + +zerochaos@gentoo.org +Rick Farina + + + diff --git a/app-crypt/oclhashcat-lite-bin/Manifest b/app-crypt/oclhashcat-lite-bin/Manifest new file mode 100644 index 000000000000..e7eb372f7c66 --- /dev/null +++ b/app-crypt/oclhashcat-lite-bin/Manifest @@ -0,0 +1 @@ +DIST oclHashcat-lite-0.10.7z 2478892 RMD160 bb4354b4bd03aa2d0dc686b649d64431fd5f109e SHA1 94aefe2091e6b9422f7ee77d0db8ef814b9d42ce SHA256 4d4d668981c249e4a7dff139f0952794300ac1d6dac6b9cd355a90928af98b78 diff --git a/app-crypt/oclhashcat-lite-bin/metadata.xml b/app-crypt/oclhashcat-lite-bin/metadata.xml new file mode 100644 index 000000000000..88e9eb110229 --- /dev/null +++ b/app-crypt/oclhashcat-lite-bin/metadata.xml @@ -0,0 +1,10 @@ + + + +crypto + +zerochaos@gentoo.org +Rick Farina + + + diff --git a/app-crypt/oclhashcat-lite-bin/oclhashcat-lite-bin-0.10.ebuild b/app-crypt/oclhashcat-lite-bin/oclhashcat-lite-bin-0.10.ebuild new file mode 100644 index 000000000000..dbfcbc0ffe87 --- /dev/null +++ b/app-crypt/oclhashcat-lite-bin/oclhashcat-lite-bin-0.10.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-lite-bin/oclhashcat-lite-bin-0.10.ebuild,v 1.1 2012/07/02 01:25:52 zerochaos Exp $ + +EAPI=4 + +inherit eutils pax-utils + +DESCRIPTION="An opencl hash cracker" +HOMEPAGE="http://hashcat.net/oclhashcat-lite/" +MY_P="oclHashcat-lite-${PV}" +SRC_URI="http://hashcat.net/files/${MY_P}.7z" + +#license applies to this version per http://hashcat.net/forum/thread-1348.html +LICENSE="hashcat" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +IUSE_VIDEO_CARDS="video_cards_fglrx + video_cards_nvidia" + +IUSE="${IUSE_VIDEO_CARDS}" + +RDEPEND="sys-libs/zlib + video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) + video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 )" +DEPEND="${RDEPEND} + app-arch/p7zip" + +S="${WORKDIR}/${MY_P}" + +RESTRICT="strip" +QA_PREBUILT="*Hashcat-lite*.bin" + +src_install() { + dodoc docs/* + rm -rf *.exe docs + if use x86; then + rm oclHashcat-lite64.bin + rm cudaHashcat-lite64.bin + fi + if use amd64; then + rm oclHashcat-lite32.bin + rm cudaHashcat-lite32.bin + fi + if ! use video_cards_fglrx; then + rm -rf kernels/4098 + rm -f oclHashcat-lite*.bin + fi + if ! use video_cards_nvidia; then + rm -rf kernels/4318 + rm -f cudaHashcat-lite*.bin + fi + + #I assume this is needed but I didn't check + pax-mark m *Hashcat-lite*.bin + + insinto /opt/${PN} + doins -r "${S}"/* + + dodir /usr/bin + echo '#! /bin/sh' > "${ED}"/usr/bin/oclhashcat-lite + echo 'echo "oclHashcat-lite and all related files have been installed in /opt/oclhashcat-lite-bin"' >> "${ED}"/usr/bin/oclhashcat-lite + echo 'echo "Please run one of the following binaries to use gpu accelerated hashcat:"' >> "${ED}"/usr/bin/oclhashcat-lite + if [ -f "${ED}"/opt/${PN}/oclHashcat-lite64.bin ] + then + echo 'echo "64 bit ATI accelerated \"oclHashcat-lite64.bin\""' >> "${ED}"/usr/bin/oclhashcat-lite + fperms +x /opt/${PN}/oclHashcat-lite64.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/oclHashcat-lite64.bin + echo 'cd /opt/oclhashcat-lite-bin' >> "${ED}"/usr/bin/oclHashcat-lite64.bin + echo 'echo "Warning: oclHashcat-lite64.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/oclHashcat-lite64.bin + echo './oclHashcat-lite64.bin $@' >> "${ED}"/usr/bin/oclHashcat-lite64.bin + fperms +x /usr/bin/oclHashcat-lite64.bin + + fi + if [ -f "${ED}"/opt/${PN}/oclHashcat-lite32.bin ] + then + echo 'echo "32 bit ATI accelerated \"oclHashcat-lite32.bin\""' >> "${ED}"/usr/bin/oclhashcat-lite + fperms +x /opt/${PN}/oclHashcat-lite32.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/oclHashcat-lite32.bin + echo 'cd /opt/oclhashcat-lite-bin' >> "${ED}"/usr/bin/oclHashcat-lite32.bin + echo 'echo "Warning: oclHashcat-lite32.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/oclHashcat-lite32.bin + echo './oclHashcat-lite32.bin $@' >> "${ED}"/usr/bin/oclHashcat-lite32.bin + fperms +x /usr/bin/oclHashcat-lite32.bin + fi + if [ -f "${ED}"/opt/${PN}/cudaHashcat-lite64.bin ] + then + echo 'echo "64 bit NVIDIA accelerated \"cudaHashcat-lite64.bin\""' >> "${ED}"/usr/bin/oclhashcat-lite + fperms +x /opt/${PN}/cudaHashcat-lite64.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/cudaHashcat-lite64.bin + echo 'cd /opt/oclhashcat-lite-bin' >> "${ED}"/usr/bin/cudaHashcat-lite64.bin + echo 'echo "Warning: cudaHashcat-lite64.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/cudaHashcat-lite64.bin + echo './cudaHashcat-lite64.bin $@' >> "${ED}"/usr/bin/cudaHashcat-lite64.bin + fperms +x /usr/bin/cudaHashcat-lite64.bin + + fi + if [ -f "${ED}"/opt/${PN}/cudaHashcat-lite32.bin ] + then + echo 'echo 32 bit NVIDIA accelerated \"cudaHashcat-lite32.bin\""' >> "${ED}"/usr/bin/oclhashcat-lite + fperms +x /opt/${PN}/cudaHashcat-lite32.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/cudaHashcat-lite32.bin + echo 'cd /opt/oclhashcat-lite-bin' >> "${ED}"/usr/bin/cudaHashcat-lite32.bin + echo 'echo "Warning: cudaHashcat-lite32.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/cudaHashcat-lite32.bin + echo './cudaHashcat-lite32.bin $@' >> "${ED}"/usr/bin/cudaHashcat-lite32.bin + fperms +x /usr/bin/oclHashcat-lite32.bin + fi + fperms +x /usr/bin/oclhashcat-lite + fowners root:video /opt/${PN} + einfo "oclhashcat-lite can be run as user if you are in the video group" +} diff --git a/app-crypt/oclhashcat-plus-bin/Manifest b/app-crypt/oclhashcat-plus-bin/Manifest new file mode 100644 index 000000000000..e496cc968c34 --- /dev/null +++ b/app-crypt/oclhashcat-plus-bin/Manifest @@ -0,0 +1,2 @@ +DIST oclHashcat-plus-0.081-32.7z 2896 RMD160 29096952f9d4c296e3b9c65a3dedcb7aad618274 SHA1 8031b111d5ffd70a092f0a0b6dc9deb1889e8998 SHA256 e0e892edb4c4853dcb2e8c7e4763b58d966d03d2fa76a1294cde61049f736e71 +DIST oclHashcat-plus-0.081-64.7z 22259753 RMD160 4acbece6a1911e84ca7df2edfbd2f5ab7e61a027 SHA1 2fc8a56e2182e9835d9184da2ce82b16f8fc320f SHA256 5390a8a3c6b8887536e936c918ca2cfeba6b971e4cd9a57dca36a3cfa5e83684 diff --git a/app-crypt/oclhashcat-plus-bin/metadata.xml b/app-crypt/oclhashcat-plus-bin/metadata.xml new file mode 100644 index 000000000000..88e9eb110229 --- /dev/null +++ b/app-crypt/oclhashcat-plus-bin/metadata.xml @@ -0,0 +1,10 @@ + + + +crypto + +zerochaos@gentoo.org +Rick Farina + + + diff --git a/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild b/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild new file mode 100644 index 000000000000..e1c742bc184e --- /dev/null +++ b/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild @@ -0,0 +1,111 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/oclhashcat-plus-bin/oclhashcat-plus-bin-0.081.ebuild,v 1.1 2012/07/02 01:52:04 zerochaos Exp $ + +EAPI=4 + +inherit eutils pax-utils + +DESCRIPTION="An opencl multihash cracker" +HOMEPAGE="http://hashcat.net/oclhashcat-plus/" + +MY_P="oclHashcat-plus-${PV}" +SRC_URI="amd64? ( http://hashcat.net/files/${MY_P}-64.7z ) \ + x86? ( http://hashcat.net/files/${MY_P}-32.7z )" + +LICENSE="hashcat" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +IUSE_VIDEO_CARDS="video_cards_fglrx + video_cards_nvidia" + +IUSE="${IUSE_VIDEO_CARDS}" + +RDEPEND="sys-libs/zlib + video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) + video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 )" +DEPEND="${RDEPEND} + app-arch/p7zip" + +#S="${WORKDIR}/${MY_P}" +#temporary hack needed due to 0.81 patch release +S="${WORKDIR}/oclHashcat-plus-0.08" + +RESTRICT="strip" +QA_PREBUILT="*Hashcat-plus*.bin" + +src_install() { + dodoc docs/* + rm -rf *.exe docs + if use x86; then + rm oclHashcat-plus64.bin + rm cudaHashcat-plus64.bin + rm kernels/4098/*64* kernels/4318/*64* + fi + if use amd64; then + rm oclHashcat-plus32.bin + rm cudaHashcat-plus32.bin + rm kernels/4098/*32* kernels/4318/*32* + fi + if ! use video_cards_fglrx; then + rm -rf kernels/4098 + rm -f oclHashcat-plus*.bin + fi + if ! use video_cards_nvidia; then + rm -rf kernels/4318 + rm -f cudaHashcat-plus*.bin + fi + pax-mark m *Hashcat-plus*.bin + + insinto /opt/${PN} + doins -r "${S}"/* || die "Copy files failed" + + dodir /usr/bin + echo '#! /bin/sh' > "${ED}"/usr/bin/oclhashcat-plus + echo 'echo "oclHashcat-plus and all related files have been installed in /opt/oclhashcat-plus-bin"' >> "${ED}"/usr/bin/oclhashcat-plus + echo 'echo "Please run one of the following binaries to use gpu accelerated hashcat:"' >> "${ED}"/usr/bin/oclhashcat-plus + if [ -f "${ED}"/opt/${PN}/oclHashcat-plus64.bin ] + then + echo 'echo "64 bit ATI accelerated \"oclHashcat-plus64.bin\""' >> "${ED}"/usr/bin/oclhashcat-plus + fperms +x /opt/${PN}/oclHashcat-plus64.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/oclHashcat-plus64.bin + echo 'cd /opt/oclhashcat-plus-bin' >> "${ED}"/usr/bin/oclHashcat-plus64.bin + echo 'echo "Warning: oclHashcat-plus64.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/oclHashcat-plus64.bin + echo './oclHashcat-plus64.bin $@' >> "${ED}"/usr/bin/oclHashcat-plus64.bin + fperms +x /usr/bin/oclHashcat-plus64.bin + + fi + if [ -f "${ED}"/opt/${PN}/oclHashcat-plus32.bin ] + then + echo 'echo "32 bit ATI accelerated \"oclHashcat-plus32.bin\""' >> "${ED}"/usr/bin/oclhashcat-plus + fperms +x /opt/${PN}/oclHashcat-plus32.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/oclHashcat-plus32.bin + echo 'cd /opt/oclhashcat-plus-bin' >> "${ED}"/usr/bin/oclHashcat-plus32.bin + echo 'echo "Warning: oclHashcat-plus32.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/oclHashcat-plus32.bin + echo './oclHashcat-plus32.bin $@' >> "${ED}"/usr/bin/oclHashcat-plus32.bin + fperms +x /usr/bin/oclHashcat-plus32.bin + fi + if [ -f "${ED}"/opt/${PN}/cudaHashcat-plus64.bin ] + then + echo 'echo "64 bit NVIDIA accelerated \"cudaHashcat-plus64.bin\""' >> "${ED}"/usr/bin/oclhashcat-plus + fperms +x /opt/${PN}/cudaHashcat-plus64.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/cudaHashcat-plus64.bin + echo 'cd /opt/oclhashcat-plus-bin' >> "${ED}"/usr/bin/cudaHashcat-plus64.bin + echo 'echo "Warning: cudaHashcat-plus64.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/cudaHashcat-plus64.bin + echo './cudaHashcat-plus64.bin $@' >> "${ED}"/usr/bin/cudaHashcat-plus64.bin + fperms +x /usr/bin/cudaHashcat-plus64.bin + + fi + if [ -f "${ED}"/opt/${PN}/cudaHashcat-plus32.bin ] + then + echo 'echo 32 bit NVIDIA accelerated \"cudaHashcat-plus32.bin\""' >> "${ED}"/usr/bin/oclhashcat-plus + fperms +x /opt/${PN}/cudaHashcat-plus32.bin + echo '#! /bin/sh' > "${ED}"/usr/bin/cudaHashcat-plus32.bin + echo 'cd /opt/oclhashcat-plus-bin' >> "${ED}"/usr/bin/cudaHashcat-plus32.bin + echo 'echo "Warning: cudaHashcat-plus32.bin is running from $(pwd) so be careful of relative paths."' >> "${ED}"/usr/bin/cudaHashcat-plus32.bin + echo './cudaHashcat-plus32.bin $@' >> "${ED}"/usr/bin/cudaHashcat-plus32.bin + fperms +x /usr/bin/oclHashcat-plus32.bin + fi + fperms +x /usr/bin/oclhashcat-plus +} diff --git a/app-doc/linuxfromscratch/Manifest b/app-doc/linuxfromscratch/Manifest index 00f4eb6c002f..7da5937b2431 100644 --- a/app-doc/linuxfromscratch/Manifest +++ b/app-doc/linuxfromscratch/Manifest @@ -4,6 +4,10 @@ DIST LFS-BOOK-6.8.pdf 1389722 RMD160 b5f934dd9e0a4e2f7a551cf4bca94e8ce52f162b SH DIST LFS-BOOK-7.0-NOCHUNKS.html.bz2 173208 RMD160 2d5cdfeac5247f75e996efdf12e5ef64cfc0733a SHA1 ce8f4f7cea2de83d2b1083f0851c8212804505c0 SHA256 f2e9a7fc45fad6166ab380d91a77cd20aa82202050b4b8d64e02bfb33deb2059 DIST LFS-BOOK-7.0.pdf 1582136 RMD160 d7b48016756db0568f98f4c5562faf2353a4ee4d SHA1 86572093e696a30f8104b82714d2ebd1c7314ba1 SHA256 a01fec839d0e80972e80a146a0648c37079d70898512d4b97e95a6d342820c59 DIST LFS-BOOK-7.0.tar.bz2 196919 RMD160 aa0151f23bfc0d594a08739c770d36b875f6d596 SHA1 575cb6d19d963aba4c54bd2e0443e6b093df9831 SHA256 74fdcaebef455a2c7d6ccc64c16b7fdaa948fa935e5826a9034c334f8025e8af +DIST LFS-BOOK-7.1-NOCHUNKS.html.bz2 174148 RMD160 ccb1703087d0eb8c871e386e5c522b19013b308c SHA1 b64f9b33235c29858f9cce38abee4ca6b608263c SHA256 54516ff72f0e8e98980f750e7100baeeea0f7cd7ecf08f67afdbacd04644807c +DIST LFS-BOOK-7.1.pdf 1580414 RMD160 7a395753af2f323217512d842c574372b1c7f61e SHA1 b68379802fa8b6605dc18bf9815310878ef2e103 SHA256 16f4ccdb0d8be1f789841189964f851c4104de170bc11831353f9d6a99f19f48 +DIST LFS-BOOK-7.1.tar.bz2 198259 RMD160 5ab090018cf8b57fa5928821dfa0545db7816ba8 SHA1 b548e0ff43c9e1edb64e10366ca0157db331a1ec SHA256 c50e838cf8bb5cac790ad1fbf6baf382dce5d7a998d7e928bfd500042d7980b0 DIST lfs-bootscripts-20100627.tar.bz2 43257 RMD160 dd5532f903ee32981c740cacf93315251a013257 SHA1 b5cb2e95d7780f1c26ac3c974fda5023b2daa213 SHA256 5d10126b0b17b5595f4fedff8c081e071bfdf121d9dde88d271215152a2bd74a DIST lfs-bootscripts-20111017.tar.bz2 31955 RMD160 3617cb6437df1474ff250c21095d720ad97bbced SHA1 aff9e9722290b12d89be0d47fb8a83abeaa30f72 SHA256 9494ccda0dee86e8c6807182d85adc8cafc2d4e27eb3c771aeccbdf4df1a1bbb +DIST lfs-bootscripts-20120229.tar.bz2 32701 RMD160 18e48a44c0e8d2c26cf019b19437b4db395e24d4 SHA1 9a5369730ce0baa4359171493b34d897fdd29580 SHA256 b7fb0d44a4fc041d3a066defeb8d3eedc259e4b7fd667790c8f100f1335a76d6 DIST udev-config-20100128.tar.bz2 6283 RMD160 bb7ef96b927e925fd93c22e6c00d756aa977e71e SHA1 07829bbda4139f64e0c66249deef2e7e32861484 SHA256 cc765ce0879bd8fb9347f43603ecfb45bbc2244ae2c8816b1018c86e23f7c02c diff --git a/app-doc/linuxfromscratch/linuxfromscratch-7.1.ebuild b/app-doc/linuxfromscratch/linuxfromscratch-7.1.ebuild new file mode 100644 index 000000000000..14ee8842c2c3 --- /dev/null +++ b/app-doc/linuxfromscratch/linuxfromscratch-7.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/linuxfromscratch/linuxfromscratch-7.1.ebuild,v 1.1 2012/07/01 22:18:29 dirtyepic Exp $ + +EAPI="4" + +MY_SRC="http://www.linuxfromscratch.org/lfs/downloads/${PV}" + +BOOTSCRIPT_PV="20120229" +UDEV_PV="20100128" + +DESCRIPTION="LFS documents building a Linux system entirely from source." +HOMEPAGE="http://www.linuxfromscratch.org/lfs" +SRC_URI="${MY_SRC}/LFS-BOOK-${PV}.tar.bz2 + ${MY_SRC}/lfs-bootscripts-${BOOTSCRIPT_PV}.tar.bz2 + ${MY_SRC}/udev-config-${UDEV_PV}.tar.bz2 + htmlsingle? ( ${MY_SRC}/LFS-BOOK-${PV}-NOCHUNKS.html.bz2 ) + pdf? ( ${MY_SRC}/LFS-BOOK-${PV}.pdf )" + +LICENSE="CCPL-Attribution-ShareAlike-NonCommercial-2.5 MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="htmlsingle pdf" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR} + +src_unpack() { + unpack LFS-BOOK-${PV}.tar.bz2 \ + lfs-bootscripts-${BOOTSCRIPT_PV}.tar.bz2 \ + udev-config-${UDEV_PV}.tar.bz2 + + use htmlsingle && unpack LFS-BOOK-${PV}-NOCHUNKS.html.bz2 + use pdf && cp "${DISTDIR}"/LFS-BOOK-${PV}.pdf "${S}" +} + +src_install() { + dodoc -r * + docompress -x /usr/share/doc/${PF} +} diff --git a/app-doc/linuxfromscratch/metadata.xml b/app-doc/linuxfromscratch/metadata.xml index 65efb67106e4..87cf073c0f67 100644 --- a/app-doc/linuxfromscratch/metadata.xml +++ b/app-doc/linuxfromscratch/metadata.xml @@ -1,11 +1,11 @@ + app-doc - dirtyepic@gentoo.org - Ryan Hill + app-doc@gentoo.org - Also install single-page HTML version + Install all-on-one-page HTML version. diff --git a/app-doc/single-unix-specification/metadata.xml b/app-doc/single-unix-specification/metadata.xml index 285437793fb6..9b52710817dd 100644 --- a/app-doc/single-unix-specification/metadata.xml +++ b/app-doc/single-unix-specification/metadata.xml @@ -1,8 +1,5 @@ - - dirtyepic@gentoo.org - Ryan Hill - + app-doc diff --git a/app-doc/tldp-howto/metadata.xml b/app-doc/tldp-howto/metadata.xml index 12ca69218c7a..7f6f66d8af53 100644 --- a/app-doc/tldp-howto/metadata.xml +++ b/app-doc/tldp-howto/metadata.xml @@ -1,10 +1,7 @@ - - dirtyepic@gentoo.org - Ryan Hill - + app-doc Install the docs in multipage HTML format (default) Install the docs in single page HTML format diff --git a/app-editors/wxhexeditor/Manifest b/app-editors/wxhexeditor/Manifest index caaf00c39df0..81929a6b46e4 100644 --- a/app-editors/wxhexeditor/Manifest +++ b/app-editors/wxhexeditor/Manifest @@ -1,2 +1,2 @@ -DIST wxHexEditor-v0.09-src.tar.bz2 419074 RMD160 589337f706363386119e71f7f8986c97ee57f522 SHA1 feaee5766219bc4b34fef60c5cdeb4ebb585ef33 SHA256 2d2b0cc257f1f5eccc4031422863de91d1eec2b15d031041878646835e1f8cc7 DIST wxHexEditor-v0.11-src.tar.bz2 507012 RMD160 de675b74e802dd3fe07db8035dc3106248f69696 SHA1 a1802da0570448635367f54643765dcf24b4064f SHA256 85c866c7f09c53c90af2fd12f1978125caa1b7d0ee20719915e45220d31f1ee5 +DIST wxHexEditor-v0.20-src.tar.bz2 1194554 RMD160 87b8ce7c9ec35e0d496fd50787c6704d5bdbf98d SHA1 2f20471b75df344cecc360f81068c1d2ae8fdd73 SHA256 a3dda32eb62e3ec1c9760519302bcef688253d48b3d2c566f9629c4e4246ae55 diff --git a/app-editors/wxhexeditor/files/wxhexeditor-0.09-gcc45.patch b/app-editors/wxhexeditor/files/wxhexeditor-0.09-gcc45.patch deleted file mode 100644 index c49e8a2452ca..000000000000 --- a/app-editors/wxhexeditor/files/wxhexeditor-0.09-gcc45.patch +++ /dev/null @@ -1,37 +0,0 @@ -http://wxhexeditor.svn.sourceforge.net/viewvc/wxhexeditor/trunk/src/HexEditor.cpp?r1=132&r2=145 - ---- a/src/HexEditor.cpp -+++ b/src/HexEditor.cpp -@@ -102,7 +102,7 @@ bool HexEditor::FileOpen(wxFileName& myfilename ){ - wxLogError(_("Critical Error. File pointer is not empty!")); - return false; - } -- else if(myfilename.IsFileReadable()){ //IsFileReadable -+ else if( myfilename.IsFileReadable() ){ //IsFileReadable - if ( myfilename.GetSize( ) < 50*MB && myfilename.IsFileWritable() ) - myfile = new FileDifference( myfilename, FileDifference::ReadWrite ); - else -@@ -869,20 +869,20 @@ void HexEditor::OnMouseTest( wxMouseEvent& event ){ - } - - void HexEditor::FindDialog( void ){ -- class FindDialog *myfind = new FindDialog::FindDialog( this, myfile ); -+ ::FindDialog *myfind = new ::FindDialog( this, myfile ); - myfind->ShowModal(); - myfind->Destroy(); - } - - void HexEditor::ReplaceDialog( void ){ -- class ReplaceDialog *myfind = new ReplaceDialog::ReplaceDialog( this, myfile ); -+ ::ReplaceDialog *myfind = new ::ReplaceDialog( this, myfile ); - myfind->ShowModal(); - myfind->Destroy(); - } - - void HexEditor::GotoDialog( void ){ - uint64_t newoffset; -- class GotoDialog *mygoto = new GotoDialog::GotoDialog( this, newoffset, CursorOffset(), FileLength(), myDialogVector ); -+ ::GotoDialog *mygoto = new ::GotoDialog( this, newoffset, CursorOffset(), FileLength(), myDialogVector ); - if( mygoto->ShowModal() == wxID_OK ){ - Goto( newoffset ); - } diff --git a/app-editors/wxhexeditor/files/wxhexeditor-0.20-makefile.patch b/app-editors/wxhexeditor/files/wxhexeditor-0.20-makefile.patch new file mode 100644 index 000000000000..b4d97b2ec25c --- /dev/null +++ b/app-editors/wxhexeditor/files/wxhexeditor-0.20-makefile.patch @@ -0,0 +1,108 @@ +--- a/makefile ++++ b/makefile +@@ -1,8 +1,8 @@ + WXCONFIG = wx-config + CC = `$(WXCONFIG) --cc` + CPP = `$(WXCONFIG) --cxx` +-CXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -O2 -c ${OPTFLAGS} +-LDFLAGS = `$(WXCONFIG) --libs` ++WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -c ${OPTFLAGS} -fopenmp ${CXXFLAGS} ++WXLDFLAGS = `$(WXCONFIG) --libs` -fopenmp ${LDFLAGS} + RC = `$(WXCONFIG) --rescomp` + #RC = x86_64-w64-mingw32-windres --define WX_CPU_AMD64 + RCFLAGS = `$(WXCONFIG) --cxxflags | sed s/' '-m.*//g;` +@@ -19,7 +19,7 @@ SOURCES= src/HexEditorGui.cpp \ + src/HexEditorCtrl/wxHexCtrl/Tag.cpp\ + src/HexEditorCtrl/HexEditorCtrlGui.cpp\ + src/HexEditorFrame.cpp +-LIBS = udis86/libudis86/.libs/libudis86.a mhash/lib/.libs/libmhash.a ++LIBS = -lmhash -ludis86 + OBJECTS=$(SOURCES:.cpp=.o) + DEPENDS=$(OBJECTS:.o=.d) + RESOURCES= resources/resource.rc +@@ -28,43 +28,35 @@ EXECUTABLE=wxHexEditor + EXECUTABLE_WIN=$(EXECUTABLE).exe + EXECUTABLE_DIR_MAC=$(EXECUTABLE).app + +-PREFIX = /usr/local ++DESTDIR = ++PREFIX = $(DESTDIR)/usr + BINDIR = $(PREFIX)/bin + DATADIR = $(PREFIX)/share + LOCALEDIR = $(DATADIR)/locale + +-VERSION = 0.12 Beta ++VERSION = 0.20 + + all: $(EXECUTABLE) + +-$(OBJECTS): $(LIBS) $(SOURCES) ++$(OBJECTS): $(SOURCES) + + $(EXECUTABLE): $(OBJECTS) +- $(CPP) $(OBJECTS) $(LIBS) $(LDFLAGS) -lgomp -o $@ ++ $(CPP) $(OBJECTS) $(LIBS) $(WXLDFLAGS) ${CXXFLAGS} -o $@ + +-.cpp.o: $(LIBS) +- $(CPP) $(CXXFLAGS) $< -o $@ ++.cpp.o: ++ $(CPP) $(WXCXXFLAGS) $< -o $@ + + %.o : %.rc + $(RC) $(RCFLAGS) $< -o $@ + +-udis86/libudis86/.libs/libudis86.a: +- cd udis86;./autogen.sh +- cd udis86;./configure --host=$(HOST) +- cd udis86/libudis86; $(MAKE) $(MFLAGS) +- +-mhash/lib/.libs/libmhash.a: +- cd mhash; ./configure --host=$(HOST) +- cd mhash; $(MAKE) $(MFLAGS) +- + win: $(RESOURCES) $(EXECUTABLE_WIN) + + #Stack override required for file comparison function... + $(EXECUTABLE_WIN): $(OBJECTS) $(RESOURCE_OBJ) +- $(CPP) $(OBJECTS) $(RESOURCE_OBJ) $(LIBS) $(LDFLAGS) -static-libgcc -static-libstdc++ -Wl,--stack,32000000 -o $@ ++ $(CPP) $(OBJECTS) $(RESOURCE_OBJ) $(LIBS) ${CXXFLAGS} $(WXLDFLAGS) -static-libgcc -static-libstdc++ -Wl,--stack,32000000 -o $@ + + maclink: $(OBJECTS) +- $(CPP) $(OBJECTS) $(LIBS) $(LDFLAGS) -lexpat -Wl,-stack_size,0x2000000 -o $(EXECUTABLE) ++ $(CPP) $(OBJECTS) $(LIBS) ${CXXFLAGS} $(WXLDFLAGS) -lexpat -Wl,-stack_size,0x2000000 -o $(EXECUTABLE) + + mac: maclink + mkdir -p $(EXECUTABLE_DIR_MAC)/Contents +--- a/src/HexDialogs.cpp ++++ b/src/HexDialogs.cpp +@@ -24,7 +24,7 @@ + #define NANINT 0xFFFFFFFFFFFFFFFFLL + #include "HexDialogs.h" + #include +-#include "../mhash/include/mhash.h" ++#include + + #ifdef _OPENMP + #include +--- a/src/HexEditor.h ++++ b/src/HexEditor.h +@@ -25,7 +25,7 @@ + #ifndef _wxHexEditor_h_ + #define _wxHexEditor_h_ + +-#include "../mhash/include/mhash.h" ++#include + + #include + #include +--- a/src/HexPanels.h ++++ b/src/HexPanels.h +@@ -27,7 +27,7 @@ + #include "HexEditorFrame.h" + #include "HexEditorCtrl/HexEditorCtrl.h" + #include "HexEditorCtrl/wxHexCtrl/wxHexCtrl.h" +-#include "../udis86/udis86.h" ++#include + + #ifdef WX_GCH + #include diff --git a/app-editors/wxhexeditor/wxhexeditor-0.09.ebuild b/app-editors/wxhexeditor/wxhexeditor-0.20.ebuild similarity index 54% rename from app-editors/wxhexeditor/wxhexeditor-0.09.ebuild rename to app-editors/wxhexeditor/wxhexeditor-0.20.ebuild index 1cbe530d35a4..0e12813473b0 100644 --- a/app-editors/wxhexeditor/wxhexeditor-0.09.ebuild +++ b/app-editors/wxhexeditor/wxhexeditor-0.20.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/wxhexeditor/wxhexeditor-0.09.ebuild,v 1.1 2010/08/31 04:16:58 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/wxhexeditor/wxhexeditor-0.20.ebuild,v 1.1 2012/07/02 03:47:52 dirtyepic Exp $ -EAPI=3 -WX_GTK_VER=2.8 +EAPI="4" +WX_GTK_VER="2.8" -inherit eutils wxwidgets +inherit eutils toolchain-funcs wxwidgets MY_PN="wxHexEditor" @@ -18,15 +18,18 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="x11-libs/wxGTK:2.8[X]" +DEPEND="app-crypt/mhash + dev-libs/udis86 + x11-libs/wxGTK:2.8[X]" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_PN}" -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc45.patch +pkg_pretend() { + tc-has-openmp \ + || die "${PN} uses OpenMP libraries. Please use an OpenMP-capable compiler." } -src_install() { - emake DESTDIR="${D}" install || die +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch } diff --git a/app-portage/euses/Manifest b/app-portage/euses/Manifest index 1da8cff87324..6d75fcb5c153 100644 --- a/app-portage/euses/Manifest +++ b/app-portage/euses/Manifest @@ -1 +1,2 @@ DIST euses-2.5.7.tar.bz2 42206 RMD160 4a1cfce36993b61d2e58a5df1a1e00399132b353 SHA1 ac55219f65ae42a4871330605268039645a3e8d8 SHA256 52362d2c9c75ded0bd9c7c62007ee1914ea199c7837cf13bf72d2d2fa499f322 +DIST euses-2.5.8.tar.bz2 43984 RMD160 ffb4f8c22804f813ef5d58a008d14ef3ad5e5336 SHA1 3df4bb6f0dcc5f36ffd9fcd3c15a5f43b69a2a5c SHA256 ea3629f57cd4d777dcbf97573b64d9ebacf24f376f36e844d4510dd97f7db26e diff --git a/app-portage/euses/euses-2.5.8.ebuild b/app-portage/euses/euses-2.5.8.ebuild new file mode 100644 index 000000000000..4b4838824bd5 --- /dev/null +++ b/app-portage/euses/euses-2.5.8.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/euses/euses-2.5.8.ebuild,v 1.1 2012/07/02 03:26:16 jer Exp $ + +EAPI=4 + +DESCRIPTION="look up USE flag descriptions fast" +HOMEPAGE="http://www.xs4all.nl/~rooversj/gentoo" +SRC_URI="http://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +S=${WORKDIR} + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc ChangeLog +} diff --git a/app-text/tree/tree-1.6.0-r1.ebuild b/app-text/tree/tree-1.6.0-r1.ebuild index 2b9a17aab493..a8897edca3cb 100644 --- a/app-text/tree/tree-1.6.0-r1.ebuild +++ b/app-text/tree/tree-1.6.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/tree/tree-1.6.0-r1.ebuild,v 1.1 2012/05/27 23:17:52 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tree/tree-1.6.0-r1.ebuild,v 1.3 2012/07/02 05:49:59 jdhore Exp $ EAPI=4 inherit toolchain-funcs flag-o-matic bash-completion-r1 @@ -11,8 +11,7 @@ SRC_URI="ftp://mama.indstate.edu/linux/tree/${P}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh -~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="" src_prepare() { diff --git a/dev-java/xmlc/xmlc-2.3.1-r1.ebuild b/dev-java/xmlc/xmlc-2.3.1-r1.ebuild index cf27cb405e88..b7387f7d4bd2 100644 --- a/dev-java/xmlc/xmlc-2.3.1-r1.ebuild +++ b/dev-java/xmlc/xmlc-2.3.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/xmlc/xmlc-2.3.1-r1.ebuild,v 1.1 2012/07/01 08:17:12 sera Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/xmlc/xmlc-2.3.1-r1.ebuild,v 1.2 2012/07/02 08:26:32 jdhore Exp $ EAPI="4" @@ -16,7 +16,7 @@ SRC_URI="http://download.forge.objectweb.org/${PN}/${MY_P}.zip LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc x86" IUSE="" COMMON_DEP=" diff --git a/dev-libs/libbsd/Manifest b/dev-libs/libbsd/Manifest index 0202ffc27990..cdbf42e26cad 100644 --- a/dev-libs/libbsd/Manifest +++ b/dev-libs/libbsd/Manifest @@ -1,4 +1 @@ -DIST libbsd-0.3.0.tar.gz 102409 RMD160 bb7aeecafcfc9a9ad250df45e5381e26b558b366 SHA1 cb294a6123fb1dd173369144adfcaccb278db310 SHA256 fbf36ed40443e1d0d795adbae8d461952509e610c3ccf0866ae160b723f7fe38 -DIST libbsd-0.4.0.tar.gz 441567 RMD160 ad02a8796e44783d4cd2d336177ad5c3767f1d74 SHA1 87290f6ba92f773a3bfd7221f6ab561cbf88eba6 SHA256 a285d7108462b913ac49142e46bab2d7e16902cabfacf77ef1101233f472fcb7 -DIST libbsd-0.4.1.tar.gz 441856 RMD160 ba0e8b282cce6ce936227426de3b28d68fce6f4f SHA1 5d8e3ee4219eec7ca1b73b9a9803c4252887d807 SHA256 7812960dad9d16d09ff44c00c539f59adfe80b1125f33474942064ea4a51d6c3 DIST libbsd-0.4.2.tar.gz 442436 RMD160 eeaa86e3cc4b8d3c8599952e6f9f1b2f1a4b78f4 SHA1 b9dd0b0d217642bf6519b4a5e386b30a73ad5c08 SHA256 922b4885e0ccfd64b92fcacdb3fba18024fcab1e0c1b073f5ec0fe76388cbfdc diff --git a/dev-libs/libbsd/libbsd-0.3.0-r1.ebuild b/dev-libs/libbsd/libbsd-0.3.0-r1.ebuild deleted file mode 100644 index 61aaf25ef650..000000000000 --- a/dev-libs/libbsd/libbsd-0.3.0-r1.ebuild +++ /dev/null @@ -1,56 +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/libbsd/libbsd-0.3.0-r1.ebuild,v 1.2 2012/01/15 17:11:50 ssuominen Exp $ - -EAPI=4 -inherit multilib toolchain-funcs - -DESCRIPTION="A BSD compatibility library" -HOMEPAGE="http://libbsd.freedesktop.org/wiki/" -SRC_URI="http://libbsd.freedesktop.org/releases/${P}.tar.gz" - -LICENSE="BSD BSD-2 BSD-4 ISC" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="static-libs" - -pkg_setup() { - mylibbsdconf=( - AR="$(tc-getAR)" - CC="$(tc-getCC)" - libdir=/usr/$(get_libdir) - usrlibdir=/usr/$(get_libdir) - ) - - local f="${ROOT}"usr/$(get_libdir)/libbsd.a - if ! has_version dev-libs/libbsd; then - if [[ -e ${f} ]]; then - eerror "You need to remove ${f} by hand or re-emerge sys-libs/glibc first." - die "You need to remove ${f} by hand or re-emerge sys-libs/glibc first." - fi - fi -} - -src_prepare() { - # Instead of replacing upstream warning flags, append to them - sed -i -e 's:CFLAGS ?= -g:CFLAGS +=:' Makefile || die - - if ! use static-libs; then - sed -i \ - -e '/^libs/s:$(LIB_STATIC)::' \ - -e 's:install -m644 $(LIB_STATIC):-&:' \ - Makefile || die - fi -} - -src_compile() { - emake "${mylibbsdconf[@]}" -} - -src_install() { - emake DESTDIR="${D}" "${mylibbsdconf[@]}" install - dodoc ChangeLog README TODO - - # File collision with dev-libs/elfutils and dev-lang/perl build problem wrt #399001 - rm -f "${ED}"usr/include/{libutil,nlist,vis}.h -} diff --git a/dev-libs/libbsd/libbsd-0.4.0.ebuild b/dev-libs/libbsd/libbsd-0.4.0.ebuild deleted file mode 100644 index 1a1a724c9a12..000000000000 --- a/dev-libs/libbsd/libbsd-0.4.0.ebuild +++ /dev/null @@ -1,48 +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/libbsd/libbsd-0.4.0.ebuild,v 1.1 2012/05/31 01:38:02 ssuominen Exp $ - -EAPI=4 -inherit multilib - -DESCRIPTION="An library to provide useful functions commonly found on BSD systems" -HOMEPAGE="http://libbsd.freedesktop.org/wiki/" -SRC_URI="http://${PN}.freedesktop.org/releases/${P}.tar.gz" - -LICENSE="BSD BSD-2 BSD-4 ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -DOCS="ChangeLog README TODO" - -pkg_setup() { - local f="${ROOT}/usr/$(get_libdir)/${PN}.a" - local m="You need to remove ${f} by hand or re-emerge sys-libs/glibc first." - if ! has_version ${CATEGORY}/${PN}; then - if [[ -e ${f} ]]; then - eerror "${m}" - die "${m}" - fi - fi -} - -src_prepare() { - # --disable-silent-rules in econf to ensure system CFLAGS get used: - sed -i -e '/^CFLAGS/s:=:+=:' {src,test}/Makefile.{am,in} || die -} - -src_configure() { - # Ensure both $(libdir) and $(runtimelibdir) match for skipping - # "install-exec-hook:" from src/Makefile.am - export runtimelibdir="/usr/$(get_libdir)" - econf \ - --libdir="${runtimelibdir}" \ - --disable-silent-rules \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${ED}"/usr -name '*.la' -exec rm -f {} + -} diff --git a/dev-libs/libbsd/libbsd-0.4.1.ebuild b/dev-libs/libbsd/libbsd-0.4.1.ebuild deleted file mode 100644 index 2c572b4ec3e2..000000000000 --- a/dev-libs/libbsd/libbsd-0.4.1.ebuild +++ /dev/null @@ -1,43 +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/libbsd/libbsd-0.4.1.ebuild,v 1.1 2012/06/02 13:07:24 ssuominen Exp $ - -EAPI=4 -inherit multilib - -DESCRIPTION="An library to provide useful functions commonly found on BSD systems" -HOMEPAGE="http://libbsd.freedesktop.org/wiki/" -SRC_URI="http://${PN}.freedesktop.org/releases/${P}.tar.gz" - -LICENSE="BSD BSD-2 BSD-4 ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -DOCS="ChangeLog README TODO" - -pkg_setup() { - local f="${ROOT}/usr/$(get_libdir)/${PN}.a" - local m="You need to remove ${f} by hand or re-emerge sys-libs/glibc first." - if ! has_version ${CATEGORY}/${PN}; then - if [[ -e ${f} ]]; then - eerror "${m}" - die "${m}" - fi - fi -} - -src_prepare() { - sed -i -e '/^CFLAGS/s:=:+=:' {src,test}/Makefile.{am,in} || die -} - -src_configure() { - econf \ - --disable-silent-rules \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${ED}"/usr -name '*.la' -exec rm -f {} + -} diff --git a/dev-libs/libbsd/libbsd-0.4.2.ebuild b/dev-libs/libbsd/libbsd-0.4.2.ebuild index 47b142529ead..3f7767a70745 100644 --- a/dev-libs/libbsd/libbsd-0.4.2.ebuild +++ b/dev-libs/libbsd/libbsd-0.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbsd/libbsd-0.4.2.ebuild,v 1.2 2012/06/28 10:38:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbsd/libbsd-0.4.2.ebuild,v 1.3 2012/07/02 08:25:53 jdhore Exp $ EAPI=4 inherit eutils multilib @@ -11,7 +11,7 @@ SRC_URI="http://${PN}.freedesktop.org/releases/${P}.tar.gz" LICENSE="BSD BSD-2 BSD-4 ISC" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="static-libs" DOCS="ChangeLog README TODO" diff --git a/dev-libs/libmodbus/Manifest b/dev-libs/libmodbus/Manifest index eb2c57b98fbf..d85e7c2cbdab 100644 --- a/dev-libs/libmodbus/Manifest +++ b/dev-libs/libmodbus/Manifest @@ -1,2 +1,2 @@ -DIST libmodbus-3.0.1.tar.gz 466264 RMD160 e810b2b684cd59df0f3a9cafab904d10f66b3f6b SHA1 11878a578fe1872eb67bf5f8538c19f709f33b85 SHA256 c45bd1d64a3a8970fbbfa1f6671d3f67bced9ff27b47360724aebc5512b0e0af DIST libmodbus-3.0.3.tar.gz 470324 RMD160 85f4b0f121eb29fdb59675175ef3f2bc8db5a20e SHA1 28f7dcd418181306dd9e3fc1d409b8e0e963c233 SHA256 6fc7cf91f7293e522afde6ae5fc605c6cd7bdca4ee2ec953db5bb91158ab8677 +DIST libmodbus-3.1.0.tar.gz 521675 RMD160 67a79bf1bb11f67fe716d63dda7b235346b794a8 SHA1 9365f3c1de398769f03afc82573b8c1c287aa26a SHA256 0ee9b40245a2a810de44f345580b7bfc54d79d9b2be60424bab84d5431098e4f diff --git a/dev-libs/libmodbus/libmodbus-3.0.1.ebuild b/dev-libs/libmodbus/libmodbus-3.1.0.ebuild similarity index 60% rename from dev-libs/libmodbus/libmodbus-3.0.1.ebuild rename to dev-libs/libmodbus/libmodbus-3.1.0.ebuild index 94247da02a63..5f959c30b67b 100644 --- a/dev-libs/libmodbus/libmodbus-3.0.1.ebuild +++ b/dev-libs/libmodbus/libmodbus-3.1.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmodbus/libmodbus-3.0.1.ebuild,v 1.1 2011/10/01 06:04:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmodbus/libmodbus-3.1.0.ebuild,v 1.1 2012/07/02 07:12:33 xmw Exp $ -EAPI="2" +EAPI=4 DESCRIPTION="Modbus library which supports RTU communication over a serial line or a TCP link" HOMEPAGE="http://www.libmodbus.org/" @@ -13,17 +13,14 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs" -src_prepare() { - sed -i '/CFLAGS/s:-Werror::' configure || die #363477 - sed -i 's:doc/modbus.7:doc/libmodbus.7:' configure || die # upstream issue #28 -} - src_configure() { - econf --disable-silent-rules $(use_enable static-libs static) + econf \ + --disable-silent-rules \ + $(use_enable static-libs static) } src_install() { - emake install DESTDIR="${D}" || die + emake install DESTDIR="${D}" dodoc AUTHORS MIGRATION NEWS README.rst use static-libs || rm "${D}"/usr/*/libmodbus.la } diff --git a/dev-libs/libusb-compat/files/libusb-0.1-libusbx.patch b/dev-libs/libusb-compat/files/libusb-0.1-libusbx.patch index 61563651b25a..5ee7b79af62f 100644 --- a/dev-libs/libusb-compat/files/libusb-0.1-libusbx.patch +++ b/dev-libs/libusb-compat/files/libusb-0.1-libusbx.patch @@ -1,3 +1,5 @@ +http://libusb.org/ticket/138 +http://sourceforge.net/apps/trac/libusbx/ticket/31 http://bugs.gentoo.org/423135 --- libusb/core.c diff --git a/dev-php/PEAR-HTML_CSS/PEAR-HTML_CSS-1.5.4.ebuild b/dev-php/PEAR-HTML_CSS/PEAR-HTML_CSS-1.5.4.ebuild index fa9db0ccfc25..2d23874c99f9 100644 --- a/dev-php/PEAR-HTML_CSS/PEAR-HTML_CSS-1.5.4.ebuild +++ b/dev-php/PEAR-HTML_CSS/PEAR-HTML_CSS-1.5.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_CSS/PEAR-HTML_CSS-1.5.4.ebuild,v 1.2 2011/03/26 11:34:59 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_CSS/PEAR-HTML_CSS-1.5.4.ebuild,v 1.3 2012/07/01 21:02:11 mabi Exp $ -inherit php-pear-r1 depend.php +inherit php-pear-r1 DESCRIPTION="Provides a simple interface for generating a stylesheet declaration." LICENSE="BSD" @@ -12,4 +12,3 @@ IUSE="minimal" RDEPEND=">=dev-php/PEAR-HTML_Common-1.2.4 !minimal? ( >=dev-php/PEAR-Services_W3C_CSSValidator-0.1.0 >=dev-php/phpunit-3.2.0 )" -need_php5 diff --git a/dev-php/PEAR-Net_LDAP/Manifest b/dev-php/PEAR-Net_LDAP/Manifest index 29dfb4fc4ad7..983224802202 100644 --- a/dev-php/PEAR-Net_LDAP/Manifest +++ b/dev-php/PEAR-Net_LDAP/Manifest @@ -1,4 +1,2 @@ DIST Net_LDAP-1.0.0.tgz 52986 RMD160 fcf1ecfc93cc0b315f8161cfb28f1006a0272c7b SHA1 8e0a73128b739e9ac88254f5387e3fc67dbb3565 SHA256 c7ded6e08fa7fe5d83b79bd896d90e5fc4d7396e16d5ed1b50c05aca4f869f69 -DIST Net_LDAP-1.1.0.tgz 73381 RMD160 93129adeb675077e6f0034dccecbda745738c667 SHA1 c171f5af4408dec627c16b44f976f83ea3721dfe SHA256 98604d3bc49c34de24ec2a17dadebd8943639e0b80ad1470478d31180f17f986 -DIST Net_LDAP-1.1.1.tgz 73746 RMD160 bff4fa8c9a0c19a306ba7e46dc4cb5589376b7be SHA1 97f794e6d5d449caeba114cc0e745a30b619d96c SHA256 ce7487c188eec6f5f4e878c80fe57900a3ff26cc9ee108809b7f31233e5dde4f DIST Net_LDAP-1.1.5.tgz 74782 RMD160 313d755f471159118574f4e5ee2df5cb7a663f4a SHA1 2a7ffddc37173f041bf6fa979c6705bb9d6f6fd9 SHA256 bb2f40a9d08eed1968582d4dc9342e15e93b9222e0a8b6b60ae83c34b25a51b2 diff --git a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.0.ebuild b/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.0.ebuild deleted file mode 100644 index 0d0afba620c2..000000000000 --- a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.0.ebuild,v 1.1 2008/03/03 16:56:22 jokey Exp $ - -inherit php-pear-r1 depend.php - -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" - -DESCRIPTION="OO interface for searching and manipulating LDAP-entries" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="" - -DEPEND="" -RDEPEND="" - -pkg_setup() { - require_php_with_use ldap -} diff --git a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.1.ebuild b/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.1.ebuild deleted file mode 100644 index d2426692d801..000000000000 --- a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.1.ebuild,v 1.1 2008/03/19 20:57:41 jokey Exp $ - -inherit php-pear-r1 depend.php - -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" - -DESCRIPTION="OO interface for searching and manipulating LDAP-entries" -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="" - -DEPEND="" -RDEPEND="" - -pkg_setup() { - require_php_with_use ldap -} diff --git a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.5.ebuild b/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.5.ebuild index 94a0b6b11f99..4291538b426c 100644 --- a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.5.ebuild +++ b/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.5.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.5.ebuild,v 1.1 2009/08/22 19:34:57 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.1.5.ebuild,v 1.2 2012/07/01 21:33:46 mabi Exp $ -inherit php-pear-r1 depend.php +EAPI=4 + +inherit php-pear-r1 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" @@ -12,8 +14,4 @@ SLOT="0" IUSE="" DEPEND="" -RDEPEND="" - -pkg_setup() { - require_php_with_use ldap -} +RDEPEND="dev-lang/php[ldap]" diff --git a/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.6.3.ebuild b/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.6.3.ebuild index 3696510f1a95..3a3ee2183593 100644 --- a/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.6.3.ebuild +++ b/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.6.3.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.6.3.ebuild,v 1.3 2008/03/17 12:49:06 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.6.3.ebuild,v 1.4 2012/07/01 21:40:22 mabi Exp $ -inherit php-pear-r1 depend.php +EAPI=4 + +inherit php-pear-r1 DESCRIPTION="Takes an existing package.xml file and updates it with a new filelist and changelog." @@ -11,8 +13,5 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="minimal" -RDEPEND="!minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )" - -pkg_setup() { - require_php_with_use xml simplexml -} +RDEPEND="dev-lang/php[xml,simplexml] + !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )" diff --git a/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.7.0.ebuild b/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.7.0.ebuild index 2b3fd9db7a36..801a67e04ac3 100644 --- a/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.7.0.ebuild +++ b/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.7.0.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.7.0.ebuild,v 1.1 2010/02/16 05:05:18 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR_PackageFileManager/PEAR-PEAR_PackageFileManager-1.7.0.ebuild,v 1.2 2012/07/01 21:40:22 mabi Exp $ -inherit php-pear-r1 depend.php +EAPI=4 + +inherit php-pear-r1 DESCRIPTION="Takes an existing package.xml file and updates it with a new filelist and changelog." @@ -12,8 +14,5 @@ KEYWORDS="~amd64 ~x86" IUSE="minimal" DEPEND=">=dev-php/pear-1.8.1" -RDEPEND="!minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )" - -pkg_setup() { - require_php_with_use xml simplexml -} +RDEPEND="dev-lang/php[xml,simplexml] + !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 )" diff --git a/dev-php/PEAR-PEAR_PackageFileManager_Cli/PEAR-PEAR_PackageFileManager_Cli-0.3.0.ebuild b/dev-php/PEAR-PEAR_PackageFileManager_Cli/PEAR-PEAR_PackageFileManager_Cli-0.3.0.ebuild index 7320659a824d..cc0e7035c8c1 100644 --- a/dev-php/PEAR-PEAR_PackageFileManager_Cli/PEAR-PEAR_PackageFileManager_Cli-0.3.0.ebuild +++ b/dev-php/PEAR-PEAR_PackageFileManager_Cli/PEAR-PEAR_PackageFileManager_Cli-0.3.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR_PackageFileManager_Cli/PEAR-PEAR_PackageFileManager_Cli-0.3.0.ebuild,v 1.4 2008/03/17 12:49:20 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR_PackageFileManager_Cli/PEAR-PEAR_PackageFileManager_Cli-0.3.0.ebuild,v 1.5 2012/07/01 21:41:26 mabi Exp $ -inherit php-pear-r1 depend.php +inherit php-pear-r1 DESCRIPTION="A command line interface to PEAR_PackageFileManager." diff --git a/dev-python/Djblets/Djblets-0.6.13.ebuild b/dev-python/Djblets/Djblets-0.6.19.ebuild similarity index 92% rename from dev-python/Djblets/Djblets-0.6.13.ebuild rename to dev-python/Djblets/Djblets-0.6.19.ebuild index 3414f45f28a2..d55b7e031104 100644 --- a/dev-python/Djblets/Djblets-0.6.13.ebuild +++ b/dev-python/Djblets/Djblets-0.6.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/Djblets/Djblets-0.6.13.ebuild,v 1.1 2012/06/11 09:51:34 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/Djblets/Djblets-0.6.19.ebuild,v 1.1 2012/07/02 07:20:35 xmw Exp $ EAPI=4 PYTHON_DEPEND="2" diff --git a/dev-python/Djblets/Manifest b/dev-python/Djblets/Manifest index 51049b2b08cb..7822838ab5cb 100644 --- a/dev-python/Djblets/Manifest +++ b/dev-python/Djblets/Manifest @@ -1,2 +1,2 @@ -DIST Djblets-0.6.13.tar.gz 275934 RMD160 5bf923945eab2d43b9c5456cae6882ec939f8738 SHA1 0259573da0f769582ce8cc4acffb2c15a2c0ebef SHA256 9a769e956e0124ac3654c2f6ef4e19dcd90d967f06e510f5c34879a1ef4bc230 DIST Djblets-0.6.14.tar.gz 277749 RMD160 289de11899fbb56a7d50e0738891801569c9ed1e SHA1 8a8d9ab3a0d7df2acfa0e3d1b5e36362c74b5f0f SHA256 66fca180825ded0051a4c85275dd14b2758f7decbd1d71028b83775440f3adce +DIST Djblets-0.6.19.tar.gz 281637 RMD160 2a86fb6b6946d2670ff7aa6efd9237d6b339f6e3 SHA1 907972188f07cd6cd67460560835de0a3872fd35 SHA256 28061bdf0cdf0b3930316a81cc5ce8c3ed74ab7a9705fc95a2db4e1f50bc1bc2 diff --git a/dev-python/pyside-tools/pyside-tools-0.2.14.ebuild b/dev-python/pyside-tools/pyside-tools-0.2.14.ebuild index fd215bd276cf..3f3d93fa066d 100644 --- a/dev-python/pyside-tools/pyside-tools-0.2.14.ebuild +++ b/dev-python/pyside-tools/pyside-tools-0.2.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.2.14.ebuild,v 1.1 2012/06/02 13:42:45 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside-tools/pyside-tools-0.2.14.ebuild,v 1.3 2012/07/02 08:44:22 jdhore Exp $ EAPI=4 @@ -9,6 +9,7 @@ CMAKE_IN_SOURCE_BUILD="1" PYTHON_DEPEND="2:2.6 3:3.2" SUPPORT_PYTHON_ABIS="1" RESTRICT_PYTHON_ABIS="2.4 2.5 3.1 *-jython 2.7-pypy-*" +PYTHON_TESTS_RESTRICTED_ABIS="3.*" VIRTUALX_COMMAND="cmake-utils_src_test" @@ -20,7 +21,7 @@ SRC_URI="http://www.pyside.org/files/${P}.tar.bz2" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 x86" IUSE="test" RDEPEND=" diff --git a/dev-ruby/ruby-activeldap/ruby-activeldap-3.1.1-r1.ebuild b/dev-ruby/ruby-activeldap/ruby-activeldap-3.1.1-r1.ebuild new file mode 100644 index 000000000000..f880fa9f06e8 --- /dev/null +++ b/dev-ruby/ruby-activeldap/ruby-activeldap-3.1.1-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-activeldap/ruby-activeldap-3.1.1-r1.ebuild,v 1.1 2012/07/02 08:25:02 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ruby19" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.textile TODO" +RUBY_FAKEGEM_EXTRAINSTALL="po" +RUBY_FAKEGEM_NAME="activeldap" + +inherit ruby-fakegem + +MY_P="${P/ruby-/}" +DESCRIPTION="Ruby/ActiveLDAP provides an activerecord inspired object oriented interface to LDAP" +HOMEPAGE="https://github.com/activeldap/activeldap" + +LICENSE="GPL-2" +SLOT="3" +KEYWORDS="~amd64" +IUSE="" + +# Most tests require a live LDAP server to run. +RESTRICT="test" + +ruby_add_bdepend "dev-ruby/hoe" + +ruby_add_rdepend " + >=dev-ruby/activemodel-3.1.0 + dev-ruby/locale + dev-ruby/fast_gettext + dev-ruby/gettext_i18n_rails + || ( >=dev-ruby/ruby-ldap-0.8.2 dev-ruby/ruby-net-ldap )" + +all_ruby_prepare() { + # Comment out Gettext setup because it does not work with fast_gettext. This + # patch probably breaks ruby_gettext usage. See + # https://github.com/activeldap/activeldap/issues/33 + sed -i -e '/GetText\./ s:^:#:' lib/active_ldap/get_text_support.rb || die + + # Also allow Rails 3.2. Upstream has not released a version yet that is + # 100% compatible, but it works for the most part and it is better than no + # activeldap at all. + sed -i -e '31d' -e 's/version: 3.1.0/version: "3.1"/' ../metadata || die +} + +all_ruby_install() { + all_fakegem_install + + dodoc doc/text/* + + insinto /usr/share/doc/${PF} + doins -r examples +} diff --git a/dev-ruby/webrat/Manifest b/dev-ruby/webrat/Manifest index 83999112e11a..d0df596a7864 100644 --- a/dev-ruby/webrat/Manifest +++ b/dev-ruby/webrat/Manifest @@ -1,2 +1 @@ -DIST webrat-0.7.1.gem 14234624 RMD160 b0aecf7bb19821acb3ddcd321fe09fa99d6d5289 SHA1 e1ba81b533d6afb95dbce7c1ce4a671566e77ef9 SHA256 2dad864dd1540c0f9c9ae8f948efb169c3977c7b129fa520a97193edb51ca00d DIST webrat-0.7.3.gem 14868992 RMD160 9641e6f815b0e234ce92f1cac77ba7c4cd93a2a0 SHA1 b7d538df5812ca781f01758d690a3f02a2e25bed SHA256 ff87dbdc9c5d9fc25a34e3718eeb997131647cde4b35c3d4201057c0ea950c07 diff --git a/dev-ruby/webrat/webrat-0.7.1.ebuild b/dev-ruby/webrat/webrat-0.7.1.ebuild deleted file mode 100644 index b3f6eec37307..000000000000 --- a/dev-ruby/webrat/webrat-0.7.1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/webrat/webrat-0.7.1.ebuild,v 1.3 2011/01/10 18:31:05 graaff Exp $ - -EAPI=2 - -USE_RUBY="ruby18" - -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_TASK_TEST="spec:integration:rack spec:integration:sinatra spec:integration:mechanize" - -RUBY_FAKEGEM_EXTRADOC="README.rdoc History.txt" - -RUBY_FAKEGEM_EXTRAINSTALL="vendor" - -inherit ruby-fakegem - -DESCRIPTION="Ruby acceptance testing for web applications" -HOMEPAGE="http://github.com/brynary/webrat/" -LICENSE="MIT" - -KEYWORDS="~amd64 ~x86 ~x86-macos" -SLOT="0" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/nokogiri-1.2.0 - >=dev-ruby/rack-1.0" - -ruby_add_bdepend test "dev-ruby/rspec:0 dev-ruby/rack-test dev-ruby/sinatra dev-ruby/mechanize" diff --git a/dev-ruby/webrat/webrat-0.7.3.ebuild b/dev-ruby/webrat/webrat-0.7.3.ebuild index e6222edcc943..b2fb83ff4ff2 100644 --- a/dev-ruby/webrat/webrat-0.7.3.ebuild +++ b/dev-ruby/webrat/webrat-0.7.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/webrat/webrat-0.7.3.ebuild,v 1.1 2011/08/20 11:19:21 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/webrat/webrat-0.7.3.ebuild,v 1.2 2012/07/02 06:06:47 graaff Exp $ EAPI=2 @@ -30,7 +30,7 @@ ruby_add_rdepend ">=dev-ruby/nokogiri-1.2.0 >=dev-ruby/rack-1.0 >=dev-ruby/rack-test-0.5.3" -ruby_add_bdepend test "dev-ruby/rspec:0 dev-ruby/merb-core" +ruby_add_bdepend test "dev-ruby/rspec:0 dev-ruby/merb-core dev-ruby/mechanize" all_ruby_prepare() { # Remove tests for which we don't have dependencies yet. diff --git a/dev-util/xfce4-dev-tools/Manifest b/dev-util/xfce4-dev-tools/Manifest index 050c3b917dd3..021a58478545 100644 --- a/dev-util/xfce4-dev-tools/Manifest +++ b/dev-util/xfce4-dev-tools/Manifest @@ -1,3 +1 @@ DIST xfce4-dev-tools-4.10.0.tar.bz2 283987 RMD160 bbcd7ff09f7d5886ab994a45f2774d5b9fedd230 SHA1 214bd32b7984589b416932e939e5269159f0426e SHA256 f79649bbfbbf16881494ee9f67035063765aec12e23ab9bac31de2c8a4f32bf8 -DIST xfce4-dev-tools-4.9.1.tar.bz2 265176 RMD160 6e360844782dc5d78afd2225816e3efed28478a7 SHA1 ba309d1286a2be964613e3eb19b08e2aced97bcc SHA256 8eeb9c327b07350fd635212bbe6130b733039719e4358baf465141309def7b13 -DIST xfce4-dev-tools-4.9.2.tar.bz2 283907 RMD160 91efadd82a5aa60f7de334545679d07ea1c125a6 SHA1 eb2a3641c9fe13aa0ad165bc9f9c2c433b1f18c8 SHA256 7f1088df3ef35c6fcc820cac182b783e6c16b9c9e1b6cd233a09447111b2b407 diff --git a/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.10.0.ebuild b/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.10.0.ebuild index 3e7b27b319cb..75f0da16c999 100644 --- a/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.10.0.ebuild +++ b/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.10.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.10.0.ebuild,v 1.6 2012/05/22 05:37:20 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.10.0.ebuild,v 1.7 2012/07/02 08:41:21 ssuominen Exp $ EAPI=4 inherit xfconf @@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris" IUSE="" RDEPEND=">=dev-libs/glib-2.24" diff --git a/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.1.ebuild b/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.1.ebuild deleted file mode 100644 index de50f8874472..000000000000 --- a/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.1.ebuild,v 1.4 2012/05/05 02:18:51 jdhore Exp $ - -EAPI=4 -inherit xfconf - -DESCRIPTION="A set of scripts and m4/autoconf macros that ease build system maintenance" -HOMEPAGE="http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/" -SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris" -IUSE="" - -RDEPEND=">=dev-libs/glib-2.18:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - DOCS=( AUTHORS ChangeLog HACKING NEWS README ) -} diff --git a/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.2.ebuild b/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.2.ebuild deleted file mode 100644 index e812ff4c9be6..000000000000 --- a/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.2.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/xfce4-dev-tools/xfce4-dev-tools-4.9.2.ebuild,v 1.2 2012/05/05 02:18:51 jdhore Exp $ - -EAPI=4 -inherit xfconf - -DESCRIPTION="A set of scripts and m4/autoconf macros that ease build system maintenance" -HOMEPAGE="http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/" -SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris" -IUSE="" - -RDEPEND=">=dev-libs/glib-2.18" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - DOCS=( AUTHORS ChangeLog HACKING NEWS README ) -} diff --git a/dev-vcs/git/git-1.7.8.6.ebuild b/dev-vcs/git/git-1.7.8.6.ebuild index 3ab36f7d0532..df287e7a2ec3 100644 --- a/dev-vcs/git/git-1.7.8.6.ebuild +++ b/dev-vcs/git/git-1.7.8.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-1.7.8.6.ebuild,v 1.4 2012/06/27 11:57:38 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-1.7.8.6.ebuild,v 1.5 2012/07/02 05:49:01 jdhore Exp $ EAPI=4 @@ -32,7 +32,7 @@ if [[ ${PV} != *9999 ]]; then ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" - KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" else SRC_URI="" KEYWORDS="" diff --git a/dev-vcs/mercurial/Manifest b/dev-vcs/mercurial/Manifest index 436597b0b9fa..91892d640df7 100644 --- a/dev-vcs/mercurial/Manifest +++ b/dev-vcs/mercurial/Manifest @@ -1,5 +1,3 @@ -DIST mercurial-2.0.tar.gz 3090977 RMD160 f0c5f143eabff4a6c06d512cecd718bf594d06b1 SHA1 5ede1b3f54d3be2af0657901e7013dde7c19b7c5 SHA256 affab78a4d5074c71f97c07fe211de958263444eb8d86b3ad6fb6d648eb6c594 DIST mercurial-2.1.1.tar.gz 3313261 RMD160 e17a995a069d1a7a46537a49189520df953acb6f SHA1 d6cc4b649b6705113732e62756788542897ba008 SHA256 0f8ec2b29f1121c6cb73c17509281eb1391ddbfad757b1f720d7e06de0a25dfd -DIST mercurial-2.1.2.tar.gz 3343349 RMD160 4ac9a91e7debbe556f1c314cc3b6fc87b6cbf2f0 SHA1 6fa2f2510757e3e62efa9d8953f8b703b84075b2 SHA256 914d4889e195687209e070c0c33cf3ae7b78d6c6c92fa7d6ccc718aa96959886 -DIST mercurial-2.2.1.tar.gz 3414944 RMD160 02f344a980a5b508b741968258962caf8996fd9e SHA1 40961a436920628ff9db48dc8aab8012d72dcd52 SHA256 ab4ffe751553f852813c21ad73907530ffbc5aa39b0cf962f61fe70f196cbb81 DIST mercurial-2.2.2.tar.gz 3430037 RMD160 f26a4eeff78a867d48c87e2b126e623b66232588 SHA1 72070531f173ccb4394b227914c45678c963ebaa SHA256 3489110ec11fefbd2cbdefb8d715d0a869cef3dd729aaf4d5141108f8be1600a +DIST mercurial-2.2.3.tar.gz 3441501 RMD160 44a962017d63aaa5e586f2e3c9d772306be9e6eb SHA1 b754700c545c17f68e1ab36c942141d90c9b9b46 SHA256 7c61e38585ba252b31f75df6006bdcf1ff11030321f9fc628f0e1c61929d677b diff --git a/dev-vcs/mercurial/mercurial-2.0.ebuild b/dev-vcs/mercurial/mercurial-2.0.ebuild deleted file mode 100644 index 069473c4378f..000000000000 --- a/dev-vcs/mercurial/mercurial-2.0.ebuild +++ /dev/null @@ -1,139 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.0.ebuild,v 1.9 2012/03/06 21:59:24 ranger Exp $ - -EAPI=3 -PYTHON_DEPEND="2" -PYTHON_USE_WITH="threads" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" - -inherit bash-completion-r1 elisp-common eutils distutils - -DESCRIPTION="Scalable distributed SCM" -HOMEPAGE="http://mercurial.selenic.com/" -SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="bugzilla emacs gpg test tk zsh-completion" - -RDEPEND="bugzilla? ( dev-python/mysql-python ) - gpg? ( app-crypt/gnupg ) - tk? ( dev-lang/tk ) - zsh-completion? ( app-shells/zsh )" -DEPEND="emacs? ( virtual/emacs ) - test? ( app-arch/unzip - dev-python/pygments )" - -PYTHON_CFLAGS=( - "2.* + -fno-strict-aliasing" - "* - -ftracer -ftree-vectorize" -) - -PYTHON_MODNAME="${PN} hgext" -SITEFILE="70${PN}-gentoo.el" - -src_prepare() { - distutils_src_prepare - - # fix up logic that won't work in Gentoo Prefix (also won't outside in - # certain cases), bug #362891 - sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die -} - -src_compile() { - distutils_src_compile - - if use emacs; then - cd "${S}"/contrib - elisp-compile mercurial.el || die "elisp-compile failed!" - fi - - rm -rf contrib/{win32,macosx} -} - -src_install() { - distutils_src_install - - newbashcomp contrib/bash_completion ${PN} || die - - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - newins contrib/zsh_completion _hg - fi - - rm -f doc/*.?.txt - dodoc CONTRIBUTORS PKG-INFO README doc/*.txt - cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ - - dobin hgeditor - dobin contrib/hgk - dobin contrib/hg-ssh - - rm -f contrib/hgk contrib/hg-ssh - - rm -f contrib/bash_completion - cp -r contrib "${ED}"/usr/share/doc/${PF}/ - doman doc/*.? - - cat > "${T}/80mercurial" <<-EOF -HG="${EPREFIX}/usr/bin/hg" -EOF - doenvd "${T}/80mercurial" - - if use emacs; then - elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!" - elisp-site-file-install "${FILESDIR}"/${SITEFILE} - fi -} - -src_test() { - cd "${S}/tests/" - rm -rf *svn* # Subversion tests fail with 1.5 - rm -f test-archive # Fails due to verbose tar output changes - rm -f test-convert-baz* # GNU Arch baz - rm -f test-convert-cvs* # CVS - rm -f test-convert-darcs* # Darcs - rm -f test-convert-git* # git - rm -f test-convert-mtn* # monotone - rm -f test-convert-tla* # GNU Arch tla - rm -f test-doctest* # doctest always fails with python 2.5.x - if [[ ${EUID} -eq 0 ]]; then - einfo "Removing tests which require user privileges to succeed" - rm -f test-command-template # Test is broken when run as root - rm -f test-convert # Test is broken when run as root - rm -f test-lock-badness # Test is broken when run as root - rm -f test-permissions # Test is broken when run as root - rm -f test-pull-permission # Test is broken when run as root - rm -f test-clone-failure - rm -f test-journal-exists - rm -f test-repair-strip - fi - - testing() { - local testdir="${T}/tests-${PYTHON_ABI}" - rm -rf "${testdir}" - "$(PYTHON)" run-tests.py --tmpdir="${testdir}" - } - python_execute_function testing -} - -pkg_postinst() { - distutils_pkg_postinst - use emacs && elisp-site-regen - - elog "If you want to convert repositories from other tools using convert" - elog "extension please install correct tool:" - elog " dev-vcs/cvs" - elog " dev-vcs/darcs" - elog " dev-vcs/git" - elog " dev-vcs/monotone" - elog " dev-vcs/subversion" -} - -pkg_postrm() { - distutils_pkg_postrm - use emacs && elisp-site-regen -} diff --git a/dev-vcs/mercurial/mercurial-2.1.2.ebuild b/dev-vcs/mercurial/mercurial-2.1.2.ebuild deleted file mode 100644 index 6ad86b5d5621..000000000000 --- a/dev-vcs/mercurial/mercurial-2.1.2.ebuild +++ /dev/null @@ -1,139 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.1.2.ebuild,v 1.1 2012/04/30 08:50:52 nelchael Exp $ - -EAPI=3 -PYTHON_DEPEND="2" -PYTHON_USE_WITH="threads" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" - -inherit bash-completion-r1 elisp-common eutils distutils - -DESCRIPTION="Scalable distributed SCM" -HOMEPAGE="http://mercurial.selenic.com/" -SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="bugzilla emacs gpg test tk zsh-completion" - -RDEPEND="bugzilla? ( dev-python/mysql-python ) - gpg? ( app-crypt/gnupg ) - tk? ( dev-lang/tk ) - zsh-completion? ( app-shells/zsh )" -DEPEND="emacs? ( virtual/emacs ) - test? ( app-arch/unzip - dev-python/pygments )" - -PYTHON_CFLAGS=( - "2.* + -fno-strict-aliasing" - "* - -ftracer -ftree-vectorize" -) - -PYTHON_MODNAME="${PN} hgext" -SITEFILE="70${PN}-gentoo.el" - -src_prepare() { - distutils_src_prepare - - # fix up logic that won't work in Gentoo Prefix (also won't outside in - # certain cases), bug #362891 - sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die -} - -src_compile() { - distutils_src_compile - - if use emacs; then - cd "${S}"/contrib || die - elisp-compile mercurial.el || die "elisp-compile failed!" - fi - - rm -rf contrib/{win32,macosx} || die -} - -src_install() { - distutils_src_install - - newbashcomp contrib/bash_completion ${PN} || die - - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - newins contrib/zsh_completion _hg || die - fi - - rm -f doc/*.?.txt || die - dodoc CONTRIBUTORS PKG-INFO README doc/*.txt || die - cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ || die - - dobin hgeditor || die - dobin contrib/hgk || die - dobin contrib/hg-ssh || die - - rm -f contrib/hgk contrib/hg-ssh || die - - rm -f contrib/bash_completion || die - cp -r contrib "${ED}"/usr/share/doc/${PF}/ || die - doman doc/*.? || die - - cat > "${T}/80mercurial" <<-EOF -HG="${EPREFIX}/usr/bin/hg" -EOF - doenvd "${T}/80mercurial" || die - - if use emacs; then - elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!" - elisp-site-file-install "${FILESDIR}"/${SITEFILE} - fi -} - -src_test() { - cd "${S}/tests/" || die - rm -rf *svn* || die # Subversion tests fail with 1.5 - rm -f test-archive || die # Fails due to verbose tar output changes - rm -f test-convert-baz* || die # GNU Arch baz - rm -f test-convert-cvs* || die # CVS - rm -f test-convert-darcs* || die # Darcs - rm -f test-convert-git* || die # git - rm -f test-convert-mtn* || die # monotone - rm -f test-convert-tla* || die # GNU Arch tla - rm -f test-doctest* || die # doctest always fails with python 2.5.x - if [[ ${EUID} -eq 0 ]]; then - einfo "Removing tests which require user privileges to succeed" - rm -f test-command-template || die # Test is broken when run as root - rm -f test-convert || die # Test is broken when run as root - rm -f test-lock-badness || die # Test is broken when run as root - rm -f test-permissions || die # Test is broken when run as root - rm -f test-pull-permission || die # Test is broken when run as root - rm -f test-clone-failure || die - rm -f test-journal-exists || die - rm -f test-repair-strip || die - fi - - testing() { - local testdir="${T}/tests-${PYTHON_ABI}" - rm -rf "${testdir}" || die - "$(PYTHON)" run-tests.py --tmpdir="${testdir}" - } - python_execute_function testing -} - -pkg_postinst() { - distutils_pkg_postinst - use emacs && elisp-site-regen - - elog "If you want to convert repositories from other tools using convert" - elog "extension please install correct tool:" - elog " dev-vcs/cvs" - elog " dev-vcs/darcs" - elog " dev-vcs/git" - elog " dev-vcs/monotone" - elog " dev-vcs/subversion" -} - -pkg_postrm() { - distutils_pkg_postrm - use emacs && elisp-site-regen -} diff --git a/dev-vcs/mercurial/mercurial-2.2.1.ebuild b/dev-vcs/mercurial/mercurial-2.2.3.ebuild similarity index 98% rename from dev-vcs/mercurial/mercurial-2.2.1.ebuild rename to dev-vcs/mercurial/mercurial-2.2.3.ebuild index b14c8885a5dc..4d3fe756ad7f 100644 --- a/dev-vcs/mercurial/mercurial-2.2.1.ebuild +++ b/dev-vcs/mercurial/mercurial-2.2.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.2.1.ebuild,v 1.1 2012/05/07 16:37:16 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.2.3.ebuild,v 1.1 2012/07/02 08:04:11 djc Exp $ EAPI=3 PYTHON_DEPEND="2" diff --git a/eclass/xfconf.eclass b/eclass/xfconf.eclass index acc7cb1e66b1..ef0c358b926d 100644 --- a/eclass/xfconf.eclass +++ b/eclass/xfconf.eclass @@ -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/xfconf.eclass,v 1.41 2012/05/22 10:57:17 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.42 2012/07/02 08:43:37 ssuominen Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -17,18 +17,18 @@ # @DESCRIPTION: # This should be an array defining arguments for econf -AUTOTOOLS_AUTO_DEPEND="no" +AUTOTOOLS_AUTO_DEPEND=no unset _xfconf_live [[ $PV == *9999* ]] && _xfconf_live=git-2 inherit ${_xfconf_live} autotools base eutils fdo-mime gnome2-utils libtool -EGIT_BOOTSTRAP="autogen.sh" +EGIT_BOOTSTRAP=autogen.sh EGIT_REPO_URI="git://git.xfce.org/xfce/${MY_PN:-${PN}}" _xfconf_deps="" -_xfconf_m4=">=dev-util/xfce4-dev-tools-4.9.1 ${AUTOTOOLS_DEPEND}" +_xfconf_m4=">=dev-util/xfce4-dev-tools-4.10 ${AUTOTOOLS_DEPEND}" [[ -n $_xfconf_live ]] && _xfconf_deps+=" dev-util/gtk-doc ${_xfconf_m4}" [[ -n $EAUTORECONF ]] && _xfconf_deps+=" ${_xfconf_m4}" diff --git a/games-rpg/egoboo/egoboo-2.8.1.ebuild b/games-rpg/egoboo/egoboo-2.8.1.ebuild index ee7db215a110..57b628df3e89 100644 --- a/games-rpg/egoboo/egoboo-2.8.1.ebuild +++ b/games-rpg/egoboo/egoboo-2.8.1.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/egoboo/egoboo-2.8.1.ebuild,v 1.1 2012/04/30 08:35:45 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/egoboo/egoboo-2.8.1.ebuild,v 1.2 2012/07/02 04:48:45 mr_bones_ Exp $ EAPI=2 - inherit eutils games DESCRIPTION="A 3d dungeon crawling adventure in the spirit of NetHack" @@ -15,7 +14,7 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" -RDEPEND="virtual/opengl +DEPEND="virtual/opengl virtual/glu media-libs/libsdl[video] media-libs/sdl-image @@ -23,7 +22,6 @@ RDEPEND="virtual/opengl media-libs/sdl-ttf net-libs/enet:0 dev-games/physfs" -DEPEND="${RDEPEND}" src_prepare() { edos2unix src/game/platform/file_linux.c \ @@ -38,7 +36,7 @@ src_prepare() { } src_compile() { - make -C src/game PROJ_NAME=egoboo-2.x || die "emake failed" + emake -C src/game PROJ_NAME=egoboo-2.x || die "emake failed" } src_install() { diff --git a/games-strategy/uqm/uqm-0.7.0-r1.ebuild b/games-strategy/uqm/uqm-0.7.0-r1.ebuild index 5ff0c2b6de53..82b822112d35 100644 --- a/games-strategy/uqm/uqm-0.7.0-r1.ebuild +++ b/games-strategy/uqm/uqm-0.7.0-r1.ebuild @@ -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/games-strategy/uqm/uqm-0.7.0-r1.ebuild,v 1.1 2012/05/28 02:45:04 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/uqm-0.7.0-r1.ebuild,v 1.2 2012/07/02 08:58:45 jdhore Exp $ EAPI=2 inherit eutils multilib games @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/sc2/${P}-source.tgz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~ppc ~ppc64 x86" IUSE="music opengl remix voice" RDEPEND="media-libs/libvorbis diff --git a/games-util/nforenum/Manifest b/games-util/nforenum/Manifest deleted file mode 100644 index 9f06730752ea..000000000000 --- a/games-util/nforenum/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST nforenum-r2309-source.tar.bz2 127141 RMD160 4f3c1c4be548f1111803a123ad58f9776b055005 SHA1 1130d715f607ec30571829f5e0b8527c65309727 SHA256 06ef92912026743ca9cd2476b08aa8b0a0b30f6a4c419e5453df21b5971beb38 diff --git a/games-util/nforenum/files/nforenum-0_pre2309-build.patch b/games-util/nforenum/files/nforenum-0_pre2309-build.patch deleted file mode 100644 index f01a7f3e0227..000000000000 --- a/games-util/nforenum/files/nforenum-0_pre2309-build.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff --git a/Makefile b/Makefile -index 09e254a..cbe7573 100644 ---- a/Makefile -+++ b/Makefile -@@ -29,12 +29,13 @@ NFORENUM = $(shell [ \( $(ISCYGWIN) -eq 1 \) -o \( $(ISMINGW) -eq 1 \) ] && echo - - # use 386 instructions but optimize for pentium II/III - ifeq ($(ISCYGWIN),1) --CFLAGS = -g -mno-cygwin -O1 -idirafter$(BOOST_INCLUDE) -Wall -Wno-uninitialized $(CFLAGAPP) -+CFLAGS += -mno-cygwin -idirafter$(BOOST_INCLUDE) -Wall -Wno-uninitialized -+CXXFLAGS += -mno-cygwin -idirafter$(BOOST_INCLUDE) -Wall -Wno-uninitialized - else --CFLAGS = -g -O1 -idirafter$(BOOST_INCLUDE) -Wall -Wno-uninitialized $(CFLAGAPP) -+CFLAGS += -idirafter$(BOOST_INCLUDE) -Wall -Wno-uninitialized -+CXXFLAGS += -idirafter$(BOOST_INCLUDE) -Wall -Wno-uninitialized - endif - --CXXFLAGS = $(CFLAGS) - - -include ${MAKEFILELOCAL} - -@@ -120,7 +121,7 @@ BOOST_WARN = echo Warning: NO_BOOST is no longer obeyed. - endif - - # targets --all: $(NFORENUM) -+all: version.h $(NFORENUM) - remake: clean all - - ${MAKEFILELOCAL}: -@@ -130,7 +131,7 @@ ${MAKEFILELOCAL}: - - $(NFORENUM): $(NFORENUMSRC:%.cpp=%.o) - $(_E) [LD] $@ -- $(_C)$(CXX) -o $@ $(CFLAGS) $^ $(LDOPT) -+ $(_C)$(CXX) -o $@ $(CXXFLAGS) $^ $(LDOPT) - - - clean: -@@ -141,9 +142,7 @@ release: FORCE - $(_E)[REBUILD] $(NFORENUM) - $(_C)rm -f $(NFORENUM) - $(_C)$(MAKE) $(_S) -- $(_E) [STRIP/UPX] $(NFORENUM) - $(_C)$(STRIP) $(NFORENUM) -- $(_C)upx $(_Q) --best $(NFORENUM) - - FORCE: - @$(BOOST_WARN) -@@ -175,7 +174,8 @@ version.h: FORCE - - %.o.d: - $(_E) [CPP DEP] $@ -- $(_C)$(CC) $(CFLAGS) -DMAKEDEP -MM -MG $*.c* -MF $@ -+ $(_C)$(CC) $(CFLAGS) -DMAKEDEP -MM -MG getopt.c -MF $@ -+ $(_C)$(CXX) $(CXXFLAGS) -DMAKEDEP -MM -MG $*.cpp -MF $@ - - ifndef NO_MAKEFILE_DEP - -include $(NFORENUMSRC:.cpp=.o.d) diff --git a/games-util/nforenum/files/nforenum-0_pre2309-string.patch b/games-util/nforenum/files/nforenum-0_pre2309-string.patch deleted file mode 100644 index a22a324ae7db..000000000000 --- a/games-util/nforenum/files/nforenum-0_pre2309-string.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- nforenum-r2309/data.cpp~ 2010-03-07 02:28:26.000000000 +0000 -+++ nforenum-r2309/data.cpp 2010-06-08 21:00:33.000000000 +0100 -@@ -648,7 +648,7 @@ - if(dir=="")return false; - struct stat Stat; - if(dir[dir.length()-1]=='\\'||dir[dir.length()-1]=='/') -- dir[dir.length()-1]='\0'; -+ dir.resize(dir.length()-1); - if(stat((dir+"/.renum").c_str(),&Stat))return false; - else if(Stat.st_mode&S_IFREG)return false; - return true; diff --git a/games-util/nforenum/nforenum-0_pre2309.ebuild b/games-util/nforenum/nforenum-0_pre2309.ebuild deleted file mode 100644 index 68904439eee3..000000000000 --- a/games-util/nforenum/nforenum-0_pre2309.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nforenum/nforenum-0_pre2309.ebuild,v 1.7 2010/10/15 13:47:46 maekke Exp $ - -EAPI=2 -inherit eutils toolchain-funcs - -MY_PV=${PV/0_pre/r} -DESCRIPTION="A tool checking NFO code for errors" -HOMEPAGE="http://binaries.openttd.org/extra/nforenum/" -SRC_URI="http://binaries.openttd.org/extra/nforenum/${MY_PV}/${PN}-${MY_PV}-source.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="" - -S=${WORKDIR}/${PN}-${MY_PV} - -DEPEND="dev-libs/boost - dev-lang/perl" -RDEPEND="" - -src_prepare() { - cat > Makefile.local <<-__EOF__ - CC = $(tc-getCC) - CXX = $(tc-getCXX) - CFLAGS = ${CFLAGS} - CXXFLAGS = ${CXXFLAGS} - LDOPT = ${LDFLAGS} - STRIP = : - V = 1 - __EOF__ - - epatch \ - "${FILESDIR}"/${P}-build.patch \ - "${FILESDIR}"/${P}-string.patch -} - -src_install() { - dobin renum || die - dodoc doc/*.en.txt || die -} diff --git a/licenses/hashcat b/licenses/hashcat new file mode 100644 index 000000000000..6a8a5993f357 --- /dev/null +++ b/licenses/hashcat @@ -0,0 +1,31 @@ +Purpose + +Software has been created for scientific, analyzation, demonstration and +sportive reasons. It is a dual-use tool under federal german law in the +meaning of the Convention on Cybercrime, Budapest, 23.XI.2001. Usage +restricted to legal use. + +License agreement + +1. All copyrights to this program are exclusively owned by the author -- +atom + +2. You may only use this software for legal purposes. + +3. THIS PROGRAM IS DISTRIBUTED "AS IS". NO WARRANTY OF ANY KIND IS +EXPRESSED OR IMPLIED. YOU USE THIS SOFTWARE AT YOUR OWN RISK. THE AUTHOR +WILL NOT BE LIABLE FOR DATA LOSS, DAMAGES, LOSS OF PROFITS OR ANY OTHER +KIND OF LOSS WHILE USING OR MISUSING THIS SOFTWARE. + +4. If your countries law(s) do not allow restrictions as in (3.) you +need to get an additional, written and individual license by the +copyright holder to use this software. Unless you have such a +license, you are not allowed to use the software. + +5. You may not rent, lease, sell, modify, decompile, disassemble, or reverse +engineer this program or any subset of this program. Any such unauthorized +use shall result in immediate and automatic termination of this license and +may result in criminal and/or civil prosecution. + +6. Redistribution of the original package, in whole or in part, or a modified +version as needed for distribution packaging is permitted without restrictions. diff --git a/mail-client/clawsker/clawsker-0.7.7.ebuild b/mail-client/clawsker/clawsker-0.7.7.ebuild index f967ff21172b..f065564d1983 100644 --- a/mail-client/clawsker/clawsker-0.7.7.ebuild +++ b/mail-client/clawsker/clawsker-0.7.7.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/clawsker/clawsker-0.7.7.ebuild,v 1.1 2012/05/20 10:00:59 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/clawsker/clawsker-0.7.7.ebuild,v 1.2 2012/07/02 07:59:08 jdhore Exp $ DESCRIPTION="Applet to edit Claws Mail's hidden preferences." HOMEPAGE="http://www.claws-mail.org/clawsker/" SRC_URI="http://www.claws-mail.org/tools/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 x86" IUSE="" RDEPEND=">=dev-lang/perl-5.8.0 diff --git a/media-libs/libmp4v2/libmp4v2-1.9.1-r1.ebuild b/media-libs/libmp4v2/libmp4v2-1.9.1-r1.ebuild index 55eefc369404..05c173ff6f18 100644 --- a/media-libs/libmp4v2/libmp4v2-1.9.1-r1.ebuild +++ b/media-libs/libmp4v2/libmp4v2-1.9.1-r1.ebuild @@ -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/media-libs/libmp4v2/libmp4v2-1.9.1-r1.ebuild,v 1.3 2012/06/21 15:43:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.9.1-r1.ebuild,v 1.4 2012/07/02 07:58:18 jdhore Exp $ # this ebuild is only for the libmp4v2.so.1 SONAME for ABI compat @@ -13,7 +13,7 @@ SRC_URI="http://mp4v2.googlecode.com/files/${P/lib}.tar.bz2" LICENSE="MPL-1.1" SLOT="1" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" RESTRICT="test" diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0.ebuild b/media-libs/libmp4v2/libmp4v2-2.0.0.ebuild index 60a15609a59f..f1254aa3ecb0 100644 --- a/media-libs/libmp4v2/libmp4v2-2.0.0.ebuild +++ b/media-libs/libmp4v2/libmp4v2-2.0.0.ebuild @@ -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/media-libs/libmp4v2/libmp4v2-2.0.0.ebuild,v 1.3 2012/06/29 15:22:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-2.0.0.ebuild,v 1.4 2012/07/02 07:58:18 jdhore Exp $ EAPI=4 inherit libtool @@ -13,7 +13,7 @@ SRC_URI="http://mp4v2.googlecode.com/files/${MY_P}.tar.bz2" LICENSE="MPL-1.1" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="static-libs test utils" RDEPEND="" diff --git a/media-radio/fldigi/Manifest b/media-radio/fldigi/Manifest index c981afbbab4a..360a114a31fe 100644 --- a/media-radio/fldigi/Manifest +++ b/media-radio/fldigi/Manifest @@ -1,2 +1,3 @@ DIST fldigi-3.21.42.tar.gz 1665053 RMD160 ff876707ef341df9984fccfc265a1cf97ae61e3a SHA1 c41c0f5da70eb983a7654e85f80c6071bcc0ab0b SHA256 864ffdab48e352116347fef80bd34e6b1c55ac35b83b9770767da3827e7d639e DIST fldigi-3.21.45.tar.gz 1784944 RMD160 1e23d06d0eed5e1c86f7736d9a75a2c77935743e SHA1 f953417ce98c5ac4947521ff10126c85f9633f5d SHA256 380030010311feb9873e57e3545ffd3b44896e461b4ca68c9d737923fb5d2956 +DIST fldigi-3.21.48.tar.gz 1786232 RMD160 dc9d60235a9f76593f4b2a521fd66fdae64a97a9 SHA1 2a5f1fdf53a93fbecea109c21ad03b10a4bb9a75 SHA256 f66a97c4d7024c503aa908d99f563d175d9a2553d7dfbf79d36653df5c83b5ba diff --git a/media-radio/fldigi/fldigi-3.21.48.ebuild b/media-radio/fldigi/fldigi-3.21.48.ebuild new file mode 100644 index 000000000000..91769659e1ff --- /dev/null +++ b/media-radio/fldigi/fldigi-3.21.48.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/fldigi/fldigi-3.21.48.ebuild,v 1.1 2012/07/02 05:04:49 tomjbe Exp $ + +EAPI=4 + +DESCRIPTION="Sound card based multimode software modem for Amateur Radio use" +HOMEPAGE="http://www.w1hkj.com/Fldigi.html" +SRC_URI="http://www.w1hkj.com/downloads/fldigi/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="hamlib nls portaudio pulseaudio sndfile xmlrpc" + +RDEPEND="x11-libs/fltk:1[threads,xft] + media-libs/libsamplerate + media-libs/libpng + x11-misc/xdg-utils + hamlib? ( media-libs/hamlib ) + portaudio? ( >=media-libs/portaudio-19_pre20071207 ) + pulseaudio? ( media-sound/pulseaudio ) + sndfile? ( >=media-libs/libsndfile-1.0.10 ) + xmlrpc? ( || ( >=dev-libs/xmlrpc-c-1.18.02[abyss] =dev-libs/glib-2.26.0:2 - dev-libs/libxml2:2 +COMMON_DEPEND=">=dev-libs/glib-2.28.0:2 + >=dev-libs/libxml2-2.7.8:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 @@ -41,6 +41,7 @@ COMMON_DEPEND=">=dev-libs/glib-2.26.0:2 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 + dev-libs/json-glib clutter? ( >=media-libs/clutter-1.2:1.0 @@ -53,11 +54,11 @@ COMMON_DEPEND=">=dev-libs/glib-2.26.0:2 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) - lastfm? ( dev-libs/json-glib ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( - media-libs/musicbrainz:3 + || ( >=media-libs/musicbrainz-4.0.0:4 + >=media-libs/musicbrainz-3.0.2:3 ) gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( @@ -125,7 +126,6 @@ pkg_setup() { --without-hal $(use_enable clutter visualizer) $(use_enable daap) - $(use_enable lastfm) $(use_enable libnotify) $(use_enable lirc) $(use_enable musicbrainz) @@ -145,14 +145,6 @@ pkg_setup() { src_prepare() { gnome2_src_prepare - - # Not needed for next release - # https://bugzilla.gnome.org/show_bug.cgi?id=667980 - epatch "${FILESDIR}/${P}-port-im-status-plugin.patch" - epatch "${FILESDIR}/${P}-port-rb-set-rating-py-example.patch" - epatch "${FILESDIR}/${P}-fix-db-dbus-interface.patch" - - # Disable pyc compiling echo > py-compile } diff --git a/media-video/makemkv/Manifest b/media-video/makemkv/Manifest index 9c22e8609b60..e9a8a2f8eced 100644 --- a/media-video/makemkv/Manifest +++ b/media-video/makemkv/Manifest @@ -1,2 +1,4 @@ -DIST makemkv_v1.6.16_bin.tar.gz 5877692 RMD160 9b22f4d4d2aa14d8cefae5070c35fe4955aef2f9 SHA1 fa5e26439a9c0bb238ceb53a84a2900a262dcca0 SHA256 0f0b2df68b7fc294834d7cbeda21d54884caf9e13a9b0190921dae27d7418309 -DIST makemkv_v1.6.16_oss.tar.gz 438026 RMD160 0fca584fe4a574a2a6a420cb88db687a60b0358c SHA1 009e6e21e0f270255f9b1087b70f8c46c95520ed SHA256 2cff47e51f465259704b0840717433f90e938d13fd7e18a01d674174b747f85b +DIST makemkv-bin-1.7.6.tar.gz 6575452 RMD160 89f96ee623ae386e8e383c5039a10a1efe80b7a3 SHA1 d97f7ed448cd4833d31c31a1a7b66875e1e8513e SHA256 b54cbffb53a82948b9e99c83b662f910c72f310135d4063bc751900250a7d5d0 +DIST makemkv-oss-1.7.6.tar.gz 482065 RMD160 62301e0fb27755b7fe16fc85d6cfb5065b5835b0 SHA1 4da0d3faa5b2ad3bba5f552b0540c587259e39c1 SHA256 037e2073dd5391fe14e1edeaaabdead4a659e55307d1dd90a86c7289fd81d1b6 +DIST makemkv_v1.7.4_bin.tar.gz 6691976 RMD160 12bbd1a5e50b843168eb85d7cb81010abdc42831 SHA1 ee6bf1452b75e4d16c4974879437c4781dc327f3 SHA256 0d0c14243fc8936792f0768d0c67682a071f79af489457f6a53826b543ad502a +DIST makemkv_v1.7.4_oss.tar.gz 480897 RMD160 c3d327f8723743c28804c27749581f1536906304 SHA1 d53603799936c1c351d806ec97544e39b3e3365d SHA256 14be0175cce35fae31d2e175db5789b561b1859f125b2cd52af77ba180ec2ba1 diff --git a/media-video/makemkv/files/makemkv-1.7.4-makefile.linux.patch b/media-video/makemkv/files/makemkv-1.7.4-makefile.linux.patch new file mode 100644 index 000000000000..ba213a6cf109 --- /dev/null +++ b/media-video/makemkv/files/makemkv-1.7.4-makefile.linux.patch @@ -0,0 +1,20 @@ +--- makemkv_v1.7.4_oss/makefile.linux.orig ++++ makemkv_v1.7.4_oss/makefile.linux +@@ -8,7 +8,7 @@ + MOC=moc + endif + +-CXXOPTS=-Os -D_GNU_SOURCE -D_linux_ ++CXXOPTS=-D_GNU_SOURCE -D_linux_ + + BUILDINFO_ARCH_NAME=$(shell $(GCC) -dumpmachine) + BUILDINFO_BUILD_DATE=$(shell date) +@@ -38,7 +38,7 @@ + install -D -m 644 makemkvgui/src/img/128/mkv_icon.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/makemkv.png + + out/%: out/%.full +- objcopy --strip-all --strip-debug --strip-unneeded --discard-all $< $@ ++ objcopy --discard-all $< $@ + + out/libdriveio.so.0.full: + mkdir -p out diff --git a/media-video/makemkv/makemkv-1.6.16.ebuild b/media-video/makemkv/makemkv-1.7.4-r1.ebuild similarity index 75% rename from media-video/makemkv/makemkv-1.6.16.ebuild rename to media-video/makemkv/makemkv-1.7.4-r1.ebuild index d63d2b9703d0..68a5419c86f7 100644 --- a/media-video/makemkv/makemkv-1.6.16.ebuild +++ b/media-video/makemkv/makemkv-1.7.4-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/makemkv/makemkv-1.6.16.ebuild,v 1.5 2011/12/03 00:44:41 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/makemkv/makemkv-1.7.4-r1.ebuild,v 1.1 2012/07/02 03:46:19 mattm Exp $ EAPI=3 @@ -18,17 +18,19 @@ SRC_URI="http://www.makemkv.com/download/${MY_P}.tar.gz LICENSE="MakeMKV-EULA" SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa + dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib" RDEPEND="${DEPEND}" QA_PREBUILT="opt/bin/makemkvcon" +DEFAULT_PROFILE="default.mmcp.xml" src_prepare() { epatch "${FILESDIR}/${P}-makefile.linux.patch" @@ -56,12 +58,19 @@ src_install() { make_desktop_entry ${PN} "MakeMKV" ${PN} "Qt;AudioVideo;Video" # install bin package - cd "../${MY_PB}/bin" + cd "${WORKDIR}/${MY_PB}/bin" if use x86; then dobin i386/makemkvcon || die "dobin makemkvcon died" elif use amd64; then dobin amd64/makemkvcon || die "dobin makemkvcon died" fi + + # install license and default profile + cd "${WORKDIR}/${MY_PB}/src" + into /usr + dodoc eula_en_linux.txt + insinto /usr/share/${PF} + doins share/${DEFAULT_PROFILE} } pkg_postinst() { @@ -70,4 +79,11 @@ pkg_postinst() { elog "" elog "See this forum thread for more information, including the key:" elog "http://www.makemkv.com/forum2/viewtopic.php?f=5&t=1053" + elog "" + elog "Note that beta license may have an expiration date and you will" + elog "need to check for newer licenses/releases. " + elog "" + elog "If this is a new install, remember to copy the default profile" + elog "to the config directory:" + elog "cp /usr/share/${PF}/${DEFAULT_PROFILE} ~/.MakeMKV/${DEFAULT_PROFILE}" } diff --git a/media-video/makemkv/makemkv-1.7.6.ebuild b/media-video/makemkv/makemkv-1.7.6.ebuild new file mode 100644 index 000000000000..db83c956d95f --- /dev/null +++ b/media-video/makemkv/makemkv-1.7.6.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/makemkv/makemkv-1.7.6.ebuild,v 1.1 2012/07/02 04:00:20 mattm Exp $ + +EAPI=3 + +RESTRICT="mirror" + +inherit multilib eutils + +MY_P="makemkv-oss-${PV}" +MY_PB="makemkv-bin-${PV}" + +DESCRIPTION="Tool for ripping Blu-Ray, HD-DVD and DVD discs and copying content to a Matroska container" +HOMEPAGE="http://www.makemkv.com/" +SRC_URI="http://www.makemkv.com/download/${MY_P}.tar.gz + http://www.makemkv.com/download/${MY_PB}.tar.gz" + +LICENSE="MakeMKV-EULA" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/qt-gui:4 + dev-libs/openssl:0 + media-libs/mesa + dev-libs/expat + x11-libs/qt-dbus:4 + sys-libs/zlib" +RDEPEND="${DEPEND}" + +QA_PREBUILT="opt/bin/makemkvcon" +DEFAULT_PROFILE="default.mmcp.xml" + +src_prepare() { + epatch "${FILESDIR}/${P}-makefile.linux.patch" + cd "${MY_P}" +} + +src_compile() { + cd "${MY_P}" + emake GCC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" -f makefile.linux || die "make failed" +} + +src_install() { + # install oss package + cd "${MY_P}" + dolib.so out/libdriveio.so.0 || die "dolib.so out/libdriveio.so.0 died" + dolib.so out/libmakemkv.so.1 || die "dolib.so out/libmakemkv.so.1 died" + dosym libdriveio.so.0 /usr/$(get_libdir)/libdriveio.so.0.${PV} || die "dosym libdriveio.so.0 died " + dosym libdriveio.so.0 /usr/$(get_libdir)/libdriveio.so || die "dosym libdriveio.so.0 died " + dosym libmakemkv.so.1 /usr/$(get_libdir)/libmakemkv.so.1.${PV} || die "dosym libmakemkv.so.1 died" + dosym libmakemkv.so.1 /usr/$(get_libdir)/libmakemkv.so || die "dosym libmakemkv.so.1 died" + into /opt + dobin out/makemkv || die "dobin makemkv died" + + newicon makemkvgui/src/img/128/mkv_icon.png ${PN}.png + make_desktop_entry ${PN} "MakeMKV" ${PN} "Qt;AudioVideo;Video" + + # install bin package + cd "${WORKDIR}/${MY_PB}/bin" + if use x86; then + dobin i386/makemkvcon || die "dobin makemkvcon died" + elif use amd64; then + dobin amd64/makemkvcon || die "dobin makemkvcon died" + fi + + # install license and default profile + cd "${WORKDIR}/${MY_PB}/src" + into /usr + dodoc eula_en_linux.txt + insinto /usr/share/${PF} + doins share/${DEFAULT_PROFILE} +} + +pkg_postinst() { + elog "While MakeMKV is in beta mode, upstream has provided a license" + elog "to use if you do not want to purchase one." + elog "" + elog "See this forum thread for more information, including the key:" + elog "http://www.makemkv.com/forum2/viewtopic.php?f=5&t=1053" + elog "" + elog "Note that beta license may have an expiration date and you will" + elog "need to check for newer licenses/releases. " + elog "" + elog "If this is a new install, remember to copy the default profile" + elog "to the config directory:" + elog "cp /usr/share/${PF}/${DEFAULT_PROFILE} ~/.MakeMKV/${DEFAULT_PROFILE}" +} diff --git a/metadata/cache/app-cdr/xfburn-0.4.3-r3 b/metadata/cache/app-cdr/xfburn-0.4.3-r3 index 01f2d4750086..3b5c8ec0ca85 100644 --- a/metadata/cache/app-cdr/xfburn-0.4.3-r3 +++ b/metadata/cache/app-cdr/xfburn-0.4.3-r3 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.22 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.10:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r1[gudev] =sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.22 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.10:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r1[gudev] =sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.22 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.10:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r1[gudev] hashcat-gui-0.5.1.zip + +https://github.com/scandium/hashcat-gui +GPL-3 +A gui for the *hashcat* suite of tools +~amd64 ~x86 +base eutils multilib qt4-r2 toolchain-funcs user + + + + +4 + +compile configure install prepare unpack + + + + + diff --git a/metadata/cache/app-crypt/oclhashcat-lite-bin-0.10 b/metadata/cache/app-crypt/oclhashcat-lite-bin-0.10 new file mode 100644 index 000000000000..5718f1088c49 --- /dev/null +++ b/metadata/cache/app-crypt/oclhashcat-lite-bin-0.10 @@ -0,0 +1,22 @@ +sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) app-arch/p7zip +sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) +0 +http://hashcat.net/files/oclHashcat-lite-0.10.7z +strip +http://hashcat.net/oclhashcat-lite/ +hashcat +An opencl hash cracker +-* ~amd64 ~x86 +eutils multilib pax-utils toolchain-funcs user +video_cards_fglrx video_cards_nvidia + + + +4 + +install + + + + + diff --git a/metadata/cache/app-crypt/oclhashcat-plus-bin-0.081 b/metadata/cache/app-crypt/oclhashcat-plus-bin-0.081 new file mode 100644 index 000000000000..e91b6f4150a8 --- /dev/null +++ b/metadata/cache/app-crypt/oclhashcat-plus-bin-0.081 @@ -0,0 +1,22 @@ +sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) app-arch/p7zip +sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) +0 +amd64? ( http://hashcat.net/files/oclHashcat-plus-0.081-64.7z ) x86? ( http://hashcat.net/files/oclHashcat-plus-0.081-32.7z ) +strip +http://hashcat.net/oclhashcat-plus/ +hashcat +An opencl multihash cracker +-* ~amd64 ~x86 +eutils multilib pax-utils toolchain-funcs user +video_cards_fglrx video_cards_nvidia + + + +4 + +install + + + + + diff --git a/metadata/cache/app-doc/linuxfromscratch-7.1 b/metadata/cache/app-doc/linuxfromscratch-7.1 new file mode 100644 index 000000000000..9dad51b037c2 --- /dev/null +++ b/metadata/cache/app-doc/linuxfromscratch-7.1 @@ -0,0 +1,22 @@ + + +0 +http://www.linuxfromscratch.org/lfs/downloads/7.1/LFS-BOOK-7.1.tar.bz2 http://www.linuxfromscratch.org/lfs/downloads/7.1/lfs-bootscripts-20120229.tar.bz2 http://www.linuxfromscratch.org/lfs/downloads/7.1/udev-config-20100128.tar.bz2 htmlsingle? ( http://www.linuxfromscratch.org/lfs/downloads/7.1/LFS-BOOK-7.1-NOCHUNKS.html.bz2 ) pdf? ( http://www.linuxfromscratch.org/lfs/downloads/7.1/LFS-BOOK-7.1.pdf ) + +http://www.linuxfromscratch.org/lfs +CCPL-Attribution-ShareAlike-NonCommercial-2.5 MIT +LFS documents building a Linux system entirely from source. +~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 + +htmlsingle pdf + + + +4 + +install unpack + + + + + diff --git a/metadata/cache/app-editors/wxhexeditor-0.09 b/metadata/cache/app-editors/wxhexeditor-0.09 deleted file mode 100644 index 11e2b1862683..000000000000 --- a/metadata/cache/app-editors/wxhexeditor-0.09 +++ /dev/null @@ -1,22 +0,0 @@ -x11-libs/wxGTK:2.8[X] -x11-libs/wxGTK:2.8[X] -0 -mirror://sourceforge/wxhexeditor/wxHexEditor-v0.09-src.tar.bz2 - -http://wxhexeditor.sourceforge.net/ -GPL-2 -A cross-platform hex editor designed specially for large files. -~amd64 ~x86 -eutils multilib toolchain-funcs user wxwidgets - - - - -3 - -install prepare - - - - - diff --git a/metadata/cache/app-editors/wxhexeditor-0.20 b/metadata/cache/app-editors/wxhexeditor-0.20 new file mode 100644 index 000000000000..3bbbadf78a4d --- /dev/null +++ b/metadata/cache/app-editors/wxhexeditor-0.20 @@ -0,0 +1,22 @@ +app-crypt/mhash dev-libs/udis86 x11-libs/wxGTK:2.8[X] +app-crypt/mhash dev-libs/udis86 x11-libs/wxGTK:2.8[X] +0 +mirror://sourceforge/wxhexeditor/wxHexEditor-v0.20-src.tar.bz2 + +http://wxhexeditor.sourceforge.net/ +GPL-2 +A cross-platform hex editor designed specially for large files. +~amd64 ~x86 +eutils multilib toolchain-funcs user wxwidgets + + + + +4 + +prepare pretend + + + + + diff --git a/metadata/cache/app-portage/euses-2.5.8 b/metadata/cache/app-portage/euses-2.5.8 new file mode 100644 index 000000000000..56d42e6f2200 --- /dev/null +++ b/metadata/cache/app-portage/euses-2.5.8 @@ -0,0 +1,22 @@ + + +0 +http://www.xs4all.nl/~rooversj/gentoo/euses-2.5.8.tar.bz2 + +http://www.xs4all.nl/~rooversj/gentoo +GPL-2 +look up USE flag descriptions fast +~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~x86-fbsd + + + + + +4 + +install + + + + + diff --git a/metadata/cache/app-text/tree-1.6.0-r1 b/metadata/cache/app-text/tree-1.6.0-r1 index 6df78fafc3a0..56e621203870 100644 --- a/metadata/cache/app-text/tree-1.6.0-r1 +++ b/metadata/cache/app-text/tree-1.6.0-r1 @@ -6,7 +6,7 @@ ftp://mama.indstate.edu/linux/tree/tree-1.6.0.tgz http://mama.indstate.edu/users/ice/tree/ GPL-2 Lists directories recursively, and produces an indented listing of files. -~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 bash-completion-r1 eutils flag-o-matic multilib toolchain-funcs user diff --git a/metadata/cache/dev-java/xmlc-2.3.1-r1 b/metadata/cache/dev-java/xmlc-2.3.1-r1 index 23e99ccf3867..ee5d4f5aa622 100644 --- a/metadata/cache/dev-java/xmlc-2.3.1-r1 +++ b/metadata/cache/dev-java/xmlc-2.3.1-r1 @@ -6,7 +6,7 @@ http://download.forge.objectweb.org/xmlc/xmlc-src-2.3.1.zip http://download.us.f http://xmlc.objectweb.org/ LGPL-2.1 Open Source Java/XML Presentation Compiler -~amd64 ~ppc ~x86 +~amd64 ~ppc x86 eutils java-ant-2 java-pkg-2 java-utils-2 multilib toolchain-funcs user versionator elibc_FreeBSD doc elibc_FreeBSD diff --git a/metadata/cache/dev-libs/libbsd-0.3.0-r1 b/metadata/cache/dev-libs/libbsd-0.3.0-r1 deleted file mode 100644 index abbf1c1cbbb0..000000000000 --- a/metadata/cache/dev-libs/libbsd-0.3.0-r1 +++ /dev/null @@ -1,22 +0,0 @@ - - -0 -http://libbsd.freedesktop.org/releases/libbsd-0.3.0.tar.gz - -http://libbsd.freedesktop.org/wiki/ -BSD BSD-2 BSD-4 ISC -A BSD compatibility library -amd64 x86 -multilib toolchain-funcs -static-libs - - - -4 - -compile install prepare setup - - - - - diff --git a/metadata/cache/dev-libs/libbsd-0.4.0 b/metadata/cache/dev-libs/libbsd-0.4.0 deleted file mode 100644 index 1a5fb44733d2..000000000000 --- a/metadata/cache/dev-libs/libbsd-0.4.0 +++ /dev/null @@ -1,22 +0,0 @@ - - -0 -http://libbsd.freedesktop.org/releases/libbsd-0.4.0.tar.gz - -http://libbsd.freedesktop.org/wiki/ -BSD BSD-2 BSD-4 ISC -An library to provide useful functions commonly found on BSD systems -~amd64 ~x86 -multilib toolchain-funcs -static-libs - - - -4 - -configure install prepare setup - - - - - diff --git a/metadata/cache/dev-libs/libbsd-0.4.1 b/metadata/cache/dev-libs/libbsd-0.4.1 deleted file mode 100644 index 8375c9dfa635..000000000000 --- a/metadata/cache/dev-libs/libbsd-0.4.1 +++ /dev/null @@ -1,22 +0,0 @@ - - -0 -http://libbsd.freedesktop.org/releases/libbsd-0.4.1.tar.gz - -http://libbsd.freedesktop.org/wiki/ -BSD BSD-2 BSD-4 ISC -An library to provide useful functions commonly found on BSD systems -~amd64 ~x86 -multilib toolchain-funcs -static-libs - - - -4 - -configure install prepare setup - - - - - diff --git a/metadata/cache/dev-libs/libbsd-0.4.2 b/metadata/cache/dev-libs/libbsd-0.4.2 index 3505b0487792..4003328c570d 100644 --- a/metadata/cache/dev-libs/libbsd-0.4.2 +++ b/metadata/cache/dev-libs/libbsd-0.4.2 @@ -6,7 +6,7 @@ http://libbsd.freedesktop.org/releases/libbsd-0.4.2.tar.gz http://libbsd.freedesktop.org/wiki/ BSD BSD-2 BSD-4 ISC An library to provide useful functions commonly found on BSD systems -amd64 ~x86 +amd64 x86 eutils multilib toolchain-funcs user static-libs diff --git a/metadata/cache/dev-libs/libmodbus-3.0.1 b/metadata/cache/dev-libs/libmodbus-3.1.0 similarity index 63% rename from metadata/cache/dev-libs/libmodbus-3.0.1 rename to metadata/cache/dev-libs/libmodbus-3.1.0 index c0f3b03c1079..5e5a36de1417 100644 --- a/metadata/cache/dev-libs/libmodbus-3.0.1 +++ b/metadata/cache/dev-libs/libmodbus-3.1.0 @@ -1,7 +1,7 @@ 0 -http://github.com/downloads/stephane/libmodbus/libmodbus-3.0.1.tar.gz +http://github.com/downloads/stephane/libmodbus/libmodbus-3.1.0.tar.gz http://www.libmodbus.org/ LGPL-3 @@ -12,9 +12,9 @@ static-libs -2 +4 -configure install prepare +configure install diff --git a/metadata/cache/dev-php/PEAR-HTML_CSS-1.5.4 b/metadata/cache/dev-php/PEAR-HTML_CSS-1.5.4 index 67ad21d28e15..40fddb06597e 100644 --- a/metadata/cache/dev-php/PEAR-HTML_CSS-1.5.4 +++ b/metadata/cache/dev-php/PEAR-HTML_CSS-1.5.4 @@ -1,5 +1,5 @@ -=dev-lang/php-5* dev-lang/php >=dev-php/pear-1.8.1 ->=dev-php/PEAR-HTML_Common-1.2.4 !minimal? ( >=dev-php/PEAR-Services_W3C_CSSValidator-0.1.0 >=dev-php/phpunit-3.2.0 ) =dev-lang/php-5* dev-lang/php >=dev-php/pear-1.8.1 +dev-lang/php >=dev-php/pear-1.8.1 +>=dev-php/PEAR-HTML_Common-1.2.4 !minimal? ( >=dev-php/PEAR-Services_W3C_CSSValidator-0.1.0 >=dev-php/phpunit-3.2.0 ) dev-lang/php >=dev-php/pear-1.8.1 0 http://pear.php.net/get/HTML_CSS-1.5.4.tgz @@ -7,7 +7,7 @@ http://pear.php.net/HTML_CSS BSD Provides a simple interface for generating a stylesheet declaration. ~amd64 ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user +multilib php-pear-r1 toolchain-funcs minimal diff --git a/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.0 b/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.0 deleted file mode 100644 index 560726b8a5aa..000000000000 --- a/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.0 +++ /dev/null @@ -1,22 +0,0 @@ -dev-lang/php >=dev-php/pear-1.8.1 -dev-lang/php >=dev-php/pear-1.8.1 -0 -http://pear.php.net/get/Net_LDAP-1.1.0.tgz - -http://pear.php.net/Net_LDAP -LGPL-2.1 -OO interface for searching and manipulating LDAP-entries -~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user - - - - - - -install setup - - - - - diff --git a/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.1 b/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.1 deleted file mode 100644 index 82289a2b4463..000000000000 --- a/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.1 +++ /dev/null @@ -1,22 +0,0 @@ -dev-lang/php >=dev-php/pear-1.8.1 -dev-lang/php >=dev-php/pear-1.8.1 -0 -http://pear.php.net/get/Net_LDAP-1.1.1.tgz - -http://pear.php.net/Net_LDAP -LGPL-2.1 -OO interface for searching and manipulating LDAP-entries -~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user - - - - - - -install setup - - - - - diff --git a/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.5 b/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.5 index 947418427e59..80baefeb962a 100644 --- a/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.5 +++ b/metadata/cache/dev-php/PEAR-Net_LDAP-1.1.5 @@ -1,5 +1,5 @@ dev-lang/php >=dev-php/pear-1.8.1 -dev-lang/php >=dev-php/pear-1.8.1 +dev-lang/php[ldap] dev-lang/php >=dev-php/pear-1.8.1 0 http://pear.php.net/get/Net_LDAP-1.1.5.tgz @@ -7,14 +7,14 @@ http://pear.php.net/Net_LDAP LGPL-2.1 OO interface for searching and manipulating LDAP-entries ~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user - +multilib php-pear-r1 toolchain-funcs +4 -install setup +install diff --git a/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 b/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 index bb51e6ebbcd8..f577b8f31212 100644 --- a/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 +++ b/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 @@ -1,5 +1,5 @@ dev-lang/php >=dev-php/pear-1.8.1 -!minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 +dev-lang/php[xml,simplexml] !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 0 http://pear.php.net/get/PEAR_PackageFileManager-1.6.3.tgz @@ -7,14 +7,14 @@ http://pear.php.net/PEAR_PackageFileManager PHP-3.01 Takes an existing package.xml file and updates it with a new filelist and changelog. ~amd64 ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user +multilib php-pear-r1 toolchain-funcs minimal +4 - -install setup +install diff --git a/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 b/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 index 2b1e14960ed1..e79b532cc3c0 100644 --- a/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 +++ b/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 @@ -1,5 +1,5 @@ >=dev-php/pear-1.8.1 dev-lang/php >=dev-php/pear-1.8.1 -!minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 +dev-lang/php[xml,simplexml] !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 0 http://pear.php.net/get/PEAR_PackageFileManager-1.7.0.tgz @@ -7,14 +7,14 @@ http://pear.php.net/PEAR_PackageFileManager PHP-3.01 Takes an existing package.xml file and updates it with a new filelist and changelog. ~amd64 ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user +multilib php-pear-r1 toolchain-funcs minimal +4 - -install setup +install diff --git a/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 b/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 index c866f051f58a..10919a59f45b 100644 --- a/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 +++ b/metadata/cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 @@ -7,7 +7,7 @@ http://pear.php.net/PEAR_PackageFileManager_Cli LGPL-2.1 A command line interface to PEAR_PackageFileManager. ~amd64 ~x86 -depend.php eutils multilib php-pear-r1 phpconfutils toolchain-funcs user +multilib php-pear-r1 toolchain-funcs diff --git a/metadata/cache/dev-python/Djblets-0.6.13 b/metadata/cache/dev-python/Djblets-0.6.19 similarity index 96% rename from metadata/cache/dev-python/Djblets-0.6.13 rename to metadata/cache/dev-python/Djblets-0.6.19 index c0bfb4852d4b..65bdd0ae1886 100644 --- a/metadata/cache/dev-python/Djblets-0.6.13 +++ b/metadata/cache/dev-python/Djblets-0.6.19 @@ -1,7 +1,7 @@ =dev-lang/python-2* dev-python/django dev-python/imaging =dev-lang/python-2* 0 -http://downloads.reviewboard.org/releases/Djblets/0.6/Djblets-0.6.13.tar.gz +http://downloads.reviewboard.org/releases/Djblets/0.6/Djblets-0.6.19.tar.gz http://github.com/djblets MIT diff --git a/metadata/cache/dev-python/pyside-tools-0.2.14 b/metadata/cache/dev-python/pyside-tools-0.2.14 index 64be5af13dff..87e02322f32d 100644 --- a/metadata/cache/dev-python/pyside-tools-0.2.14 +++ b/metadata/cache/dev-python/pyside-tools-0.2.14 @@ -6,7 +6,7 @@ http://www.pyside.org/files/pyside-tools-0.2.14.tar.bz2 http://www.pyside.org/ BSD GPL-2 PySide development tools (lupdate, rcc, uic) -~amd64 ~x86 +~amd64 x86 base cmake-utils eutils flag-o-matic multilib python toolchain-funcs user virtualx test test diff --git a/metadata/cache/dev-ruby/ruby-activeldap-3.1.1-r1 b/metadata/cache/dev-ruby/ruby-activeldap-3.1.1-r1 new file mode 100644 index 000000000000..543d974473cd --- /dev/null +++ b/metadata/cache/dev-ruby/ruby-activeldap-3.1.1-r1 @@ -0,0 +1,22 @@ +ruby_targets_ruby18? ( dev-ruby/hoe[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/hoe[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby18] dev-ruby/locale[ruby_targets_ruby18] dev-ruby/fast_gettext[ruby_targets_ruby18] dev-ruby/gettext_i18n_rails[ruby_targets_ruby18] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby18] dev-ruby/ruby-net-ldap[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby19] dev-ruby/locale[ruby_targets_ruby19] dev-ruby/fast_gettext[ruby_targets_ruby19] dev-ruby/gettext_i18n_rails[ruby_targets_ruby19] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby19] dev-ruby/ruby-net-ldap[ruby_targets_ruby19] ) ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) +ruby_targets_ruby18? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby18] dev-ruby/locale[ruby_targets_ruby18] dev-ruby/fast_gettext[ruby_targets_ruby18] dev-ruby/gettext_i18n_rails[ruby_targets_ruby18] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby18] dev-ruby/ruby-net-ldap[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby19] dev-ruby/locale[ruby_targets_ruby19] dev-ruby/fast_gettext[ruby_targets_ruby19] dev-ruby/gettext_i18n_rails[ruby_targets_ruby19] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby19] dev-ruby/ruby-net-ldap[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) +3 +mirror://rubygems/activeldap-3.1.1.gem +test +https://github.com/activeldap/activeldap +GPL-2 +Ruby/ActiveLDAP provides an activerecord inspired object oriented interface to LDAP +~amd64 +eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator +test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 test test +|| ( ruby_targets_ruby18 ruby_targets_ruby19 ) + + +4 + +compile configure install prepare setup test unpack + + + + + diff --git a/metadata/cache/dev-ruby/webrat-0.7.1 b/metadata/cache/dev-ruby/webrat-0.7.1 deleted file mode 100644 index 465d40339204..000000000000 --- a/metadata/cache/dev-ruby/webrat-0.7.1 +++ /dev/null @@ -1,22 +0,0 @@ -test? ( ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:0[ruby_targets_ruby18] dev-ruby/rack-test[ruby_targets_ruby18] dev-ruby/sinatra[ruby_targets_ruby18] dev-ruby/mechanize[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ) -ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) -0 -mirror://rubygems/webrat-0.7.1.gem - -http://github.com/brynary/webrat/ -MIT -Ruby acceptance testing for web applications -~amd64 ~x86 ~x86-macos -eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator -test elibc_FreeBSD ruby_targets_ruby18 test test - - - -2 - -compile configure install prepare setup test unpack - - - - - diff --git a/metadata/cache/dev-ruby/webrat-0.7.3 b/metadata/cache/dev-ruby/webrat-0.7.3 index c963accefc1c..259c0ff3b8dc 100644 --- a/metadata/cache/dev-ruby/webrat-0.7.3 +++ b/metadata/cache/dev-ruby/webrat-0.7.3 @@ -1,4 +1,4 @@ -test? ( ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.3[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:0[ruby_targets_ruby18] dev-ruby/merb-core[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ) +test? ( ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.3[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:0[ruby_targets_ruby18] dev-ruby/merb-core[ruby_targets_ruby18] dev-ruby/mechanize[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.3[ruby_targets_ruby18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) 0 mirror://rubygems/webrat-0.7.3.gem diff --git a/metadata/cache/dev-util/xfce4-dev-tools-4.10.0 b/metadata/cache/dev-util/xfce4-dev-tools-4.10.0 index c0beb2396b1c..c41d610a659a 100644 --- a/metadata/cache/dev-util/xfce4-dev-tools-4.10.0 +++ b/metadata/cache/dev-util/xfce4-dev-tools-4.10.0 @@ -6,7 +6,7 @@ mirror://xfce/src/xfce/xfce4-dev-tools/4.10/xfce4-dev-tools-4.10.0.tar.bz2 http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/ GPL-2 A set of scripts and m4/autoconf macros that ease build system maintenance -~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris +alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris autotools base eutils fdo-mime gnome2-utils libtool multilib multiprocessing toolchain-funcs user xfconf diff --git a/metadata/cache/dev-util/xfce4-dev-tools-4.9.1 b/metadata/cache/dev-util/xfce4-dev-tools-4.9.1 deleted file mode 100644 index 97ef5c78cf74..000000000000 --- a/metadata/cache/dev-util/xfce4-dev-tools-4.9.1 +++ /dev/null @@ -1,22 +0,0 @@ ->=dev-libs/glib-2.18:2 virtual/pkgconfig >=sys-apps/sed-4 ->=dev-libs/glib-2.18:2 -0 -mirror://xfce/src/xfce/xfce4-dev-tools/4.9/xfce4-dev-tools-4.9.1.tar.bz2 - -http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/ -GPL-2 -A set of scripts and m4/autoconf macros that ease build system maintenance -alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris -autotools base eutils fdo-mime gnome2-utils libtool multilib multiprocessing toolchain-funcs user xfconf - - - - -4 - -compile configure install postinst postrm preinst prepare setup unpack - - - - - diff --git a/metadata/cache/dev-util/xfce4-dev-tools-4.9.2 b/metadata/cache/dev-util/xfce4-dev-tools-4.9.2 deleted file mode 100644 index 006a1929a449..000000000000 --- a/metadata/cache/dev-util/xfce4-dev-tools-4.9.2 +++ /dev/null @@ -1,22 +0,0 @@ ->=dev-libs/glib-2.18 virtual/pkgconfig >=sys-apps/sed-4 ->=dev-libs/glib-2.18 -0 -mirror://xfce/src/xfce/xfce4-dev-tools/4.9/xfce4-dev-tools-4.9.2.tar.bz2 - -http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/ -GPL-2 -A set of scripts and m4/autoconf macros that ease build system maintenance -~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris -autotools base eutils fdo-mime gnome2-utils libtool multilib multiprocessing toolchain-funcs user xfconf - - - - -4 - -compile configure install postinst postrm preinst prepare setup unpack - - - - - diff --git a/metadata/cache/dev-vcs/git-1.7.8.6 b/metadata/cache/dev-vcs/git-1.7.8.6 index 166e79f82623..0de2fd48885b 100644 --- a/metadata/cache/dev-vcs/git-1.7.8.6 +++ b/metadata/cache/dev-vcs/git-1.7.8.6 @@ -6,7 +6,7 @@ http://git-core.googlecode.com/files/git-1.7.8.6.tar.gz mirror://kernel/software http://www.git-scm.com/ GPL-2 GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team -~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris base bash-completion-r1 elisp-common eutils multilib multiprocessing perl-module python toolchain-funcs user +blksha1 +curl cgi doc emacs gtk +iconv +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion cgi? ( perl ) cvs? ( perl ) subversion? ( perl ) webdav? ( curl ) diff --git a/metadata/cache/dev-vcs/mercurial-2.0 b/metadata/cache/dev-vcs/mercurial-2.0 deleted file mode 100644 index cf76611dfae6..000000000000 --- a/metadata/cache/dev-vcs/mercurial-2.0 +++ /dev/null @@ -1,22 +0,0 @@ -emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) =dev-lang/python-2* =dev-lang/python-2*[threads] -bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) =dev-lang/python-2* =dev-lang/python-2*[threads] -0 -http://mercurial.selenic.com/release/mercurial-2.0.tar.gz - -http://mercurial.selenic.com/ -GPL-2 -Scalable distributed SCM -alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -bash-completion-r1 distutils elisp-common eutils multilib python toolchain-funcs user -bugzilla emacs gpg test tk zsh-completion - - - -3 - -compile install postinst postrm prepare setup test - - - - - diff --git a/metadata/cache/dev-vcs/mercurial-2.2.1 b/metadata/cache/dev-vcs/mercurial-2.2.1 deleted file mode 100644 index 6fb2016e57b1..000000000000 --- a/metadata/cache/dev-vcs/mercurial-2.2.1 +++ /dev/null @@ -1,22 +0,0 @@ -emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) =dev-lang/python-2* =dev-lang/python-2*[threads] -bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) =dev-lang/python-2* =dev-lang/python-2*[threads] -0 -http://mercurial.selenic.com/release/mercurial-2.2.1.tar.gz - -http://mercurial.selenic.com/ -GPL-2 -Scalable distributed SCM -~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -bash-completion-r1 distutils elisp-common eutils multilib python toolchain-funcs user -bugzilla emacs gpg test tk zsh-completion - - - -3 - -compile install postinst postrm prepare setup test - - - - - diff --git a/metadata/cache/dev-vcs/mercurial-2.1.2 b/metadata/cache/dev-vcs/mercurial-2.2.3 similarity index 92% rename from metadata/cache/dev-vcs/mercurial-2.1.2 rename to metadata/cache/dev-vcs/mercurial-2.2.3 index 09216a12345e..47ee1d0851fd 100644 --- a/metadata/cache/dev-vcs/mercurial-2.1.2 +++ b/metadata/cache/dev-vcs/mercurial-2.2.3 @@ -1,7 +1,7 @@ emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) =dev-lang/python-2* =dev-lang/python-2*[threads] bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) =dev-lang/python-2* =dev-lang/python-2*[threads] 0 -http://mercurial.selenic.com/release/mercurial-2.1.2.tar.gz +http://mercurial.selenic.com/release/mercurial-2.2.3.tar.gz http://mercurial.selenic.com/ GPL-2 diff --git a/metadata/cache/games-strategy/uqm-0.7.0-r1 b/metadata/cache/games-strategy/uqm-0.7.0-r1 index b624757983ca..79bb37b4fe3a 100644 --- a/metadata/cache/games-strategy/uqm-0.7.0-r1 +++ b/metadata/cache/games-strategy/uqm-0.7.0-r1 @@ -6,7 +6,7 @@ mirror://sourceforge/sc2/uqm-0.7.0-source.tgz mirror://sourceforge/sc2/uqm-0.7.0 http://sc2.sourceforge.net/ GPL-2 The Ur-Quan Masters: Port of Star Control 2 -~amd64 ~ppc ~ppc64 ~x86 +~amd64 ~ppc ~ppc64 x86 base eutils games multilib toolchain-funcs user music opengl remix voice diff --git a/metadata/cache/games-util/nforenum-0_pre2309 b/metadata/cache/games-util/nforenum-0_pre2309 deleted file mode 100644 index 7c946fe78403..000000000000 --- a/metadata/cache/games-util/nforenum-0_pre2309 +++ /dev/null @@ -1,22 +0,0 @@ -dev-libs/boost dev-lang/perl - -0 -http://binaries.openttd.org/extra/nforenum/r2309/nforenum-r2309-source.tar.bz2 - -http://binaries.openttd.org/extra/nforenum/ -GPL-2 -A tool checking NFO code for errors -amd64 ~arm ppc ppc64 x86 -eutils multilib toolchain-funcs user - - - - -2 - -install prepare - - - - - diff --git a/metadata/cache/mail-client/clawsker-0.7.7 b/metadata/cache/mail-client/clawsker-0.7.7 index 888bcf9657a3..ab9aac29b132 100644 --- a/metadata/cache/mail-client/clawsker-0.7.7 +++ b/metadata/cache/mail-client/clawsker-0.7.7 @@ -6,7 +6,7 @@ http://www.claws-mail.org/tools/clawsker-0.7.7.tar.gz http://www.claws-mail.org/clawsker/ GPL-3 Applet to edit Claws Mail's hidden preferences. -~amd64 ~x86 +~amd64 x86 diff --git a/metadata/cache/media-libs/libmp4v2-1.9.1-r1 b/metadata/cache/media-libs/libmp4v2-1.9.1-r1 index 8ada9e64a373..8d449ee48c1d 100644 --- a/metadata/cache/media-libs/libmp4v2-1.9.1-r1 +++ b/metadata/cache/media-libs/libmp4v2-1.9.1-r1 @@ -6,7 +6,7 @@ test http://code.google.com/p/mp4v2/ MPL-1.1 Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard -~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris libtool multilib toolchain-funcs diff --git a/metadata/cache/media-libs/libmp4v2-2.0.0 b/metadata/cache/media-libs/libmp4v2-2.0.0 index cb9d632d554f..fe32c4ccbfa7 100644 --- a/metadata/cache/media-libs/libmp4v2-2.0.0 +++ b/metadata/cache/media-libs/libmp4v2-2.0.0 @@ -6,7 +6,7 @@ http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2 http://code.google.com/p/mp4v2/ MPL-1.1 Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard -~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris libtool multilib toolchain-funcs static-libs test utils diff --git a/metadata/cache/media-radio/fldigi-3.21.48 b/metadata/cache/media-radio/fldigi-3.21.48 new file mode 100644 index 000000000000..e08709f21a80 --- /dev/null +++ b/metadata/cache/media-radio/fldigi-3.21.48 @@ -0,0 +1,22 @@ +x11-libs/fltk:1[threads,xft] media-libs/libsamplerate media-libs/libpng x11-misc/xdg-utils hamlib? ( media-libs/hamlib ) portaudio? ( >=media-libs/portaudio-19_pre20071207 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( >=media-libs/libsndfile-1.0.10 ) xmlrpc? ( || ( >=dev-libs/xmlrpc-c-1.18.02[abyss] =media-libs/portaudio-19_pre20071207 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( >=media-libs/libsndfile-1.0.10 ) xmlrpc? ( || ( >=dev-libs/xmlrpc-c-1.18.02[abyss] =dev-libs/glib-2.26.0:2 dev-libs/libxml2:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) lastfm? ( dev-libs/json-glib ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( media-libs/musicbrainz:3 gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) virtual/pkgconfig >=dev-util/intltool-0.35 app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9.1 doc? ( >=dev-util/gtk-doc-1.4 ) test? ( dev-libs/check ) app-arch/xz-utils >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ->=dev-libs/glib-2.26.0:2 dev-libs/libxml2:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) lastfm? ( dev-libs/json-glib ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( media-libs/musicbrainz:3 gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) >=media-plugins/gst-plugins-soup-0.10 >=media-plugins/gst-plugins-libmms-0.10 || ( >=media-plugins/gst-plugins-cdparanoia-0.10 >=media-plugins/gst-plugins-cdio-0.10 ) >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-taglib-0.10.6 x11-themes/gnome-icon-theme-symbolic upnp? ( >=media-libs/grilo-0.1.17 >=media-plugins/grilo-plugins-0.1.17[upnp] ) python? ( >=dev-python/gst-python-0.10.8 x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] dbus? ( sys-apps/dbus ) gnome-keyring? ( dev-python/gnome-keyring-python ) webkit? ( dev-python/mako >=net-libs/webkit-gtk-1.3.9:3[introspection] ) ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) -0 -mirror://gnome/sources/rhythmbox/2.95/rhythmbox-2.95.tar.xz - -http://www.rhythmbox.org/ -GPL-2 -Music management and playback software for GNOME -~amd64 ~x86 -eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib python toolchain-funcs user versionator virtualx -cdr clutter daap dbus doc gnome-keyring html ipod +lastfm libnotify lirc musicbrainz mtp nsplugin +python test +udev upnp webkit zeitgeist debug test -ipod? ( udev ) mtp? ( udev ) dbus? ( python ) gnome-keyring? ( python ) webkit? ( python ) - - -4 - -compile configure install postinst postrm preinst prepare setup test unpack - - - - - diff --git a/metadata/cache/media-sound/rhythmbox-2.97 b/metadata/cache/media-sound/rhythmbox-2.97 new file mode 100644 index 000000000000..7c34e1206e4f --- /dev/null +++ b/metadata/cache/media-sound/rhythmbox-2.97 @@ -0,0 +1,22 @@ +>=dev-libs/glib-2.28.0:2 >=dev-libs/libxml2-2.7.8:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 dev-libs/json-glib clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( || ( >=media-libs/musicbrainz-4.0.0:4 >=media-libs/musicbrainz-3.0.2:3 ) gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) virtual/pkgconfig >=dev-util/intltool-0.35 app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9.1 doc? ( >=dev-util/gtk-doc-1.4 ) test? ( dev-libs/check ) app-arch/xz-utils >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +>=dev-libs/glib-2.28.0:2 >=dev-libs/libxml2-2.7.8:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 dev-libs/json-glib clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( || ( >=media-libs/musicbrainz-4.0.0:4 >=media-libs/musicbrainz-3.0.2:3 ) gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) >=media-plugins/gst-plugins-soup-0.10 >=media-plugins/gst-plugins-libmms-0.10 || ( >=media-plugins/gst-plugins-cdparanoia-0.10 >=media-plugins/gst-plugins-cdio-0.10 ) >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-taglib-0.10.6 x11-themes/gnome-icon-theme-symbolic upnp? ( >=media-libs/grilo-0.1.17 >=media-plugins/grilo-plugins-0.1.17[upnp] ) python? ( >=dev-python/gst-python-0.10.8 x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] dbus? ( sys-apps/dbus ) gnome-keyring? ( dev-python/gnome-keyring-python ) webkit? ( dev-python/mako >=net-libs/webkit-gtk-1.3.9:3[introspection] ) ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) +0 +mirror://gnome/sources/rhythmbox/2.97/rhythmbox-2.97.tar.xz + +http://www.rhythmbox.org/ +GPL-2 +Music management and playback software for GNOME +~amd64 ~x86 +eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib python toolchain-funcs user versionator virtualx +cdr clutter daap dbus doc gnome-keyring html ipod libnotify lirc musicbrainz mtp nsplugin +python test +udev upnp webkit zeitgeist debug test +ipod? ( udev ) mtp? ( udev ) dbus? ( python ) gnome-keyring? ( python ) webkit? ( python ) + + +4 + +compile configure install postinst postrm preinst prepare setup test unpack + + + + + diff --git a/metadata/cache/media-video/makemkv-1.6.16 b/metadata/cache/media-video/makemkv-1.6.16 deleted file mode 100644 index 151eaef288da..000000000000 --- a/metadata/cache/media-video/makemkv-1.6.16 +++ /dev/null @@ -1,22 +0,0 @@ -x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa x11-libs/qt-dbus:4 sys-libs/zlib -x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa x11-libs/qt-dbus:4 sys-libs/zlib -0 -http://www.makemkv.com/download/makemkv_v1.6.16_oss.tar.gz http://www.makemkv.com/download/makemkv_v1.6.16_bin.tar.gz -mirror -http://www.makemkv.com/ -MakeMKV-EULA -Tool for ripping Blu-Ray, HD-DVD and DVD discs and copying content to a Matroska container --* ~amd64 ~x86 -eutils multilib toolchain-funcs user - - - - -3 - -compile install postinst prepare - - - - - diff --git a/metadata/cache/media-video/makemkv-1.7.4-r1 b/metadata/cache/media-video/makemkv-1.7.4-r1 new file mode 100644 index 000000000000..78f6cdf16874 --- /dev/null +++ b/metadata/cache/media-video/makemkv-1.7.4-r1 @@ -0,0 +1,22 @@ +x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib +x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib +0 +http://www.makemkv.com/download/makemkv_v1.7.4_oss.tar.gz http://www.makemkv.com/download/makemkv_v1.7.4_bin.tar.gz +mirror +http://www.makemkv.com/ +MakeMKV-EULA +Tool for ripping Blu-Ray, HD-DVD and DVD discs and copying content to a Matroska container +~amd64 ~x86 +eutils multilib toolchain-funcs user + + + + +3 + +compile install postinst prepare + + + + + diff --git a/metadata/cache/media-video/makemkv-1.7.6 b/metadata/cache/media-video/makemkv-1.7.6 new file mode 100644 index 000000000000..780422689e8b --- /dev/null +++ b/metadata/cache/media-video/makemkv-1.7.6 @@ -0,0 +1,22 @@ +x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib +x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib +0 +http://www.makemkv.com/download/makemkv-oss-1.7.6.tar.gz http://www.makemkv.com/download/makemkv-bin-1.7.6.tar.gz +mirror +http://www.makemkv.com/ +MakeMKV-EULA +Tool for ripping Blu-Ray, HD-DVD and DVD discs and copying content to a Matroska container +~amd64 ~x86 +eutils multilib toolchain-funcs user + + + + +3 + +compile install postinst prepare + + + + + diff --git a/metadata/cache/media-video/parole-0.2.0.6 b/metadata/cache/media-video/parole-0.2.0.6 index 8843082aeb17..b366cf68f765 100644 --- a/metadata/cache/media-video/parole-0.2.0.6 +++ b/metadata/cache/media-video/parole-0.2.0.6 @@ -1,4 +1,4 @@ ->=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.16:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) dev-util/intltool virtual/pkgconfig x11-proto/xproto >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.16:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) dev-util/intltool virtual/pkgconfig x11-proto/xproto >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.16:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) media-plugins/gst-plugins-meta:0.10 0 mirror://xfce/src/apps/parole/0.2/parole-0.2.0.6.tar.bz2 diff --git a/metadata/cache/net-analyzer/jffnms-0.8.3-r2 b/metadata/cache/net-analyzer/jffnms-0.8.3-r2 deleted file mode 100644 index 8bc8082d33d4..000000000000 --- a/metadata/cache/net-analyzer/jffnms-0.8.3-r2 +++ /dev/null @@ -1,22 +0,0 @@ -net-analyzer/rrdtool media-libs/gd dev-php/PEAR-PEAR net-analyzer/net-snmp sys-apps/diffutils app-mobilephone/smsclient =www-servers/apache-2* dev-lang/php -net-analyzer/rrdtool media-libs/gd dev-php/PEAR-PEAR net-analyzer/net-snmp sys-apps/diffutils app-mobilephone/smsclient media-gfx/graphviz net-analyzer/nmap net-analyzer/fping =www-servers/apache-2* dev-lang/php -0 -mirror://sourceforge/jffnms/jffnms-0.8.3.tar.gz - -http://www.jffnms.org/ -GPL-2 -Network Management and Monitoring System. -~x86 -depend.apache depend.php eutils multilib phpconfutils toolchain-funcs user -mysql postgres snmp - - - - - -install setup unpack - - - - - diff --git a/metadata/cache/net-analyzer/nagvis-1.4.4 b/metadata/cache/net-analyzer/nagvis-1.4.4 deleted file mode 100644 index 4055e6f6fb35..000000000000 --- a/metadata/cache/net-analyzer/nagvis-1.4.4 +++ /dev/null @@ -1,22 +0,0 @@ -virtual/httpd-php ->=net-analyzer/ndoutils-1.4_beta4 automap? ( >=media-gfx/graphviz-2.14 ) virtual/httpd-php -0 -mirror://sourceforge/nagvis/nagvis-1.4.4.tar.gz - -http://www.nagvis.org/ -GPL-2 -NagVis is a visualization addon for the well known network managment system Nagios. -~amd64 ~ppc ~x86 -confutils depend.php eutils multilib phpconfutils toolchain-funcs user -automap - - - - - -install postinst setup - - - - - diff --git a/metadata/cache/net-analyzer/symon-2.84 b/metadata/cache/net-analyzer/symon-2.84 deleted file mode 100644 index c6597dcaffa5..000000000000 --- a/metadata/cache/net-analyzer/symon-2.84 +++ /dev/null @@ -1,22 +0,0 @@ -perl? ( dev-lang/perl ) symux? ( net-analyzer/rrdtool ) virtual/pmake dev-lang/perl[-build] -perl? ( dev-lang/perl ) symux? ( net-analyzer/rrdtool ) dev-lang/perl[-build] -0 -http://www.xs4all.nl/~wpd/symon/philes/symon-2.84.tar.gz - -http://www.xs4all.nl/~wpd/symon/ -BSD-2 -Performance and information monitoring tool -~amd64 ~sparc ~x86 -base eutils multilib multiprocessing perl-module toolchain-funcs user -perl +symon symux - - - -4 - -compile configure install postinst prepare setup test unpack - - - - - diff --git a/metadata/cache/net-analyzer/syweb-0.59 b/metadata/cache/net-analyzer/syweb-0.59 deleted file mode 100644 index 902f1673330d..000000000000 --- a/metadata/cache/net-analyzer/syweb-0.59 +++ /dev/null @@ -1,22 +0,0 @@ -|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 -net-analyzer/rrdtool virtual/httpd-php >=app-admin/webapp-config-1.50.15 -0 -http://www.xs4all.nl/~wpd/symon/philes/syweb-0.59.tar.gz - -http://www.xs4all.nl/~wpd/symon/ -BSD-2 -Web frontend to symon -~amd64 ~sparc ~x86 -depend.php eutils multilib phpconfutils toolchain-funcs user webapp -vhosts - - - - - -install postinst prerm setup - - - - - diff --git a/metadata/cache/net-analyzer/syweb-0.64 b/metadata/cache/net-analyzer/syweb-0.64 index 51a211957f7e..d9b635a31ddc 100644 --- a/metadata/cache/net-analyzer/syweb-0.64 +++ b/metadata/cache/net-analyzer/syweb-0.64 @@ -1,5 +1,5 @@ -|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 -net-analyzer/rrdtool virtual/httpd-php >=app-admin/webapp-config-1.50.15 +|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 +virtual/httpd-php net-analyzer/rrdtool >=app-admin/webapp-config-1.50.15 0 http://www.xs4all.nl/~wpd/symon/philes/syweb-0.64.tar.gz @@ -7,7 +7,7 @@ http://www.xs4all.nl/~wpd/symon/ BSD-2 Web frontend to symon ~amd64 ~sparc ~x86 -depend.php eutils multilib phpconfutils toolchain-funcs user webapp +webapp vhosts diff --git a/metadata/cache/net-analyzer/zabbix-1.8.13-r1 b/metadata/cache/net-analyzer/zabbix-1.8.13-r1 deleted file mode 100644 index fc9b24c9ef6a..000000000000 --- a/metadata/cache/net-analyzer/zabbix-1.8.13-r1 +++ /dev/null @@ -1,22 +0,0 @@ -snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( virtual/mysql ) sqlite? ( =dev-db/sqlite-3* ) postgres? ( dev-db/postgresql-base ) oracle? ( dev-db/oracle-instantclient-basic ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( virtual/mysql ) sqlite? ( =dev-db/sqlite-3* ) postgres? ( dev-db/postgresql-base ) oracle? ( dev-db/oracle-instantclient-basic ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session] media-libs/gd[png] app-admin/webapp-config ) -0 -http://prdownloads.sourceforge.net/zabbix/zabbix-1.8.13.tar.gz - -http://www.zabbix.com/ -GPL-2 -ZABBIX is software for monitoring of your applications, network and servers. -~amd64 ~x86 -autotools depend.php eutils flag-o-matic libtool multilib multiprocessing phpconfutils toolchain-funcs user webapp -agent curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp +sqlite iodbc odbc static - - - -2 - -configure install postinst prepare prerm setup - - - - - diff --git a/metadata/cache/net-analyzer/zabbix-2.0.0-r1 b/metadata/cache/net-analyzer/zabbix-2.0.1 similarity index 96% rename from metadata/cache/net-analyzer/zabbix-2.0.0-r1 rename to metadata/cache/net-analyzer/zabbix-2.0.1 index fea53f747f3b..bc9c1813a14c 100644 --- a/metadata/cache/net-analyzer/zabbix-2.0.0-r1 +++ b/metadata/cache/net-analyzer/zabbix-2.0.1 @@ -1,12 +1,12 @@ snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) java? ( >=virtual/jre-1.4 dev-java/slf4j-api dev-java/json-simple ) frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls] media-libs/gd[png] app-admin/webapp-config ) java? ( >=dev-java/java-config-2.1.9-r1 ) 0 -http://prdownloads.sourceforge.net/zabbix/zabbix-2.0.0.tar.gz +http://prdownloads.sourceforge.net/zabbix/zabbix-2.0.1.tar.gz http://www.zabbix.com/ GPL-2 ZABBIX is software for monitoring of your applications, network and servers. - +~amd64 ~x86 autotools depend.php eutils flag-o-matic java-pkg-opt-2 java-utils-2 libtool multilib multiprocessing phpconfutils toolchain-funcs user versionator webapp agent java curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp sqlite iodbc odbc static elibc_FreeBSD java diff --git a/metadata/cache/net-analyzer/zabbix-2.0.1_rc2 b/metadata/cache/net-analyzer/zabbix-2.0.1_rc2 deleted file mode 100644 index 5aee573d087c..000000000000 --- a/metadata/cache/net-analyzer/zabbix-2.0.1_rc2 +++ /dev/null @@ -1,22 +0,0 @@ -snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) -snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) java? ( >=virtual/jre-1.4 dev-java/slf4j-api dev-java/json-simple ) frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls] media-libs/gd[png] app-admin/webapp-config ) java? ( >=dev-java/java-config-2.1.9-r1 ) -0 -http://prdownloads.sourceforge.net/zabbix/zabbix-2.0.1rc2.tar.gz - -http://www.zabbix.com/ -GPL-2 -ZABBIX is software for monitoring of your applications, network and servers. - -autotools depend.php eutils flag-o-matic java-pkg-opt-2 java-utils-2 libtool multilib multiprocessing phpconfutils toolchain-funcs user versionator webapp -agent java curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp sqlite iodbc odbc static elibc_FreeBSD java - - - -2 - -configure install postinst preinst prepare prerm setup - - - - - diff --git a/metadata/cache/net-misc/mediatomb-0.12.1-r2 b/metadata/cache/net-misc/mediatomb-0.12.1-r2 index 5f79c698938c..58f0d97cfd8f 100644 --- a/metadata/cache/net-misc/mediatomb-0.12.1-r2 +++ b/metadata/cache/net-misc/mediatomb-0.12.1-r2 @@ -6,7 +6,7 @@ mirror://sourceforge/mediatomb/mediatomb-0.12.1.tar.gz http://www.mediatomb.cc/ GPL-2 MediaTomb is an open source UPnP MediaServer -amd64 ~arm ~ppc ~x86 +amd64 ~arm ~ppc x86 autotools eutils libtool linux-info multilib multiprocessing toolchain-funcs user versionator debug +exif +ffmpeg inotify +javascript lastfm libextractor +mp4 mysql +taglib thumbnail diff --git a/metadata/cache/net-misc/radvd-1.9.1 b/metadata/cache/net-misc/radvd-1.9.1-r1 similarity index 70% rename from metadata/cache/net-misc/radvd-1.9.1 rename to metadata/cache/net-misc/radvd-1.9.1-r1 index 102a965f80f2..6cdbc837d758 100644 --- a/metadata/cache/net-misc/radvd-1.9.1 +++ b/metadata/cache/net-misc/radvd-1.9.1-r1 @@ -1,5 +1,5 @@ -selinux? ( sec-policy/selinux-radvd ) dev-libs/libdaemon sys-devel/bison sys-devel/flex virtual/pkgconfig -selinux? ( sec-policy/selinux-radvd ) +dev-libs/libdaemon selinux? ( sec-policy/selinux-radvd ) sys-devel/bison sys-devel/flex virtual/pkgconfig +dev-libs/libdaemon selinux? ( sec-policy/selinux-radvd ) 0 http://v6web.litech.org/radvd/dist/radvd-1.9.1.tar.gz diff --git a/metadata/cache/sci-calculators/units-2.00 b/metadata/cache/sci-calculators/units-2.00 new file mode 100644 index 000000000000..b065a5be9b67 --- /dev/null +++ b/metadata/cache/sci-calculators/units-2.00 @@ -0,0 +1,22 @@ +>=sys-libs/readline-4.1-r2 >=sys-libs/ncurses-5.2-r3 +|| ( dev-lang/python:2.5 dev-lang/python:2.6 dev-lang/python:2.7 ) >=sys-libs/readline-4.1-r2 >=sys-libs/ncurses-5.2-r3 +0 +mirror://gnu/units/units-2.00.tar.gz + +http://www.gnu.org/software/units/units.html +GPL-3 +unit conversion program +~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 +eutils multilib toolchain-funcs user + + + + +4 + +install prepare + + + + + diff --git a/metadata/cache/sci-chemistry/gabedit-2.4.3 b/metadata/cache/sci-chemistry/gabedit-2.4.3 new file mode 100644 index 000000000000..0be48301fe64 --- /dev/null +++ b/metadata/cache/sci-chemistry/gabedit-2.4.3 @@ -0,0 +1,22 @@ +dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu virtual/pkgconfig +dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu +0 +mirror://sourceforge/gabedit/GabeditSrc243.tar.gz + +http://gabedit.sourceforge.net/ +as-is +GUI for computational chemistry packages +~amd64 ~x86 +eutils multilib toolchain-funcs user versionator +openmp + + + +4 + +compile install prepare + + + + + diff --git a/metadata/cache/sci-electronics/gspeakers-0.11-r1 b/metadata/cache/sci-electronics/gspeakers-0.11-r1 index 9e2a9714f257..dea017ea95fc 100644 --- a/metadata/cache/sci-electronics/gspeakers-0.11-r1 +++ b/metadata/cache/sci-electronics/gspeakers-0.11-r1 @@ -6,7 +6,7 @@ mirror://sourceforge/gspeakers/gspeakers-0.11.tar.gz http://gspeakers.sourceforge.net/ LGPL-2.1 GTK based loudspeaker enclosure and crossovernetwork designer -~amd64 ~ppc ~x86 +~amd64 ~ppc x86 autotools eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib multiprocessing toolchain-funcs user versionator debug diff --git a/metadata/cache/sys-apps/pacman-4.0.3 b/metadata/cache/sys-apps/pacman-4.0.3 new file mode 100644 index 000000000000..10655ad7e7dd --- /dev/null +++ b/metadata/cache/sys-apps/pacman-4.0.3 @@ -0,0 +1,22 @@ +app-arch/libarchive dev-libs/openssl virtual/libiconv virtual/libintl sys-devel/gettext curl? ( net-misc/curl ) gpg? ( app-crypt/gpgme ) app-crypt/gpgme doc? ( app-doc/doxygen app-text/asciidoc ) test? ( dev-lang/python ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +app-arch/libarchive dev-libs/openssl virtual/libiconv virtual/libintl sys-devel/gettext curl? ( net-misc/curl ) gpg? ( app-crypt/gpgme ) app-arch/xz-utils +0 +ftp://ftp.archlinux.org/other/pacman/pacman-4.0.3.tar.gz +test +http://archlinux.org/pacman/ +GPL-2 +Archlinux's binary package manager +~amd64 ~x86 +autotools autotools-utils bash-completion-r1 eutils libtool multilib multiprocessing toolchain-funcs user +curl debug doc gpg test + + + +4 + +compile configure install postinst prepare test + + + + + diff --git a/metadata/cache/sys-apps/portage-2.1.10.49 b/metadata/cache/sys-apps/portage-2.1.10.49 deleted file mode 100644 index 3f330afb4f38..000000000000 --- a/metadata/cache/sys-apps/portage-2.1.10.49 +++ /dev/null @@ -1,22 +0,0 @@ -python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 ) doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 ) -python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-3.2_p17 >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) - -2 - -compile install postinst postrm preinst prepare setup test - - - - - diff --git a/metadata/cache/sys-apps/portage-2.2.0_alpha89 b/metadata/cache/sys-apps/portage-2.2.0_alpha89 deleted file mode 100644 index e14374dbd6d8..000000000000 --- a/metadata/cache/sys-apps/portage-2.2.0_alpha89 +++ /dev/null @@ -1,22 +0,0 @@ -python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 ) doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 ) -python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-3.2_p17 >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) - -3 - -compile install postinst postrm preinst prepare setup test - - - - - diff --git a/metadata/cache/sys-boot/grub-2.00 b/metadata/cache/sys-boot/grub-2.00 index d7de61176945..36c4fd444893 100644 --- a/metadata/cache/sys-boot/grub-2.00 +++ b/metadata/cache/sys-boot/grub-2.00 @@ -1,4 +1,4 @@ -app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) app-arch/xz-utils +app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) >=sys-devel/autogen-5.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) grub_platforms_efi-32? ( sys-boot/efibootmgr ) grub_platforms_efi-64? ( sys-boot/efibootmgr ) 2 mirror://gnu/grub/grub-2.00.tar.xz mirror://gentoo/grub-2.00.tar.xz @@ -7,7 +7,7 @@ http://www.gnu.org/software/grub/ GPL-3 GNU GRUB boot loader ~amd64 ~x86 -eutils flag-o-matic multilib pax-utils toolchain-funcs user +autotools eutils flag-o-matic libtool multilib multiprocessing pax-utils toolchain-funcs user custom-cflags debug device-mapper efiemu mount nls static sdl truetype libzfs grub_platforms_emu grub_platforms_qemu-mips grub_platforms_yeeloong grub_platforms_ieee1275 grub_platforms_coreboot grub_platforms_multiboot grub_platforms_efi-32 grub_platforms_pc grub_platforms_qemu grub_platforms_efi-64 grub_platforms_qemu? ( truetype ) diff --git a/metadata/cache/sys-boot/grub-9999 b/metadata/cache/sys-boot/grub-9999 index b0054fbaaa8a..728d3cd63e67 100644 --- a/metadata/cache/sys-boot/grub-9999 +++ b/metadata/cache/sys-boot/grub-9999 @@ -1,4 +1,4 @@ -app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) >=sys-devel/autogen-5.10 sys-apps/help2man || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-vcs/bzr-2.0.1 +app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) >=sys-devel/autogen-5.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-vcs/bzr-2.0.1 app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) grub_platforms_efi-32? ( sys-boot/efibootmgr ) grub_platforms_efi-64? ( sys-boot/efibootmgr ) 2 diff --git a/metadata/cache/sys-kernel/hardened-sources-3.2.21-r2 b/metadata/cache/sys-kernel/hardened-sources-3.2.21-r2 new file mode 100644 index 000000000000..6227d0029e8c --- /dev/null +++ b/metadata/cache/sys-kernel/hardened-sources-3.2.21-r2 @@ -0,0 +1,22 @@ +!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl ) +3.2.21-r2 +mirror://kernel/linux/kernel/v3.x/linux-3.2.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-3.2 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-check -> deblob-check-3.2 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-3.2.21-3.extras.tar.bz2 mirror://gentoo/genpatches-3.2-16.base.tar.bz2 mirror://gentoo/genpatches-3.2-16.extras.tar.bz2 +binchecks strip +http://www.gentoo.org/proj/en/hardened/ +GPL-2 !deblob? ( freedist ) +Hardened kernel sources (kernel series 3.2) +~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +eutils kernel-2 multilib toolchain-funcs user versionator +deblob symlink build deblob + +!build? ( virtual/dev-manager ) + +4 + +compile install postinst postrm preinst setup test unpack + + + + + diff --git a/metadata/cache/x11-apps/ccsm-0.8.4-r1 b/metadata/cache/x11-apps/ccsm-0.8.4-r1 index 288fccf88fea..d6e28a4c1bd5 100644 --- a/metadata/cache/x11-apps/ccsm-0.8.4-r1 +++ b/metadata/cache/x11-apps/ccsm-0.8.4-r1 @@ -1,5 +1,5 @@ ->=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-python/sexy-python dev-util/intltool gnome-base/librsvg =dev-lang/python-2* ->=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-python/sexy-python dev-util/intltool gnome-base/librsvg =dev-lang/python-2* +>=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-util/intltool gnome-base/librsvg =dev-lang/python-2* +>=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-util/intltool gnome-base/librsvg =dev-lang/python-2* 0 http://releases.compiz.org/0.8.4/ccsm-0.8.4.tar.bz2 diff --git a/metadata/cache/x11-libs/goffice-0.8.17-r1 b/metadata/cache/x11-libs/goffice-0.8.17-r1 index 5f6ec03a71a6..e6c25a61e88e 100644 --- a/metadata/cache/x11-libs/goffice-0.8.17-r1 +++ b/metadata/cache/x11-libs/goffice-0.8.17-r1 @@ -6,7 +6,7 @@ mirror://gnome/sources/goffice/0.8/goffice-0.8.17.tar.xz http://git.gnome.org/browse/goffice/ GPL-2 A library of document-centric objects and utilities -~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris +~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris autotools eutils fdo-mime flag-o-matic gnome.org gnome2 gnome2-utils libtool multilib multiprocessing toolchain-funcs user versionator doc gnome diff --git a/metadata/cache/x11-misc/gigolo-0.4.1 b/metadata/cache/x11-misc/gigolo-0.4.1 index c4c0c612272d..905bf8792fa9 100644 --- a/metadata/cache/x11-misc/gigolo-0.4.1 +++ b/metadata/cache/x11-misc/gigolo-0.4.1 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.16 >=x11-libs/gtk+-2.12:2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.16 >=x11-libs/gtk+-2.12:2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.16 >=x11-libs/gtk+-2.12:2 0 mirror://xfce/src/apps/gigolo/0.4/gigolo-0.4.1.tar.bz2 diff --git a/metadata/cache/x11-themes/tangerine-icon-theme-0.26 b/metadata/cache/x11-themes/tangerine-icon-theme-0.26 deleted file mode 100644 index afdc7d6a48fb..000000000000 --- a/metadata/cache/x11-themes/tangerine-icon-theme-0.26 +++ /dev/null @@ -1,22 +0,0 @@ ->=gnome-base/librsvg-2.12.3 || ( media-gfx/imagemagick[png?] media-gfx/graphicsmagick[imagemagick,png?] ) >=x11-misc/icon-naming-utils-0.8.2 virtual/pkgconfig dev-util/intltool sys-devel/gettext || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 ->=x11-themes/gnome-icon-theme-2.24 -0 -mirror://gentoo/tangerine-icon-theme_0.26.tar.gz http://www.gentoo.org/images/gentoo-logo.svg -binchecks strip -http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme -CCPL-Attribution-ShareAlike-2.5 -a derivative of the standard Tango theme, using a more orange approach -amd64 x86 -autotools gnome2-utils libtool multilib multiprocessing toolchain-funcs -png - - - -2 - -configure install postinst postrm preinst prepare unpack - - - - - diff --git a/metadata/cache/x11-themes/tangerine-icon-theme-0.27 b/metadata/cache/x11-themes/tangerine-icon-theme-0.27 index 3b6c4a4e6f35..b5bb6504b885 100644 --- a/metadata/cache/x11-themes/tangerine-icon-theme-0.27 +++ b/metadata/cache/x11-themes/tangerine-icon-theme-0.27 @@ -1,5 +1,5 @@ -gnome-base/librsvg >=x11-misc/icon-naming-utils-0.8.90 dev-util/intltool sys-devel/gettext >=sys-apps/sed-4 -|| ( kde-base/oxygen-icons x11-themes/gnome-icon-theme ) +dev-util/intltool >=gnome-base/librsvg-2.34 sys-devel/gettext >=x11-misc/icon-naming-utils-0.8.90 >=sys-apps/sed-4 +!minimal? ( || ( x11-themes/gnome-icon-theme kde-base/oxygen-icons ) ) 0 mirror://ubuntu/pool/universe/t/tangerine-icon-theme/tangerine-icon-theme_0.27.tar.gz http://www.gentoo.org/images/gentoo-logo.svg binchecks strip @@ -8,13 +8,13 @@ CCPL-Attribution-ShareAlike-2.5 LGPL-2.1 a derivative of the standard Tango theme, using a more orange approach amd64 x86 gnome2-utils +minimal +4 -3 - -compile install postinst postrm preinst prepare +compile postinst postrm preinst prepare unpack diff --git a/metadata/cache/x11-wm/notion-9999 b/metadata/cache/x11-wm/notion-9999 index 33edd982df3c..aefdaa8cc285 100644 --- a/metadata/cache/x11-wm/notion-9999 +++ b/metadata/cache/x11-wm/notion-9999 @@ -1,4 +1,4 @@ -dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) dev-util/pkgconfig dev-vcs/git +dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) virtual/pkgconfig dev-vcs/git dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) 0 diff --git a/metadata/cache/xfce-base/exo-0.6.2-r1 b/metadata/cache/xfce-base/exo-0.6.2-r1 index 6027df1ac106..269ee825f2b3 100644 --- a/metadata/cache/xfce-base/exo-0.6.2-r1 +++ b/metadata/cache/xfce-base/exo-0.6.2-r1 @@ -1,4 +1,4 @@ ->=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) 0 mirror://xfce/src/xfce/exo/0.6/exo-0.6.2.tar.bz2 diff --git a/metadata/cache/xfce-base/xfce4-session-4.8.3-r1 b/metadata/cache/xfce-base/xfce4-session-4.8.3-r1 index d027d099cf88..da4c45e27ee2 100644 --- a/metadata/cache/xfce-base/xfce4-session-4.8.3-r1 +++ b/metadata/cache/xfce-base/xfce4-session-4.8.3-r1 @@ -1,4 +1,4 @@ ->=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) consolekit? ( || ( sys-auth/consolekit sys-apps/systemd ) ) policykit? ( >=sys-auth/polkit-0.102 ) udev? ( sys-power/upower ) 0 mirror://xfce/src/xfce/xfce4-session/4.8/xfce4-session-4.8.3.tar.bz2 diff --git a/metadata/cache/xfce-extra/thunar-media-tags-plugin-0.2.0 b/metadata/cache/xfce-extra/thunar-media-tags-plugin-0.2.0 index 544d9a0294a6..f510ea23c050 100644 --- a/metadata/cache/xfce-extra/thunar-media-tags-plugin-0.2.0 +++ b/metadata/cache/xfce-extra/thunar-media-tags-plugin-0.2.0 @@ -1,4 +1,4 @@ ->=media-libs/taglib-1.6 >=x11-libs/gtk+-2.12:2 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=media-libs/taglib-1.6 >=x11-libs/gtk+-2.12:2 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=media-libs/taglib-1.6 >=x11-libs/gtk+-2.12:2 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 0 mirror://xfce/src/thunar-plugins/thunar-media-tags-plugin/0.2/thunar-media-tags-plugin-0.2.0.tar.bz2 diff --git a/metadata/cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 b/metadata/cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 index e7e5696b782b..1cb85c9e1fca 100644 --- a/metadata/cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 +++ b/metadata/cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.18 >=x11-libs/gtk+-2.12:2 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.18 >=x11-libs/gtk+-2.12:2 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.18 >=x11-libs/gtk+-2.12:2 >=xfce-base/thunar-1.2 0 mirror://gentoo/thunar-shares-plugin-0.2.0_p20101105.tar.bz2 diff --git a/metadata/cache/xfce-extra/transd-0_p20120503 b/metadata/cache/xfce-extra/transd-0_p20120503 index a866f62d23c4..6fefb1d46c7d 100644 --- a/metadata/cache/xfce-extra/transd-0_p20120503 +++ b/metadata/cache/xfce-extra/transd-0_p20120503 @@ -1,4 +1,4 @@ -x11-libs/libX11 >=xfce-base/libxfce4util-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +x11-libs/libX11 >=xfce-base/libxfce4util-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x11-libs/libX11 >=xfce-base/libxfce4util-4.8 0 mirror://gentoo/transd-0_p20120503.tar.xz diff --git a/metadata/cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 b/metadata/cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 index ed6155d0a583..cfaef8880a31 100644 --- a/metadata/cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 +++ b/metadata/cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 @@ -1,4 +1,4 @@ -sys-apps/pciutils[zlib] virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +sys-apps/pciutils[zlib] virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool sys-apps/pciutils[zlib] virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 0 mirror://xfce/src/panel-plugins/xfce4-cellmodem-plugin/0.0/xfce4-cellmodem-plugin-0.0.5.tar.gz diff --git a/metadata/cache/xfce-extra/xfce4-dict-0.6.0 b/metadata/cache/xfce-extra/xfce4-dict-0.6.0 index 6baa0bd8865e..39c3110d888f 100644 --- a/metadata/cache/xfce-extra/xfce4-dict-0.6.0 +++ b/metadata/cache/xfce-extra/xfce4-dict-0.6.0 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 0 mirror://xfce/src/apps/xfce4-dict/0.6/xfce4-dict-0.6.0.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 b/metadata/cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 index c5909f28b549..e5382e349a5a 100644 --- a/metadata/cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 +++ b/metadata/cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 @@ -1,4 +1,4 @@ ->=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 virtual/pkgconfig dev-util/intltool >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 virtual/pkgconfig dev-util/intltool >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 0 mirror://xfce/src/panel-plugins/xfce4-diskperf-plugin/2.3/xfce4-diskperf-plugin-2.3.0.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 b/metadata/cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 index 9626c3a0aaa9..27089fcf8c9c 100644 --- a/metadata/cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 +++ b/metadata/cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 @@ -1,4 +1,4 @@ -x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 0 mirror://xfce/src/panel-plugins/xfce4-eyes-plugin/4.4/xfce4-eyes-plugin-4.4.1.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-linelight-plugin-0.1.7 b/metadata/cache/xfce-extra/xfce4-linelight-plugin-0.1.7 index c23cf0bf29b8..299e81236cac 100644 --- a/metadata/cache/xfce-extra/xfce4-linelight-plugin-0.1.7 +++ b/metadata/cache/xfce-extra/xfce4-linelight-plugin-0.1.7 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.12:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.12:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.12:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 sys-apps/mlocate 0 mirror://debian/pool/main/x/xfce4-linelight-plugin/xfce4-linelight-plugin_0.1.7.orig.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 b/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 index f681d07735a5..5264729dd1e8 100644 --- a/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 +++ b/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 @@ -1,4 +1,4 @@ ->=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) 0 mirror://gentoo/xfce4-mailwatch-plugin-1.1.0.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 b/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 index 90379b73fc1d..295c37f528a9 100644 --- a/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 +++ b/metadata/cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 @@ -1,4 +1,4 @@ ->=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) 0 mirror://gentoo/xfce4-mailwatch-plugin-1.1.0.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-messenger-plugin-0.1.0 b/metadata/cache/xfce-extra/xfce4-messenger-plugin-0.1.0 index 3269a8edcf3b..6171199da2c7 100644 --- a/metadata/cache/xfce-extra/xfce4-messenger-plugin-0.1.0 +++ b/metadata/cache/xfce-extra/xfce4-messenger-plugin-0.1.0 @@ -1,4 +1,4 @@ -dev-libs/dbus-glib >=dev-libs/glib-2 sys-apps/dbus x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +dev-libs/dbus-glib >=dev-libs/glib-2 sys-apps/dbus x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-libs/dbus-glib >=dev-libs/glib-2 sys-apps/dbus x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 0 mirror://debian/pool/main/x/xfce4-messenger-plugin/xfce4-messenger-plugin_0.1.0.orig.tar.gz mirror://debian/pool/main/x/xfce4-messenger-plugin/xfce4-messenger-plugin_0.1.0-5.debian.tar.gz diff --git a/metadata/cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 b/metadata/cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 index 3f71140ed8bb..1269d934eabc 100644 --- a/metadata/cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 +++ b/metadata/cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) 0 mirror://xfce/src/panel-plugins/xfce4-places-plugin/1.2/xfce4-places-plugin-1.2.0.tar.bz2 mirror://debian/pool/main/x/xfce4-places-plugin/xfce4-places-plugin_1.2.0-3.debian.tar.gz diff --git a/metadata/cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 b/metadata/cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 index e17eb0447d2a..135dc5a50c6d 100644 --- a/metadata/cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 +++ b/metadata/cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 @@ -1,4 +1,4 @@ ->=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 0 mirror://xfce/src/panel-plugins/xfce4-quicklauncher-plugin/1.9/xfce4-quicklauncher-plugin-1.9.4.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.0 b/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.0 index 9017b6a77b6c..e4c67b761bad 100644 --- a/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.0 +++ b/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.0 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 0 mirror://xfce/src/apps/xfce4-screenshooter/1.8/xfce4-screenshooter-1.8.0.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.1 b/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.1 index 71a46e949ea1..b331a0ea559d 100644 --- a/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.1 +++ b/metadata/cache/xfce-extra/xfce4-screenshooter-1.8.1 @@ -1,4 +1,4 @@ ->=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 0 mirror://xfce/src/apps/xfce4-screenshooter/1.8/xfce4-screenshooter-1.8.1.tar.bz2 diff --git a/metadata/cache/xfce-extra/xfce4-sensors-plugin-1.2.5 b/metadata/cache/xfce-extra/xfce4-sensors-plugin-1.2.5 index b4a94939d83f..851930a80049 100644 --- a/metadata/cache/xfce-extra/xfce4-sensors-plugin-1.2.5 +++ b/metadata/cache/xfce-extra/xfce4-sensors-plugin-1.2.5 @@ -1,4 +1,4 @@ ->=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat ) libnotify? ( >=x11-libs/libnotify-0.7 ) lm_sensors? ( >=sys-apps/lm_sensors-3.1.0 ) video_cards_nvidia? ( media-video/nvidia-settings ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +>=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat ) libnotify? ( >=x11-libs/libnotify-0.7 ) lm_sensors? ( >=sys-apps/lm_sensors-3.1.0 ) video_cards_nvidia? ( media-video/nvidia-settings ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat ) libnotify? ( >=x11-libs/libnotify-0.7 ) lm_sensors? ( >=sys-apps/lm_sensors-3.1.0 ) video_cards_nvidia? ( media-video/nvidia-settings ) 0 mirror://xfce/src/panel-plugins/xfce4-sensors-plugin/1.2/xfce4-sensors-plugin-1.2.5.tar.bz2 diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index ce151a5fe6d4..57571ff02082 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sun, 01 Jul 2012 20:07:35 +0000 +Mon, 02 Jul 2012 09:37:44 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index ce151a5fe6d4..57571ff02082 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sun, 01 Jul 2012 20:07:35 +0000 +Mon, 02 Jul 2012 09:37:44 +0000 diff --git a/metadata/layout.conf b/metadata/layout.conf index ab924c9bf114..7f3a95bea87c 100644 --- a/metadata/layout.conf +++ b/metadata/layout.conf @@ -1,4 +1,5 @@ -# This goes live after stabilization of portage-2.1.10.51 (fixes bug #406407) +# This goes live Wednesday, July 4, 2012 at 10:00 UTC +# For more details, please see: http://archives.gentoo.org/gentoo-dev-announce/msg_00000.xml #manifest-hashes = SHA256 SHA512 WHIRLPOOL # Bug #337853 - gentoo's council says to enable diff --git a/metadata/md5-cache/app-arch/xarchiver-0.5.2-r3 b/metadata/md5-cache/app-arch/xarchiver-0.5.2-r3 index b67dff25257a..9821276ab1e7 100644 --- a/metadata/md5-cache/app-arch/xarchiver-0.5.2-r3 +++ b/metadata/md5-cache/app-arch/xarchiver-0.5.2-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16 >=x11-libs/gtk+-2.10:2 SLOT=0 SRC_URI=mirror://sourceforge/xarchiver/xarchiver-0.5.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6aa9dfa1ca101fea2b8078d805a3544a diff --git a/metadata/md5-cache/app-cdr/xfburn-0.4.3-r3 b/metadata/md5-cache/app-cdr/xfburn-0.4.3-r3 index ccf1810e1533..4ba6d2022502 100644 --- a/metadata/md5-cache/app-cdr/xfburn-0.4.3-r3 +++ b/metadata/md5-cache/app-cdr/xfburn-0.4.3-r3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.22 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.10:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r1[gudev] =sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.22 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.10:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r1[gudev] =sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=GTK+ based CD and DVD burning application EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/applications/xfburn @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.10:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r1[gudev] =dev-libs/glib-2.30 >=dev-libs/libburn-0.4.2 >=dev-libs/libisofs-0.6.2 >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 gstreamer? ( >=media-libs/gst-plugins-base-0.10.20:0.10 ) udev? ( || ( >=sys-fs/udev-171-r6[gudev] hashcat-gui-0.5.1.zip +_eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab qt4-r2 2111bb601bba6402257079dab64c7310 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c5804564c33faf5bb1f3986ba20f894b diff --git a/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.10 b/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.10 new file mode 100644 index 000000000000..129dcce705d0 --- /dev/null +++ b/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install +DEPEND=sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) app-arch/p7zip +DESCRIPTION=An opencl hash cracker +EAPI=4 +HOMEPAGE=http://hashcat.net/oclhashcat-lite/ +IUSE=video_cards_fglrx video_cards_nvidia +KEYWORDS=-* ~amd64 ~x86 +LICENSE=hashcat +RDEPEND=sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) +RESTRICT=strip +SLOT=0 +SRC_URI=http://hashcat.net/files/oclHashcat-lite-0.10.7z +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=f057549b8dc52834b7c5c6ea8aba7562 diff --git a/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.081 b/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.081 new file mode 100644 index 000000000000..52f147bb39d5 --- /dev/null +++ b/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.081 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install +DEPEND=sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) app-arch/p7zip +DESCRIPTION=An opencl multihash cracker +EAPI=4 +HOMEPAGE=http://hashcat.net/oclhashcat-plus/ +IUSE=video_cards_fglrx video_cards_nvidia +KEYWORDS=-* ~amd64 ~x86 +LICENSE=hashcat +RDEPEND=sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-290.40 ) video_cards_fglrx? ( >=x11-drivers/ati-drivers-12.4 ) +RESTRICT=strip +SLOT=0 +SRC_URI=amd64? ( http://hashcat.net/files/oclHashcat-plus-0.081-64.7z ) x86? ( http://hashcat.net/files/oclHashcat-plus-0.081-32.7z ) +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2dfd3b49932d8f0ec58e70d2f2858aa0 diff --git a/metadata/md5-cache/app-doc/linuxfromscratch-7.1 b/metadata/md5-cache/app-doc/linuxfromscratch-7.1 new file mode 100644 index 000000000000..f9a0045135c0 --- /dev/null +++ b/metadata/md5-cache/app-doc/linuxfromscratch-7.1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=LFS documents building a Linux system entirely from source. +EAPI=4 +HOMEPAGE=http://www.linuxfromscratch.org/lfs +IUSE=htmlsingle pdf +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=CCPL-Attribution-ShareAlike-NonCommercial-2.5 MIT +SLOT=0 +SRC_URI=http://www.linuxfromscratch.org/lfs/downloads/7.1/LFS-BOOK-7.1.tar.bz2 http://www.linuxfromscratch.org/lfs/downloads/7.1/lfs-bootscripts-20120229.tar.bz2 http://www.linuxfromscratch.org/lfs/downloads/7.1/udev-config-20100128.tar.bz2 htmlsingle? ( http://www.linuxfromscratch.org/lfs/downloads/7.1/LFS-BOOK-7.1-NOCHUNKS.html.bz2 ) pdf? ( http://www.linuxfromscratch.org/lfs/downloads/7.1/LFS-BOOK-7.1.pdf ) +_md5_=b4c6853f22b4dd8ec403cf0009d2ff50 diff --git a/metadata/md5-cache/app-editors/wxhexeditor-0.09 b/metadata/md5-cache/app-editors/wxhexeditor-0.20 similarity index 59% rename from metadata/md5-cache/app-editors/wxhexeditor-0.09 rename to metadata/md5-cache/app-editors/wxhexeditor-0.20 index dedb23e56761..150bb19f6388 100644 --- a/metadata/md5-cache/app-editors/wxhexeditor-0.09 +++ b/metadata/md5-cache/app-editors/wxhexeditor-0.20 @@ -1,12 +1,12 @@ -DEFINED_PHASES=install prepare -DEPEND=x11-libs/wxGTK:2.8[X] +DEFINED_PHASES=prepare pretend +DEPEND=app-crypt/mhash dev-libs/udis86 x11-libs/wxGTK:2.8[X] DESCRIPTION=A cross-platform hex editor designed specially for large files. -EAPI=3 +EAPI=4 HOMEPAGE=http://wxhexeditor.sourceforge.net/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=x11-libs/wxGTK:2.8[X] +RDEPEND=app-crypt/mhash dev-libs/udis86 x11-libs/wxGTK:2.8[X] SLOT=0 -SRC_URI=mirror://sourceforge/wxhexeditor/wxHexEditor-v0.09-src.tar.bz2 +SRC_URI=mirror://sourceforge/wxhexeditor/wxHexEditor-v0.20-src.tar.bz2 _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=72c6e76551d68da0aae2b0a1198f4d9d +_md5_=9d24d1daf527603422fff6e302e4c682 diff --git a/metadata/md5-cache/app-office/orage-4.8.3 b/metadata/md5-cache/app-office/orage-4.8.3 index 97cdb477089b..488fb13f3bfa 100644 --- a/metadata/md5-cache/app-office/orage-4.8.3 +++ b/metadata/md5-cache/app-office/orage-4.8.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/libical-0.48 dev-libs/popt >=x11-libs/gtk+-2.10:2 berkdb? ( >=sys-libs/db-4 ) dbus? ( >=dev-libs/dbus-glib-0.98 ) libnotify? ( >=x11-libs/libnotify-0.7 ) xfce_plugins_clock? ( >=xfce-base/xfce4-panel-4.8 ) SLOT=0 SRC_URI=mirror://xfce/src/apps/orage/4.8/orage-4.8.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=15eaa17dca312ed1ba4c79ad6b34ce33 diff --git a/metadata/md5-cache/app-portage/euses-2.5.8 b/metadata/md5-cache/app-portage/euses-2.5.8 new file mode 100644 index 000000000000..4ed342161f46 --- /dev/null +++ b/metadata/md5-cache/app-portage/euses-2.5.8 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=look up USE flag descriptions fast +EAPI=4 +HOMEPAGE=http://www.xs4all.nl/~rooversj/gentoo +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~x86-fbsd +LICENSE=GPL-2 +SLOT=0 +SRC_URI=http://www.xs4all.nl/~rooversj/gentoo/euses-2.5.8.tar.bz2 +_md5_=7a4f0634a716ba9e9f84ac1ace3da683 diff --git a/metadata/md5-cache/app-text/tree-1.6.0-r1 b/metadata/md5-cache/app-text/tree-1.6.0-r1 index 656897c67ce5..7ec34f607bf6 100644 --- a/metadata/md5-cache/app-text/tree-1.6.0-r1 +++ b/metadata/md5-cache/app-text/tree-1.6.0-r1 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install prepare DESCRIPTION=Lists directories recursively, and produces an indented listing of files. EAPI=4 HOMEPAGE=http://mama.indstate.edu/users/ice/tree/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=ftp://mama.indstate.edu/linux/tree/tree-1.6.0.tgz _eclasses_=bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=cd1cbfb3596ce30273a1b0736065c50d +_md5_=e7cd6dffa19ed876b94cd814f1872ba4 diff --git a/metadata/md5-cache/dev-java/xmlc-2.3.1-r1 b/metadata/md5-cache/dev-java/xmlc-2.3.1-r1 index fd2556db76c7..b29482733ff2 100644 --- a/metadata/md5-cache/dev-java/xmlc-2.3.1-r1 +++ b/metadata/md5-cache/dev-java/xmlc-2.3.1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Open Source Java/XML Presentation Compiler EAPI=4 HOMEPAGE=http://xmlc.objectweb.org/ IUSE=elibc_FreeBSD doc elibc_FreeBSD -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=~amd64 ~ppc x86 LICENSE=LGPL-2.1 RDEPEND=>=virtual/jre-1.4 dev-java/ant-core:0 dev-java/asm:3 dev-java/gnu-regexp:1 dev-java/log4j:0 dev-java/nekohtml:0 dev-java/xerces:2 dev-java/xml-commons-external:1.4 dev-java/xml-commons-resolver:0 java-virtuals/servlet-api:2.5 >=dev-java/java-config-2.1.9-r1 SLOT=0 SRC_URI=http://download.forge.objectweb.org/xmlc/xmlc-src-2.3.1.zip http://download.us.forge.objectweb.org/xmlc/xmlc-src-2.3.1.zip _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 java-ant-2 05b1e5a708f4dd372a85c9c6424fecbe java-pkg-2 f12d7295133e77160a42c2f1ec69a43d java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2198228ff1e485d631c70ed89b33b020 +_md5_=613d8779ed7d31e6f3be4df76207b1b1 diff --git a/metadata/md5-cache/dev-libs/libbsd-0.3.0-r1 b/metadata/md5-cache/dev-libs/libbsd-0.3.0-r1 deleted file mode 100644 index 8a7236fd1c9f..000000000000 --- a/metadata/md5-cache/dev-libs/libbsd-0.3.0-r1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install prepare setup -DESCRIPTION=A BSD compatibility library -EAPI=4 -HOMEPAGE=http://libbsd.freedesktop.org/wiki/ -IUSE=static-libs -KEYWORDS=amd64 x86 -LICENSE=BSD BSD-2 BSD-4 ISC -SLOT=0 -SRC_URI=http://libbsd.freedesktop.org/releases/libbsd-0.3.0.tar.gz -_eclasses_=multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=d200714c59cdd322e6d7229fde913752 diff --git a/metadata/md5-cache/dev-libs/libbsd-0.4.0 b/metadata/md5-cache/dev-libs/libbsd-0.4.0 deleted file mode 100644 index edbb04fe90d5..000000000000 --- a/metadata/md5-cache/dev-libs/libbsd-0.4.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DESCRIPTION=An library to provide useful functions commonly found on BSD systems -EAPI=4 -HOMEPAGE=http://libbsd.freedesktop.org/wiki/ -IUSE=static-libs -KEYWORDS=~amd64 ~x86 -LICENSE=BSD BSD-2 BSD-4 ISC -SLOT=0 -SRC_URI=http://libbsd.freedesktop.org/releases/libbsd-0.4.0.tar.gz -_eclasses_=multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=005c3e9c65b962b359088aad3e1e0865 diff --git a/metadata/md5-cache/dev-libs/libbsd-0.4.1 b/metadata/md5-cache/dev-libs/libbsd-0.4.1 deleted file mode 100644 index 13a608419217..000000000000 --- a/metadata/md5-cache/dev-libs/libbsd-0.4.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DESCRIPTION=An library to provide useful functions commonly found on BSD systems -EAPI=4 -HOMEPAGE=http://libbsd.freedesktop.org/wiki/ -IUSE=static-libs -KEYWORDS=~amd64 ~x86 -LICENSE=BSD BSD-2 BSD-4 ISC -SLOT=0 -SRC_URI=http://libbsd.freedesktop.org/releases/libbsd-0.4.1.tar.gz -_eclasses_=multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=e3afbeebe5b8f6dabc0a5df5d551aabd diff --git a/metadata/md5-cache/dev-libs/libbsd-0.4.2 b/metadata/md5-cache/dev-libs/libbsd-0.4.2 index 59318cd7cdd1..d6d7ff574e33 100644 --- a/metadata/md5-cache/dev-libs/libbsd-0.4.2 +++ b/metadata/md5-cache/dev-libs/libbsd-0.4.2 @@ -3,9 +3,9 @@ DESCRIPTION=An library to provide useful functions commonly found on BSD systems EAPI=4 HOMEPAGE=http://libbsd.freedesktop.org/wiki/ IUSE=static-libs -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD BSD-2 BSD-4 ISC SLOT=0 SRC_URI=http://libbsd.freedesktop.org/releases/libbsd-0.4.2.tar.gz _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=27930680b3af7e32c3697e211c41b974 +_md5_=173d763b383236ca9cf23c311082877f diff --git a/metadata/md5-cache/dev-libs/libmodbus-3.0.1 b/metadata/md5-cache/dev-libs/libmodbus-3.1.0 similarity index 71% rename from metadata/md5-cache/dev-libs/libmodbus-3.0.1 rename to metadata/md5-cache/dev-libs/libmodbus-3.1.0 index 4f1b20bf2936..8bb3f620610d 100644 --- a/metadata/md5-cache/dev-libs/libmodbus-3.0.1 +++ b/metadata/md5-cache/dev-libs/libmodbus-3.1.0 @@ -1,10 +1,10 @@ -DEFINED_PHASES=configure install prepare +DEFINED_PHASES=configure install DESCRIPTION=Modbus library which supports RTU communication over a serial line or a TCP link -EAPI=2 +EAPI=4 HOMEPAGE=http://www.libmodbus.org/ IUSE=static-libs KEYWORDS=~amd64 ~x86 LICENSE=LGPL-3 SLOT=0 -SRC_URI=http://github.com/downloads/stephane/libmodbus/libmodbus-3.0.1.tar.gz -_md5_=2f935d9d837c2817712f74dacb6c3a5e +SRC_URI=http://github.com/downloads/stephane/libmodbus/libmodbus-3.1.0.tar.gz +_md5_=751b4aa40235057ae33da6e7524bdfc3 diff --git a/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4 b/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4 index ef9d87a4016b..7d96952bb59c 100644 --- a/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4 +++ b/metadata/md5-cache/dev-php/PEAR-HTML_CSS-1.5.4 @@ -1,12 +1,12 @@ DEFINED_PHASES=install -DEPEND==dev-lang/php-5* dev-lang/php >=dev-php/pear-1.8.1 +DEPEND=dev-lang/php >=dev-php/pear-1.8.1 DESCRIPTION=Provides a simple interface for generating a stylesheet declaration. HOMEPAGE=http://pear.php.net/HTML_CSS IUSE=minimal KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=>=dev-php/PEAR-HTML_Common-1.2.4 !minimal? ( >=dev-php/PEAR-Services_W3C_CSSValidator-0.1.0 >=dev-php/phpunit-3.2.0 ) =dev-lang/php-5* dev-lang/php >=dev-php/pear-1.8.1 +RDEPEND=>=dev-php/PEAR-HTML_Common-1.2.4 !minimal? ( >=dev-php/PEAR-Services_W3C_CSSValidator-0.1.0 >=dev-php/phpunit-3.2.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/HTML_CSS-1.5.4.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c672551cd7f4db425f6d6fe7bd159ef9 +_eclasses_=multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 toolchain-funcs e575dd4d4682fc3539829c52d8382856 +_md5_=ad71e29fa0088b485661744a1d7525eb diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.0 b/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.0 deleted file mode 100644 index 8d55cba151f9..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=dev-lang/php >=dev-php/pear-1.8.1 -DESCRIPTION=OO interface for searching and manipulating LDAP-entries -HOMEPAGE=http://pear.php.net/Net_LDAP -KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 -SLOT=0 -SRC_URI=http://pear.php.net/get/Net_LDAP-1.1.0.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=57399b3d119e05c072bcda76b0cbfbc8 diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.1 b/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.1 deleted file mode 100644 index d0817b85563b..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=dev-lang/php >=dev-php/pear-1.8.1 -DESCRIPTION=OO interface for searching and manipulating LDAP-entries -HOMEPAGE=http://pear.php.net/Net_LDAP -KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 -SLOT=0 -SRC_URI=http://pear.php.net/get/Net_LDAP-1.1.1.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=47a58da5de426e042e43511ba7c7881d diff --git a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 b/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 index 356a075f0c82..267ed59d21a3 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 +++ b/metadata/md5-cache/dev-php/PEAR-Net_LDAP-1.1.5 @@ -1,11 +1,12 @@ -DEFINED_PHASES=install setup +DEFINED_PHASES=install DEPEND=dev-lang/php >=dev-php/pear-1.8.1 DESCRIPTION=OO interface for searching and manipulating LDAP-entries +EAPI=4 HOMEPAGE=http://pear.php.net/Net_LDAP KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 LICENSE=LGPL-2.1 -RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 +RDEPEND=dev-lang/php[ldap] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Net_LDAP-1.1.5.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=16fb628d85c373e544c4d3c7c396997d +_eclasses_=multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 toolchain-funcs e575dd4d4682fc3539829c52d8382856 +_md5_=ef23e4b1b1393d60c0e63160c475cad5 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 index 9e8e603dc342..81c07e0cb682 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.6.3 @@ -1,12 +1,13 @@ -DEFINED_PHASES=install setup +DEFINED_PHASES=install DEPEND=dev-lang/php >=dev-php/pear-1.8.1 DESCRIPTION=Takes an existing package.xml file and updates it with a new filelist and changelog. +EAPI=4 HOMEPAGE=http://pear.php.net/PEAR_PackageFileManager IUSE=minimal KEYWORDS=~amd64 ~x86 LICENSE=PHP-3.01 -RDEPEND=!minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 +RDEPEND=dev-lang/php[xml,simplexml] !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_PackageFileManager-1.6.3.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f0c47e90167a2a5d127b3d739607f92f +_eclasses_=multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 toolchain-funcs e575dd4d4682fc3539829c52d8382856 +_md5_=dc2b1baccdf91201430fc0447ac6e713 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 index cba5f031a606..9f6141134210 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager-1.7.0 @@ -1,12 +1,13 @@ -DEFINED_PHASES=install setup +DEFINED_PHASES=install DEPEND=>=dev-php/pear-1.8.1 dev-lang/php >=dev-php/pear-1.8.1 DESCRIPTION=Takes an existing package.xml file and updates it with a new filelist and changelog. +EAPI=4 HOMEPAGE=http://pear.php.net/PEAR_PackageFileManager IUSE=minimal KEYWORDS=~amd64 ~x86 LICENSE=PHP-3.01 -RDEPEND=!minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 +RDEPEND=dev-lang/php[xml,simplexml] !minimal? ( >=dev-php/PEAR-PHP_CompatInfo-1.4.0 ) dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_PackageFileManager-1.7.0.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=eaf0bac62442f872cc12d83697399a4c +_eclasses_=multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 toolchain-funcs e575dd4d4682fc3539829c52d8382856 +_md5_=36765492800fa747300ebefdb63fd350 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 index a65711d00772..2cf5110dfb7b 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR_PackageFileManager_Cli-0.3.0 @@ -7,5 +7,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-php/PEAR-PEAR_PackageFileManager-1.6.0 dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/PEAR_PackageFileManager_Cli-0.3.0.tgz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1d699ee8f291c314a4ca4101dcdd54a0 +_eclasses_=multilib 5782800349f728f725f9378105c6a2ab php-pear-r1 ec6ca81a78eed55923c519977010e559 toolchain-funcs e575dd4d4682fc3539829c52d8382856 +_md5_=545528b49be0fa561e6da046cc3a25c6 diff --git a/metadata/md5-cache/dev-python/Djblets-0.6.13 b/metadata/md5-cache/dev-python/Djblets-0.6.19 similarity index 91% rename from metadata/md5-cache/dev-python/Djblets-0.6.13 rename to metadata/md5-cache/dev-python/Djblets-0.6.19 index 1a7fe80f6f0a..ed0dddb80dd9 100644 --- a/metadata/md5-cache/dev-python/Djblets-0.6.13 +++ b/metadata/md5-cache/dev-python/Djblets-0.6.19 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=dev-python/django dev-python/imaging =dev-lang/python-2* SLOT=0 -SRC_URI=http://downloads.reviewboard.org/releases/Djblets/0.6/Djblets-0.6.13.tar.gz +SRC_URI=http://downloads.reviewboard.org/releases/Djblets/0.6/Djblets-0.6.19.tar.gz _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2702576acce6b145f02049a15afd3fdb +_md5_=c01a48ef0dc73ce874772edb6cbfe477 diff --git a/metadata/md5-cache/dev-python/pyside-tools-0.2.14 b/metadata/md5-cache/dev-python/pyside-tools-0.2.14 index 4eebefd5cff4..ff39186523a9 100644 --- a/metadata/md5-cache/dev-python/pyside-tools-0.2.14 +++ b/metadata/md5-cache/dev-python/pyside-tools-0.2.14 @@ -4,10 +4,10 @@ DESCRIPTION=PySide development tools (lupdate, rcc, uic) EAPI=4 HOMEPAGE=http://www.pyside.org/ IUSE=test test -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 x86 LICENSE=BSD GPL-2 RDEPEND=>=dev-python/pyside-1.1.0-r1[X] >=dev-python/shiboken-1.1.0-r1 >=x11-libs/qt-core-4.7.0:4 >=x11-libs/qt-gui-4.7.0:4 || ( =dev-lang/python-3.2* =dev-lang/python-2.7* =dev-lang/python-2.6* ) SLOT=0 SRC_URI=http://www.pyside.org/files/pyside-tools-0.2.14.tar.bz2 _eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f cmake-utils de2b6743eb0bffee798e01b913aec936 eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 0c41ff55e46b959d9457dde69e7a09d9 -_md5_=f025f40d099c1accb949640ff930ead0 +_md5_=2085f3799702962ce0c8dae2c2b82489 diff --git a/metadata/md5-cache/dev-python/thunarx-python-0.3.0 b/metadata/md5-cache/dev-python/thunarx-python-0.3.0 index ad001d1efc10..e0736b1354d8 100644 --- a/metadata/md5-cache/dev-python/thunarx-python-0.3.0 +++ b/metadata/md5-cache/dev-python/thunarx-python-0.3.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/gtk+:2 dev-libs/glib:2 >=dev-python/pygobject-2.16:2 dev-python/pygtk:2 >=xfce-base/thunar-1.1.0 =dev-lang/python-2* SLOT=0 SRC_URI=mirror://xfce/src/bindings/thunarx-python/0.3/thunarx-python-0.3.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=305b39627defa074ffda48f721640e62 diff --git a/metadata/md5-cache/dev-ruby/ruby-activeldap-3.1.1-r1 b/metadata/md5-cache/dev-ruby/ruby-activeldap-3.1.1-r1 new file mode 100644 index 000000000000..c1c11723eec3 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/ruby-activeldap-3.1.1-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby18? ( dev-ruby/hoe[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/hoe[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby18] dev-ruby/locale[ruby_targets_ruby18] dev-ruby/fast_gettext[ruby_targets_ruby18] dev-ruby/gettext_i18n_rails[ruby_targets_ruby18] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby18] dev-ruby/ruby-net-ldap[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby19] dev-ruby/locale[ruby_targets_ruby19] dev-ruby/fast_gettext[ruby_targets_ruby19] dev-ruby/gettext_i18n_rails[ruby_targets_ruby19] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby19] dev-ruby/ruby-net-ldap[ruby_targets_ruby19] ) ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) +DESCRIPTION=Ruby/ActiveLDAP provides an activerecord inspired object oriented interface to LDAP +EAPI=4 +HOMEPAGE=https://github.com/activeldap/activeldap +IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 test test +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby18] dev-ruby/locale[ruby_targets_ruby18] dev-ruby/fast_gettext[ruby_targets_ruby18] dev-ruby/gettext_i18n_rails[ruby_targets_ruby18] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby18] dev-ruby/ruby-net-ldap[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( >=dev-ruby/activemodel-3.1.0[ruby_targets_ruby19] dev-ruby/locale[ruby_targets_ruby19] dev-ruby/fast_gettext[ruby_targets_ruby19] dev-ruby/gettext_i18n_rails[ruby_targets_ruby19] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby19] dev-ruby/ruby-net-ldap[ruby_targets_ruby19] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ) +RESTRICT=test +SLOT=3 +SRC_URI=mirror://rubygems/activeldap-3.1.1.gem +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5782800349f728f725f9378105c6a2ab ruby-fakegem 6732f927427c6069df6c4f22271f2c75 ruby-ng 7bfb9d5afe376884a98c3f3b40cf673a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=938f85cd590d4118ef9be903a65cd60c diff --git a/metadata/md5-cache/dev-ruby/webrat-0.7.1 b/metadata/md5-cache/dev-ruby/webrat-0.7.1 deleted file mode 100644 index ec3cf468425d..000000000000 --- a/metadata/md5-cache/dev-ruby/webrat-0.7.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:0[ruby_targets_ruby18] dev-ruby/rack-test[ruby_targets_ruby18] dev-ruby/sinatra[ruby_targets_ruby18] dev-ruby/mechanize[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ) -DESCRIPTION=Ruby acceptance testing for web applications -EAPI=2 -HOMEPAGE=http://github.com/brynary/webrat/ -IUSE=test elibc_FreeBSD ruby_targets_ruby18 test test -KEYWORDS=~amd64 ~x86 ~x86-macos -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) -SLOT=0 -SRC_URI=mirror://rubygems/webrat-0.7.1.gem -_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5782800349f728f725f9378105c6a2ab ruby-fakegem 6732f927427c6069df6c4f22271f2c75 ruby-ng 7bfb9d5afe376884a98c3f3b40cf673a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=018fe973b2d45b9a4378a5539775073f diff --git a/metadata/md5-cache/dev-ruby/webrat-0.7.3 b/metadata/md5-cache/dev-ruby/webrat-0.7.3 index 6d8c14338d3c..5147c528ce30 100644 --- a/metadata/md5-cache/dev-ruby/webrat-0.7.3 +++ b/metadata/md5-cache/dev-ruby/webrat-0.7.3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.3[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:0[ruby_targets_ruby18] dev-ruby/merb-core[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ) +DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0[ruby_targets_ruby18] >=dev-ruby/rack-test-0.5.3[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:0[ruby_targets_ruby18] dev-ruby/merb-core[ruby_targets_ruby18] dev-ruby/mechanize[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ) DESCRIPTION=Ruby acceptance testing for web applications EAPI=2 HOMEPAGE=http://github.com/brynary/webrat/ @@ -10,4 +10,4 @@ RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/nokogiri-1.2.0[ruby_targets_ruby18] >= SLOT=0 SRC_URI=mirror://rubygems/webrat-0.7.3.gem _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5782800349f728f725f9378105c6a2ab ruby-fakegem 6732f927427c6069df6c4f22271f2c75 ruby-ng 7bfb9d5afe376884a98c3f3b40cf673a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=bbaa94bc9e5d64f06d9ef52a44601de4 +_md5_=9bc50ca5746e5a397956c9df0388a6e9 diff --git a/metadata/md5-cache/dev-util/xfce4-dev-tools-4.10.0 b/metadata/md5-cache/dev-util/xfce4-dev-tools-4.10.0 index 4826fd8c44a6..35073fd184e3 100644 --- a/metadata/md5-cache/dev-util/xfce4-dev-tools-4.10.0 +++ b/metadata/md5-cache/dev-util/xfce4-dev-tools-4.10.0 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2.24 virtual/pkgconfig >=sys-apps/sed-4 DESCRIPTION=A set of scripts and m4/autoconf macros that ease build system maintenance EAPI=4 HOMEPAGE=http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/ -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.24 SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-dev-tools/4.10/xfce4-dev-tools-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce -_md5_=b6baed97f31e86f75672a29973a3fb3f +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba +_md5_=5a69c86a19db836889a7978df60fadec diff --git a/metadata/md5-cache/dev-util/xfce4-dev-tools-4.9.1 b/metadata/md5-cache/dev-util/xfce4-dev-tools-4.9.1 deleted file mode 100644 index 8300296c2c1c..000000000000 --- a/metadata/md5-cache/dev-util/xfce4-dev-tools-4.9.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.18:2 virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=A set of scripts and m4/autoconf macros that ease build system maintenance -EAPI=4 -HOMEPAGE=http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/ -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.18:2 -SLOT=0 -SRC_URI=mirror://xfce/src/xfce/xfce4-dev-tools/4.9/xfce4-dev-tools-4.9.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce -_md5_=d76d7461c6851e4a7cc786e7cf86374d diff --git a/metadata/md5-cache/dev-util/xfce4-dev-tools-4.9.2 b/metadata/md5-cache/dev-util/xfce4-dev-tools-4.9.2 deleted file mode 100644 index e61ed56e8f46..000000000000 --- a/metadata/md5-cache/dev-util/xfce4-dev-tools-4.9.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.18 virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=A set of scripts and m4/autoconf macros that ease build system maintenance -EAPI=4 -HOMEPAGE=http://www.xfce.org/ http://foo-projects.org/~benny/projects/xfce4-dev-tools/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.18 -SLOT=0 -SRC_URI=mirror://xfce/src/xfce/xfce4-dev-tools/4.9/xfce4-dev-tools-4.9.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce -_md5_=e777bd7ca3fc4af4af3a85553277d0df diff --git a/metadata/md5-cache/dev-vcs/git-1.7.8.6 b/metadata/md5-cache/dev-vcs/git-1.7.8.6 index ff318376db41..d455eb0d169c 100644 --- a/metadata/md5-cache/dev-vcs/git-1.7.8.6 +++ b/metadata/md5-cache/dev-vcs/git-1.7.8.6 @@ -4,11 +4,11 @@ DESCRIPTION=GIT - the stupid content tracker, the revision control system heavil EAPI=4 HOMEPAGE=http://www.git-scm.com/ IUSE=+blksha1 +curl cgi doc emacs gtk +iconv +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=!blksha1? ( dev-libs/openssl ) sys-libs/zlib perl? ( dev-lang/perl[-build] dev-libs/libpcre ) tk? ( dev-lang/tk ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( virtual/perl-CGI ) cvs? ( >=dev-vcs/cvsps-2.1 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8 dev-python/pygtksourceview:2 ) ) python? ( =dev-lang/python-2* ) REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) subversion? ( perl ) webdav? ( curl ) SLOT=0 SRC_URI=http://git-core.googlecode.com/files/git-1.7.8.6.tar.gz mirror://kernel/software/scm/git/git-1.7.8.6.tar.gz http://git-core.googlecode.com/files/git-manpages-1.7.8.6.tar.gz mirror://kernel/software/scm/git/git-manpages-1.7.8.6.tar.gz doc? ( mirror://kernel/software/scm/git/git-htmldocs-1.7.8.6.tar.gz http://git-core.googlecode.com/files/git-htmldocs-1.7.8.6.tar.gz ) _eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 elisp-common 230b4edb497ef94e18cc7f0712daa862 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 perl-module 1c5ba5b92574108992a6758f863da534 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b11ce173cea67b24f4a8c77dbc8ea066 +_md5_=7634779ffe37f5076838d1fa0aec7f13 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.0 b/metadata/md5-cache/dev-vcs/mercurial-2.0 deleted file mode 100644 index 073a06b000ca..000000000000 --- a/metadata/md5-cache/dev-vcs/mercurial-2.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm prepare setup test -DEPEND=emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) =dev-lang/python-2* =dev-lang/python-2*[threads] -DESCRIPTION=Scalable distributed SCM -EAPI=3 -HOMEPAGE=http://mercurial.selenic.com/ -IUSE=bugzilla emacs gpg test tk zsh-completion -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 -RDEPEND=bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) =dev-lang/python-2* =dev-lang/python-2*[threads] -SLOT=0 -SRC_URI=http://mercurial.selenic.com/release/mercurial-2.0.tar.gz -_eclasses_=bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 distutils 15ae23f6f8219a009bfcfff7724fe727 elisp-common 230b4edb497ef94e18cc7f0712daa862 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=dc76797734abb75c77579054d91c79d2 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.1.2 b/metadata/md5-cache/dev-vcs/mercurial-2.1.2 deleted file mode 100644 index e509143773df..000000000000 --- a/metadata/md5-cache/dev-vcs/mercurial-2.1.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm prepare setup test -DEPEND=emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) =dev-lang/python-2* =dev-lang/python-2*[threads] -DESCRIPTION=Scalable distributed SCM -EAPI=3 -HOMEPAGE=http://mercurial.selenic.com/ -IUSE=bugzilla emacs gpg test tk zsh-completion -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 -RDEPEND=bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) =dev-lang/python-2* =dev-lang/python-2*[threads] -SLOT=0 -SRC_URI=http://mercurial.selenic.com/release/mercurial-2.1.2.tar.gz -_eclasses_=bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 distutils 15ae23f6f8219a009bfcfff7724fe727 elisp-common 230b4edb497ef94e18cc7f0712daa862 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e64d389b83019384ef7e9fc0074e0a8d diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.2.1 b/metadata/md5-cache/dev-vcs/mercurial-2.2.3 similarity index 91% rename from metadata/md5-cache/dev-vcs/mercurial-2.2.1 rename to metadata/md5-cache/dev-vcs/mercurial-2.2.3 index dc7a3bf2290e..9a2714f92d1f 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-2.2.1 +++ b/metadata/md5-cache/dev-vcs/mercurial-2.2.3 @@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) =dev-lang/python-2* =dev-lang/python-2*[threads] SLOT=0 -SRC_URI=http://mercurial.selenic.com/release/mercurial-2.2.1.tar.gz +SRC_URI=http://mercurial.selenic.com/release/mercurial-2.2.3.tar.gz _eclasses_=bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 distutils 15ae23f6f8219a009bfcfff7724fe727 elisp-common 230b4edb497ef94e18cc7f0712daa862 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=cd78be25697fb2c966826da5173b2450 +_md5_=05e36c9f3f5d2d3cb79efd1a7f9b0f34 diff --git a/metadata/md5-cache/games-rpg/egoboo-2.8.1 b/metadata/md5-cache/games-rpg/egoboo-2.8.1 index d226ca9014d0..02a35ef24a27 100644 --- a/metadata/md5-cache/games-rpg/egoboo-2.8.1 +++ b/metadata/md5-cache/games-rpg/egoboo-2.8.1 @@ -9,4 +9,4 @@ RDEPEND=virtual/opengl virtual/glu media-libs/libsdl[video] media-libs/sdl-image SLOT=0 SRC_URI=mirror://sourceforge/egoboo/egoboo-2.8.1.tar.gz _eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 games 208d30509b917ca42d728b7d106acb73 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=33b1a08c0104f7182ea736c90f63d4dc +_md5_=0b9a6c7eb67afc4fe6568d6f1d169000 diff --git a/metadata/md5-cache/games-strategy/uqm-0.7.0-r1 b/metadata/md5-cache/games-strategy/uqm-0.7.0-r1 index b3ce1dd76672..f376d2d93245 100644 --- a/metadata/md5-cache/games-strategy/uqm-0.7.0-r1 +++ b/metadata/md5-cache/games-strategy/uqm-0.7.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=The Ur-Quan Masters: Port of Star Control 2 EAPI=2 HOMEPAGE=http://sc2.sourceforge.net/ IUSE=music opengl remix voice -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~ppc ~ppc64 x86 LICENSE=GPL-2 RDEPEND=media-libs/libvorbis virtual/jpeg >=media-libs/libpng-1.4 media-libs/libsdl media-libs/sdl-image media-libs/libogg media-libs/libvorbis media-libs/libmikmod SLOT=0 SRC_URI=mirror://sourceforge/sc2/uqm-0.7.0-source.tgz mirror://sourceforge/sc2/uqm-0.7.0-content.uqm music? ( mirror://sourceforge/sc2/uqm-0.7.0-3domusic.uqm ) voice? ( mirror://sourceforge/sc2/uqm-0.7.0-voice.uqm ) remix? ( mirror://sourceforge/sc2/uqm-remix-pack1.zip mirror://sourceforge/sc2/uqm-remix-pack2.zip mirror://sourceforge/sc2/uqm-remix-pack3.zip ) _eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 games 208d30509b917ca42d728b7d106acb73 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6ab1e017ea2316cf24f38eafd9976ddb +_md5_=fef527e5b45604d877fabcb43c494594 diff --git a/metadata/md5-cache/games-util/nforenum-0_pre2309 b/metadata/md5-cache/games-util/nforenum-0_pre2309 deleted file mode 100644 index 1b3de86ad272..000000000000 --- a/metadata/md5-cache/games-util/nforenum-0_pre2309 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=dev-libs/boost dev-lang/perl -DESCRIPTION=A tool checking NFO code for errors -EAPI=2 -HOMEPAGE=http://binaries.openttd.org/extra/nforenum/ -KEYWORDS=amd64 ~arm ppc ppc64 x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=http://binaries.openttd.org/extra/nforenum/r2309/nforenum-r2309-source.tar.bz2 -_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9d28e55ca835be08adce557e7bd27ef5 diff --git a/metadata/md5-cache/mail-client/clawsker-0.7.7 b/metadata/md5-cache/mail-client/clawsker-0.7.7 index 263d93dfb381..0d3025fd35d8 100644 --- a/metadata/md5-cache/mail-client/clawsker-0.7.7 +++ b/metadata/md5-cache/mail-client/clawsker-0.7.7 @@ -1,9 +1,9 @@ DEFINED_PHASES=compile install DESCRIPTION=Applet to edit Claws Mail's hidden preferences. HOMEPAGE=http://www.claws-mail.org/clawsker/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 x86 LICENSE=GPL-3 RDEPEND=>=dev-lang/perl-5.8.0 >=dev-perl/gtk2-perl-1.200 >=dev-perl/Locale-gettext-1.05 >=mail-client/claws-mail-3.5.0 SLOT=0 SRC_URI=http://www.claws-mail.org/tools/clawsker-0.7.7.tar.gz -_md5_=aefa3c09031347ea6a88e802f492ab46 +_md5_=9cb01926bcf9dc0c2fc0bd40282b4b2a diff --git a/metadata/md5-cache/media-gfx/ristretto-0.6.0 b/metadata/md5-cache/media-gfx/ristretto-0.6.0 index 2a206c041c3b..163ba0db7b41 100644 --- a/metadata/md5-cache/media-gfx/ristretto-0.6.0 +++ b/metadata/md5-cache/media-gfx/ristretto-0.6.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 media-libs/libexif x11-libs/cairo >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 SLOT=0 SRC_URI=mirror://xfce/src/apps/ristretto/0.6/ristretto-0.6.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=61623314e6c07f800c9c2fbdb2efb68c diff --git a/metadata/md5-cache/media-libs/libmp4v2-1.9.1-r1 b/metadata/md5-cache/media-libs/libmp4v2-1.9.1-r1 index e291927966d1..68e9ed4fe821 100644 --- a/metadata/md5-cache/media-libs/libmp4v2-1.9.1-r1 +++ b/metadata/md5-cache/media-libs/libmp4v2-1.9.1-r1 @@ -3,11 +3,11 @@ DEPEND=!<=media-libs/libmp4v2-1.9.1:0 sys-apps/sed DESCRIPTION=Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard EAPI=4 HOMEPAGE=http://code.google.com/p/mp4v2/ -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=MPL-1.1 RDEPEND=!<=media-libs/libmp4v2-1.9.1:0 RESTRICT=test SLOT=1 SRC_URI=http://mp4v2.googlecode.com/files/mp4v2-1.9.1.tar.bz2 _eclasses_=libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=e0825077593e39560b44ff152290636e +_md5_=790e687b1482925b38dba7154c2c0b8e diff --git a/metadata/md5-cache/media-libs/libmp4v2-2.0.0 b/metadata/md5-cache/media-libs/libmp4v2-2.0.0 index 1fa72adee8b9..21f226d766f2 100644 --- a/metadata/md5-cache/media-libs/libmp4v2-2.0.0 +++ b/metadata/md5-cache/media-libs/libmp4v2-2.0.0 @@ -4,9 +4,9 @@ DESCRIPTION=Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard EAPI=4 HOMEPAGE=http://code.google.com/p/mp4v2/ IUSE=static-libs test utils -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=MPL-1.1 SLOT=0 SRC_URI=http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2 _eclasses_=libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=6c4f65c427dc5199e8fec2081d95b433 +_md5_=09a66aef76307a8bd7363a0eaf81aac2 diff --git a/metadata/md5-cache/media-radio/fldigi-3.21.48 b/metadata/md5-cache/media-radio/fldigi-3.21.48 new file mode 100644 index 000000000000..7f92c78aaa1f --- /dev/null +++ b/metadata/md5-cache/media-radio/fldigi-3.21.48 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure +DEPEND=x11-libs/fltk:1[threads,xft] media-libs/libsamplerate media-libs/libpng x11-misc/xdg-utils hamlib? ( media-libs/hamlib ) portaudio? ( >=media-libs/portaudio-19_pre20071207 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( >=media-libs/libsndfile-1.0.10 ) xmlrpc? ( || ( >=dev-libs/xmlrpc-c-1.18.02[abyss] =media-libs/portaudio-19_pre20071207 ) pulseaudio? ( media-sound/pulseaudio ) sndfile? ( >=media-libs/libsndfile-1.0.10 ) xmlrpc? ( || ( >=dev-libs/xmlrpc-c-1.18.02[abyss] =dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=dev-libs/keybinder-0.2.2:0 >=dev-libs/libcdio-0.78 media-libs/gst-plugins-base:0.10 >=media-libs/libcddb-1.3.2 >=media-libs/taglib-1.7.1 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libnotify-0.7 >=xfce-base/libxfce4ui-4.8 playlist? ( >=dev-libs/totem-pl-parser-2.26 ) glyr? ( >=media-libs/glyr-0.9.9 ) lastfm? ( >=media-libs/libclastfm-0.5 ) media-plugins/gst-plugins-meta:0.10 SLOT=0 SRC_URI=mirror://github/matiasdelellis/pragha/pragha-1.0.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=349bb6fa836eda520bc95faec7c8d7b5 diff --git a/metadata/md5-cache/media-sound/pragha-1.1.0 b/metadata/md5-cache/media-sound/pragha-1.1.0 index 97ce0616f3ec..0c74fb39d387 100644 --- a/metadata/md5-cache/media-sound/pragha-1.1.0 +++ b/metadata/md5-cache/media-sound/pragha-1.1.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-db/sqlite:3 >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.26 >=dev-libs/keybinder-0.2.2:0 >=dev-libs/libcdio-0.78 media-libs/gst-plugins-base:0.10 >=media-libs/libcddb-1.3.2 >=media-libs/taglib-1.7.1 >=x11-libs/gtk+-2.22:2 x11-libs/libX11 >=x11-libs/libnotify-0.7 >=xfce-base/libxfce4ui-4.8 playlist? ( >=dev-libs/totem-pl-parser-2.26 ) glyr? ( >=media-libs/glyr-0.9.9 ) lastfm? ( >=media-libs/libclastfm-0.5 ) media-plugins/gst-plugins-meta:0.10 SLOT=0 SRC_URI=mirror://github/matiasdelellis/pragha/pragha-1.1.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b85005a830d1a4a4ac14c74f81a8fb6c diff --git a/metadata/md5-cache/media-sound/pragha-1.1.0.1 b/metadata/md5-cache/media-sound/pragha-1.1.0.1 index 3d62db61ac81..da64d32cc4d0 100644 --- a/metadata/md5-cache/media-sound/pragha-1.1.0.1 +++ b/metadata/md5-cache/media-sound/pragha-1.1.0.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-db/sqlite:3 >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.26 >=dev-libs/keybinder-0.2.2:0 >=dev-libs/libcdio-0.78 media-libs/gst-plugins-base:0.10 >=media-libs/libcddb-1.3.2 >=media-libs/taglib-1.7.1 >=x11-libs/gtk+-2.22:2 x11-libs/libX11 >=x11-libs/libnotify-0.7 >=xfce-base/libxfce4ui-4.8 playlist? ( >=dev-libs/totem-pl-parser-2.26 ) glyr? ( >=media-libs/glyr-0.9.9 ) lastfm? ( >=media-libs/libclastfm-0.5 ) media-plugins/gst-plugins-meta:0.10 SLOT=0 SRC_URI=mirror://github/matiasdelellis/pragha/pragha-1.1.0.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e0ad36de8ee17048b9a96a602980b11d diff --git a/metadata/md5-cache/media-sound/rhythmbox-2.95 b/metadata/md5-cache/media-sound/rhythmbox-2.95 deleted file mode 100644 index 474252f718d5..000000000000 --- a/metadata/md5-cache/media-sound/rhythmbox-2.95 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-libs/glib-2.26.0:2 dev-libs/libxml2:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) lastfm? ( dev-libs/json-glib ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( media-libs/musicbrainz:3 gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) virtual/pkgconfig >=dev-util/intltool-0.35 app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9.1 doc? ( >=dev-util/gtk-doc-1.4 ) test? ( dev-libs/check ) app-arch/xz-utils >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=Music management and playback software for GNOME -EAPI=4 -HOMEPAGE=http://www.rhythmbox.org/ -IUSE=cdr clutter daap dbus doc gnome-keyring html ipod +lastfm libnotify lirc musicbrainz mtp nsplugin +python test +udev upnp webkit zeitgeist debug test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.26.0:2 dev-libs/libxml2:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) lastfm? ( dev-libs/json-glib ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( media-libs/musicbrainz:3 gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) >=media-plugins/gst-plugins-soup-0.10 >=media-plugins/gst-plugins-libmms-0.10 || ( >=media-plugins/gst-plugins-cdparanoia-0.10 >=media-plugins/gst-plugins-cdio-0.10 ) >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-taglib-0.10.6 x11-themes/gnome-icon-theme-symbolic upnp? ( >=media-libs/grilo-0.1.17 >=media-plugins/grilo-plugins-0.1.17[upnp] ) python? ( >=dev-python/gst-python-0.10.8 x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] dbus? ( sys-apps/dbus ) gnome-keyring? ( dev-python/gnome-keyring-python ) webkit? ( dev-python/mako >=net-libs/webkit-gtk-1.3.9:3[introspection] ) ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) -REQUIRED_USE=ipod? ( udev ) mtp? ( udev ) dbus? ( python ) gnome-keyring? ( python ) webkit? ( python ) -SLOT=0 -SRC_URI=mirror://gnome/sources/rhythmbox/2.95/rhythmbox-2.95.tar.xz -_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 b6186c6d7990c0c8aafb64c553f3625b gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9 -_md5_=4f5c4fcac9375ec4c04af0a9c8bcd848 diff --git a/metadata/md5-cache/media-sound/rhythmbox-2.97 b/metadata/md5-cache/media-sound/rhythmbox-2.97 new file mode 100644 index 000000000000..d11a21533ddd --- /dev/null +++ b/metadata/md5-cache/media-sound/rhythmbox-2.97 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=>=dev-libs/glib-2.28.0:2 >=dev-libs/libxml2-2.7.8:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 dev-libs/json-glib clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( || ( >=media-libs/musicbrainz-4.0.0:4 >=media-libs/musicbrainz-3.0.2:3 ) gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) virtual/pkgconfig >=dev-util/intltool-0.35 app-text/scrollkeeper >=app-text/gnome-doc-utils-0.9.1 doc? ( >=dev-util/gtk-doc-1.4 ) test? ( dev-libs/check ) app-arch/xz-utils >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Music management and playback software for GNOME +EAPI=4 +HOMEPAGE=http://www.rhythmbox.org/ +IUSE=cdr clutter daap dbus doc gnome-keyring html ipod libnotify lirc musicbrainz mtp nsplugin +python test +udev upnp webkit zeitgeist debug test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-libs/glib-2.28.0:2 >=dev-libs/libxml2-2.7.8:2 >=x11-libs/gtk+-3.2:3[introspection] >=x11-libs/gdk-pixbuf-2.18.0:2 >=dev-libs/gobject-introspection-0.10.0 >=dev-libs/libpeas-0.7.3[gtk,python?] >=dev-libs/totem-pl-parser-2.32.1 >=net-libs/libsoup-2.26:2.4 >=net-libs/libsoup-gnome-2.26:2.4 >=media-libs/gst-plugins-base-0.10.32:0.10[introspection] >=media-libs/gstreamer-0.10.32:0.10[introspection] >=sys-libs/tdb-1.2.6 dev-libs/json-glib clutter? ( >=media-libs/clutter-1.2:1.0 >=media-libs/clutter-gst-1.0:1.0 >=media-libs/clutter-gtk-1.0:1.0 >=x11-libs/mx-1.0.1:1.0 ) cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-2.9.11:3.0 >=net-dns/avahi-0.6 ) gnome-keyring? ( >=gnome-base/gnome-keyring-0.4.9 ) html? ( >=net-libs/webkit-gtk-1.3.9:3 ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) musicbrainz? ( || ( >=media-libs/musicbrainz-4.0.0:4 >=media-libs/musicbrainz-3.0.2:3 ) gnome-base/gconf:2 ) python? ( dev-python/pygobject:3 ) udev? ( ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) ) zeitgeist? ( gnome-extra/zeitgeist ) >=media-plugins/gst-plugins-soup-0.10 >=media-plugins/gst-plugins-libmms-0.10 || ( >=media-plugins/gst-plugins-cdparanoia-0.10 >=media-plugins/gst-plugins-cdio-0.10 ) >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-taglib-0.10.6 x11-themes/gnome-icon-theme-symbolic upnp? ( >=media-libs/grilo-0.1.17 >=media-plugins/grilo-plugins-0.1.17[upnp] ) python? ( >=dev-python/gst-python-0.10.8 x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] dbus? ( sys-apps/dbus ) gnome-keyring? ( dev-python/gnome-keyring-python ) webkit? ( dev-python/mako >=net-libs/webkit-gtk-1.3.9:3[introspection] ) ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) python? ( || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] ) ) +REQUIRED_USE=ipod? ( udev ) mtp? ( udev ) dbus? ( python ) gnome-keyring? ( python ) webkit? ( python ) +SLOT=0 +SRC_URI=mirror://gnome/sources/rhythmbox/2.97/rhythmbox-2.97.tar.xz +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 b6186c6d7990c0c8aafb64c553f3625b gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9 +_md5_=14ba9973473ae32bd5b198b1bfce43b8 diff --git a/metadata/md5-cache/media-sound/xfmpc-0.2.2 b/metadata/md5-cache/media-sound/xfmpc-0.2.2 index 09a1ee31a65a..5a90fccf2487 100644 --- a/metadata/md5-cache/media-sound/xfmpc-0.2.2 +++ b/metadata/md5-cache/media-sound/xfmpc-0.2.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18:2 >=media-libs/libmpd-0.15 >=x11-libs/gtk+-2.16:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://xfce/src/apps/xfmpc/0.2/xfmpc-0.2.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=983acd3092777752629710c855e9377c diff --git a/metadata/md5-cache/media-video/makemkv-1.7.4-r1 b/metadata/md5-cache/media-video/makemkv-1.7.4-r1 new file mode 100644 index 000000000000..6bdc906cdcee --- /dev/null +++ b/metadata/md5-cache/media-video/makemkv-1.7.4-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst prepare +DEPEND=x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib +DESCRIPTION=Tool for ripping Blu-Ray, HD-DVD and DVD discs and copying content to a Matroska container +EAPI=3 +HOMEPAGE=http://www.makemkv.com/ +KEYWORDS=~amd64 ~x86 +LICENSE=MakeMKV-EULA +RDEPEND=x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib +RESTRICT=mirror +SLOT=0 +SRC_URI=http://www.makemkv.com/download/makemkv_v1.7.4_oss.tar.gz http://www.makemkv.com/download/makemkv_v1.7.4_bin.tar.gz +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=40caed35b3a4453bd3624a51bf4d3f68 diff --git a/metadata/md5-cache/media-video/makemkv-1.6.16 b/metadata/md5-cache/media-video/makemkv-1.7.6 similarity index 50% rename from metadata/md5-cache/media-video/makemkv-1.6.16 rename to metadata/md5-cache/media-video/makemkv-1.7.6 index e9a532cb917a..0e8f14ba1961 100644 --- a/metadata/md5-cache/media-video/makemkv-1.6.16 +++ b/metadata/md5-cache/media-video/makemkv-1.7.6 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst prepare -DEPEND=x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa x11-libs/qt-dbus:4 sys-libs/zlib +DEPEND=x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib DESCRIPTION=Tool for ripping Blu-Ray, HD-DVD and DVD discs and copying content to a Matroska container EAPI=3 HOMEPAGE=http://www.makemkv.com/ -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=~amd64 ~x86 LICENSE=MakeMKV-EULA -RDEPEND=x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa x11-libs/qt-dbus:4 sys-libs/zlib +RDEPEND=x11-libs/qt-gui:4 dev-libs/openssl:0 media-libs/mesa dev-libs/expat x11-libs/qt-dbus:4 sys-libs/zlib RESTRICT=mirror SLOT=0 -SRC_URI=http://www.makemkv.com/download/makemkv_v1.6.16_oss.tar.gz http://www.makemkv.com/download/makemkv_v1.6.16_bin.tar.gz +SRC_URI=http://www.makemkv.com/download/makemkv-oss-1.7.6.tar.gz http://www.makemkv.com/download/makemkv-bin-1.7.6.tar.gz _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9bdf3b01492e5af2cdbe3708f1f5cd6d +_md5_=8cf1266117ce0fdf0141c790d5b5cfc7 diff --git a/metadata/md5-cache/media-video/parole-0.2.0.6 b/metadata/md5-cache/media-video/parole-0.2.0.6 index 68e7ad5e407b..2d226166a292 100644 --- a/metadata/md5-cache/media-video/parole-0.2.0.6 +++ b/metadata/md5-cache/media-video/parole-0.2.0.6 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.16:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) dev-util/intltool virtual/pkgconfig x11-proto/xproto >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.16:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) dev-util/intltool virtual/pkgconfig x11-proto/xproto >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=a simple media player based on the GStreamer framework for the Xfce4 desktop EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/applications/parole/ @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.16:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=dev-libs/dbus-glib-0.88 >=media-libs/gstreamer-0.10.11:0.10 >=media-libs/gst-plugins-base-0.10.11:0.10 libnotify? ( >=x11-libs/libnotify-0.4.5 ) taglib? ( >=media-libs/taglib-1.4 ) media-plugins/gst-plugins-meta:0.10 SLOT=0 SRC_URI=mirror://xfce/src/apps/parole/0.2/parole-0.2.0.6.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=9007b86fc30bed26bbf5c5848364abb6 diff --git a/metadata/md5-cache/net-analyzer/jffnms-0.8.3-r2 b/metadata/md5-cache/net-analyzer/jffnms-0.8.3-r2 deleted file mode 100644 index 7776d7c6b9eb..000000000000 --- a/metadata/md5-cache/net-analyzer/jffnms-0.8.3-r2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install setup unpack -DEPEND=net-analyzer/rrdtool media-libs/gd dev-php/PEAR-PEAR net-analyzer/net-snmp sys-apps/diffutils app-mobilephone/smsclient =www-servers/apache-2* dev-lang/php -DESCRIPTION=Network Management and Monitoring System. -HOMEPAGE=http://www.jffnms.org/ -IUSE=mysql postgres snmp -KEYWORDS=~x86 -LICENSE=GPL-2 -RDEPEND=net-analyzer/rrdtool media-libs/gd dev-php/PEAR-PEAR net-analyzer/net-snmp sys-apps/diffutils app-mobilephone/smsclient media-gfx/graphviz net-analyzer/nmap net-analyzer/fping =www-servers/apache-2* dev-lang/php -SLOT=0 -SRC_URI=mirror://sourceforge/jffnms/jffnms-0.8.3.tar.gz -_eclasses_=depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=55cc38c083e5b8d32c3290d67e6b2d02 diff --git a/metadata/md5-cache/net-analyzer/nagvis-1.4.4 b/metadata/md5-cache/net-analyzer/nagvis-1.4.4 deleted file mode 100644 index 96bc33812d40..000000000000 --- a/metadata/md5-cache/net-analyzer/nagvis-1.4.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst setup -DEPEND=virtual/httpd-php -DESCRIPTION=NagVis is a visualization addon for the well known network managment system Nagios. -HOMEPAGE=http://www.nagvis.org/ -IUSE=automap -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=>=net-analyzer/ndoutils-1.4_beta4 automap? ( >=media-gfx/graphviz-2.14 ) virtual/httpd-php -SLOT=0 -SRC_URI=mirror://sourceforge/nagvis/nagvis-1.4.4.tar.gz -_eclasses_=confutils a80706bb5b9ddcf6bbd14365656d4985 depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=406dea1ac9b6131c7cfb6118ce6a0a58 diff --git a/metadata/md5-cache/net-analyzer/symon-2.84 b/metadata/md5-cache/net-analyzer/symon-2.84 deleted file mode 100644 index 81bc7d9c8562..000000000000 --- a/metadata/md5-cache/net-analyzer/symon-2.84 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=perl? ( dev-lang/perl ) symux? ( net-analyzer/rrdtool ) virtual/pmake dev-lang/perl[-build] -DESCRIPTION=Performance and information monitoring tool -EAPI=4 -HOMEPAGE=http://www.xs4all.nl/~wpd/symon/ -IUSE=perl +symon symux -KEYWORDS=~amd64 ~sparc ~x86 -LICENSE=BSD-2 -RDEPEND=perl? ( dev-lang/perl ) symux? ( net-analyzer/rrdtool ) dev-lang/perl[-build] -SLOT=0 -SRC_URI=http://www.xs4all.nl/~wpd/symon/philes/symon-2.84.tar.gz -_eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 perl-module 1c5ba5b92574108992a6758f863da534 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8a4a40a345b113ef8e7b9f1ad77e11e9 diff --git a/metadata/md5-cache/net-analyzer/syweb-0.59 b/metadata/md5-cache/net-analyzer/syweb-0.59 deleted file mode 100644 index c73d6cb45585..000000000000 --- a/metadata/md5-cache/net-analyzer/syweb-0.59 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst prerm setup -DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 -DESCRIPTION=Web frontend to symon -HOMEPAGE=http://www.xs4all.nl/~wpd/symon/ -IUSE=vhosts -KEYWORDS=~amd64 ~sparc ~x86 -LICENSE=BSD-2 -RDEPEND=net-analyzer/rrdtool virtual/httpd-php >=app-admin/webapp-config-1.50.15 -SLOT=0 -SRC_URI=http://www.xs4all.nl/~wpd/symon/philes/syweb-0.59.tar.gz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 webapp 30d951d5c98c4f31c7999ab4ba4806d1 -_md5_=d4d55f534865ca317db790b65f43ba90 diff --git a/metadata/md5-cache/net-analyzer/syweb-0.64 b/metadata/md5-cache/net-analyzer/syweb-0.64 index c0601d179cf2..d425d8bbac95 100644 --- a/metadata/md5-cache/net-analyzer/syweb-0.64 +++ b/metadata/md5-cache/net-analyzer/syweb-0.64 @@ -1,13 +1,13 @@ DEFINED_PHASES=install postinst prerm setup -DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 +DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 DESCRIPTION=Web frontend to symon EAPI=4 HOMEPAGE=http://www.xs4all.nl/~wpd/symon/ IUSE=vhosts KEYWORDS=~amd64 ~sparc ~x86 LICENSE=BSD-2 -RDEPEND=net-analyzer/rrdtool virtual/httpd-php >=app-admin/webapp-config-1.50.15 +RDEPEND=virtual/httpd-php net-analyzer/rrdtool >=app-admin/webapp-config-1.50.15 SLOT=0 SRC_URI=http://www.xs4all.nl/~wpd/symon/philes/syweb-0.64.tar.gz -_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 webapp 30d951d5c98c4f31c7999ab4ba4806d1 -_md5_=0b852ae0eb65491fdd51374a00e172e4 +_eclasses_=webapp 30d951d5c98c4f31c7999ab4ba4806d1 +_md5_=eff5d0f8b2c89dd72857110c41aa4989 diff --git a/metadata/md5-cache/net-analyzer/zabbix-1.8.13-r1 b/metadata/md5-cache/net-analyzer/zabbix-1.8.13-r1 deleted file mode 100644 index 4e60ad2f3df0..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-1.8.13-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare prerm setup -DEPEND=snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( virtual/mysql ) sqlite? ( =dev-db/sqlite-3* ) postgres? ( dev-db/postgresql-base ) oracle? ( dev-db/oracle-instantclient-basic ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers. -EAPI=2 -HOMEPAGE=http://www.zabbix.com/ -IUSE=agent curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp +sqlite iodbc odbc static -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( virtual/mysql ) sqlite? ( =dev-db/sqlite-3* ) postgres? ( dev-db/postgresql-base ) oracle? ( dev-db/oracle-instantclient-basic ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session] media-libs/gd[png] app-admin/webapp-config ) -SLOT=0 -SRC_URI=http://prdownloads.sourceforge.net/zabbix/zabbix-1.8.13.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 webapp 30d951d5c98c4f31c7999ab4ba4806d1 -_md5_=14e8aec79c1229ff6172c6d675a1d7f8 diff --git a/metadata/md5-cache/net-analyzer/zabbix-2.0.0-r1 b/metadata/md5-cache/net-analyzer/zabbix-2.0.1 similarity index 95% rename from metadata/md5-cache/net-analyzer/zabbix-2.0.0-r1 rename to metadata/md5-cache/net-analyzer/zabbix-2.0.1 index fe71939f7381..9e5a15383f35 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-2.0.0-r1 +++ b/metadata/md5-cache/net-analyzer/zabbix-2.0.1 @@ -4,9 +4,10 @@ DESCRIPTION=ZABBIX is software for monitoring of your applications, network and EAPI=2 HOMEPAGE=http://www.zabbix.com/ IUSE=agent java curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp sqlite iodbc odbc static elibc_FreeBSD java +KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) java? ( >=virtual/jre-1.4 dev-java/slf4j-api dev-java/json-simple ) frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls] media-libs/gd[png] app-admin/webapp-config ) java? ( >=dev-java/java-config-2.1.9-r1 ) SLOT=0 -SRC_URI=http://prdownloads.sourceforge.net/zabbix/zabbix-2.0.0.tar.gz +SRC_URI=http://prdownloads.sourceforge.net/zabbix/zabbix-2.0.1.tar.gz _eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f java-pkg-opt-2 131dd2a697d663c0e33247611b9a1cd7 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 30d951d5c98c4f31c7999ab4ba4806d1 -_md5_=af25097fec5693ce0a8070b695170d71 +_md5_=53aa970d2f8722d6e2ac274b961739ee diff --git a/metadata/md5-cache/net-analyzer/zabbix-2.0.1_rc2 b/metadata/md5-cache/net-analyzer/zabbix-2.0.1_rc2 deleted file mode 100644 index f83f954c742f..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-2.0.1_rc2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst preinst prepare prerm setup -DEPEND=snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers. -EAPI=2 -HOMEPAGE=http://www.zabbix.com/ -IUSE=agent java curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp sqlite iodbc odbc static elibc_FreeBSD java -LICENSE=GPL-2 -RDEPEND=snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( dev-db/unixODBC ) ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) java? ( >=virtual/jre-1.4 dev-java/slf4j-api dev-java/json-simple ) frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls] media-libs/gd[png] app-admin/webapp-config ) java? ( >=dev-java/java-config-2.1.9-r1 ) -SLOT=0 -SRC_URI=http://prdownloads.sourceforge.net/zabbix/zabbix-2.0.1rc2.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba depend.php df169a364e191b840b695604097e3c21 eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f java-pkg-opt-2 131dd2a697d663c0e33247611b9a1cd7 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 30d951d5c98c4f31c7999ab4ba4806d1 -_md5_=595299e42ae195ab47d2c53d66206bc3 diff --git a/metadata/md5-cache/net-irc/anope-1.8.7 b/metadata/md5-cache/net-irc/anope-1.8.7 index deae3b32abab..7144c92aeb91 100644 --- a/metadata/md5-cache/net-irc/anope-1.8.7 +++ b/metadata/md5-cache/net-irc/anope-1.8.7 @@ -10,4 +10,4 @@ RDEPEND=mysql? ( virtual/mysql ) SLOT=0 SRC_URI=mirror://sourceforge/anope/anope-1.8.7.tar.gz _eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba eutils 327b713e2d6949c42cd96bc4898fd280 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=585f86af8ea02d4380825bacb039af1e +_md5_=26ede2c6134e52139465a8ba3808ab0a diff --git a/metadata/md5-cache/net-misc/mediatomb-0.12.1-r2 b/metadata/md5-cache/net-misc/mediatomb-0.12.1-r2 index ceccbc44a532..44fa8fb521ca 100644 --- a/metadata/md5-cache/net-misc/mediatomb-0.12.1-r2 +++ b/metadata/md5-cache/net-misc/mediatomb-0.12.1-r2 @@ -4,10 +4,10 @@ DESCRIPTION=MediaTomb is an open source UPnP MediaServer EAPI=2 HOMEPAGE=http://www.mediatomb.cc/ IUSE=debug +exif +ffmpeg inotify +javascript lastfm libextractor +mp4 mysql +taglib thumbnail -KEYWORDS=amd64 ~arm ~ppc ~x86 +KEYWORDS=amd64 ~arm ~ppc x86 LICENSE=GPL-2 RDEPEND=mysql? ( virtual/mysql ) !mysql? ( >=dev-db/sqlite-3 ) javascript? ( =media-libs/lastfmlib-0.4 ) exif? ( media-libs/libexif ) libextractor? ( media-libs/libextractor ) mp4? ( >=media-libs/libmp4v2-1.9.1_p479:0 ) ffmpeg? ( virtual/ffmpeg ) thumbnail? ( media-video/ffmpegthumbnailer[jpeg] ) net-misc/curl sys-apps/file sys-libs/zlib virtual/libiconv SLOT=0 SRC_URI=mirror://sourceforge/mediatomb/mediatomb-0.12.1.tar.gz _eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba eutils 327b713e2d6949c42cd96bc4898fd280 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=1599c6735edc20451205f219018f9297 +_md5_=1bb21fd937c9220701cb939885cdd4b6 diff --git a/metadata/md5-cache/net-misc/radvd-1.9.1 b/metadata/md5-cache/net-misc/radvd-1.9.1-r1 similarity index 70% rename from metadata/md5-cache/net-misc/radvd-1.9.1 rename to metadata/md5-cache/net-misc/radvd-1.9.1-r1 index c58e78892ff6..53a20828369c 100644 --- a/metadata/md5-cache/net-misc/radvd-1.9.1 +++ b/metadata/md5-cache/net-misc/radvd-1.9.1-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst setup -DEPEND=selinux? ( sec-policy/selinux-radvd ) dev-libs/libdaemon sys-devel/bison sys-devel/flex virtual/pkgconfig +DEPEND=dev-libs/libdaemon selinux? ( sec-policy/selinux-radvd ) sys-devel/bison sys-devel/flex virtual/pkgconfig DESCRIPTION=Linux IPv6 Router Advertisement Daemon EAPI=4 HOMEPAGE=http://v6web.litech.org/radvd/ IUSE=kernel_FreeBSD selinux KEYWORDS=~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~x86-fbsd LICENSE=BSD -RDEPEND=selinux? ( sec-policy/selinux-radvd ) +RDEPEND=dev-libs/libdaemon selinux? ( sec-policy/selinux-radvd ) SLOT=0 SRC_URI=http://v6web.litech.org/radvd/dist/radvd-1.9.1.tar.gz _eclasses_=user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=cdca9ef676e742a9e531cbc68a016fb3 +_md5_=0bec7f315434fc7878e2fb5bbf153c83 diff --git a/metadata/md5-cache/sci-calculators/units-2.00 b/metadata/md5-cache/sci-calculators/units-2.00 new file mode 100644 index 000000000000..1c02f8db14b6 --- /dev/null +++ b/metadata/md5-cache/sci-calculators/units-2.00 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install prepare +DEPEND=>=sys-libs/readline-4.1-r2 >=sys-libs/ncurses-5.2-r3 +DESCRIPTION=unit conversion program +EAPI=4 +HOMEPAGE=http://www.gnu.org/software/units/units.html +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 +LICENSE=GPL-3 +RDEPEND=|| ( dev-lang/python:2.5 dev-lang/python:2.6 dev-lang/python:2.7 ) >=sys-libs/readline-4.1-r2 >=sys-libs/ncurses-5.2-r3 +SLOT=0 +SRC_URI=mirror://gnu/units/units-2.00.tar.gz +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=a403bea5b434c3fb0bc01ba913770055 diff --git a/metadata/md5-cache/sci-chemistry/gabedit-2.3.6 b/metadata/md5-cache/sci-chemistry/gabedit-2.3.6 index b8e04b946aba..e9b2a64316c5 100644 --- a/metadata/md5-cache/sci-chemistry/gabedit-2.3.6 +++ b/metadata/md5-cache/sci-chemistry/gabedit-2.3.6 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11 SLOT=0 SRC_URI=mirror://sourceforge/gabedit/GabeditDevloppment/Gabedit236/GabeditSrc236.tar.gz _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a008c4f24feff7e0d6851f6753a4558b +_md5_=f24e434ffa3a71f5c6a8b21013d7e17a diff --git a/metadata/md5-cache/sci-chemistry/gabedit-2.4.3 b/metadata/md5-cache/sci-chemistry/gabedit-2.4.3 new file mode 100644 index 000000000000..315d3df74d30 --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/gabedit-2.4.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu virtual/pkgconfig +DESCRIPTION=GUI for computational chemistry packages +EAPI=4 +HOMEPAGE=http://gabedit.sourceforge.net/ +IUSE=openmp +KEYWORDS=~amd64 ~x86 +LICENSE=as-is +RDEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu +SLOT=0 +SRC_URI=mirror://sourceforge/gabedit/GabeditSrc243.tar.gz +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=952ed30fd5411bbfa207a8690e154fae diff --git a/metadata/md5-cache/sci-electronics/gspeakers-0.11-r1 b/metadata/md5-cache/sci-electronics/gspeakers-0.11-r1 index 877047fbbc62..c1eaa7043252 100644 --- a/metadata/md5-cache/sci-electronics/gspeakers-0.11-r1 +++ b/metadata/md5-cache/sci-electronics/gspeakers-0.11-r1 @@ -4,10 +4,10 @@ DESCRIPTION=GTK based loudspeaker enclosure and crossovernetwork designer EAPI=1 HOMEPAGE=http://gspeakers.sourceforge.net/ IUSE=debug -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=~amd64 ~ppc x86 LICENSE=LGPL-2.1 RDEPEND=dev-cpp/gtkmm:2.4 dev-libs/libxml2:2 || ( sci-electronics/gnucap sci-electronics/ngspice sci-electronics/spice ) SLOT=0 SRC_URI=mirror://sourceforge/gspeakers/gspeakers-0.11.tar.gz _eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 b6186c6d7990c0c8aafb64c553f3625b gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=fe5ca598e522ffe01b5a580d757eb00d +_md5_=b4ebb00ae93859cebc73619f13c53619 diff --git a/metadata/md5-cache/sys-apps/pacman-4.0.3 b/metadata/md5-cache/sys-apps/pacman-4.0.3 new file mode 100644 index 000000000000..c195e9dec250 --- /dev/null +++ b/metadata/md5-cache/sys-apps/pacman-4.0.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=app-arch/libarchive dev-libs/openssl virtual/libiconv virtual/libintl sys-devel/gettext curl? ( net-misc/curl ) gpg? ( app-crypt/gpgme ) app-crypt/gpgme doc? ( app-doc/doxygen app-text/asciidoc ) test? ( dev-lang/python ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=Archlinux's binary package manager +EAPI=4 +HOMEPAGE=http://archlinux.org/pacman/ +IUSE=curl debug doc gpg test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-arch/libarchive dev-libs/openssl virtual/libiconv virtual/libintl sys-devel/gettext curl? ( net-misc/curl ) gpg? ( app-crypt/gpgme ) app-arch/xz-utils +RESTRICT=test +SLOT=0 +SRC_URI=ftp://ftp.archlinux.org/other/pacman/pacman-4.0.3.tar.gz +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba autotools-utils cfb1126efe81254030227216aa71f32c bash-completion-r1 3480f8385cb9e31797e7b659e366e2d2 eutils 327b713e2d6949c42cd96bc4898fd280 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=42ed05608cc12360dda795d3feb692d6 diff --git a/metadata/md5-cache/sys-apps/portage-2.1.10.49 b/metadata/md5-cache/sys-apps/portage-2.1.10.49 deleted file mode 100644 index 5448694523ce..000000000000 --- a/metadata/md5-cache/sys-apps/portage-2.1.10.49 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test -DEPEND=python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 ) doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 ) -DESCRIPTION=Portage is the package management and distribution system for Gentoo -EAPI=2 -HOMEPAGE=http://www.gentoo.org/proj/en/portage/index.xml -IUSE=build doc epydoc +ipc linguas_pl pypy1_9 python2 python3 selinux xattr -KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) -RDEPEND=python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-3.2_p17 >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 ) doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 ) -DESCRIPTION=Portage is the package management and distribution system for Gentoo -EAPI=3 -HOMEPAGE=http://www.gentoo.org/proj/en/portage/index.xml -IUSE=build doc epydoc +ipc linguas_pl pypy1_9 python2 python3 selinux xattr -KEYWORDS=~sparc-fbsd ~x86-fbsd -LICENSE=GPL-2 -PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) -RDEPEND=python3? ( =dev-lang/python-3* ) !pypy1_9? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-3.2_p17 >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) app-arch/xz-utils +DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) >=sys-devel/autogen-5.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=GNU GRUB boot loader EAPI=4 HOMEPAGE=http://www.gnu.org/software/grub/ @@ -10,5 +10,5 @@ RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/l REQUIRED_USE=grub_platforms_qemu? ( truetype ) SLOT=2 SRC_URI=mirror://gnu/grub/grub-2.00.tar.xz mirror://gentoo/grub-2.00.tar.xz -_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib 5782800349f728f725f9378105c6a2ab pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f59fe7371c9af8f655b869288ca3faf1 +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=8e5e90840f8fc5fd98b630f0a602f332 diff --git a/metadata/md5-cache/sys-boot/grub-9999 b/metadata/md5-cache/sys-boot/grub-9999 index 48e119018646..2309cb50eb3a 100644 --- a/metadata/md5-cache/sys-boot/grub-9999 +++ b/metadata/md5-cache/sys-boot/grub-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst prepare unpack -DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) >=sys-devel/autogen-5.10 sys-apps/help2man || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-vcs/bzr-2.0.1 +DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype media-fonts/dejavu >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) >=sys-devel/autogen-5.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=dev-vcs/bzr-2.0.1 DESCRIPTION=GNU GRUB boot loader EAPI=4 HOMEPAGE=http://www.gnu.org/software/grub/ @@ -9,4 +9,4 @@ RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/l REQUIRED_USE=grub_platforms_qemu? ( truetype ) SLOT=2 _eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba bzr ec4306b727be7630f6d5abaf08c8b818 eutils 327b713e2d6949c42cd96bc4898fd280 flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=55b82ab145f229651a5417a469ddd710 +_md5_=d8eec47273a8e8529b007c20f4c94711 diff --git a/metadata/md5-cache/sys-kernel/hardened-sources-3.2.21-r2 b/metadata/md5-cache/sys-kernel/hardened-sources-3.2.21-r2 new file mode 100644 index 000000000000..6810ed9737a6 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/hardened-sources-3.2.21-r2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Hardened kernel sources (kernel series 3.2) +EAPI=4 +HOMEPAGE=http://www.gentoo.org/proj/en/hardened/ +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=!build? ( virtual/dev-manager ) +RDEPEND=>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl ) +RESTRICT=binchecks strip +SLOT=3.2.21-r2 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.2.tar.bz2 deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-3.2 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-check -> deblob-check-3.2 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-3.2.21-3.extras.tar.bz2 mirror://gentoo/genpatches-3.2-16.base.tar.bz2 mirror://gentoo/genpatches-3.2-16.extras.tar.bz2 +_eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 kernel-2 dd451098928ff900df7c254820871c00 multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=d24d8cf8a760dbbe52603f40456b45a5 diff --git a/metadata/md5-cache/x11-apps/ccsm-0.8.4-r1 b/metadata/md5-cache/x11-apps/ccsm-0.8.4-r1 index 33202e02583f..c33c08ad0a31 100644 --- a/metadata/md5-cache/x11-apps/ccsm-0.8.4-r1 +++ b/metadata/md5-cache/x11-apps/ccsm-0.8.4-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install postinst postrm prepare setup -DEPEND=>=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-python/sexy-python dev-util/intltool gnome-base/librsvg =dev-lang/python-2* +DEPEND=>=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-util/intltool gnome-base/librsvg =dev-lang/python-2* DESCRIPTION=Compizconfig Settings Manager EAPI=3 HOMEPAGE=http://www.compiz.org/ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-python/sexy-python dev-util/intltool gnome-base/librsvg =dev-lang/python-2* +RDEPEND=>=dev-python/compizconfig-python-0.8.4 >=dev-python/pygtk-2.12:2 dev-util/intltool gnome-base/librsvg =dev-lang/python-2* SLOT=0 SRC_URI=http://releases.compiz.org/0.8.4/ccsm-0.8.4.tar.bz2 _eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 multilib 5782800349f728f725f9378105c6a2ab python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=418bd70b8c4061d75ffbba0e939ebcaf +_md5_=4df8a0ee88729d3ab18ae7af2a6c657a diff --git a/metadata/md5-cache/x11-libs/goffice-0.8.17-r1 b/metadata/md5-cache/x11-libs/goffice-0.8.17-r1 index bb0143e8f6e6..950eea222752 100644 --- a/metadata/md5-cache/x11-libs/goffice-0.8.17-r1 +++ b/metadata/md5-cache/x11-libs/goffice-0.8.17-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A library of document-centric objects and utilities EAPI=4 HOMEPAGE=http://git.gnome.org/browse/goffice/ IUSE=doc gnome -KEYWORDS=~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris +KEYWORDS=~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16:2 >=gnome-extra/libgsf-1.14.9 >=dev-libs/libxml2-2.4.12:2 >=x11-libs/pango-1.8.1 >=x11-libs/cairo-1.2[svg] x11-libs/libXext x11-libs/libXrender >=x11-libs/gtk+-2.16:2 gnome? ( >=gnome-base/gconf-2:2 ) SLOT=0.8 SRC_URI=mirror://gnome/sources/goffice/0.8/goffice-0.8.17.tar.xz _eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 b6186c6d7990c0c8aafb64c553f3625b gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=995663d8941fab4e42bd822cc2d58540 +_md5_=4b3bb73c31263caa19a71f79fc93dc79 diff --git a/metadata/md5-cache/x11-misc/gigolo-0.4.1 b/metadata/md5-cache/x11-misc/gigolo-0.4.1 index f4aa98105b34..d3b552dd81b2 100644 --- a/metadata/md5-cache/x11-misc/gigolo-0.4.1 +++ b/metadata/md5-cache/x11-misc/gigolo-0.4.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.16 >=x11-libs/gtk+-2.12:2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.16 >=x11-libs/gtk+-2.12:2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=a frontend to easily manage connections to remote filesystems using GIO/GVfs EAPI=4 HOMEPAGE=http://www.uvena.de/gigolo/ http://goodies.xfce.org/projects/applications/gigolo @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16 >=x11-libs/gtk+-2.12:2 SLOT=0 SRC_URI=mirror://xfce/src/apps/gigolo/0.4/gigolo-0.4.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=c1531da6c7fe450f80acd51f356a5c2a diff --git a/metadata/md5-cache/x11-misc/rodent-4.7.4 b/metadata/md5-cache/x11-misc/rodent-4.7.4 index 96780e53fc43..89419ebdecdf 100644 --- a/metadata/md5-cache/x11-misc/rodent-4.7.4 +++ b/metadata/md5-cache/x11-misc/rodent-4.7.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-libs/glib-2.20.5 dev-libs/libxml2 >=dev-libs/libzip-0.9 >=gnome-base/librsvg-2.26 sys-apps/file >=x11-libs/cairo-1.8.10 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 x11-libs/libSM gnome-base/gvfs SLOT=0 SRC_URI=mirror://sourceforge/xffm/rodent-4.7.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6f10f9f7fc49b3b706c1767bead0d8f5 diff --git a/metadata/md5-cache/x11-misc/rodent-4.8.0 b/metadata/md5-cache/x11-misc/rodent-4.8.0 index 4130fbd6e7eb..f0cc44769666 100644 --- a/metadata/md5-cache/x11-misc/rodent-4.8.0 +++ b/metadata/md5-cache/x11-misc/rodent-4.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/libX11 x11-libs/libSM dev-libs/libxml2 >=dev-libs/glib-2.24 x11-libs/gtk+:3 >=x11-libs/cairo-1.8.10 >=gnome-base/librsvg-2.26 >=dev-libs/libzip-0.9 sys-apps/file gnome-base/gvfs SLOT=0 SRC_URI=mirror://sourceforge/xffm/rodent-4.8.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=517e8f9b901dfea833962a09c5169068 diff --git a/metadata/md5-cache/x11-terms/terminal-0.4.8 b/metadata/md5-cache/x11-terms/terminal-0.4.8 index 79a034981019..228ddd1ea395 100644 --- a/metadata/md5-cache/x11-terms/terminal-0.4.8 +++ b/metadata/md5-cache/x11-terms/terminal-0.4.8 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16:2 >=x11-libs/gtk+-2.14:2 x11-libs/libX11 >=x11-libs/vte-0.22.5:0 >=xfce-base/exo-0.6 dbus? ( >=dev-libs/dbus-glib-0.88 ) !gnustep-apps/terminal SLOT=0 SRC_URI=mirror://xfce/src/apps/terminal/0.4/Terminal-0.4.8.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b38eda89c03563b6f824d9b510841c77 diff --git a/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r200 b/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r200 index f3820eb9b6e4..0bbb49a822b2 100644 --- a/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r200 +++ b/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r200 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 SLOT=0 SRC_URI=mirror://xfce/src/xfce/gtk-xfce-engine/3.0/gtk-xfce-engine-3.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=97365773e51e51605bf7901ae16757ff diff --git a/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r300 b/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r300 index fbaaebde338f..ab7f1f8532b2 100644 --- a/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r300 +++ b/metadata/md5-cache/x11-themes/gtk-engines-xfce-3.0.0-r300 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-3.2:3 SLOT=3 SRC_URI=mirror://xfce/src/xfce/gtk-xfce-engine/3.0/gtk-xfce-engine-3.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6e51b7589b344835f873d13d9286e0ae diff --git a/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.26 b/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.26 deleted file mode 100644 index 1b53dfc589b0..000000000000 --- a/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.26 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm preinst prepare unpack -DEPEND=>=gnome-base/librsvg-2.12.3 || ( media-gfx/imagemagick[png?] media-gfx/graphicsmagick[imagemagick,png?] ) >=x11-misc/icon-naming-utils-0.8.2 virtual/pkgconfig dev-util/intltool sys-devel/gettext || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 -DESCRIPTION=a derivative of the standard Tango theme, using a more orange approach -EAPI=2 -HOMEPAGE=http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme -IUSE=png -KEYWORDS=amd64 x86 -LICENSE=CCPL-Attribution-ShareAlike-2.5 -RDEPEND=>=x11-themes/gnome-icon-theme-2.24 -RESTRICT=binchecks strip -SLOT=0 -SRC_URI=mirror://gentoo/tangerine-icon-theme_0.26.tar.gz http://www.gentoo.org/images/gentoo-logo.svg -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 -_md5_=f312de8dbd86656eb92d5cb375e90747 diff --git a/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.27 b/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.27 index 4953ec1fc015..4aab3169f7c8 100644 --- a/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.27 +++ b/metadata/md5-cache/x11-themes/tangerine-icon-theme-0.27 @@ -1,13 +1,14 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare -DEPEND=gnome-base/librsvg >=x11-misc/icon-naming-utils-0.8.90 dev-util/intltool sys-devel/gettext >=sys-apps/sed-4 +DEFINED_PHASES=compile postinst postrm preinst prepare unpack +DEPEND=dev-util/intltool >=gnome-base/librsvg-2.34 sys-devel/gettext >=x11-misc/icon-naming-utils-0.8.90 >=sys-apps/sed-4 DESCRIPTION=a derivative of the standard Tango theme, using a more orange approach -EAPI=3 +EAPI=4 HOMEPAGE=http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme +IUSE=minimal KEYWORDS=amd64 x86 LICENSE=CCPL-Attribution-ShareAlike-2.5 LGPL-2.1 -RDEPEND=|| ( kde-base/oxygen-icons x11-themes/gnome-icon-theme ) +RDEPEND=!minimal? ( || ( x11-themes/gnome-icon-theme kde-base/oxygen-icons ) ) RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://ubuntu/pool/universe/t/tangerine-icon-theme/tangerine-icon-theme_0.27.tar.gz http://www.gentoo.org/images/gentoo-logo.svg _eclasses_=gnome2-utils e0a2e141b421d38788b23422dfbe4f82 -_md5_=cb4ce2979d39575e238ca58ce1fcbc50 +_md5_=4d121d54444d811b9da2f21f49ffe106 diff --git a/metadata/md5-cache/x11-themes/xfwm4-themes-4.10.0 b/metadata/md5-cache/x11-themes/xfwm4-themes-4.10.0 index 80ecae81795f..bc866721bb0e 100644 --- a/metadata/md5-cache/x11-themes/xfwm4-themes-4.10.0 +++ b/metadata/md5-cache/x11-themes/xfwm4-themes-4.10.0 @@ -9,5 +9,5 @@ RDEPEND=>=xfce-base/xfwm4-4.10 RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://xfce/src/art/xfwm4-themes/4.10/xfwm4-themes-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=98f68040558f93e2cd40111595055362 diff --git a/metadata/md5-cache/x11-themes/xfwm4-themes-4.6.0 b/metadata/md5-cache/x11-themes/xfwm4-themes-4.6.0 index aa993337c70d..9e8496017a61 100644 --- a/metadata/md5-cache/x11-themes/xfwm4-themes-4.6.0 +++ b/metadata/md5-cache/x11-themes/xfwm4-themes-4.6.0 @@ -9,5 +9,5 @@ RDEPEND=>=xfce-base/xfwm4-4.8 RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://xfce/src/art/xfwm4-themes/4.6/xfwm4-themes-4.6.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f8607ef211ab6b0654965e86c0a2c3b8 diff --git a/metadata/md5-cache/x11-wm/notion-9999 b/metadata/md5-cache/x11-wm/notion-9999 index 0ed123ce6760..3dbfe1334f20 100644 --- a/metadata/md5-cache/x11-wm/notion-9999 +++ b/metadata/md5-cache/x11-wm/notion-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=install postinst prepare unpack -DEPEND=dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) dev-util/pkgconfig dev-vcs/git +DEPEND=dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) virtual/pkgconfig dev-vcs/git DESCRIPTION=Notion is a tiling, tabbed window manager for the X window system EAPI=4 HOMEPAGE=http://notion.sourceforge.net @@ -8,4 +8,4 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) SLOT=0 _eclasses_=eutils 327b713e2d6949c42cd96bc4898fd280 git-2 15733ab6a6feb34af9837b41623c2bad multilib 5782800349f728f725f9378105c6a2ab toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=638c20a9f5f9dd66748e7e362803a2fa +_md5_=558b438efda664ae32ba22969058fc5e diff --git a/metadata/md5-cache/xfce-base/exo-0.6.2 b/metadata/md5-cache/xfce-base/exo-0.6.2 index 3d4f5ad35f39..826e3ffbe2db 100644 --- a/metadata/md5-cache/xfce-base/exo-0.6.2 +++ b/metadata/md5-cache/xfce-base/exo-0.6.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/exo/0.6/exo-0.6.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f65639b2e8525043920a181656f93d3f diff --git a/metadata/md5-cache/xfce-base/exo-0.6.2-r1 b/metadata/md5-cache/xfce-base/exo-0.6.2-r1 index f7073362cce2..54b0c1163e3e 100644 --- a/metadata/md5-cache/xfce-base/exo-0.6.2-r1 +++ b/metadata/md5-cache/xfce-base/exo-0.6.2-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Extensions, widgets and framework library with session management support EAPI=4 HOMEPAGE=http://www.xfce.org/projects/exo/ @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 dev-perl/URI >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 python? ( >=dev-python/pygtk-2.4 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/exo/0.6/exo-0.6.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 python 4152846e243ec207de8a1b02a36f1461 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f7e3a30b96884977bed5c5b217b12846 diff --git a/metadata/md5-cache/xfce-base/exo-0.7.3 b/metadata/md5-cache/xfce-base/exo-0.7.3 index 0b3d89aa8a2d..213821ba3a82 100644 --- a/metadata/md5-cache/xfce-base/exo-0.7.3 +++ b/metadata/md5-cache/xfce-base/exo-0.7.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.24 dev-perl/URI >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/libxfce4util-4.9.1 SLOT=0 SRC_URI=mirror://xfce/src/xfce/exo/0.7/exo-0.7.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=9553659d60215f62ec0f5e140fc2f583 diff --git a/metadata/md5-cache/xfce-base/exo-0.8.0 b/metadata/md5-cache/xfce-base/exo-0.8.0 index 859956c76a6e..0c4031c16b32 100644 --- a/metadata/md5-cache/xfce-base/exo-0.8.0 +++ b/metadata/md5-cache/xfce-base/exo-0.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.24 dev-perl/URI >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 SLOT=0 SRC_URI=mirror://xfce/src/xfce/exo/0.8/exo-0.8.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=738f31a793d4bfe7134eb6d50a413899 diff --git a/metadata/md5-cache/xfce-base/garcon-0.1.12 b/metadata/md5-cache/xfce-base/garcon-0.1.12 index 414e7d1ccfaf..c344327abebc 100644 --- a/metadata/md5-cache/xfce-base/garcon-0.1.12 +++ b/metadata/md5-cache/xfce-base/garcon-0.1.12 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 FDL-1.1 RDEPEND=>=dev-libs/glib-2.14 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://xfce/src/libs/garcon/0.1/garcon-0.1.12.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e93d9156c2ffed75027ca7e98fea3acd diff --git a/metadata/md5-cache/xfce-base/garcon-0.1.9 b/metadata/md5-cache/xfce-base/garcon-0.1.9 index b45e5307ccc0..d969dba24bf8 100644 --- a/metadata/md5-cache/xfce-base/garcon-0.1.9 +++ b/metadata/md5-cache/xfce-base/garcon-0.1.9 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 FDL-1.1 RDEPEND=>=dev-libs/glib-2.14:2 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://xfce/src/libs/garcon/0.1/garcon-0.1.9.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=17c37568d42a7ee670a516c931c824b9 diff --git a/metadata/md5-cache/xfce-base/garcon-0.2.0 b/metadata/md5-cache/xfce-base/garcon-0.2.0 index b92d136b6c2f..037fe05f7c4d 100644 --- a/metadata/md5-cache/xfce-base/garcon-0.2.0 +++ b/metadata/md5-cache/xfce-base/garcon-0.2.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 FDL-1.1 RDEPEND=>=dev-libs/glib-2.14 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://xfce/src/libs/garcon/0.2/garcon-0.2.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=996233db7e697071119ed4a76e29f07a diff --git a/metadata/md5-cache/xfce-base/libxfce4ui-4.10.0 b/metadata/md5-cache/xfce-base/libxfce4ui-4.10.0 index 28f0fbafdf0b..2c2b3f7e738e 100644 --- a/metadata/md5-cache/xfce-base/libxfce4ui-4.10.0 +++ b/metadata/md5-cache/xfce-base/libxfce4ui-4.10.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 x11-libs/libICE x11-libs/libSM >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 glade? ( dev-util/glade:3 ) startup-notification? ( x11-libs/startup-notification ) !xfce-base/xfce-utils SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfce4ui/4.10/libxfce4ui-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=18fd7ed3ed699ff0ba72d5aaa67bf227 diff --git a/metadata/md5-cache/xfce-base/libxfce4ui-4.8.1 b/metadata/md5-cache/xfce-base/libxfce4ui-4.8.1 index abc1d6286979..d600044e7d5d 100644 --- a/metadata/md5-cache/xfce-base/libxfce4ui-4.8.1 +++ b/metadata/md5-cache/xfce-base/libxfce4ui-4.8.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.16:2 >=x11-libs/gtk+-2.14:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfconf-4.8 glade? ( dev-util/glade:3 ) startup-notification? ( x11-libs/startup-notification ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfce4ui/4.8/libxfce4ui-4.8.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=1b38132184454ffc8511374d4576ed5b diff --git a/metadata/md5-cache/xfce-base/libxfce4ui-4.9.2 b/metadata/md5-cache/xfce-base/libxfce4ui-4.9.2 index 1679ddc167c9..55d1eb182bbe 100644 --- a/metadata/md5-cache/xfce-base/libxfce4ui-4.9.2 +++ b/metadata/md5-cache/xfce-base/libxfce4ui-4.9.2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 x11-libs/libICE x11-libs/libSM >=xfce-base/libxfce4util-4.9.1 >=xfce-base/xfconf-4.9.1 glade? ( dev-util/glade:3 ) startup-notification? ( x11-libs/startup-notification ) !xfce-base/xfce-utils SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfce4ui/4.9/libxfce4ui-4.9.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=1b159b131cc3a6c4fa5e7e71c53b9059 diff --git a/metadata/md5-cache/xfce-base/libxfce4util-4.10.0 b/metadata/md5-cache/xfce-base/libxfce4util-4.10.0 index f9a3316e547b..5cf9f3aef918 100644 --- a/metadata/md5-cache/xfce-base/libxfce4util-4.10.0 +++ b/metadata/md5-cache/xfce-base/libxfce4util-4.10.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.24 SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfce4util/4.10/libxfce4util-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=10c37bb860f5319ee31d34419d90e090 diff --git a/metadata/md5-cache/xfce-base/libxfce4util-4.8.2 b/metadata/md5-cache/xfce-base/libxfce4util-4.8.2 index c36047bd0435..748446a8bc35 100644 --- a/metadata/md5-cache/xfce-base/libxfce4util-4.8.2 +++ b/metadata/md5-cache/xfce-base/libxfce4util-4.8.2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.12:2 SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfce4util/4.8/libxfce4util-4.8.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=83fa3692c63137cb356941682e47e80d diff --git a/metadata/md5-cache/xfce-base/libxfce4util-4.9.1 b/metadata/md5-cache/xfce-base/libxfce4util-4.9.1 index cc49d67c5858..8d6c5aaed187 100644 --- a/metadata/md5-cache/xfce-base/libxfce4util-4.9.1 +++ b/metadata/md5-cache/xfce-base/libxfce4util-4.9.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.24 SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfce4util/4.9/libxfce4util-4.9.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=dda9cc305e6e367eba2762db257b0022 diff --git a/metadata/md5-cache/xfce-base/libxfcegui4-4.10.0 b/metadata/md5-cache/xfce-base/libxfcegui4-4.10.0 index 7b7ae3d4bbb1..6ba0a8c6163d 100644 --- a/metadata/md5-cache/xfce-base/libxfcegui4-4.10.0 +++ b/metadata/md5-cache/xfce-base/libxfcegui4-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=gnome-base/libglade x11-libs/libSM x11-libs/libX11 >=x11-libs/gtk+-2.10:2 >=xfce-base/libxfce4util-4.8 glade? ( dev-util/glade:3 ) startup-notification? ( x11-libs/startup-notification ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfcegui4/4.10/libxfcegui4-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=950e3398be66cfb628841b7bf3f7fa05 diff --git a/metadata/md5-cache/xfce-base/libxfcegui4-4.8.1 b/metadata/md5-cache/xfce-base/libxfcegui4-4.8.1 index 9dfcae684a5f..083237be53e5 100644 --- a/metadata/md5-cache/xfce-base/libxfcegui4-4.8.1 +++ b/metadata/md5-cache/xfce-base/libxfcegui4-4.8.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=gnome-base/libglade x11-libs/libSM x11-libs/libX11 >=x11-libs/gtk+-2.10:2 =xfce-base/libxfce4util-4.8* glade? ( dev-util/glade:3 ) startup-notification? ( x11-libs/startup-notification ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/libxfcegui4/4.8/libxfcegui4-4.8.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6aaa9d365e70a2f9f81ffff09eda7bd7 diff --git a/metadata/md5-cache/xfce-base/thunar-1.2.3 b/metadata/md5-cache/xfce-base/thunar-1.2.3 index 23d6fd2259a0..348a98444c89 100644 --- a/metadata/md5-cache/xfce-base/thunar-1.2.3 +++ b/metadata/md5-cache/xfce-base/thunar-1.2.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.18:2 >=xfce-base/exo-0.6 >=x11-lib REQUIRED_USE=xfce_plugins_trash? ( dbus ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/thunar/1.2/Thunar-1.2.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 0c41ff55e46b959d9457dde69e7a09d9 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 0c41ff55e46b959d9457dde69e7a09d9 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=43ee047e7872c34eac2255a4cde667a1 diff --git a/metadata/md5-cache/xfce-base/thunar-1.4.0 b/metadata/md5-cache/xfce-base/thunar-1.4.0 index 4b6f59945f94..176fa25e1b92 100644 --- a/metadata/md5-cache/xfce-base/thunar-1.4.0 +++ b/metadata/md5-cache/xfce-base/thunar-1.4.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-b REQUIRED_USE=xfce_plugins_trash? ( dbus ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/thunar/1.4/Thunar-1.4.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 0c41ff55e46b959d9457dde69e7a09d9 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 0c41ff55e46b959d9457dde69e7a09d9 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=cfcb7a9b629faafb1f0d4c2670f3f021 diff --git a/metadata/md5-cache/xfce-base/xfce-utils-4.8.3 b/metadata/md5-cache/xfce-base/xfce-utils-4.8.3 index 535f343efb74..f34f0f49fd67 100644 --- a/metadata/md5-cache/xfce-base/xfce-utils-4.8.3 +++ b/metadata/md5-cache/xfce-base/xfce-utils-4.8.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libX11 >=x11-libs/gtk+-2.10:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfconf-4.8 dbus? ( >=dev-libs/dbus-glib-0.90 ) x11-apps/xrdb x11-misc/xdg-user-dirs lock? ( || ( x11-misc/xscreensaver gnome-extra/gnome-screensaver x11-misc/xlockmore x11-misc/slock ) ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce-utils/4.8/xfce-utils-4.8.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=227502a007069126b618364575215e49 diff --git a/metadata/md5-cache/xfce-base/xfce4-appfinder-4.10.0 b/metadata/md5-cache/xfce-base/xfce4-appfinder-4.10.0 index de90c2ba5101..cafd45f59fb7 100644 --- a/metadata/md5-cache/xfce-base/xfce4-appfinder-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfce4-appfinder-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/garcon-0.2 >=xfce-base/libxfce4util-4.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/xfconf-4.10 !xfce-base/xfce-utils SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-appfinder/4.10/xfce4-appfinder-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=67533bce4220bb7bf232de3f931778ce diff --git a/metadata/md5-cache/xfce-base/xfce4-appfinder-4.8.0 b/metadata/md5-cache/xfce-base/xfce4-appfinder-4.8.0 index e78c270fe70a..3d7ba2ccb184 100644 --- a/metadata/md5-cache/xfce-base/xfce4-appfinder-4.8.0 +++ b/metadata/md5-cache/xfce-base/xfce4-appfinder-4.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16:2 >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/garcon-0.1.2 >=xfce-base/xfconf-4.8 SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-appfinder/4.8/xfce4-appfinder-4.8.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=0c789b7fa81213ebda92a45751c2dca8 diff --git a/metadata/md5-cache/xfce-base/xfce4-appfinder-4.9.5 b/metadata/md5-cache/xfce-base/xfce4-appfinder-4.9.5 index d3838287c5f9..a27350b8dd75 100644 --- a/metadata/md5-cache/xfce-base/xfce4-appfinder-4.9.5 +++ b/metadata/md5-cache/xfce-base/xfce4-appfinder-4.9.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/garcon-0.1.12 >=xfce-base/libxfce4util-4.9.1 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/xfconf-4.9.1 !xfce-base/xfce-utils SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-appfinder/4.9/xfce4-appfinder-4.9.5.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b2642d793d4ca0fbd86f28c25ffe98b5 diff --git a/metadata/md5-cache/xfce-base/xfce4-panel-4.10.0 b/metadata/md5-cache/xfce-base/xfce4-panel-4.10.0 index 66bc2160475c..fc5dbeab7172 100644 --- a/metadata/md5-cache/xfce-base/xfce4-panel-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfce4-panel-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=x11-libs/cairo-1 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.31:1 >=xfce-base/exo-0.8 >=xfce-base/garcon-0.2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-panel/4.10/xfce4-panel-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=621bd498801ad444a62e7cce758c47ce diff --git a/metadata/md5-cache/xfce-base/xfce4-panel-4.8.6 b/metadata/md5-cache/xfce-base/xfce4-panel-4.8.6 index 51935043e3a1..f8847e94648d 100644 --- a/metadata/md5-cache/xfce-base/xfce4-panel-4.8.6 +++ b/metadata/md5-cache/xfce-base/xfce4-panel-4.8.6 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/dbus-glib-0.90 >=dev-libs/glib-2.18:2 >=x11-libs/cairo-1 >=x11-libs/gtk+-2.14:2 x11-libs/libX11 >=x11-libs/libwnck-2.22:1 >=xfce-base/exo-0.6 >=xfce-base/garcon-0.1.5 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfconf-4.8 SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-panel/4.8/xfce4-panel-4.8.6.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f1653fbba885957db8771da2013e6153 diff --git a/metadata/md5-cache/xfce-base/xfce4-panel-4.9.2 b/metadata/md5-cache/xfce-base/xfce4-panel-4.9.2 index 218d9273e4e5..ea9c07f331b2 100644 --- a/metadata/md5-cache/xfce-base/xfce4-panel-4.9.2 +++ b/metadata/md5-cache/xfce-base/xfce4-panel-4.9.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=x11-libs/cairo-1 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.31:1 >=xfce-base/exo-0.7.3 >=xfce-base/garcon-0.1.12 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/libxfce4util-4.9.1 >=xfce-base/xfconf-4.9.1 SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-panel/4.9/xfce4-panel-4.9.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e454da86f4542914f31b3817a9275e33 diff --git a/metadata/md5-cache/xfce-base/xfce4-session-4.10.0 b/metadata/md5-cache/xfce-base/xfce4-session-4.10.0 index d8caef678409..f293af6d68a8 100644 --- a/metadata/md5-cache/xfce-base/xfce4-session-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfce4-session-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.30:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/xfconf-4.10 gnome-keyring? ( >=gnome-base/libgnome-keyring-2.22 ) !xfce-base/xfce-utils x11-apps/xrdb x11-misc/xdg-user-dirs consolekit? ( || ( sys-auth/consolekit >=sys-apps/systemd-40 ) ) policykit? ( >=sys-auth/polkit-0.104-r1 ) udev? ( >=sys-power/upower-0.9.15 ) xscreensaver? ( || ( >=x11-misc/xscreensaver-5.15 gnome-extra/gnome-screensaver >=x11-misc/xlockmore-5.38 >=x11-misc/slock-1 ) ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-session/4.10/xfce4-session-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b7d046278be9eba10ae368e22cdb89bb diff --git a/metadata/md5-cache/xfce-base/xfce4-session-4.8.2 b/metadata/md5-cache/xfce-base/xfce4-session-4.8.2 index 729b99b5aaba..6c3cfa47a3b5 100644 --- a/metadata/md5-cache/xfce-base/xfce4-session-4.8.2 +++ b/metadata/md5-cache/xfce-base/xfce4-session-4.8.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) consolekit? ( || ( sys-auth/consolekit sys-apps/systemd ) ) policykit? ( sys-auth/polkit ) udev? ( sys-power/upower ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-session/4.8/xfce4-session-4.8.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=037cc2301fbb9b50117422a153acd35b diff --git a/metadata/md5-cache/xfce-base/xfce4-session-4.8.3-r1 b/metadata/md5-cache/xfce-base/xfce4-session-4.8.3-r1 index 878de3638926..4c3b126e0bdc 100644 --- a/metadata/md5-cache/xfce-base/xfce4-session-4.8.3-r1 +++ b/metadata/md5-cache/xfce-base/xfce4-session-4.8.3-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Xfce's session manager EAPI=4 HOMEPAGE=http://www.xfce.org/projects/xfce4-session/ @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.92 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=xfce-base/xfce-utils-4.8 gnome? ( gnome-base/gconf:2 ) gnome-keyring? ( gnome-base/libgnome-keyring ) xfce_plugins_logout? ( >=xfce-base/xfce4-panel-4.8 ) consolekit? ( || ( sys-auth/consolekit sys-apps/systemd ) ) policykit? ( >=sys-auth/polkit-0.102 ) udev? ( sys-power/upower ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-session/4.8/xfce4-session-4.8.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=fb19f939fb3dc3157880aff7fd7c2c46 diff --git a/metadata/md5-cache/xfce-base/xfce4-session-4.9.2 b/metadata/md5-cache/xfce-base/xfce4-session-4.9.2 index 7c294a41cb8f..7b2c6305661a 100644 --- a/metadata/md5-cache/xfce-base/xfce4-session-4.9.2 +++ b/metadata/md5-cache/xfce-base/xfce4-session-4.9.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 x11-apps/iceauth x11-libs/libSM >=x11-libs/libwnck-2.22:1 x11-libs/libX11 >=xfce-base/libxfce4util-4.9.1 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/xfconf-4.9.1 gnome-keyring? ( >=gnome-base/libgnome-keyring-2.22 ) !xfce-base/xfce-utils x11-apps/xrdb x11-misc/xdg-user-dirs consolekit? ( || ( sys-auth/consolekit >=sys-apps/systemd-40 ) ) policykit? ( >=sys-auth/polkit-0.104-r1 ) udev? ( >=sys-power/upower-0.9.15 ) xscreensaver? ( || ( >=x11-misc/xscreensaver-5.15 gnome-extra/gnome-screensaver >=x11-misc/xlockmore-5.38 >=x11-misc/slock-1 ) ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-session/4.9/xfce4-session-4.9.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=ca926f65f1f30963c143862b4c051143 diff --git a/metadata/md5-cache/xfce-base/xfce4-settings-4.10.0 b/metadata/md5-cache/xfce-base/xfce4-settings-4.10.0 index 297809c4fb73..642babf40e61 100644 --- a/metadata/md5-cache/xfce-base/xfce4-settings-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfce4-settings-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 media-libs/fontconfig >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2 >=xfce-base/exo-0.8 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) libnotify? ( >=x11-libs/libnotify-0.7 ) xklavier? ( >=x11-libs/libxklavier-5 ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-settings/4.10/xfce4-settings-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f7fb998d19520120570993cd09c54571 diff --git a/metadata/md5-cache/xfce-base/xfce4-settings-4.8.3 b/metadata/md5-cache/xfce-base/xfce4-settings-4.8.3 index 6fb4baf298ec..e148af4b6813 100644 --- a/metadata/md5-cache/xfce-base/xfce4-settings-4.8.3 +++ b/metadata/md5-cache/xfce-base/xfce4-settings-4.8.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.90 >=dev-libs/glib-2.16:2 >=gnome-base/libglade-2 >=x11-libs/gtk+-2.14:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfconf-4.8 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) libnotify? ( >=x11-libs/libnotify-0.7 ) xklavier? ( x11-libs/libxklavier ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-settings/4.8/xfce4-settings-4.8.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=d43fccd41053c4690a5a01ab2b9416fd diff --git a/metadata/md5-cache/xfce-base/xfce4-settings-4.9.5 b/metadata/md5-cache/xfce-base/xfce4-settings-4.9.5 index 10c9c80c9ae8..dcb091e51f0b 100644 --- a/metadata/md5-cache/xfce-base/xfce4-settings-4.9.5 +++ b/metadata/md5-cache/xfce-base/xfce4-settings-4.9.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 media-libs/fontconfig >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.1.12 >=xfce-base/exo-0.7.3 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/libxfce4util-4.9.1 >=xfce-base/xfconf-4.9.1 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) libnotify? ( >=x11-libs/libnotify-0.7 ) xklavier? ( >=x11-libs/libxklavier-5 ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfce4-settings/4.9/xfce4-settings-4.9.5.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=7f3155250e4abe32b049f3225e61fa23 diff --git a/metadata/md5-cache/xfce-base/xfconf-4.10.0 b/metadata/md5-cache/xfce-base/xfconf-4.10.0 index d10d45b7b0e4..7622d1048d03 100644 --- a/metadata/md5-cache/xfce-base/xfconf-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfconf-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=xfce-base/libxfce4util-4.10 perl? ( dev-perl/glib-perl ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfconf/4.10/xfconf-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=d22cebf9cd65caf336d14f8ca50e51ae diff --git a/metadata/md5-cache/xfce-base/xfconf-4.8.1 b/metadata/md5-cache/xfce-base/xfconf-4.8.1 index 1c7cab2de891..2b1a3b0a7f1e 100644 --- a/metadata/md5-cache/xfce-base/xfconf-4.8.1 +++ b/metadata/md5-cache/xfce-base/xfconf-4.8.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/dbus-glib-0.90 >=dev-libs/glib-2.18:2 >=xfce-base/libxfce4uti RESTRICT=test SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfconf/4.8/xfconf-4.8.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=487cead4185dade3f01c1cd7945d10bf diff --git a/metadata/md5-cache/xfce-base/xfconf-4.9.1 b/metadata/md5-cache/xfce-base/xfconf-4.9.1 index 12cba835472b..5568c632e3c9 100644 --- a/metadata/md5-cache/xfce-base/xfconf-4.9.1 +++ b/metadata/md5-cache/xfce-base/xfconf-4.9.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=xfce-base/libxfce4util-4.9 perl? ( dev-perl/glib-perl ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfconf/4.9/xfconf-4.9.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e41f319ff75e76e315f439bcd585ebf4 diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.10.0 b/metadata/md5-cache/xfce-base/xfdesktop-4.10.0 index ecdb45a84061..8cb29306d98e 100644 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfdesktop-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.24:2 x11-libs/libSM >=x11-libs/libwnck-2.30:1 x11-libs/libX11 >=xfce-base/exo-0.8 >=xfce-base/garcon-0.2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) thunar? ( >=xfce-base/thunar-1.4[dbus] >=dev-libs/dbus-glib-0.98 ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfdesktop/4.10/xfdesktop-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=22dab87139972c17671f3c3c870f9e4a diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.8.3 b/metadata/md5-cache/xfce-base/xfdesktop-4.8.3 index c3539ca14ea8..b83a3d5f895b 100644 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.8.3 +++ b/metadata/md5-cache/xfce-base/xfdesktop-4.8.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libSM >=x11-libs/libwnck-2.22:1 >=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/garcon-0.1.5 >=xfce-base/xfconf-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) thunar? ( >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2[dbus] >=dev-libs/dbus-glib-0.90 ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfdesktop/4.8/xfdesktop-4.8.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=527ed520bff824785336a36b21d18439 diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.9.3 b/metadata/md5-cache/xfce-base/xfdesktop-4.9.3 index cfd1f6ca1232..80c4cc4e5967 100644 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.9.3 +++ b/metadata/md5-cache/xfce-base/xfdesktop-4.9.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.24:2 x11-libs/libSM >=x11-libs/libwnck-2.30:1 x11-libs/libX11 >=xfce-base/exo-0.7.3 >=xfce-base/garcon-0.1.12 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/libxfce4util-4.9.1 >=xfce-base/xfconf-4.9.1 libnotify? ( >=x11-libs/libnotify-0.7 ) thunar? ( >=xfce-base/thunar-1.3[dbus] >=dev-libs/dbus-glib-0.98 ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfdesktop/4.9/xfdesktop-4.9.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=8269e70f9b06da938d844efda8b8267e diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.10.0 b/metadata/md5-cache/xfce-base/xfwm4-4.10.0 index d05257e96cd5..6f4abc61a370 100644 --- a/metadata/md5-cache/xfce-base/xfwm4-4.10.0 +++ b/metadata/md5-cache/xfce-base/xfwm4-4.10.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.24:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXrender x11-libs/pango >=x11-libs/libwnck-2.30:1 >=xfce-base/libxfce4util-4.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/xfconf-4.10 startup-notification? ( x11-libs/startup-notification ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfwm4/4.10/xfwm4-4.10.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=d859c5e05d18795af656b039aeb901f2 diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.8.3 b/metadata/md5-cache/xfce-base/xfwm4-4.8.3 index f9beb42dfb1a..aa3c58470886 100644 --- a/metadata/md5-cache/xfce-base/xfwm4-4.8.3 +++ b/metadata/md5-cache/xfce-base/xfwm4-4.8.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.10:2 >=x11-libs/gtk+-2.14:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXrender x11-libs/pango >=x11-libs/libwnck-2.22:1 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 startup-notification? ( x11-libs/startup-notification ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfwm4/4.8/xfwm4-4.8.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=26e32c288a2027fde953c2f87dd0872d diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.9.1 b/metadata/md5-cache/xfce-base/xfwm4-4.9.1 index 43cb6e0a6635..851321066d31 100644 --- a/metadata/md5-cache/xfce-base/xfwm4-4.9.1 +++ b/metadata/md5-cache/xfce-base/xfwm4-4.9.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.10 >=x11-libs/gtk+-2.14:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXrender x11-libs/pango >=x11-libs/libwnck-2.22:1 >=xfce-base/libxfce4util-4.9.1 >=xfce-base/libxfce4ui-4.9.2 >=xfce-base/xfconf-4.9.1 startup-notification? ( x11-libs/startup-notification ) xcomposite? ( x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes ) SLOT=0 SRC_URI=mirror://xfce/src/xfce/xfwm4/4.9/xfwm4-4.9.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=18bbd434b3762bd18bef539495e90f91 diff --git a/metadata/md5-cache/xfce-extra/eatmonkey-0.1.4 b/metadata/md5-cache/xfce-extra/eatmonkey-0.1.4 index 1ce97ebcc13d..4a1221eaa9a5 100644 --- a/metadata/md5-cache/xfce-extra/eatmonkey-0.1.4 +++ b/metadata/md5-cache/xfce-extra/eatmonkey-0.1.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=>=x11-libs/gtk+-2.12:2 dev-libs/libunique:1 >=xfce-base/libxfce4util-4.8 >=net-libs/libsoup-2.26:2.4 >=net-misc/aria2-1.9.0[bittorrent,xmlrpc] dev-lang/ruby dev-ruby/ruby-glib2 dev-ruby/ruby-gtk2 SLOT=0 SRC_URI=mirror://xfce/src/apps/eatmonkey/0.1/eatmonkey-0.1.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=fad64ca35809e8ddde770bcdd20b80a1 diff --git a/metadata/md5-cache/xfce-extra/thunar-archive-plugin-0.3.0 b/metadata/md5-cache/xfce-extra/thunar-archive-plugin-0.3.0 index 1d3040ffd749..1cfe8d44de90 100644 --- a/metadata/md5-cache/xfce-extra/thunar-archive-plugin-0.3.0 +++ b/metadata/md5-cache/xfce-extra/thunar-archive-plugin-0.3.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=xfce-base/libxfce4util-4.8 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 SLOT=0 SRC_URI=mirror://xfce/src/thunar-plugins/thunar-archive-plugin/0.3/thunar-archive-plugin-0.3.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=12137aae2f9f234db12c48f2e5ecb6fa diff --git a/metadata/md5-cache/xfce-extra/thunar-media-tags-plugin-0.2.0 b/metadata/md5-cache/xfce-extra/thunar-media-tags-plugin-0.2.0 index fb7e6766f9d4..571bb17990a4 100644 --- a/metadata/md5-cache/xfce-extra/thunar-media-tags-plugin-0.2.0 +++ b/metadata/md5-cache/xfce-extra/thunar-media-tags-plugin-0.2.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=media-libs/taglib-1.6 >=x11-libs/gtk+-2.12:2 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=media-libs/taglib-1.6 >=x11-libs/gtk+-2.12:2 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Adds special features for media files to the Thunar File Manager EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/thunar-plugins/thunar-media-tags-plugin @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/taglib-1.6 >=x11-libs/gtk+-2.12:2 >=xfce-base/exo-0.6 >=xfce-base/thunar-1.2 SLOT=0 SRC_URI=mirror://xfce/src/thunar-plugins/thunar-media-tags-plugin/0.2/thunar-media-tags-plugin-0.2.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=2ca4eae3db0995138b8291afe6e7aeaf diff --git a/metadata/md5-cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 b/metadata/md5-cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 index 2a7def5965d3..6d3002ed4c57 100644 --- a/metadata/md5-cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 +++ b/metadata/md5-cache/xfce-extra/thunar-shares-plugin-0.2.0_p20101105 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.18 >=x11-libs/gtk+-2.12:2 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.18 >=x11-libs/gtk+-2.12:2 >=xfce-base/thunar-1.2 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Thunar plugin to share files using Samba EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/thunar-plugins/thunar-shares-plugin @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18 >=x11-libs/gtk+-2.12:2 >=xfce-base/thunar-1.2 SLOT=0 SRC_URI=mirror://gentoo/thunar-shares-plugin-0.2.0_p20101105.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=9357ec6fc984133cd593d60bdc030eb8 diff --git a/metadata/md5-cache/xfce-extra/thunar-vcs-plugin-0.1.4 b/metadata/md5-cache/xfce-extra/thunar-vcs-plugin-0.1.4 index 3953cf3cac9c..e5e47ac9e225 100644 --- a/metadata/md5-cache/xfce-extra/thunar-vcs-plugin-0.1.4 +++ b/metadata/md5-cache/xfce-extra/thunar-vcs-plugin-0.1.4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4util-4.8 >=xfce-base/thunar-1.2 git? ( dev-vcs/git ) subversion? ( >=dev-libs/apr-0.9.7 >=dev-vcs/subversion-1.5 ) SLOT=0 SRC_URI=mirror://xfce/src/thunar-plugins/thunar-vcs-plugin/0.1/thunar-vcs-plugin-0.1.4.tar.bz2 mirror://gentoo/thunar-vcs-plugin-0.1.4-ru.po.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f48e830d0c1bd555af16a0b6025a4b03 diff --git a/metadata/md5-cache/xfce-extra/thunar-volman-0.6.0 b/metadata/md5-cache/xfce-extra/thunar-volman-0.6.0 index 498b64b0c2cc..945e440f7a18 100644 --- a/metadata/md5-cache/xfce-extra/thunar-volman-0.6.0 +++ b/metadata/md5-cache/xfce-extra/thunar-volman-0.6.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/exo-0.6 >=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.14:2 || ( >=sys-fs/udev-171[gudev] >=sys-fs/udev-145[extras] ) >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfconf-4.8 libnotify? ( x11-libs/libnotify ) >=xfce-base/thunar-1.2[udev] SLOT=0 SRC_URI=mirror://xfce/src/apps/thunar-volman/0.6/thunar-volman-0.6.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=81f497333ff9b36bb74931d43aff88bd diff --git a/metadata/md5-cache/xfce-extra/thunar-volman-0.8.0 b/metadata/md5-cache/xfce-extra/thunar-volman-0.8.0 index 6cba93b2bebe..b7dce0a2e358 100644 --- a/metadata/md5-cache/xfce-extra/thunar-volman-0.8.0 +++ b/metadata/md5-cache/xfce-extra/thunar-volman-0.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.20 || ( >=sys-fs/udev-171-r5[gudev] =x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.8 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) >=xfce-base/thunar-1.4[udev] SLOT=0 SRC_URI=mirror://xfce/src/apps/thunar-volman/0.8/thunar-volman-0.8.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b68badbe3d146e7d71d8088f826ff12c diff --git a/metadata/md5-cache/xfce-extra/transd-0_p20120503 b/metadata/md5-cache/xfce-extra/transd-0_p20120503 index 9ae474a6f5c0..7d8bc7f5b949 100644 --- a/metadata/md5-cache/xfce-extra/transd-0_p20120503 +++ b/metadata/md5-cache/xfce-extra/transd-0_p20120503 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=x11-libs/libX11 >=xfce-base/libxfce4util-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=x11-libs/libX11 >=xfce-base/libxfce4util-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A small daemon to watch for window creation and set window transparency values EAPI=4 HOMEPAGE=http://spuriousinterrupt.org/projects/transd @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/libX11 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://gentoo/transd-0_p20120503.tar.xz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=d5ae8f86128d86204b51e94e8b3c4e80 diff --git a/metadata/md5-cache/xfce-extra/tumbler-0.1.23 b/metadata/md5-cache/xfce-extra/tumbler-0.1.23 index 58a91a5e436a..b0374816841f 100644 --- a/metadata/md5-cache/xfce-extra/tumbler-0.1.23 +++ b/metadata/md5-cache/xfce-extra/tumbler-0.1.23 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.90 >=dev-libs/glib-2.16 media-libs/freetype:2 >=media-libs/libpng-1.2:0 >=sys-apps/dbus-1.4 x11-libs/gdk-pixbuf:2 ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.7 ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ) jpeg? ( virtual/jpeg ) odf? ( >=gnome-extra/libgsf-1.14.20 ) pdf? ( >=app-text/poppler-0.12.4[cairo] ) raw? ( >=media-libs/libopenraw-0.0.8[gtk] ) >=xfce-base/thunar-1.2 SLOT=0 SRC_URI=mirror://xfce/src/apps/tumbler/0.1/tumbler-0.1.23.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=aa798ec3c1e17dc46235d9a9c5160073 diff --git a/metadata/md5-cache/xfce-extra/tumbler-0.1.25 b/metadata/md5-cache/xfce-extra/tumbler-0.1.25 index 874946bbc9a5..a7a07488c854 100644 --- a/metadata/md5-cache/xfce-extra/tumbler-0.1.25 +++ b/metadata/md5-cache/xfce-extra/tumbler-0.1.25 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.20 media-libs/freetype:2 >=media-libs/libpng-1.2:0 >=sys-apps/dbus-1.4.16 x11-libs/gdk-pixbuf:2 ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.7 ) gstreamer? ( =media-libs/gstreamer-0.10* =media-libs/gst-plugins-base-0.10* ) jpeg? ( virtual/jpeg ) odf? ( >=gnome-extra/libgsf-1.14.20 ) pdf? ( >=app-text/poppler-0.12.4[cairo] ) raw? ( >=media-libs/libopenraw-0.0.8[gtk] ) >=xfce-base/thunar-1.4 SLOT=0 SRC_URI=mirror://xfce/src/apps/tumbler/0.1/tumbler-0.1.25.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=8b20973bdbb4ea02219187c94e9a7b72 diff --git a/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.4 b/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.4 index 839f47339c05..6c7930919dcb 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-battery-plugin/1.0/xfce4-battery-plugin-1.0.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=14e38d1385c9362a62f93446534c1b07 diff --git a/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.5 b/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.5 index b961e963aabc..f75dd028622a 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.5 +++ b/metadata/md5-cache/xfce-extra/xfce4-battery-plugin-1.0.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-battery-plugin/1.0/xfce4-battery-plugin-1.0.5.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e945ea220c8a2e89406edb1945832a0e diff --git a/metadata/md5-cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 b/metadata/md5-cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 index 1a3f48ef3624..14043a220e38 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 +++ b/metadata/md5-cache/xfce-extra/xfce4-cellmodem-plugin-0.0.5 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=sys-apps/pciutils[zlib] virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=sys-apps/pciutils[zlib] virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A panel plug-in with monitoring support for GPRS/UMTS(3G)/HSDPA(3.5G) modems EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-cellmodem-plugin @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/pciutils[zlib] virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-cellmodem-plugin/0.0/xfce4-cellmodem-plugin-0.0.5.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=07d80c595debfcef82a0d6e1d231fcc2 diff --git a/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.2 b/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.2 index b7c388f4e1c2..893f9e50ab31 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.2 +++ b/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18 dev-libs/libunique:1 >=x11-libs/gtk+-2.14:2 x11-libs/libXtst >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/xfconf-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-clipman-plugin/1.2/xfce4-clipman-plugin-1.2.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f7cd48c87a4083d92871121b3574a102 diff --git a/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.3 b/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.3 index 16c33310bcc0..2cd4fedc57e0 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-clipman-plugin-1.2.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18 dev-libs/libunique:1 >=x11-libs/gtk+-2.14:2 x11-libs/libXtst >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/xfconf-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-clipman-plugin/1.2/xfce4-clipman-plugin-1.2.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=adfaecbf70f897a91cc874a0c46c111f diff --git a/metadata/md5-cache/xfce-extra/xfce4-cpufreq-plugin-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-cpufreq-plugin-1.0.0 index b0fd8f053bab..d67d4ddfd3ad 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-cpufreq-plugin-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-cpufreq-plugin-1.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-cpufreq-plugin/1.0/xfce4-cpufreq-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b946f86330e333e8e88d076e15b86dc3 diff --git a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.1 b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.1 index 6fdc01204e61..544faa8d4168 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-2 RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-cpugraph-plugin/1.0/xfce4-cpugraph-plugin-1.0.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=146398536c832db2eb05b67cfe474a77 diff --git a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.2 b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.2 index e2065f116bba..2f61b3e8ba80 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.2 +++ b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.2 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-2 RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-cpugraph-plugin/1.0/xfce4-cpugraph-plugin-1.0.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=ec2ebb4ad18229b900136ac5b5f4615f diff --git a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.3 b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.3 index 3e292ae0d9f2..7ca34031e625 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.3 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-2 RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-cpugraph-plugin/1.0/xfce4-cpugraph-plugin-1.0.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=0e90501e577192fd8c90256a2800e7da diff --git a/metadata/md5-cache/xfce-extra/xfce4-datetime-plugin-0.6.1 b/metadata/md5-cache/xfce-extra/xfce4-datetime-plugin-0.6.1 index b4e8dbbc7ddb..4d5d190bc335 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-datetime-plugin-0.6.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-datetime-plugin-0.6.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.6:2 >=xfce-base/libxfce4util-4.3.99.2 >=xfce-base/libxfcegui4-4.3.99.2 >=xfce-base/xfce4-panel-4.3.99.2 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-datetime-plugin/0.6/xfce4-datetime-plugin-0.6.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=c00e87bebeba3d27bc2acbd63526a940 diff --git a/metadata/md5-cache/xfce-extra/xfce4-dict-0.6.0 b/metadata/md5-cache/xfce-extra/xfce4-dict-0.6.0 index 0a8229c1cfc3..1711e4583306 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-dict-0.6.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-dict-0.6.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A dict.org querying application and panel plug-in for the Xfce desktop EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/applications/xfce4-dict @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.24 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-dict/0.6/xfce4-dict-0.6.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=1d82accf9f24c19b9130a63b928e5cc6 diff --git a/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 b/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 index 8801d32d5a84..35835687f1cb 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.3.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 virtual/pkgconfig dev-util/intltool >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 virtual/pkgconfig dev-util/intltool >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Xfce's disk usage and performance panel plugin EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-diskperf-plugin @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-diskperf-plugin/2.3/xfce4-diskperf-plugin-2.3.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=63da8d10217e0a6c2513b7ba449bfd81 diff --git a/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.3 b/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.3 index 5c670cf93423..ca5e42396fd1 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.3 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-diskperf-plugin/2.5/xfce4-diskperf-plugin-2.5.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=2ce7aa22e59dca9699aa1685b26e544c diff --git a/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.4 b/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.4 index d95e63f01792..15b72f71779a 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-diskperf-plugin-2.5.4 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-diskperf-plugin/2.5/xfce4-diskperf-plugin-2.5.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f769045d0cd0ad307fce03acbc878f74 diff --git a/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-0.8.0 b/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-0.8.0 index fee5e67aa004..a3d30d97a5fa 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-0.8.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-0.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-embed-plugin/0.8/xfce4-embed-plugin-0.8.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6845b5ba9c1e559a21d559c7d08015e8 diff --git a/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.0.0 index e6d471cad578..20993ccc89da 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.0.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-embed-plugin/1.0/xfce4-embed-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=fe605cd404676a0ca91436c53a323e91 diff --git a/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1 b/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1 index 9eb4de5dea06..4f6abf645ee2 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.6:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-eyes-plugin/4.4/xfce4-eyes-plugin-4.4.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6ee1c00abac05390fa2d16a8ed99d2e8 diff --git a/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 b/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 index fdaa762be531..862157ea6a53 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.1-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A panel plug-in which adds classic eyes to your every step EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-eyes-plugin @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-eyes-plugin/4.4/xfce4-eyes-plugin-4.4.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=d8c91edc1693fb648908e9a5e77eaef7 diff --git a/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.0 index 09bdc4facc4c..f8daffe7a0d9 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-fsguard-plugin/1.0/xfce4-fsguard-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=fa144c643e6b04691b8936a436071fa2 diff --git a/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.1 b/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.1 index e384ad5eeba5..dee77f844dec 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-fsguard-plugin-1.0.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-fsguard-plugin/1.0/xfce4-fsguard-plugin-1.0.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=ed5c99da57c1368be91d5f5492aa0b1d diff --git a/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.3.1 b/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.3.1 index 46f01e56fbaf..ff530e18d158 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.3.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.3.1 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-genmon-plugin/3.3/xfce4-genmon-plugin-3.3.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=ee66da4f2a9448b6f3f448bb2c031605 diff --git a/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.4.0 b/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.4.0 index 66c07c1bfa77..6b1372763584 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.4.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-genmon-plugin-3.4.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-genmon-plugin/3.4/xfce4-genmon-plugin-3.4.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=2881cd82a448987d0b62853beb8c4647 diff --git a/metadata/md5-cache/xfce-extra/xfce4-gvfs-mount-0.0.4 b/metadata/md5-cache/xfce-extra/xfce4-gvfs-mount-0.0.4 index c0455f5feaaa..cc40e4024d36 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-gvfs-mount-0.0.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-gvfs-mount-0.0.4 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=gnome-base/libglade-2.6 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-gvfs-mount/0.0/xfce4-gvfs-mount-0.0.4-6d2684b.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=4df4d4f628b8a46422411238f862d507 diff --git a/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.8 b/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.8 index 8bf0171264b0..ae5b83ffad8a 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.8 +++ b/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.8 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=app-laptop/hdapsd-20081213 >=app-laptop/tp_smapi-0.39 SLOT=0 SRC_URI=http://michael.orlitzky.com/code/releases/xfce4-hdaps-0.0.8.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=84588db83bfb4461d380353dd15223ae diff --git a/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9 b/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9 index 141fe74065ec..95e4bfa41df0 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9 +++ b/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=app-laptop/hdapsd-20090101 >=app-laptop/tp_smapi-0.39 SLOT=0 SRC_URI=http://michael.orlitzky.com/code/releases/xfce4-hdaps-0.0.9.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=a9b985c778c506627658265afae5532a diff --git a/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.4.0 b/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.4.0 index e9b59892b9c5..50a6734a3ace 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.4.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.4.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/libindicator-0.4:0 x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-indicator-plugin/0.4/xfce4-indicator-plugin-0.4.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=abe656f80801531b9b6f2aae3b3206b4 diff --git a/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.5.0 b/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.5.0 index a2e815d09b76..72d98abe6aa2 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.5.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-indicator-plugin-0.5.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/libindicator-0.4:0 >=x11-libs/gtk+-2.14:2 x11-libs/libX11 >=xfce-base/exo-0.6 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/xfconf-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-indicator-plugin/0.5/xfce4-indicator-plugin-0.5.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=46614671bada63f914559b053c2b1ebd diff --git a/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6 b/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6 index 7a808b492210..4c8e5eeb5fdb 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6 +++ b/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=x11-libs/gtk+-2.20:2 SLOT=0 SRC_URI=http://compas.com.ua/oco/file/xfce4-kbdleds-plugin-0.0.6.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=21a82512e674357820fe36747767d893 diff --git a/metadata/md5-cache/xfce-extra/xfce4-linelight-plugin-0.1.7 b/metadata/md5-cache/xfce-extra/xfce4-linelight-plugin-0.1.7 index b6a15b786b3f..d61a07b46136 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-linelight-plugin-0.1.7 +++ b/metadata/md5-cache/xfce-extra/xfce4-linelight-plugin-0.1.7 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.12:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.12:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 virtual/pkgconfig sys-devel/gettext >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A simple locate based search plug-in for the Xfce panel EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-linelight-plugin @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18:2 >=x11-libs/gtk+-2.12:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 sys-apps/mlocate SLOT=0 SRC_URI=mirror://debian/pool/main/x/xfce4-linelight-plugin/xfce4-linelight-plugin_0.1.7.orig.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=1b26269547a8058e93c5c0834d765426 diff --git a/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 b/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 index b5a8ba4f1d14..9a6874d5637a 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=An mail notification panel plug-in for the Xfce desktop environment EAPI=4 HOMEPAGE=http://spuriousinterrupt.org/projects/mailwatch @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) SLOT=0 SRC_URI=mirror://gentoo/xfce4-mailwatch-plugin-1.1.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=654c9a53e769093abba3417552ab2ca7 diff --git a/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 b/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 index 71d357d6473d..0ac3069e091e 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.1.0-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=An mail notification panel plug-in for the Xfce desktop environment EAPI=4 HOMEPAGE=http://spuriousinterrupt.org/projects/mailwatch @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 ssl? ( dev-libs/libgcrypt >=net-libs/gnutls-2 ) SLOT=0 SRC_URI=mirror://gentoo/xfce4-mailwatch-plugin-1.1.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=7b4c1413ffaf032528e6b9a022dd2ffc diff --git a/metadata/md5-cache/xfce-extra/xfce4-messenger-plugin-0.1.0 b/metadata/md5-cache/xfce-extra/xfce4-messenger-plugin-0.1.0 index 77499a18ab0b..5611dd382d61 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-messenger-plugin-0.1.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-messenger-plugin-0.1.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=dev-libs/dbus-glib >=dev-libs/glib-2 sys-apps/dbus x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=dev-libs/dbus-glib >=dev-libs/glib-2 sys-apps/dbus x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A plugin that listens DBus messages and displays received messages EAPI=4 HOMEPAGE=http://packages.qa.debian.org/x/xfce4-messenger-plugin.html @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/dbus-glib >=dev-libs/glib-2 sys-apps/dbus x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://debian/pool/main/x/xfce4-messenger-plugin/xfce4-messenger-plugin_0.1.0.orig.tar.gz mirror://debian/pool/main/x/xfce4-messenger-plugin/xfce4-messenger-plugin_0.1.0-5.debian.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=eafef7df221229016449e377382dcbc4 diff --git a/metadata/md5-cache/xfce-extra/xfce4-mixer-4.8.0 b/metadata/md5-cache/xfce-extra/xfce4-mixer-4.8.0 index 221222e7bb5f..a39dac2d8bec 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mixer-4.8.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-mixer-4.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.18 =media-libs/gst-plugins-base-0.10* >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/xfconf-4.8 alsa? ( =media-plugins/gst-plugins-alsa-0.10* ) oss? ( =media-plugins/gst-plugins-oss-0.10* ) !alsa? ( !oss? ( =media-plugins/gst-plugins-meta-0.10* ) ) SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-mixer/4.8/xfce4-mixer-4.8.0.tar.bz2 mirror://gentoo/xfce4-mixer-4.8.0-LINGUAS.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=880a4035924689956c66a93bff9ae0c3 diff --git a/metadata/md5-cache/xfce-extra/xfce4-modemlights-plugin-0.1.3.99 b/metadata/md5-cache/xfce-extra/xfce4-modemlights-plugin-0.1.3.99 index efbc2311bb58..4bd242925100 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-modemlights-plugin-0.1.3.99 +++ b/metadata/md5-cache/xfce-extra/xfce4-modemlights-plugin-0.1.3.99 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2 x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-modemlights-plugin/0.1/xfce4-modemlights-plugin-0.1.3.99.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=c38065137d00b4e45030ba0daaf327d8 diff --git a/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.5.5 b/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.5.5 index 10becda8d44d..6eaf3ae01ccf 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.5.5 +++ b/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.5.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-mount-plugin/0.5/xfce4-mount-plugin-0.5.5.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=bac5b47386090ddf393b7278776f6367 diff --git a/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.3 b/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.3 index de0841cc3242..8cf23626ff83 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-mount-plugin/0.6/xfce4-mount-plugin-0.6.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6da117d673c023c38dca62ff196258ad diff --git a/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.4 b/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.4 index cdff4189a305..c8b35d930838 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-mount-plugin-0.6.4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-mount-plugin/0.6/xfce4-mount-plugin-0.6.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=03b83590b97f05dbc4d511d4d3fcb76a diff --git a/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.3 b/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.3 index bf6f43adfa8b..e01b939d54d2 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.3 @@ -9,5 +9,5 @@ LICENSE=ISC RDEPEND=>=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 libmpd? ( media-libs/libmpd ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-mpc-plugin/0.4/xfce4-mpc-plugin-0.4.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=f116598f0663eb154b1694ce0d46fd9d diff --git a/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.4 b/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.4 index 47885cc6254d..3e5739bb2fe5 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-mpc-plugin-0.4.4 @@ -9,5 +9,5 @@ LICENSE=ISC RDEPEND=>=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 libmpd? ( media-libs/libmpd ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-mpc-plugin/0.4/xfce4-mpc-plugin-0.4.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=27c1cfd68cfdf9166c18178dc2831a1c diff --git a/metadata/md5-cache/xfce-extra/xfce4-netload-plugin-1.1.0 b/metadata/md5-cache/xfce-extra/xfce4-netload-plugin-1.1.0 index 3bbb071cb341..139a3677a5a0 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-netload-plugin-1.1.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-netload-plugin-1.1.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-netload-plugin/1.1/xfce4-netload-plugin-1.1.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=85730eed9c96e7f194335c6aae303433 diff --git a/metadata/md5-cache/xfce-extra/xfce4-netspeed-plugin-0.1 b/metadata/md5-cache/xfce-extra/xfce4-netspeed-plugin-0.1 index 927a7273ea99..2f0263d237bd 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-netspeed-plugin-0.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-netspeed-plugin-0.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2 >=gnome-base/libgtop-2 x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=http://xfce4-netspeed-plugin.googlecode.com/files/xfce4-netspeed-plugin-0.1.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=dbca671ff167c56311e6eb118580903c diff --git a/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.7.7 b/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.7.7 index 3456ddebb2ca..23230116733e 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.7.7 +++ b/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.7.7 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16:2 >=x11-libs/gtk+-2.18:2 >=xfce-base/libxfcegui4-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/xfconf-4.8 dev-libs/libunique:1 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-notes-plugin/1.7/xfce4-notes-plugin-1.7.7.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=67d12769c6717f6ea60b733eb813a7c4 diff --git a/metadata/md5-cache/xfce-extra/xfce4-notifyd-0.2.2 b/metadata/md5-cache/xfce-extra/xfce4-notifyd-0.2.2 index ed681fb3fa01..5156865afd8b 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-notifyd-0.2.2 +++ b/metadata/md5-cache/xfce-extra/xfce4-notifyd-0.2.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfconf-4.8 >=x11-libs/gtk+-2.14:2 >=sys-apps/dbus-1.4.1 >=dev-libs/dbus-glib-0.88 SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-notifyd/0.2/xfce4-notifyd-0.2.2.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=ae5fd5f455d20ac99727a9299a9e31b2 diff --git a/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 b/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 index fc1a75a5f135..7ebec929c1d1 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.2.0-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A panel plug-in to provide quick access to files, folders and removable media EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-places-plugin/1.2/xfce4-places-plugin-1.2.0.tar.bz2 mirror://debian/pool/main/x/xfce4-places-plugin/xfce4-places-plugin_1.2.0-3.debian.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=d1bcfef4904d06cbea7ad281d62d004c diff --git a/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.3.0 b/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.3.0 index 9284748e8f58..248277e2da95 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.3.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.3.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.22 >=x11-libs/gtk+-2.14:2 x11-libs/libX11 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 libnotify? ( >=x11-libs/libnotify-0.7 ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-places-plugin/1.3/xfce4-places-plugin-1.3.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=2b43d738c3bba919d2faf18d45e39921 diff --git a/metadata/md5-cache/xfce-extra/xfce4-playercontrol-plugin-0.3.0 b/metadata/md5-cache/xfce-extra/xfce4-playercontrol-plugin-0.3.0 index e9aa6a9e6f01..7428496f4980 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-playercontrol-plugin-0.3.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-playercontrol-plugin-0.3.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=x11-libs/gtk+:2 x11-libs/pango >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 mpd? ( >=media-libs/libmpd-0.12 ) audacious? ( >=media-sound/audacious-1.4 ) SLOT=0 SRC_URI=http://www.bilimfeneri.gen.tr/ilgar/xfce4-playercontrol-plugin-0.3.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=64110a0201c2240685caa3d7077be01b diff --git a/metadata/md5-cache/xfce-extra/xfce4-power-manager-1.2.0 b/metadata/md5-cache/xfce-extra/xfce4-power-manager-1.2.0 index b5a499eb7cfe..68283b6de568 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-power-manager-1.2.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-power-manager-1.2.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.24 >=sys-power/upower-0.9.15 >=x11-libs/gtk+-2.20:2 >=x11-libs/libnotify-0.7 >=x11-libs/libXrandr-1.2 x11-libs/libX11 x11-libs/libXext >=xfce-base/xfconf-4.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 kernel_linux? ( sys-fs/udisks:0 ) policykit? ( >=sys-auth/polkit-0.104-r1 ) xfce_plugins_brightness? ( >=xfce-base/xfce4-panel-4.10 ) networkmanager? ( net-misc/networkmanager ) SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-power-manager/1.2/xfce4-power-manager-1.2.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=365733ccf24b126d92a4583171a19324 diff --git a/metadata/md5-cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 b/metadata/md5-cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 index be407b8ba04e..bd43d95f418a 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-quicklauncher-plugin-1.9.4-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A quicklauncher plug-in for the Xfce panel EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-quicklauncher-plugin @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-quicklauncher-plugin/1.9/xfce4-quicklauncher-plugin-1.9.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=a428e0a8826fc2c50b2df3f0b91b7844 diff --git a/metadata/md5-cache/xfce-extra/xfce4-radio-plugin-0.5.1 b/metadata/md5-cache/xfce-extra/xfce4-radio-plugin-0.5.1 index 8faa1b7c9371..0baace94f344 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-radio-plugin-0.5.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-radio-plugin-0.5.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-radio-plugin/0.5/xfce4-radio-plugin-0.5.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=4a504e78012fc77203a9285c7bc3239e diff --git a/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.0 b/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.0 index 42fea16f78c0..7eb9c69b8494 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Xfce4 screenshooter application and panel plugin EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/applications/xfce4-screenshooter @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-screenshooter/1.8/xfce4-screenshooter-1.8.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=23b002a5005d5e2496b78d313fa86bd2 diff --git a/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.1 b/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.1 index cb7cbb1497b7..94b167dd2c6a 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-screenshooter-1.8.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Xfce4 screenshooter application and panel plugin EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/applications/xfce4-screenshooter @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16 >=net-libs/libsoup-2.26 >=x11-libs/gdk-pixbuf-2.16 >=x11-libs/gtk+-2.16:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes >=xfce-base/exo-0.6 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfce4ui-4.8 SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-screenshooter/1.8/xfce4-screenshooter-1.8.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=406199d2def806bfc8c17bb74d4360f1 diff --git a/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.2.5 b/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.2.5 index 36d8686a98eb..fda7e788bcd1 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.2.5 +++ b/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.2.5 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat ) libnotify? ( >=x11-libs/libnotify-0.7 ) lm_sensors? ( >=sys-apps/lm_sensors-3.1.0 ) video_cards_nvidia? ( media-video/nvidia-settings ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.9.1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat ) libnotify? ( >=x11-libs/libnotify-0.7 ) lm_sensors? ( >=sys-apps/lm_sensors-3.1.0 ) video_cards_nvidia? ( media-video/nvidia-settings ) dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 >=dev-util/xfce4-dev-tools-4.10 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A panel plug-in for different sensors using acpi, lm_sensors and hddtemp EAPI=4 HOMEPAGE=http://goodies.xfce.org/projects/panel-plugins/xfce4-sensors-plugin @@ -10,5 +10,5 @@ RDEPEND=>=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-pane REQUIRED_USE=|| ( hddtemp lm_sensors acpi ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-sensors-plugin/1.2/xfce4-sensors-plugin-1.2.5.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=defd62ccabffe2acb9945b108c4856d0 diff --git a/metadata/md5-cache/xfce-extra/xfce4-smartbookmark-plugin-0.4.4-r2 b/metadata/md5-cache/xfce-extra/xfce4-smartbookmark-plugin-0.4.4-r2 index e68e76ca57f5..f2f6a00edcf0 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-smartbookmark-plugin-0.4.4-r2 +++ b/metadata/md5-cache/xfce-extra/xfce4-smartbookmark-plugin-0.4.4-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 x11-libs/libX11 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/exo-0.6 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-smartbookmark-plugin/0.4/xfce4-smartbookmark-plugin-0.4.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e249378f6d6df0a940bf9d5364040252 diff --git a/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.1 b/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.1 index 22e2de0bca4f..ff47101ccbe6 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/keybinder-0.2.2:0 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 glyr? ( >=media-libs/glyr-0.9.4 ) lastfm? ( >=media-libs/libclastfm-0.4_p2012 ) SLOT=0 SRC_URI=mirror://github/matiasdelellis/xfce4-soundmenu-plugin/xfce4-soundmenu-plugin-0.4.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6493af7441fc3d3da3a00cacd7ba3129 diff --git a/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.10 b/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.10 index 310276512d9a..67b53aa4bde1 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.10 +++ b/metadata/md5-cache/xfce-extra/xfce4-soundmenu-plugin-0.4.10 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/dbus-glib-0.98 >=dev-libs/keybinder-0.2.2:0 >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 glyr? ( >=media-libs/glyr-0.9.9 ) lastfm? ( >=media-libs/libclastfm-0.5 ) SLOT=0 SRC_URI=mirror://github/matiasdelellis/xfce4-soundmenu-plugin/xfce4-soundmenu-plugin-0.4.10.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=2f85b0e93c5a5c679160af570a4c89ba diff --git a/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.0.0 index f7940f7a71ea..db18ec40da6d 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.0.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=x11-libs/gtk+-2.6:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-systemload-plugin/1.0/xfce4-systemload-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=3da29782faaf6057a937ee9818a12c36 diff --git a/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.0 b/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.0 index ac93faf1418f..48a1cad539e0 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=x11-libs/gtk+-2.6:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 udev? ( >=sys-power/upower-0.9.16 ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-systemload-plugin/1.1/xfce4-systemload-plugin-1.1.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=9d75257e5fdb867997c2c51e62e70fe0 diff --git a/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.1 b/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.1 index efb4ca3911fa..be6e4e42dc48 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-systemload-plugin-1.1.1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=x11-libs/gtk+-2.6:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 udev? ( >=sys-power/upower-0.9.16 ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-systemload-plugin/1.1/xfce4-systemload-plugin-1.1.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=3faf821f802c1b30d193210b99cb7ed5 diff --git a/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.0.0 index 8f26a8f4b1b8..ee9e986ae321 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.0.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/cairo-1.5 >=x11-libs/gtk+-2.12:2 x11-libs/libwnck:1 SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-taskmanager/1.0/xfce4-taskmanager-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=2e068878b858885d742e7743e4e71808 diff --git a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0 index 1d8e4e577694..a159bf2d6e3f 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.8:2 >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=b8f28e2aaddd671e5e8684aa4f4ca7c5 diff --git a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0-r1 b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0-r1 index e0ea44a5dbd4..8e130ee4ebe6 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.0-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=188c02dc1a5a53e469032b8afebbe6cc diff --git a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.1 b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.1 index e2afba57c271..d28e810079f6 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-1.0.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=6eb802c5b8ff16d066a03d3ffe3e212c diff --git a/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.3 b/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.3 index 206c56da21d0..856bc0f1e023 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.3 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/libxfce4util-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-timer-plugin/0.6/xfce4-timer-plugin-0.6.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e63d488c290c47be737631d2f01f34e0 diff --git a/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.4 b/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.4 index da212a7a3174..7fcf22a1674e 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-timer-plugin-0.6.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-timer-plugin/0.6/xfce4-timer-plugin-0.6.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=e9faf663db47f362716b5ca7829fc689 diff --git a/metadata/md5-cache/xfce-extra/xfce4-vala-4.8.1 b/metadata/md5-cache/xfce-extra/xfce4-vala-4.8.1 index f0caffe31457..a1e0c5df2e58 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-vala-4.8.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-vala-4.8.1 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-lang/vala:0.12 >=xfce-base/exo-0.6 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=xfce-base/xfconf-4.8 SLOT=0 SRC_URI=mirror://xfce/src/bindings/xfce4-vala/4.8/xfce4-vala-4.8.1.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=032bcc661265502b876e40b434344eb0 diff --git a/metadata/md5-cache/xfce-extra/xfce4-verve-plugin-1.0.0 b/metadata/md5-cache/xfce-extra/xfce4-verve-plugin-1.0.0 index 7e9110df2116..e4ac4b26467c 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-verve-plugin-1.0.0 +++ b/metadata/md5-cache/xfce-extra/xfce4-verve-plugin-1.0.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=xfce-base/exo-0.6 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 >=dev-libs/libpcre-5 dbus? ( >=dev-libs/dbus-glib-0.98 ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-verve-plugin/1.0/xfce4-verve-plugin-1.0.0.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=16c27f6a05a9b1f7269554bc257e2160 diff --git a/metadata/md5-cache/xfce-extra/xfce4-volumed-0.1.13 b/metadata/md5-cache/xfce-extra/xfce4-volumed-0.1.13 index 5fad63f723ec..f35077a5baf6 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-volumed-0.1.13 +++ b/metadata/md5-cache/xfce-extra/xfce4-volumed-0.1.13 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/keybinder:0 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 >=xfce-base/xfconf-4.8 libnotify? ( x11-libs/libnotify ) alsa? ( media-plugins/gst-plugins-alsa:0.10 ) oss? ( media-plugins/gst-plugins-oss:0.10 ) !alsa? ( !oss? ( media-plugins/gst-plugins-meta:0.10 ) ) SLOT=0 SRC_URI=mirror://xfce/src/apps/xfce4-volumed/0.1/xfce4-volumed-0.1.13.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=48c9c69b65abde8b723d5d2905d5a840 diff --git a/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.10 b/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.10 index 32b5f904fd4f..bc66c3d2c827 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.10 +++ b/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.10 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 kernel_linux? ( sys-apps/net-tools ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-wavelan-plugin/0.5/xfce4-wavelan-plugin-0.5.10.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=7ef0b5585dc8a7d4db0c19e63895d95d diff --git a/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.11 b/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.11 index 9317ceb8eef0..c344544f4082 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.11 +++ b/metadata/md5-cache/xfce-extra/xfce4-wavelan-plugin-0.5.11 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 kernel_linux? ( sys-apps/net-tools ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-wavelan-plugin/0.5/xfce4-wavelan-plugin-0.5.11.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=09033fba5f27833f4a8163f8d7feb8f4 diff --git a/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r1 b/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r1 index 2350d9dd450e..2c5a1d74222d 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libxml2 x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-weather-plugin/0.7/xfce4-weather-plugin-0.7.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=264075128438290c10cace56714446a9 diff --git a/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r2 b/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r2 index 888a786c6aeb..513ebcd680bd 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r2 +++ b/metadata/md5-cache/xfce-extra/xfce4-weather-plugin-0.7.4-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/libxml2 x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-weather-plugin/0.7/xfce4-weather-plugin-0.7.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=dd70390479339ba9c630eb92ec2ca23f diff --git a/metadata/md5-cache/xfce-extra/xfce4-wmdock-plugin-0.3.4 b/metadata/md5-cache/xfce-extra/xfce4-wmdock-plugin-0.3.4 index ac16ffb2ccd9..ab3c1e2d969f 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-wmdock-plugin-0.3.4 +++ b/metadata/md5-cache/xfce-extra/xfce4-wmdock-plugin-0.3.4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 >=x11-libs/libwnck-2.8.1:1 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-wmdock-plugin/0.3/xfce4-wmdock-plugin-0.3.4.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=4e5d53a4a0925df6ee4fa6e9bf589d5c diff --git a/metadata/md5-cache/xfce-extra/xfce4-xkb-plugin-0.5.4.3 b/metadata/md5-cache/xfce-extra/xfce4-xkb-plugin-0.5.4.3 index dde21a653366..ec1b1b13a418 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-xkb-plugin-0.5.4.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-xkb-plugin-0.5.4.3 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-2 RDEPEND=x11-libs/gtk+:2 >=x11-libs/libwnck-2.12:1 >=x11-libs/libxklavier-5 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfce4-xkb-plugin/0.5/xfce4-xkb-plugin-0.5.4.3.tar.bz2 -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=da1da3f40c6433dbb2eb482c7bb631a0 diff --git a/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1 b/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1 index 11bfafc94941..18b549823eb9 100644 --- a/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1 +++ b/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 gnome-base/gdm SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfswitch-plugin/0.0/xfswitch-plugin-0.0.1.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=3ca727f905928afd8da223dc9101d53e diff --git a/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1-r1 b/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1-r1 index 0cfb925a8495..6c08c98076e2 100644 --- a/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1-r1 +++ b/metadata/md5-cache/xfce-extra/xfswitch-plugin-0.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4util-4.8 >=xfce-base/libxfcegui4-4.8 >=xfce-base/xfce4-panel-4.8 gdm? ( gnome-base/gdm ) !gdm? ( x11-misc/lightdm ) SLOT=0 SRC_URI=mirror://xfce/src/panel-plugins/xfswitch-plugin/0.0/xfswitch-plugin-0.0.1.tar.gz -_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 706fbad47e8ea196d3c986b61c7669ce +_eclasses_=autotools 9d170f07df0e48055093b8c6a60d0fba base 5f35078c26d6c60556d5c8a2feb4f84f eutils 327b713e2d6949c42cd96bc4898fd280 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils e0a2e141b421d38788b23422dfbe4f82 libtool 46e19fa7553f66c48ebc7cf025acd3ed multilib 5782800349f728f725f9378105c6a2ab multiprocessing 1512bdfe7004902b8cd2c466fc3df772 toolchain-funcs e575dd4d4682fc3539829c52d8382856 user d0a4d0735a6c0183d707ca919bd72f28 xfconf 880b0e8f23147d868b73f420e84bc1ba _md5_=4b23c4f2f64c2e0165f3f1af18e103d5 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index d30dca132abf..fa7ffd2ce6bf 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sun, 01 Jul 2012 20:07:37 +0000 +Mon, 02 Jul 2012 09:37:46 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 5dd3ee2593b9..f4b9a4223b0b 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sun Jul 1 20:07:34 UTC 2012 +Mon Jul 2 09:37:44 UTC 2012 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 9c5fedeaedbb..3f17f6ec854b 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sun, 01 Jul 2012 20:30:01 +0000 +Mon, 02 Jul 2012 10:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 7b75b7d6f19f..b52c98b17cc5 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1341173101 Sun Jul 1 20:05:01 2012 UTC +1341221701 Mon Jul 2 09:35:01 2012 UTC diff --git a/net-analyzer/jffnms/Manifest b/net-analyzer/jffnms/Manifest index bd79cdc90e4c..8d46b47e87f9 100644 --- a/net-analyzer/jffnms/Manifest +++ b/net-analyzer/jffnms/Manifest @@ -1,2 +1 @@ -DIST jffnms-0.8.3.tar.gz 698871 RMD160 681d498bf49f3e1011241254c441540ebbbe1860 SHA1 230cd88b9ff5b869e7a07c828425be15ede9614f SHA256 51f84606aa81113b2ea894c9e499f18df84e5317853aefd51610f5b279853ae4 DIST jffnms-0.9.3.tgz 636113 RMD160 9a8d180410a0f629650a49f410f851d7495ae955 SHA1 74b7cc31ec70e56cfe03655f1c94356306205ffe SHA256 f35d0ccd2a3baa39659a4a7f7a075a4dcbfb2f7fbc1da6a87c8f6bf357aaab9e diff --git a/net-analyzer/jffnms/jffnms-0.8.3-r2.ebuild b/net-analyzer/jffnms/jffnms-0.8.3-r2.ebuild deleted file mode 100644 index 4a14167e26d4..000000000000 --- a/net-analyzer/jffnms/jffnms-0.8.3-r2.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/jffnms/jffnms-0.8.3-r2.ebuild,v 1.3 2012/06/12 02:27:51 zmedico Exp $ - -inherit depend.apache eutils depend.php user - -DESCRIPTION="Network Management and Monitoring System." -HOMEPAGE="http://www.jffnms.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="mysql postgres snmp" - -DEPEND="net-analyzer/rrdtool - media-libs/gd - dev-php/PEAR-PEAR - net-analyzer/net-snmp - sys-apps/diffutils - app-mobilephone/smsclient" - -RDEPEND="${DEPEND} - media-gfx/graphviz - net-analyzer/nmap - net-analyzer/fping" - -need_apache -need_php_cli - -pkg_setup() { - local flags="pcre session snmp sockets wddx" - use mysql && flags="${flags} mysql" - use postgres && flags="${flags} postgres" - - if ! PHPCHECKNODIE="yes" require_php_with_use ${flags} \ - || ! PHPCHECKNODIE="yes" require_php_with_any_use gd gd-external ; then - eerror - eerror "${PHP_PKG} needs to be re-installed with all of the following" - eerror "USE flags enabled:" - eerror - eerror "${flags}" - eerror - eerror "as well as any of the following USE flags enabled:" - eerror - eerror "gd or gd-external" - eerror - die "Re-install ${PHP_PKG} with ${flags} and either gd or gd-external" - fi - - enewgroup jffnms - enewuser jffnms -1 /bin/bash -1 jffnms,apache -} - -src_unpack() { - unpack ${A} - cd "${S}" - - # Fixes Multiple vulnerabilities bug #192240 - epatch "${FILESDIR}"/${P}-misc-security-fixes.patch -} - -src_install(){ - INSTALL_DIR="/opt/${PN}" - IMAGE_DIR="${D}${INSTALL_DIR}" - - dodir "${INSTALL_DIR}" - cp -r * "${IMAGE_DIR}" || die - rm -f "${IMAGE_DIR}/LICENSE" - - # Clean up windows related stuff - rm -f "${IMAGE_DIR}/*.win32.txt" - rm -rf "${IMAGE_DIR}/docs/windows" - rm -rf "${IMAGE_DIR}/engine/windows" - - chown -R jffnms:apache "${IMAGE_DIR}" || die - chmod -R ug+rw "${IMAGE_DIR}" || die - - elog "${PN} has been partialy installed on your system. However you" - elog "still need proceed with final installation and configuration." - elog "You can visit http://www.gentoo.org/doc/en/jffnms.xml in order" - elog "to get detailed information on how to get jffnms up and running." -} diff --git a/net-analyzer/nagvis/nagvis-1.4.4.ebuild b/net-analyzer/nagvis/nagvis-1.4.4.ebuild deleted file mode 100644 index 0b0073faaeba..000000000000 --- a/net-analyzer/nagvis/nagvis-1.4.4.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagvis/nagvis-1.4.4.ebuild,v 1.1 2009/10/16 17:22:30 dertobi123 Exp $ - -inherit eutils confutils depend.php - -DESCRIPTION="NagVis is a visualization addon for the well known network managment system Nagios." -HOMEPAGE="http://www.nagvis.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="automap" - -DEPEND="" -RDEPEND=">=net-analyzer/ndoutils-1.4_beta4 - automap? ( >=media-gfx/graphviz-2.14 )" - -need_php_httpd - -pkg_setup() { - confutils_require_built_with_all dev-lang/php gd mysql unicode -} - -src_install() { - for docfile in README INSTALL - do - dodoc ${docfile} - rm ${docfile} - done - - grep -Rl "/usr/local" "${S}"/* | xargs sed -i s:/usr/local:/usr:g - - dodir /usr/share/nagvis - mv "${S}"/{config.php,index.php,nagvis,wui} "${D}"/usr/share/nagvis/ - - dodir /var/nagvis - dosym /var/nagvis /usr/share/nagvis/var - fowners apache:root /var/nagvis - - dodir /etc/nagvis - mv "${S}"/etc/* "${D}"/etc/nagvis/ - dosym /etc/nagvis /usr/share/nagvis/etc - - fperms 664 /etc/nagvis/nagvis.ini.php-sample - fperms 775 /etc/nagvis/maps - fowners apache:root /etc/nagvis/maps - fperms 664 /etc/nagvis/maps/*cfg - fowners apache:root /etc/nagvis/maps/*cfg -} - -pkg_postinst() { - elog "Before running NagVis for the first time, you will need to set up" - elog "/etc/nagvis/nagvis.ini.php" - elog "A sample is in" - elog "/etc/nagvis/nagvis.ini.php-sample" -} diff --git a/net-analyzer/symon/Manifest b/net-analyzer/symon/Manifest index 32fc5bb8532b..6bfb37039918 100644 --- a/net-analyzer/symon/Manifest +++ b/net-analyzer/symon/Manifest @@ -1,2 +1 @@ -DIST symon-2.84.tar.gz 105849 RMD160 0211185b3e19593e3a6807fe58ecfdd72520a6bc SHA1 1a4a79c01b43ae3efc7e9179266d3f7375eb94f3 SHA256 4b67beae478f4314c81428d44578670914fbc8e761e9c7ae0d9701c267f7a371 DIST symon-2.85.tar.gz 106011 RMD160 c355c188d23284de175756e044c43e8c9f6cc6e2 SHA1 96e4d0e6dbd763249fcc09c5e25e1ae233781fea SHA256 547329a1efbc2408298256d31a005db23869117ccf6249c052ef662b3ee12d35 diff --git a/net-analyzer/symon/symon-2.84.ebuild b/net-analyzer/symon/symon-2.84.ebuild deleted file mode 100644 index 912f38ea33a4..000000000000 --- a/net-analyzer/symon/symon-2.84.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/symon/symon-2.84.ebuild,v 1.1 2012/02/15 15:49:30 jer Exp $ - -EAPI=4 - -inherit perl-module toolchain-funcs - -DESCRIPTION="Performance and information monitoring tool" -HOMEPAGE="http://www.xs4all.nl/~wpd/symon/" -SRC_URI="http://www.xs4all.nl/~wpd/symon/philes/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="perl +symon symux" - -RDEPEND="perl? ( dev-lang/perl ) - symux? ( net-analyzer/rrdtool )" -DEPEND="${RDEPEND} - virtual/pmake" - -S=${WORKDIR}/${PN} - -# Deletes the directory passed as an argument from the internal pmake -# variable SUBDIR. -zap_subdir() { - sed -i "/^SUBDIR/s/$1//" Makefile || die -} - -pkg_setup() { - use symon && USE_SYMON=1 && return - - if ! use perl && ! use symon && ! use symux; then - ewarn "You have all available USE flags disabled. Therefore, only the" - ewarn "system monitor will be emerged. Please, enable at least one USE" - ewarn "flag to avoid this message." - USE_SYMON=1 - fi -} - -src_prepare() { - # Respect LDFLAGS. - sed -i "/^[ \t]*\${CC}.*\${LIBS}/s/\${CC}/& \${LDFLAGS}/" sym*/Makefile \ - || die "sed ldflags failed" - - # Do some sed magic in accordance with the USE flags. - use perl && [[ -z ${USE_SYMON} ]] && ! use symux && zap_subdir lib - ! use perl && zap_subdir client - ! use symux && zap_subdir symux - [[ -z ${USE_SYMON} ]] && zap_subdir symon -} - -src_compile() { - pmake CC="$(tc-getCC)" CFLAGS+="${CFLAGS}" STRIP=true || die "pmake failed" -} - -src_install() { - if [[ -n ${USE_SYMON} ]]; then - insinto /etc - doins "${FILESDIR}"/symon.conf - - newinitd "${FILESDIR}"/symon-init.d symon - - dodoc CHANGELOG HACKERS TODO - - doman symon/symon.8 - dosbin symon/symon - fi - - if use perl; then - dobin client/getsymonitem.pl - - perlinfo - insinto ${VENDOR_LIB} - doins client/SymuxClient.pm - fi - - if use symux; then - insinto /etc - doins "${FILESDIR}"/symux.conf - - newinitd "${FILESDIR}"/symux-init.d symux - - doman symux/symux.8 - dosbin symux/symux - - dodir /usr/share/symon - insinto /usr/share/symon - doins symux/c_smrrds.sh - fperms a+x /usr/share/symon/c_smrrds.sh - - dodir /var/lib/symon/rrds/localhost - fi -} - -pkg_postinst() { - use perl && perl-module_pkg_postinst - - if use symux; then - elog "The RRDs files can be obtained by running" - elog "/usr/share/symon/c_smrrds.sh all." - elog "For information about migrating RRDs from a previous" - elog "symux version read the LEGACY FORMATS section of symux(8)." - elog "To view the rrdtool pictures of the stored data, emerge" - elog "net-analyzer/syweb." - fi -} diff --git a/net-analyzer/syweb/Manifest b/net-analyzer/syweb/Manifest index 0c7e22c7f253..6593e83faa34 100644 --- a/net-analyzer/syweb/Manifest +++ b/net-analyzer/syweb/Manifest @@ -1,2 +1 @@ -DIST syweb-0.59.tar.gz 40960 RMD160 8e400ce1883cf11afd242d22346b09d079db17cd SHA1 cb26fc95d75526ceff0fb796f1c7480542cd574e SHA256 47cb3676a7fc28183ac90bc230c8d50c1a9244c6ca27fcde571b6077cc2769be DIST syweb-0.64.tar.gz 36781 RMD160 0631d806e762806db332860e8367c126bc0dcec2 SHA1 13d47e837fc013a7c0810faa20c7f247e8d7933d SHA256 928863451cd9ab4221b7ce740a267cf2a6419b12930ce809c5b420d1abef3880 diff --git a/net-analyzer/syweb/syweb-0.59.ebuild b/net-analyzer/syweb/syweb-0.59.ebuild deleted file mode 100644 index 0ee80309b166..000000000000 --- a/net-analyzer/syweb/syweb-0.59.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/syweb/syweb-0.59.ebuild,v 1.1 2009/12/01 18:31:23 tcunha Exp $ - -WEBAPP_MANUAL_SLOT="yes" - -inherit depend.php webapp - -DESCRIPTION="Web frontend to symon" -HOMEPAGE="http://www.xs4all.nl/~wpd/symon/" -SRC_URI="http://www.xs4all.nl/~wpd/symon/philes/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="" - -DEPEND="" -RDEPEND="net-analyzer/rrdtool" - -need_httpd_cgi -need_php_httpd - -S=${WORKDIR}/${PN} - -src_install() { - webapp_src_preinst - - dodoc CHANGELOG README || die "dodoc failed" - docinto layouts - dodoc symon/*.layout || die "dodoc layouts failed" - - dodir "${MY_HOSTROOTDIR}"/syweb/cache - insinto "${MY_HOSTROOTDIR}"/syweb - doins symon/hifn_test.layout || die "doins hifn_test.layout failed" - webapp_serverowned "${MY_HOSTROOTDIR}"/syweb/cache - insinto "${MY_HTDOCSDIR}" - doins -r htdocs/syweb/* || die "doins htdocs failed" - webapp_configfile "${MY_HTDOCSDIR}"/setup.inc - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_hook_script "${FILESDIR}"/reconfig - - webapp_src_install -} diff --git a/net-analyzer/syweb/syweb-0.64.ebuild b/net-analyzer/syweb/syweb-0.64.ebuild index 6cd783217225..12f0aa9497e2 100644 --- a/net-analyzer/syweb/syweb-0.64.ebuild +++ b/net-analyzer/syweb/syweb-0.64.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/syweb/syweb-0.64.ebuild,v 1.1 2012/04/17 17:07:48 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/syweb/syweb-0.64.ebuild,v 1.2 2012/07/02 08:30:05 mabi Exp $ EAPI=4 WEBAPP_MANUAL_SLOT="yes" -inherit depend.php webapp +inherit webapp DESCRIPTION="Web frontend to symon" HOMEPAGE="http://www.xs4all.nl/~wpd/symon/" @@ -16,10 +16,10 @@ SLOT="0" KEYWORDS="~amd64 ~sparc ~x86" IUSE="" -RDEPEND="net-analyzer/rrdtool" +RDEPEND="virtual/httpd-php + net-analyzer/rrdtool" need_httpd_cgi -need_php_httpd S=${WORKDIR}/${PN} diff --git a/net-analyzer/zabbix/Manifest b/net-analyzer/zabbix/Manifest index 9284c0a8131f..aa92601927f1 100644 --- a/net-analyzer/zabbix/Manifest +++ b/net-analyzer/zabbix/Manifest @@ -1,5 +1,3 @@ DIST zabbix-1.8.11.tar.gz 4224738 RMD160 d2e8749a43b0846a7bc93a21c6546dad0d66b678 SHA1 2efb94e0b57f1ddbb38ef3f8da225d88effb0689 SHA256 c45819b97082799bb253e4c6a3937affd07a2cd2744d860d657107aa4a3e772b -DIST zabbix-1.8.13.tar.gz 4235482 RMD160 ade2e43e581fe1b9b3b07057e612abc239798028 SHA1 38fd1e2a208fd2069bea61f2e5d1c66ee0697504 SHA256 ac4497cde031b793e492e874b091d109da7d5410c4ba55f54cad0749ae47e667 DIST zabbix-1.8.14.tar.gz 4241608 RMD160 3934998236e54dedcf5ce5b7f590472baf01a753 SHA1 8dcf5b944efac806b88b96276fb4bc9a5723b8d6 SHA256 039be5600a4ca9051a3b068c61da5eeeaff9f948511f31d4345308071ad9ab0f -DIST zabbix-2.0.0.tar.gz 12091622 RMD160 c6c9e57cb1ce69aed45af921760d9f59d065da98 SHA1 19f0ed5174e4578c6e6f764439bdeadb7237e463 SHA256 52cc4b8a8624d53ff4591ebf86a92c19230964d46d39e5cccf7b8648fb2ecf4d -DIST zabbix-2.0.1rc2.tar.gz 12029860 RMD160 a18ed9b8a67b37d5cf8d1ca6976f263097e13bba SHA1 bdf382fac4dc6bbddc6e195b9814d0f72abc233a SHA256 fc6e77d180bb0a14685cbb00ee66aa11c36d5852c2c420d1ef93fde7580495e5 +DIST zabbix-2.0.1.tar.gz 12027206 RMD160 9f7f015431e679ea29d63bd4296b74103a7bbfc2 SHA1 ca7d548f6ddb1f963958357ed5ddaf2fbceed104 SHA256 04b9f87d4326ab6d902c3505a85a16ce66d8b65316725eacb428c0007d37a47d diff --git a/net-analyzer/zabbix/zabbix-1.8.13-r1.ebuild b/net-analyzer/zabbix/zabbix-1.8.13-r1.ebuild deleted file mode 100644 index dcdc1396bf77..000000000000 --- a/net-analyzer/zabbix/zabbix-1.8.13-r1.ebuild +++ /dev/null @@ -1,335 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/zabbix-1.8.13-r1.ebuild,v 1.2 2012/06/12 03:55:18 zmedico Exp $ - -EAPI="2" - -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit flag-o-matic webapp depend.php autotools user - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers." -HOMEPAGE="http://www.zabbix.com/" -MY_P=${P/_/} -SRC_URI="http://prdownloads.sourceforge.net/zabbix/${MY_P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~x86" -IUSE="agent curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp +sqlite iodbc odbc static" - -COMMON_DEPEND="snmp? ( net-analyzer/net-snmp ) - ldap? ( - net-nds/openldap - =dev-libs/cyrus-sasl-2* - net-libs/gnutls - ) - mysql? ( virtual/mysql ) - sqlite? ( =dev-db/sqlite-3* ) - postgres? ( dev-db/postgresql-base ) - oracle? ( dev-db/oracle-instantclient-basic ) - jabber? ( dev-libs/iksemel ) - curl? ( net-misc/curl ) - openipmi? ( sys-libs/openipmi ) - ssh? ( net-libs/libssh2 ) - odbc? ( - iodbc? ( dev-db/libiodbc ) - !iodbc? ( dev-db/unixODBC ) - )" - -RDEPEND="${COMMON_DEPEND} - proxy? ( <=net-analyzer/fping-2.9 ) - server? ( <=net-analyzer/fping-2.9 - app-admin/webapp-config ) - frontend? ( dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session] - media-libs/gd[png] - app-admin/webapp-config )" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig" - -use frontend && need_php_httpd - -src_prepare() { - eautoreconf -} - -pkg_setup() { - if use server || use proxy ; then - local dbnum dbtypes="mysql oracle postgres sqlite" dbtype - declare -i dbnum=0 - for dbtype in ${dbtypes}; do - use ${dbtype} && let dbnum++ - done - if [ ${dbnum} -gt 1 ]; then - eerror - eerror "You can't use more than one database type in Zabbix." - eerror "Select exactly one database type out of these: ${dbtypes}" - eerror - die "Multiple database types selected." - elif [ ${dbnum} -lt 1 ]; then - eerror - eerror "Select exactly one database type out of these: ${dbtypes}" - eerror - die "No database type selected." - fi - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - if has_version 'dev-db/oracle-instantclient-basic'; then - ewarn - ewarn "Please ensure you have a full install of the Oracle client." - ewarn "dev-db/oracle-instantclient* is NOT sufficient." - ewarn - fi - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - enewgroup zabbix - enewuser zabbix -1 -1 /var/lib/zabbix/home zabbix -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You need to configure your database for Zabbix." - elog - elog "Have a look at /usr/share/zabbix/database for" - elog "database creation and upgrades." - elog - elog "For more info read the Zabbix manual at" - elog "http://www.zabbix.com/documentation.php" - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts (e.g. ~/.sendxmpprc when" - ewarn "using sendxmpp for Jabber alerts)." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n " - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - elog "--" - elog - elog "Add these lines in the /etc/services :" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog - - elog "Zabbix is incompatible with fping 3.0 - (Zabbix bug #ZBX-4894)." - elog - - # repeat fowners/fperms functionality from src_install() - # here to catch wrong permissions on existing files in - # the live filesystem (yeah, that sucks). - chown -R zabbix:zabbix \ - "${ROOT}"/etc/zabbix \ - "${ROOT}"/var/lib/zabbix \ - "${ROOT}"/var/lib/zabbix/home \ - "${ROOT}"/var/lib/zabbix/scripts \ - "${ROOT}"/var/log/zabbix \ - "${ROOT}"/var/run/zabbix - chmod 0750 \ - "${ROOT}"/etc/zabbix \ - "${ROOT}"/var/lib/zabbix \ - "${ROOT}"/var/lib/zabbix/home \ - "${ROOT}"/var/lib/zabbix/scripts \ - "${ROOT}"/var/log/zabbix \ - "${ROOT}"/var/run/zabbix - - chmod 0640 \ - "${ROOT}"/etc/zabbix/zabbix_* - - if use server || use proxy ; then - # check for fping - fping_perms=$(stat -c %a /usr/sbin/fping 2>/dev/null) - case "${fping_perms}" in - 4[157][157][157]) - ;; - *) - ewarn - ewarn "If you want to use the checks 'icmpping' and 'icmppingsec'," - ewarn "you have to make /usr/sbin/fping setuid root and executable" - ewarn "by everyone. Run the following command to fix it:" - ewarn - ewarn " chmod u=rwsx,g=rx,o=rx /usr/sbin/fping" - ewarn - ewarn "Please be aware that this might impose a security risk," - ewarn "depending on the code quality of fping." - ewarn - ebeep 3 - epause 5 - ;; - esac - fi -} - -src_configure() { - - local myconf - - if use odbc && use iodbc ; then - myconf="${myconf} --with-iodbc --without-unixodbc" - elif use odbc && ! use iodbc; then - myconf="${myconf} --with-unixodbc --without-iodbc" - else - myconf="${myconf} --without-unixodbc --without-iodbc" - fi - - econf \ - $myconf \ - $(use_enable server) \ - $(use_enable proxy) \ - $(use_enable agent) \ - $(use_enable ipv6) \ - $(use_enable static) \ - $(use_with ldap) \ - $(use_with snmp net-snmp) \ - $(use_with mysql) \ - $(use_with postgres pgsql) \ - $(use_with oracle) \ - $(use_with sqlite sqlite3) \ - $(use_with jabber) \ - $(use_with curl libcurl) \ - $(use_with openipmi openipmi) \ - $(use_with ssh ssh2) \ - || die "econf failed" -} - -src_install() { - dodir \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - - keepdir \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - - if use server; then - insinto /etc/zabbix - doins \ - "${FILESDIR}/1.6.6"/zabbix_server.conf \ - "${FILESDIR}/1.6.6"/zabbix_trapper.conf - doinitd \ - "${FILESDIR}/1.6.6"/init.d/zabbix-server - dosbin \ - src/zabbix_server/zabbix_server - dodir \ - /usr/share/zabbix/database - insinto /usr/share/zabbix/database - doins -r \ - upgrades \ - create - fowners zabbix:zabbix \ - /etc/zabbix/zabbix_server.conf \ - /etc/zabbix/zabbix_trapper.conf - fperms 0640 \ - /etc/zabbix/zabbix_server.conf \ - /etc/zabbix/zabbix_trapper.conf - fi - - if use proxy; then - doinitd \ - "${FILESDIR}/1.6.6"/init.d/zabbix-proxy - dosbin \ - src/zabbix_proxy/zabbix_proxy - insinto /etc/zabbix - doins \ - "${FILESDIR}/1.6.6"/zabbix_proxy.conf - dodir \ - /usr/share/zabbix/database - insinto /usr/share/zabbix/database - doins -r \ - upgrades \ - create - fi - - if use agent; then - insinto /etc/zabbix - doins \ - "${FILESDIR}/1.6.6"/zabbix_agent.conf \ - "${FILESDIR}/1.6.6"/zabbix_agentd.conf - doinitd \ - "${FILESDIR}/1.6.6"/init.d/zabbix-agentd - dosbin \ - src/zabbix_agent/zabbix_agent \ - src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - fowners zabbix:zabbix \ - /etc/zabbix/zabbix_agent.conf \ - /etc/zabbix/zabbix_agentd.conf - fperms 0640 \ - /etc/zabbix/zabbix_agent.conf \ - /etc/zabbix/zabbix_agentd.conf - fi - - fowners zabbix:zabbix \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - - dodoc README INSTALL NEWS ChangeLog - - if use frontend; then - webapp_src_preinst - cp -R frontends/php/* "${D}/${MY_HTDOCSDIR}" - webapp_postinst_txt en "${FILESDIR}/"1.6.6/postinstall-en.txt - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi -} diff --git a/net-analyzer/zabbix/zabbix-2.0.0-r1.ebuild b/net-analyzer/zabbix/zabbix-2.0.0-r1.ebuild deleted file mode 100644 index a4aff5e401b5..000000000000 --- a/net-analyzer/zabbix/zabbix-2.0.0-r1.ebuild +++ /dev/null @@ -1,404 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/zabbix-2.0.0-r1.ebuild,v 1.2 2012/06/12 03:55:18 zmedico Exp $ - -EAPI="2" - -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit flag-o-matic webapp depend.php autotools java-pkg-opt-2 user - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers." -HOMEPAGE="http://www.zabbix.com/" -MY_P=${P/_/} -SRC_URI="http://prdownloads.sourceforge.net/zabbix/${MY_P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="" -IUSE="agent java curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp sqlite iodbc odbc static" - -COMMON_DEPEND="snmp? ( net-analyzer/net-snmp ) - ldap? ( - net-nds/openldap - =dev-libs/cyrus-sasl-2* - net-libs/gnutls - ) - mysql? ( >=virtual/mysql-5.0 ) - sqlite? ( >=dev-db/sqlite-3.3.5 ) - postgres? ( >=dev-db/postgresql-base-8.3.0 ) - oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) - jabber? ( dev-libs/iksemel ) - curl? ( net-misc/curl ) - openipmi? ( sys-libs/openipmi ) - ssh? ( net-libs/libssh2 ) - java? ( >=virtual/jdk-1.4 ) - odbc? ( - iodbc? ( dev-db/libiodbc ) - !iodbc? ( dev-db/unixODBC ) - )" - -RDEPEND="${COMMON_DEPEND} - proxy? ( <=net-analyzer/fping-2.9 ) - server? ( <=net-analyzer/fping-2.9 - app-admin/webapp-config ) - java? ( - >=virtual/jre-1.4 - dev-java/slf4j-api - dev-java/json-simple - ) - frontend? ( - dev-lang/php[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls] - media-libs/gd[png] - app-admin/webapp-config )" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig" - -use frontend && need_php_httpd - -S=${WORKDIR}/${MY_P} - -ZABBIXJAVA_BASE="opt/zabbix_java" - -java_prepare() { - cd "${S}/src/zabbix_java/lib" - rm -v *.jar || die - - java-pkg_jar-from slf4j-api - java-pkg_jar-from json-simple -} - -src_prepare() { - eautoreconf -} - -pkg_setup() { - if use server || use proxy ; then - local dbnum dbtypes="mysql oracle postgres sqlite" dbtype - declare -i dbnum=0 - for dbtype in ${dbtypes}; do - use ${dbtype} && let dbnum++ - done - if [ ${dbnum} -gt 1 ]; then - eerror - eerror "You can't use more than one database type in Zabbix." - eerror "Select exactly one database type out of these: ${dbtypes}" - eerror - die "Multiple database types selected." - elif [ ${dbnum} -lt 1 ]; then - eerror - eerror "Select exactly one database type out of these: ${dbtypes}" - eerror - die "No database type selected." - fi - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - if has_version 'dev-db/oracle-instantclient-basic'; then - ewarn - ewarn "Please ensure you have a full install of the Oracle client." - ewarn "dev-db/oracle-instantclient* is NOT sufficient." - ewarn - fi - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - enewgroup zabbix - enewuser zabbix -1 -1 /var/lib/zabbix/home zabbix -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix," - elog "if you have not already done so. Most minor version" - elog "zabbix updates do not require db changes. However, " - elog "you should read the release notes to be sure." - elog - elog "Have a look at /usr/share/zabbix for" - elog "database creation and upgrades." - elog - elog "Execute schema, images, and data sql files in order." - elog - elog "For more info read the Zabbix manual at" - elog "http://www.zabbix.com/documentation.php" - elog - elog "New use flags: java, odbc, iodbc" - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts (e.g. ~/.sendxmpprc when" - ewarn "using sendxmpp for Jabber alerts)." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n " - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog - - elog - elog "Zabbix will be officially supporting database upgrades from" - elog "2.0.0rc3 to the final 2.0.0 release when it is available." - elog "At some point, there should be some support for upgrading from 1.8.x" - elog "to a 2.0.x release." - elog - elog "Note that this is the first gentoo ebuild for 2.0.x and likely" - elog "will need further tuning with bumps/revisions as bugs are closed." - elog - elog "Zabbix is incompatible with fping 3.0 - (Zabbix bug #ZBX-4894)." - elog - elog "Feel free to download or contribute gentoo specific zabbix templates" - elog "via https://github.com/deploylinux/gentooZabbixTemplates (WIP). We may" - elog "eventually create a seperate package in portage for them." - - # repeat fowners/fperms functionality from src_install() - # here to catch wrong permissions on existing files in - # the live filesystem (yeah, that sucks). - chown -R zabbix:zabbix \ - "${ROOT}"/etc/zabbix \ - "${ROOT}"/var/lib/zabbix \ - "${ROOT}"/var/lib/zabbix/home \ - "${ROOT}"/var/lib/zabbix/scripts \ - "${ROOT}"/var/log/zabbix \ - "${ROOT}"/var/run/zabbix - chmod 0750 \ - "${ROOT}"/etc/zabbix \ - "${ROOT}"/var/lib/zabbix \ - "${ROOT}"/var/lib/zabbix/home \ - "${ROOT}"/var/lib/zabbix/scripts \ - "${ROOT}"/var/log/zabbix \ - "${ROOT}"/var/run/zabbix - - chmod 0640 \ - "${ROOT}"/etc/zabbix/zabbix_* - - if use server || use proxy ; then - # check for fping - fping_perms=$(stat -c %a /usr/sbin/fping 2>/dev/null) - case "${fping_perms}" in - 4[157][157][157]) - ;; - *) - ewarn - ewarn "If you want to use the checks 'icmpping' and 'icmppingsec'," - ewarn "you have to make /usr/sbin/fping setuid root and executable" - ewarn "by everyone. Run the following command to fix it:" - ewarn - ewarn " chmod u=rwsx,g=rx,o=rx /usr/sbin/fping" - ewarn - ewarn "Please be aware that this might impose a security risk," - ewarn "depending on the code quality of fping." - ewarn - ebeep 3 - epause 5 - ;; - esac - fi -} - -src_configure() { - - local myconf - - if use odbc && use iodbc ; then - myconf="${myconf} --with-iodbc --without-unixodbc" - elif use odbc && ! use iodbc; then - myconf="${myconf} --with-unixodbc --without-iodbc" - else - myconf="${myconf} --without-unixodbc --without-iodbc" - fi - - econf \ - $myconf \ - $(use_enable server) \ - $(use_enable proxy) \ - $(use_enable agent) \ - $(use_enable ipv6) \ - $(use_enable static) \ - $(use_enable java) \ - $(use_with ldap) \ - $(use_with snmp net-snmp) \ - $(use_with mysql) \ - $(use_with postgres postgresql) \ - $(use_with oracle) \ - $(use_with sqlite sqlite3) \ - $(use_with jabber) \ - $(use_with curl libcurl) \ - $(use_with openipmi openipmi) \ - $(use_with ssh ssh2) \ - || die "econf failed" -} - -src_install() { - dodir \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - - keepdir \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - - if use server; then - insinto /etc/zabbix - doins \ - "${FILESDIR}/1.6.6"/zabbix_server.conf \ - "${FILESDIR}/1.6.6"/zabbix_trapper.conf - doinitd \ - "${FILESDIR}/2.0"/init.d/zabbix-server - dosbin \ - src/zabbix_server/zabbix_server - dodir \ - /usr/share/zabbix - insinto /usr/share/zabbix - doins -r \ - database \ - upgrades - fowners zabbix:zabbix \ - /etc/zabbix/zabbix_server.conf \ - /etc/zabbix/zabbix_trapper.conf - fperms 0640 \ - /etc/zabbix/zabbix_server.conf \ - /etc/zabbix/zabbix_trapper.conf - fi - - if use proxy; then - doinitd \ - "${FILESDIR}/1.6.6"/init.d/zabbix-proxy - dosbin \ - src/zabbix_proxy/zabbix_proxy - insinto /etc/zabbix - doins \ - "${FILESDIR}/1.6.6"/zabbix_proxy.conf - dodir \ - /usr/share/zabbix - insinto /usr/share/zabbix - doins -r \ - database \ - create - fi - - if use agent; then - insinto /etc/zabbix - doins \ - "${FILESDIR}/1.6.6"/zabbix_agent.conf \ - "${FILESDIR}/1.6.6"/zabbix_agentd.conf - doinitd \ - "${FILESDIR}/2.0"/init.d/zabbix-agentd - dosbin \ - src/zabbix_agent/zabbix_agent \ - src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - fowners zabbix:zabbix \ - /etc/zabbix/zabbix_agent.conf \ - /etc/zabbix/zabbix_agentd.conf - fperms 0640 \ - /etc/zabbix/zabbix_agent.conf \ - /etc/zabbix/zabbix_agentd.conf - fi - - fowners zabbix:zabbix \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/log/zabbix \ - /var/run/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agent.conf \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R frontends/php/* "${D}/${MY_HTDOCSDIR}" - webapp_postinst_txt en "${FILESDIR}/"1.6.6/postinstall-en.txt - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-2.0.0rc3.jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-0.9.27.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-0.9.27.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/org-json-2010-12-28.jar \ - src/zabbix_java/lib/slf4j-api-1.6.1.jar - exeinto /${ZABBIXJAVA_BASE}/ - src/zabbix_java/settings.sh \ - src/zabbix_java/startup.sh \ - src/zabbix_java/shutdown.sh - fowners -R zabbix:zabbix /${ZABBIXJAVA_BASE} - fi - -} diff --git a/net-analyzer/zabbix/zabbix-2.0.1_rc2.ebuild b/net-analyzer/zabbix/zabbix-2.0.1.ebuild similarity index 95% rename from net-analyzer/zabbix/zabbix-2.0.1_rc2.ebuild rename to net-analyzer/zabbix/zabbix-2.0.1.ebuild index a1ba38fd4531..41735c6c0f3b 100644 --- a/net-analyzer/zabbix/zabbix-2.0.1_rc2.ebuild +++ b/net-analyzer/zabbix/zabbix-2.0.1.ebuild @@ -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/net-analyzer/zabbix/zabbix-2.0.1_rc2.ebuild,v 1.1 2012/06/20 20:11:59 mattm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/zabbix-2.0.1.ebuild,v 1.1 2012/07/02 05:43:41 mattm Exp $ EAPI="2" @@ -15,7 +15,7 @@ SRC_URI="http://prdownloads.sourceforge.net/zabbix/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="" +KEYWORDS="~amd64 ~x86" IUSE="agent java curl frontend ipv6 jabber ldap mysql openipmi oracle postgres proxy server ssh snmp sqlite iodbc odbc static" COMMON_DEPEND="snmp? ( net-analyzer/net-snmp ) @@ -128,7 +128,7 @@ pkg_postinst() { elog "Have a look at /usr/share/zabbix for" elog "database creation and upgrades." elog - elog "Execute schema, images, and data sql files in order." + elog "Execute schema, images, and data sql files in that order." elog elog "For more info read the Zabbix manual at" elog "http://www.zabbix.com/documentation.php" @@ -175,15 +175,6 @@ pkg_postinst() { elog "zabbix-trapper 10051/udp Zabbix Trapper" elog - elog - elog "Zabbix will be officially supporting database upgrades from" - elog "2.0.0rc3 to the final 2.0.0 release when it is available." - elog "At some point, there should be some support for upgrading from 1.8.x" - elog "to a 2.0.x release." - elog - elog "Note that this is the first gentoo ebuild for 2.0.x and likely" - elog "will need further tuning with bumps/revisions as bugs are closed." - elog elog "Zabbix is incompatible with fping 3.0 - (Zabbix bug #ZBX-4894)." elog elog "Feel free to download or contribute gentoo specific zabbix templates" diff --git a/net-irc/anope/anope-1.8.7.ebuild b/net-irc/anope/anope-1.8.7.ebuild index d3c8d8584590..a1829fcf0191 100644 --- a/net-irc/anope/anope-1.8.7.ebuild +++ b/net-irc/anope/anope-1.8.7.ebuild @@ -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/net-irc/anope/anope-1.8.7.ebuild,v 1.2 2012/01/12 00:35:32 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.8.7.ebuild,v 1.3 2012/07/01 21:07:35 binki Exp $ EAPI=4 @@ -66,8 +66,8 @@ src_configure() { } src_install() { - keepdir /var/{lib,log,run}/anope - fowners anope:anope /var/{lib,log,run}/anope + keepdir /var/{log,run}/anope /var/lib/anope/backups + fowners anope:anope /var/{lib,log,run}/anope /var/lib/anope/backups local baselibdir baselibdir="${D}/usr/$(get_libdir)/anope" diff --git a/net-misc/mediatomb/mediatomb-0.12.1-r2.ebuild b/net-misc/mediatomb/mediatomb-0.12.1-r2.ebuild index 1f4998b4402d..04bc104552a3 100644 --- a/net-misc/mediatomb/mediatomb-0.12.1-r2.ebuild +++ b/net-misc/mediatomb/mediatomb-0.12.1-r2.ebuild @@ -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/net-misc/mediatomb/mediatomb-0.12.1-r2.ebuild,v 1.4 2012/06/28 17:23:51 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/mediatomb/mediatomb-0.12.1-r2.ebuild,v 1.5 2012/07/02 07:57:43 jdhore Exp $ EAPI=2 inherit autotools eutils linux-info @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mediatomb/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~x86" +KEYWORDS="amd64 ~arm ~ppc x86" IUSE="debug +exif +ffmpeg inotify +javascript lastfm libextractor +mp4 mysql +taglib thumbnail" DEPEND=" diff --git a/net-misc/radvd/radvd-1.9.1.ebuild b/net-misc/radvd/radvd-1.9.1-r1.ebuild similarity index 90% rename from net-misc/radvd/radvd-1.9.1.ebuild rename to net-misc/radvd/radvd-1.9.1-r1.ebuild index 5f87f0791de7..f56a4c89acfd 100644 --- a/net-misc/radvd/radvd-1.9.1.ebuild +++ b/net-misc/radvd/radvd-1.9.1-r1.ebuild @@ -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/net-misc/radvd/radvd-1.9.1.ebuild,v 1.1 2012/06/29 08:09:52 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/radvd/radvd-1.9.1-r1.ebuild,v 1.1 2012/07/02 06:47:29 xmw Exp $ EAPI=4 @@ -15,9 +15,9 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~x86-fbsd" IUSE="kernel_FreeBSD selinux" -RDEPEND="selinux? ( sec-policy/selinux-radvd )" +RDEPEND="dev-libs/libdaemon + selinux? ( sec-policy/selinux-radvd )" DEPEND="${RDEPEND} - dev-libs/libdaemon sys-devel/bison sys-devel/flex virtual/pkgconfig" diff --git a/profiles/package.mask b/profiles/package.mask index a377fde8e8fe..cd53e7abe5b7 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,5 +1,5 @@ #################################################################### -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.13914 2012/06/30 21:33:47 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.13915 2012/07/02 04:56:40 mr_bones_ Exp $ # # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -391,11 +391,6 @@ net-im/silc-client # Removal in 30 days x11-terms/cxterm -# Michael Sterrett (31 May 2012) -# No longer needed. -# Masked for removal on 20120630 -games-util/nforenum - # Markos Chandras (27 May 2012) # Mask alpha release =sci-electronics/qelectrotech-0.30_alpha* diff --git a/profiles/use.local.desc b/profiles/use.local.desc index e194a1f96421..c8233c86467f 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -308,7 +308,7 @@ app-doc/csound-manual:html - Install HTML documentation app-doc/doxygen:dot - allow to create dot graphs using media-gfx/graphviz app-doc/doxygen:nodot - removes graphviz dependency, along with dot graphs app-doc/doxygen:tcl - adds experimental support for parsing/documenting Tcl source code -app-doc/linuxfromscratch:htmlsingle - Also install single-page HTML version +app-doc/linuxfromscratch:htmlsingle - Install all-on-one-page HTML version. app-doc/pms:html - Generate PMS as .html as well app-doc/tldp-howto:html - Install the docs in multipage HTML format (default) app-doc/tldp-howto:htmlsingle - Install the docs in single page HTML format diff --git a/sci-calculators/units/Manifest b/sci-calculators/units/Manifest index 7d786d4bb340..e242fbfb6c1c 100644 --- a/sci-calculators/units/Manifest +++ b/sci-calculators/units/Manifest @@ -1 +1,2 @@ DIST units-1.88.tar.gz 261519 RMD160 567caeb52e741cccd260e16fcdf9d7998de0f95b SHA1 0b65e9d9542d0c20082b0e9562fea42b1b02825e SHA256 a805707f8f2802c109aef3f32b431ecd9af1fc3de0c5289223e862c673afec0c +DIST units-2.00.tar.gz 653473 RMD160 1a272a6dc6c38d0a3571205180146e25e3e0845c SHA1 6da9ea78ff0dc21bc43cf1809c530e61d9394ce0 SHA256 573c831e428bf47419c5c540dcd4c6669f14154181d0e8812d635ee5bcff7f60 diff --git a/sci-calculators/units/files/units-2.00-gentoo.patch b/sci-calculators/units/files/units-2.00-gentoo.patch new file mode 100644 index 000000000000..5c30db93ffb0 --- /dev/null +++ b/sci-calculators/units/files/units-2.00-gentoo.patch @@ -0,0 +1,17 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -84,10 +84,10 @@ + sed -e "s:outfile = 'currency.units':outfile='@UDAT@currency.units':" units_cur > units_cur_inst + + install-support: definitions.units currency.units units_cur_inst +- $(srcdir)/mkinstalldirs @UDAT@ $(DESTDIR)$(bindir) +- $(INSTALL_DATA) $(srcdir)/definitions.units @UDAT@definitions.units +- $(INSTALL_DATA) $(srcdir)/currency.units @UDAT@currency.units +- $(INSTALL_DATA) $(srcdir)/locale.map @UDAT@locale.map ++ $(srcdir)/mkinstalldirs $(DESTDIR)@UDAT@ $(DESTDIR)$(bindir) ++ $(INSTALL_DATA) $(srcdir)/definitions.units $(DESTDIR)@UDAT@definitions.units ++ $(INSTALL_DATA) $(srcdir)/currency.units $(DESTDIR)@UDAT@currency.units ++ $(INSTALL_DATA) $(srcdir)/locale.map $(DESTDIR)@UDAT@locale.map + $(INSTALL_PROGRAM) units_cur_inst $(DESTDIR)$(bindir)/`echo units_cur|sed '$(transform)'` + + install: units@EXEEXT@ install-doc install-support diff --git a/sci-calculators/units/units-2.00.ebuild b/sci-calculators/units/units-2.00.ebuild new file mode 100644 index 000000000000..203c9d9fcae8 --- /dev/null +++ b/sci-calculators/units/units-2.00.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/units/units-2.00.ebuild,v 1.2 2012/07/02 04:20:41 jer Exp $ + +EAPI=4 +inherit eutils + +DESCRIPTION="unit conversion program" +HOMEPAGE="http://www.gnu.org/software/units/units.html" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=" + >=sys-libs/readline-4.1-r2 + >=sys-libs/ncurses-5.2-r3 +" +RDEPEND=" + || ( dev-lang/python:2.5 dev-lang/python:2.6 dev-lang/python:2.7 ) + ${DEPEND} +" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gentoo.patch + + # Fix shebang for python2 + sed -i units_cur -e '1s|$|2|' || die +} + +src_install() { + emake -j1 DESTDIR="${D}" install + dodoc ChangeLog NEWS README +} diff --git a/sci-chemistry/gabedit/Manifest b/sci-chemistry/gabedit/Manifest index 41c9b739770c..5acc320ed9d9 100644 --- a/sci-chemistry/gabedit/Manifest +++ b/sci-chemistry/gabedit/Manifest @@ -1,3 +1,4 @@ DIST GabeditSrc236.tar.gz 1860371 RMD160 3fe3cd34cbd32d5483de2ef242ba17d1b6cd5835 SHA1 e5829d9faa9016206f7ed8846409e9d23e120f6e SHA256 034d92568bf81e650b76731b74473813f7fbe93e3dde6aa6679f9289331839c9 DIST GabeditSrc240.tar.gz 2005689 RMD160 24924a9b98498973e3149c2e73579999b366c052 SHA1 9c53590051da363f419a6b746594bf9f9aa92737 SHA256 dc5b008be44e4462d09475fcee4c93289845a3d2c863f22e5602e0d22ebd8b6f DIST GabeditSrc242.tar.gz 2018984 RMD160 51fdf579671c76a3cd0b1458d82c38dc1e458377 SHA1 3c61b588c966c03be0dda988b96c413cca62e958 SHA256 a868bb528be9286c10aa193d8be71e99a7f4b2a8237e258d572d755a8f1ff020 +DIST GabeditSrc243.tar.gz 1927710 RMD160 983e8a931cca5cac04a0fa8666e42bd337e5afbb SHA1 362ac9b4219767b49c3f0d824e262e94504bbd9e SHA256 cba474cfcd1b92e6589ffc21e4262cddafb5f5868a6759fe2eea59dc02d9a51b diff --git a/sci-chemistry/gabedit/gabedit-2.3.6.ebuild b/sci-chemistry/gabedit/gabedit-2.3.6.ebuild index 3df4626e0173..310fa482adac 100644 --- a/sci-chemistry/gabedit/gabedit-2.3.6.ebuild +++ b/sci-chemistry/gabedit/gabedit-2.3.6.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/gabedit-2.3.6.ebuild,v 1.6 2012/05/04 07:02:33 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/gabedit-2.3.6.ebuild,v 1.7 2012/07/02 09:07:32 jlec Exp $ EAPI=2 -inherit toolchain-funcs versionator +inherit toolchain-funcs versionator multilib MY_PN=${PN/g/G} MY_PV=$(delete_all_version_separators) diff --git a/sci-chemistry/gabedit/gabedit-2.4.3.ebuild b/sci-chemistry/gabedit/gabedit-2.4.3.ebuild new file mode 100644 index 000000000000..cfbb3a8cb3b8 --- /dev/null +++ b/sci-chemistry/gabedit/gabedit-2.4.3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/gabedit-2.4.3.ebuild,v 1.1 2012/07/02 09:07:32 jlec Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs versionator + +MY_PN=${PN/g/G} +MY_PV=$(delete_all_version_separators) +MY_P="${MY_PN}Src${MY_PV}" + +DESCRIPTION="GUI for computational chemistry packages" +HOMEPAGE="http://gabedit.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~amd64 ~x86" +IUSE="openmp" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:2 + x11-libs/gtkglext + x11-libs/gl2ps + x11-libs/pango + virtual/opengl + virtual/glu" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i "/rmdir tmp/d" "${S}"/Makefile + sed \ + -e "/GTK_DISABLE_DEPRECATED/s:define:undef:g" \ + -i "${S}/Config.h" || die + sed -e 's:-g::g' -i Makefile || die + cp "${FILESDIR}"/CONFIG.Gentoo "${S}"/CONFIG + + if use openmp && tc-has-openmp; then + cat <<- EOF >> "${S}/CONFIG" + OMPLIB=-fopenmp + OMPCFLAGS=-DENABLE_OMP -fopenmp + EOF + fi + echo "COMMONCFLAGS = ${CFLAGS} -DENABLE_DEPRECATED \$(OMPCFLAGS) \$(DRAWGEOMGL)" >> CONFIG + + tc-export CC +} + +src_compile() { + emake clean + emake external_gl2ps=1 +} + +src_install() { + dobin ${PN} + dodoc ChangeLog +} diff --git a/sci-chemistry/gabedit/metadata.xml b/sci-chemistry/gabedit/metadata.xml index c301752303b7..a96fa5cdc0be 100644 --- a/sci-chemistry/gabedit/metadata.xml +++ b/sci-chemistry/gabedit/metadata.xml @@ -6,8 +6,4 @@ jlec@gentoo.org Tree Proxy for Max - - max-braeu@gmx.de - Maintainer, please CC to bugs - diff --git a/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild b/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild index ec46a387c416..12c32e08cd35 100644 --- a/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild +++ b/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild @@ -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/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild,v 1.4 2012/05/04 07:10:19 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild,v 1.5 2012/07/02 06:38:12 jdhore Exp $ EAPI="1" @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc x86" IUSE="" RDEPEND=" diff --git a/sys-apps/pacman/Manifest b/sys-apps/pacman/Manifest index 82cf267cf3e7..61fabf982a19 100644 --- a/sys-apps/pacman/Manifest +++ b/sys-apps/pacman/Manifest @@ -1 +1,2 @@ DIST pacman-4.0.1.tar.gz 1897685 RMD160 bd7da5ef866dba08e8f53df691e6d11abc1989d9 SHA1 9dedc26c84ab61cae72e5a6221c30fa4b0247cce SHA256 04f6822b31022100de6cd0a1905b199bbd1eaf878ef0726b6242ee032f3c33b1 +DIST pacman-4.0.3.tar.gz 1961839 RMD160 e2bf4721ab20a7dc5280b85b1e13f221e46bb7cb SHA1 c39f55d3ea763dc9fd88ab1dfa21da96d768b9d9 SHA256 a48696ae51aaccf31a69ea7916ba9b06e7836eb933b8a281c666729c9d55ce25 diff --git a/sys-apps/pacman/pacman-4.0.3.ebuild b/sys-apps/pacman/pacman-4.0.3.ebuild new file mode 100644 index 000000000000..a402c4b33946 --- /dev/null +++ b/sys-apps/pacman/pacman-4.0.3.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pacman/pacman-4.0.3.ebuild,v 1.1 2012/07/02 06:03:57 binki Exp $ + +EAPI=4 + +inherit autotools autotools-utils bash-completion-r1 eutils + +DESCRIPTION="Archlinux's binary package manager" +HOMEPAGE="http://archlinux.org/pacman/" +SRC_URI="ftp://ftp.archlinux.org/other/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="curl debug doc gpg test" + +COMMON_DEPEND="app-arch/libarchive + dev-libs/openssl + virtual/libiconv + virtual/libintl + sys-devel/gettext + curl? ( net-misc/curl ) + gpg? ( app-crypt/gpgme )" +RDEPEND="${COMMON_DEPEND} + app-arch/xz-utils" +# autoconf macros from gpgme requied unconditionally +DEPEND="${COMMON_DEPEND} + app-crypt/gpgme + doc? ( app-doc/doxygen + app-text/asciidoc ) + test? ( dev-lang/python )" + +RESTRICT="test" + +src_prepare() { + # Adds AM_GPGME_PATH call which requires app-crypt/gpgme to be + # DEPENDed on unconditionally: + epatch "${FILESDIR}"/${PN}-4.0.0-gpgme.patch + + # Remove a line that adds -Werror in ./configure when --enable-debug + # is passed: + sed -i -e '/-Werror/d' configure.ac || die "-Werror" + + # autopoint is unwilling to replace m4/gettext.m4 with the correct + # version even though it'll gladly replace */po/Makefile.in.in, + # creating an inconsistency between gettext m4 macros and + # Makefile.in.in. Also, AM_MKINSTALLDIRS apparently doesn't exist + # anymore, so we need newer gettext macros. #420469 + rm m4/gettext.m4 || die + sed -i -e '/AM_GNU_GETTEXT_VERSION/s/0\.13\.1/0.18.1/' configure.ac || die + + eautoreconf +} + +src_configure() { + local myeconfargs=( + --localstatedir=/var + --disable-git-version + --with-openssl + # Help protect user from shooting his/her Gentoo installation in + # its foot. + --with-root-dir="${EPREFIX}"/var/chroot/archlinux + $(use_enable debug) + $(use_enable doc) + $(use_enable doc doxygen) + $(use_with curl libcurl) + $(use_with gpg gpgme) + ) + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + dodir /etc/pacman.d + newbashcomp "${AUTOTOOLS_BUILD_DIR}"/contrib/bash_completion pacman +} + +pkg_postinst() { + einfo "Please see http://ohnopub.net/~ohnobinki/gentoo/arch/ for information" + einfo "about setting up an archlinux chroot." +} diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest index d42e1ba89c6a..45d41aaf9299 100644 --- a/sys-apps/portage/Manifest +++ b/sys-apps/portage/Manifest @@ -1,4 +1,3 @@ -DIST portage-2.1.10.49.tar.bz2 803941 RMD160 088a21151b66c7fdb4ed39c46b25fee1b4ecce9e SHA1 11322e216b6d6a2f753f45a150c3f618e4bf0c45 SHA256 b50cdbb4ececba27cddfe24d63517c73a32b905bcf3b7d55b692f6661247590e DIST portage-2.1.10.65.tar.bz2 826100 RMD160 b3481229954b67d73c027d5e8ca0398e71836033 SHA1 0ec3daf9aa4909939a2c840a570a42add7bea369 SHA256 aaeba4789b05864e8ca142752dc31c017d47976332394c1bf533aba6b3748f8c DIST portage-2.1.11.3.tar.bz2 837481 RMD160 f8e7402035d9988ef75d7aea4c3ed281c2ffac65 SHA1 8d7ff5f4149c55e7e1907bc2a02dd1283a4d5f04 SHA256 767f1223a144a3e714b0adb9ed01aa666576ae64bb851941965b6d1130093f61 DIST portage-2.1.6.7.patch.bz2 50118 RMD160 cc0a322570829c8dec9aa4886deb5741f0efb489 SHA1 02021be38b0f829d45b342483834652a1985a952 SHA256 5f0605b51a24d23703330b040d2f7154322284db3e0cefa7499002ff1fa733c0 @@ -8,6 +7,4 @@ DIST portage-2.2.0_alpha108.tar.bz2 821498 RMD160 9a5beedfc71db0b88f0929d43a894e DIST portage-2.2.0_alpha110.patch.bz2 14215 RMD160 d07d2d35a5fb20777ac54fe069705409e1a74029 SHA1 3fd7539f037b7930e1b5c7ca04c418c2b364360e SHA256 af73f05b918634835a0d99a914502b6d0870f3a59a7af0f2aa3b3e2aa0f52c88 DIST portage-2.2.0_alpha111.tar.bz2 836193 RMD160 80cf9bad52e8b5c9ea23a5f3ec5ec6f85211aeba SHA1 32b0fa6e9c7eb25bec3f7760b256d0762dddfcf3 SHA256 3187c6915aaab681e444eca0cbe050f8e68f714176b3f7c0cbec0e7e23d5c5df DIST portage-2.2.0_alpha114.patch.bz2 8978 RMD160 d8d983869d9777f2f5cc0dc0b99a87c8e0604b44 SHA1 490d931c08431a433e7434167bc1e64373d0cae4 SHA256 2d1ebdd54ac301abea5dd6221da5c7076b89d25de7a673d7287a5b524ca46111 -DIST portage-2.2.0_alpha88.tar.bz2 803852 RMD160 9c6a87c2a8de996286e74245faeaacf89fab0aea SHA1 d2f698470f0df250f51f937d78ea484d27ad0068 SHA256 75b74a87c4f4b1a13857f62aeb42522b491b06b66fe686ef4036993f55125130 -DIST portage-2.2.0_alpha89.patch.bz2 4205 RMD160 ff17958771ee571ccc45604682882356d2d54e5e SHA1 bf5ed24e13f89bcad128e8773f40ceea8bbd8ed2 SHA256 677bc5cce25723cefbdb8f147ac6fc7162d541eb0a149fbd1b96d79f4b2a07d1 DIST portage-man-pl-2.1.2.tar.bz2 53893 RMD160 46c3656b40bf4ad2530ab2b5fbc563708b86748c SHA1 c3151e0b330c589625830e54053fbc676b2c64de SHA256 960eaa7c6f3a2af44bdc665266a8e884628a562373cc477d301597ecc5ef961f diff --git a/sys-apps/portage/portage-2.1.10.49.ebuild b/sys-apps/portage/portage-2.1.10.49.ebuild deleted file mode 100644 index 7c096ee4b979..000000000000 --- a/sys-apps/portage/portage-2.1.10.49.ebuild +++ /dev/null @@ -1,383 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.1.10.49.ebuild,v 1.10 2012/06/13 06:11:55 zmedico Exp $ - -# Require EAPI 2 since we now require at least python-2.6 (for python 3 -# syntax support) which also requires EAPI 2. -EAPI=2 -inherit eutils multilib python - -DESCRIPTION="Portage is the package management and distribution system for Gentoo" -HOMEPAGE="http://www.gentoo.org/proj/en/portage/index.xml" -LICENSE="GPL-2" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -SLOT="0" -IUSE="build doc epydoc +ipc linguas_pl pypy1_9 python2 python3 selinux xattr" - -# Import of the io module in python-2.6 raises ImportError for the -# thread module if threading is disabled. -python_dep="python3? ( =dev-lang/python-3* ) - !pypy1_9? ( !python2? ( !python3? ( - || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) - ) ) ) - pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2] ) ) ) - python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) )" - -# The pysqlite blocker is for bug #282760. -DEPEND="${python_dep} - !build? ( >=sys-apps/sed-4.0.5 ) - doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) - epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 )" -# Require sandbox-2.2 for bug #288863. -# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's -# quite slow, so it's not considered in the dependencies as an alternative to -# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so -# for now, don't pull in xattr deps for other kernels. -RDEPEND="${python_dep} - !build? ( >=sys-apps/sed-4.0.5 - >=app-shells/bash-3.2_p17 - >=app-admin/eselect-1.2 ) - elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) - elibc_glibc? ( >=sys-apps/sandbox-2.2 ) - elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) - >=app-misc/pax-utils-0.1.17 - xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) - selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] = 0x2060000 and "good" or "bad")') = good ]] -} - -current_python_has_xattr() { - [[ $(/usr/bin/python -c 'import sys ; sys.stdout.write(sys.hexversion >= 0x3030000 and "yes" or "no")') = yes ]] || \ - /usr/bin/python -c 'import xattr' 2>/dev/null -} - -pkg_setup() { - # Bug #359731 - Die early if get_libdir fails. - [[ -z $(get_libdir) ]] && \ - die "get_libdir returned an empty string" - - if use python2 && use python3 ; then - ewarn "Both python2 and python3 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python3." - fi - if use pypy1_9 && use python3 ; then - ewarn "Both pypy1_9 and python3 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python3." - fi - if use pypy1_9 && use python2 ; then - ewarn "Both pypy1_9 and python2 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python2" - fi - if ! use pypy1_9 && ! use python2 && ! use python3 && \ - ! compatible_python_is_selected ; then - ewarn "Attempting to select a compatible default python interpreter" - local x success=0 - for x in /usr/bin/python2.* ; do - x=${x#/usr/bin/python2.} - if [[ $x -ge 6 ]] 2>/dev/null ; then - eselect python set python2.$x - if compatible_python_is_selected ; then - elog "Default python interpreter is now set to python-2.$x" - success=1 - break - fi - fi - done - if [ $success != 1 ] ; then - eerror "Unable to select a compatible default python interpreter!" - die "This version of portage requires at least python-2.6 to be selected as the default python interpreter (see \`eselect python --help\`)." - fi - fi - - if use python3; then - python_set_active_version 3 - elif use python2; then - python_set_active_version 2 - elif use pypy1_9; then - python_set_active_version 2.7-pypy-1.9 - fi -} - -src_prepare() { - if [ -n "${PATCHVER}" ] ; then - if [[ -L $S/bin/ebuild-helpers/portageq ]] ; then - rm "$S/bin/ebuild-helpers/portageq" \ - || die "failed to remove portageq helper symlink" - fi - epatch "${WORKDIR}/${PN}-${PATCHVER}.patch" - fi - einfo "Setting portage.VERSION to ${PVR} ..." - sed -e "s/^VERSION=.*/VERSION=\"${PVR}\"/" -i pym/portage/__init__.py || \ - die "Failed to patch portage.VERSION" - sed -e "1s/VERSION/${PVR}/" -i doc/fragment/version || \ - die "Failed to patch VERSION in doc/fragment/version" - sed -e "1s/VERSION/${PVR}/" -i man/* || \ - die "Failed to patch VERSION in man page headers" - - if ! use ipc ; then - einfo "Disabling ipc..." - sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ - -i pym/_emerge/AbstractEbuildProcess.py || \ - die "failed to patch AbstractEbuildProcess.py" - fi - - if use xattr && use kernel_linux ; then - einfo "Adding FEATURES=xattr to make.globals ..." - echo -e '\nFEATURES="${FEATURES} xattr"' >> cnf/make.globals \ - || die "failed to append to make.globals" - fi - - if use python3; then - einfo "Converting shebangs for python3..." - python_convert_shebangs -r 3 . - elif use python2; then - einfo "Converting shebangs for python2..." - python_convert_shebangs -r 2 . - elif use pypy1_9; then - einfo "Converting shebangs for pypy-c1.9..." - python_convert_shebangs -r 2.7-pypy-1.9 . - fi -} - -src_compile() { - if use doc; then - cd "${S}"/doc - touch fragment/date - make xhtml xhtml-nochunks || die "failed to make docs" - fi - - if use epydoc; then - einfo "Generating api docs" - mkdir "${WORKDIR}"/api - local my_modules epydoc_opts="" - my_modules="$(find "${S}/pym" -name "*.py" \ - | sed -e 's:/__init__.py$::' -e 's:\.py$::' -e "s:^${S}/pym/::" \ - -e 's:/:.:g' | sort)" || die "error listing modules" - # workaround for bug 282760 - > "$S/pym/pysqlite2.py" - PYTHONPATH=${S}/pym:${PYTHONPATH:+:}${PYTHONPATH} \ - epydoc -o "${WORKDIR}"/api \ - -qqqqq --no-frames --show-imports $epydoc_opts \ - --name "${PN}" --url "${HOMEPAGE}" \ - ${my_modules} || die "epydoc failed" - rm "$S/pym/pysqlite2.py" - fi -} - -src_test() { - # make files executable, in case they were created by patch - find bin -type f | xargs chmod +x - ./pym/portage/tests/runTests || die "test(s) failed" -} - -src_install() { - local libdir=$(get_libdir) - local portage_base="/usr/${libdir}/portage" - local portage_share_config=/usr/share/portage/config - - cd "${S}"/cnf - insinto /etc - doins etc-update.conf dispatch-conf.conf || die - - insinto "$portage_share_config" - doins "$S/cnf/make.globals" || die - if [ -f "make.conf.${ARCH}".diff ]; then - patch make.conf "make.conf.${ARCH}".diff || \ - die "Failed to patch make.conf.example" - newins make.conf make.conf.example || die - else - eerror "" - eerror "Portage does not have an arch-specific configuration for this arch." - eerror "Please notify the arch maintainer about this issue. Using generic." - eerror "" - newins make.conf make.conf.example || die - fi - - dosym ..${portage_share_config}/make.globals /etc/make.globals - - insinto /etc/logrotate.d - doins "${S}"/cnf/logrotate.d/elog-save-summary || die - - # BSD and OSX need a sed wrapper so that find/xargs work properly - if use userland_GNU; then - rm "${S}"/bin/ebuild-helpers/sed || die "Failed to remove sed wrapper" - fi - - local x symlinks files - - cd "$S" || die "cd failed" - for x in $(find bin -type d) ; do - exeinto $portage_base/$x || die "exeinto failed" - cd "$S"/$x || die "cd failed" - files=$(find . -mindepth 1 -maxdepth 1 -type f ! -type l) - if [ -n "$files" ] ; then - doexe $files || die "doexe failed" - fi - symlinks=$(find . -mindepth 1 -maxdepth 1 -type l) - if [ -n "$symlinks" ] ; then - cp -P $symlinks "$D$portage_base/$x" || die "cp failed" - fi - done - - cd "$S" || die "cd failed" - for x in $(find pym/* -type d ! -path "pym/portage/tests*") ; do - insinto $portage_base/$x || die "insinto failed" - cd "$S"/$x || die "cd failed" - # __pycache__ directories contain no py files - [[ "*.py" != $(echo *.py) ]] || continue - doins *.py || die "doins failed" - symlinks=$(find . -mindepth 1 -maxdepth 1 -type l) - if [ -n "$symlinks" ] ; then - cp -P $symlinks "$D$portage_base/$x" || die "cp failed" - fi - done - - # We install some minimal tests for use as a preinst sanity check. - # These tests must be able to run without a full source tree and - # without relying on a previous portage instance being installed. - cd "$S" || die "cd failed" - exeinto $portage_base/pym/portage/tests || die - doexe pym/portage/tests/runTests || die - insinto $portage_base/pym/portage/tests || die - doins pym/portage/tests/*.py || die - insinto $portage_base/pym/portage/tests/lint || die - doins pym/portage/tests/lint/*.py || die - doins pym/portage/tests/lint/__test__ || die - - # Symlinks to directories cause up/downgrade issues and the use of these - # modules outside of portage is probably negligible. - for x in "${D}${portage_base}/pym/"{cache,elog_modules} ; do - [ ! -L "${x}" ] && continue - die "symlink to directory will cause upgrade/downgrade issues: '${x}'" - done - - doman "${S}"/man/*.[0-9] - if use linguas_pl; then - doman -i18n=pl "${S_PL}"/man/pl/*.[0-9] - doman -i18n=pl_PL.UTF-8 "${S_PL}"/man/pl_PL.UTF-8/*.[0-9] - fi - - dodoc "${S}"/{ChangeLog,NEWS,RELEASE-NOTES} - use doc && dohtml -r "${S}"/doc/* - use epydoc && dohtml -r "${WORKDIR}"/api - - dodir /usr/bin - for x in ebuild egencache emerge portageq quickpkg repoman ; do - dosym ../${libdir}/portage/bin/${x} /usr/bin/${x} - done - - dodir /usr/sbin - local x - for x in archive-conf dispatch-conf emaint emerge-webrsync env-update \ - etc-update fixpackages regenworld ; do - dosym ../${libdir}/portage/bin/${x} /usr/sbin/${x} - done - dosym env-update /usr/sbin/update-env - dosym etc-update /usr/sbin/update-etc - - dodir /etc/portage - keepdir /etc/portage -} - -pkg_preinst() { - if [[ $ROOT == / ]] ; then - # Run some minimal tests as a sanity check. - local test_runner=$(find "$D" -name runTests) - if [[ -n $test_runner && -x $test_runner ]] ; then - einfo "Running preinst sanity tests..." - "$test_runner" || die "preinst sanity tests failed" - fi - fi - - if use xattr && ! current_python_has_xattr ; then - ewarn "For optimal performance in xattr handling, install" - ewarn "dev-python/pyxattr, or install >=dev-lang/python-3.3 and" - ewarn "enable USE=python3 for $CATEGORY/$PN." - fi - - if ! use build && ! has_version dev-python/pycrypto && \ - ! has_version '>=dev-lang/python-2.6[ssl]' ; then - ewarn "If you are an ebuild developer and you plan to commit ebuilds" - ewarn "with this system then please install dev-python/pycrypto or" - ewarn "enable the ssl USE flag for >=dev-lang/python-2.6 in order" - ewarn "to enable RMD160 hash support." - ewarn "See bug #198398 for more information." - fi - if [ -f "${ROOT}/etc/make.globals" ]; then - rm "${ROOT}/etc/make.globals" - fi - - if [[ -d ${ROOT}var/log/portage && \ - $(ls -ld "${ROOT}var/log/portage") != *" portage portage "* ]] && \ - has_version '= 0x2060000 and "good" or "bad")') = good ]] -} - -current_python_has_xattr() { - [[ $("${EPREFIX}/usr/bin/python" -c 'import sys ; sys.stdout.write(sys.hexversion >= 0x3030000 and "yes" or "no")') = yes ]] || \ - "${EPREFIX}/usr/bin/python" -c 'import xattr' 2>/dev/null -} - -pkg_setup() { - # Bug #359731 - Die early if get_libdir fails. - [[ -z $(get_libdir) ]] && \ - die "get_libdir returned an empty string" - - if use python2 && use python3 ; then - ewarn "Both python2 and python3 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python3." - fi - if use pypy1_9 && use python3 ; then - ewarn "Both pypy1_9 and python3 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python3." - fi - if use pypy1_9 && use python2 ; then - ewarn "Both pypy1_9 and python2 USE flags are enabled, but only one" - ewarn "can be in the shebangs. Using python2" - fi - if ! use pypy1_9 && ! use python2 && ! use python3 && \ - ! compatible_python_is_selected ; then - ewarn "Attempting to select a compatible default python interpreter" - local x success=0 - for x in /usr/bin/python2.* ; do - x=${x#/usr/bin/python2.} - if [[ $x -ge 6 ]] 2>/dev/null ; then - eselect python set python2.$x - if compatible_python_is_selected ; then - elog "Default python interpreter is now set to python-2.$x" - success=1 - break - fi - fi - done - if [ $success != 1 ] ; then - eerror "Unable to select a compatible default python interpreter!" - die "This version of portage requires at least python-2.6 to be selected as the default python interpreter (see \`eselect python --help\`)." - fi - fi - - if use python3; then - python_set_active_version 3 - elif use python2; then - python_set_active_version 2 - elif use pypy1_9; then - python_set_active_version 2.7-pypy-1.9 - fi -} - -src_prepare() { - if [ -n "${PATCHVER}" ] ; then - if [[ -L $S/bin/ebuild-helpers/portageq ]] ; then - rm "$S/bin/ebuild-helpers/portageq" \ - || die "failed to remove portageq helper symlink" - fi - epatch "${WORKDIR}/${PN}-${PATCHVER}.patch" - fi - einfo "Setting portage.VERSION to ${PVR} ..." - sed -e "s/^VERSION=.*/VERSION=\"${PVR}\"/" -i pym/portage/__init__.py || \ - die "Failed to patch portage.VERSION" - sed -e "1s/VERSION/${PVR}/" -i doc/fragment/version || \ - die "Failed to patch VERSION in doc/fragment/version" - sed -e "1s/VERSION/${PVR}/" -i man/* || \ - die "Failed to patch VERSION in man page headers" - - if ! use ipc ; then - einfo "Disabling ipc..." - sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ - -i pym/_emerge/AbstractEbuildProcess.py || \ - die "failed to patch AbstractEbuildProcess.py" - fi - - if use xattr && use kernel_linux ; then - einfo "Adding FEATURES=xattr to make.globals ..." - echo -e '\nFEATURES="${FEATURES} xattr"' >> cnf/make.globals \ - || die "failed to append to make.globals" - fi - - if use python3; then - einfo "Converting shebangs for python3..." - python_convert_shebangs -r 3 . - elif use python2; then - einfo "Converting shebangs for python2..." - python_convert_shebangs -r 2 . - elif use pypy1_9; then - einfo "Converting shebangs for pypy-c1.9..." - python_convert_shebangs -r 2.7-pypy-1.9 . - fi - - if [[ -n ${EPREFIX} ]] ; then - einfo "Setting portage.const.EPREFIX ..." - sed -e "s|^\(SANDBOX_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/bin/sandbox\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(FAKEROOT_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/bin/fakeroot\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(BASH_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/bash\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(MOVE_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/mv\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(PRELINK_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/sbin/prelink\"\)|\\1${EPREFIX}\\2|" \ - -e "s|^\(EPREFIX[[:space:]]*=[[:space:]]*\"\).*|\\1${EPREFIX}\"|" \ - -i pym/portage/const.py || \ - die "Failed to patch portage.const.EPREFIX" - - einfo "Prefixing shebangs ..." - find . -type f -print0 | \ - while read -r -d $'\0' ; do - local shebang=$(head -n1 "$REPLY") - if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then - sed -i -e "1s:.*:#!${EPREFIX}${shebang:2}:" "$REPLY" || \ - die "sed failed" - fi - done - - einfo "Adjusting make.globals ..." - sed -e 's|^SYNC=.*|SYNC="rsync://rsync.prefix.freens.org/gentoo-portage-prefix"|' \ - -e "s|^\(PORTDIR=\)\(/usr/portage\)|\\1\"${EPREFIX}\\2\"|" \ - -e "s|^\(PORTAGE_TMPDIR=\)\(/var/tmp\)|\\1\"${EPREFIX}\\2\"|" \ - -i cnf/make.globals || die "sed failed" - - einfo "Adding FEATURES=force-prefix to make.globals ..." - echo -e '\nFEATURES="${FEATURES} force-prefix"' >> cnf/make.globals \ - || die "failed to append to make.globals" - fi - -} - -src_compile() { - if use doc; then - cd "${S}"/doc - touch fragment/date - make xhtml xhtml-nochunks || die "failed to make docs" - fi - - if use epydoc; then - einfo "Generating api docs" - mkdir "${WORKDIR}"/api - local my_modules epydoc_opts="" - my_modules="$(find "${S}/pym" -name "*.py" \ - | sed -e 's:/__init__.py$::' -e 's:\.py$::' -e "s:^${S}/pym/::" \ - -e 's:/:.:g' | sort)" || die "error listing modules" - # workaround for bug 282760 - > "$S/pym/pysqlite2.py" - PYTHONPATH=${S}/pym:${PYTHONPATH:+:}${PYTHONPATH} \ - epydoc -o "${WORKDIR}"/api \ - -qqqqq --no-frames --show-imports $epydoc_opts \ - --name "${PN}" --url "${HOMEPAGE}" \ - ${my_modules} || die "epydoc failed" - rm "$S/pym/pysqlite2.py" - fi -} - -src_test() { - # make files executable, in case they were created by patch - find bin -type f | xargs chmod +x - ./pym/portage/tests/runTests || die "test(s) failed" -} - -src_install() { - local libdir=$(get_libdir) - local portage_base="/usr/${libdir}/portage" - local portage_share_config=/usr/share/portage/config - - cd "${S}"/cnf - insinto /etc - doins etc-update.conf dispatch-conf.conf || die - - insinto "$portage_share_config/sets" - doins "$S"/cnf/sets/*.conf || die - insinto "$portage_share_config" - doins "$S/cnf/make.globals" || die - if [ -f "make.conf.${ARCH}".diff ]; then - patch make.conf "make.conf.${ARCH}".diff || \ - die "Failed to patch make.conf.example" - newins make.conf make.conf.example || die - else - eerror "" - eerror "Portage does not have an arch-specific configuration for this arch." - eerror "Please notify the arch maintainer about this issue. Using generic." - eerror "" - newins make.conf make.conf.example || die - fi - - dosym ..${portage_share_config}/make.globals /etc/make.globals - - insinto /etc/logrotate.d - doins "${S}"/cnf/logrotate.d/elog-save-summary || die - - # BSD and OSX need a sed wrapper so that find/xargs work properly - if use userland_GNU; then - rm "${S}"/bin/ebuild-helpers/sed || die "Failed to remove sed wrapper" - fi - - local x symlinks files - - cd "$S" || die "cd failed" - for x in $(find bin -type d) ; do - exeinto $portage_base/$x || die "exeinto failed" - cd "$S"/$x || die "cd failed" - files=$(find . -mindepth 1 -maxdepth 1 -type f ! -type l) - if [ -n "$files" ] ; then - doexe $files || die "doexe failed" - fi - symlinks=$(find . -mindepth 1 -maxdepth 1 -type l) - if [ -n "$symlinks" ] ; then - cp -P $symlinks "$ED$portage_base/$x" || die "cp failed" - fi - done - - cd "$S" || die "cd failed" - for x in $(find pym/* -type d ! -path "pym/portage/tests*") ; do - insinto $portage_base/$x || die "insinto failed" - cd "$S"/$x || die "cd failed" - # __pycache__ directories contain no py files - [[ "*.py" != $(echo *.py) ]] || continue - doins *.py || die "doins failed" - symlinks=$(find . -mindepth 1 -maxdepth 1 -type l) - if [ -n "$symlinks" ] ; then - cp -P $symlinks "$ED$portage_base/$x" || die "cp failed" - fi - done - - # We install some minimal tests for use as a preinst sanity check. - # These tests must be able to run without a full source tree and - # without relying on a previous portage instance being installed. - cd "$S" || die "cd failed" - exeinto $portage_base/pym/portage/tests || die - doexe pym/portage/tests/runTests || die - insinto $portage_base/pym/portage/tests || die - doins pym/portage/tests/*.py || die - insinto $portage_base/pym/portage/tests/lint || die - doins pym/portage/tests/lint/*.py || die - doins pym/portage/tests/lint/__test__ || die - - # Symlinks to directories cause up/downgrade issues and the use of these - # modules outside of portage is probably negligible. - for x in "${ED}${portage_base}/pym/"{cache,elog_modules} ; do - [ ! -L "${x}" ] && continue - die "symlink to directory will cause upgrade/downgrade issues: '${x}'" - done - - doman "${S}"/man/*.[0-9] - if use linguas_pl; then - doman -i18n=pl "${S_PL}"/man/pl/*.[0-9] - doman -i18n=pl_PL.UTF-8 "${S_PL}"/man/pl_PL.UTF-8/*.[0-9] - fi - - dodoc "${S}"/{ChangeLog,NEWS,RELEASE-NOTES} - use doc && dohtml -r "${S}"/doc/* - use epydoc && dohtml -r "${WORKDIR}"/api - - dodir /usr/bin - for x in ebuild egencache emerge portageq quickpkg repoman ; do - dosym ../${libdir}/portage/bin/${x} /usr/bin/${x} - done - - dodir /usr/sbin - local x - for x in archive-conf dispatch-conf emaint emerge-webrsync env-update \ - etc-update fixpackages regenworld ; do - dosym ../${libdir}/portage/bin/${x} /usr/sbin/${x} - done - dosym env-update /usr/sbin/update-env - dosym etc-update /usr/sbin/update-etc - - dodir /etc/portage - keepdir /etc/portage -} - -pkg_preinst() { - if [[ $ROOT == / ]] ; then - # Run some minimal tests as a sanity check. - local test_runner=$(find "$ED" -name runTests) - if [[ -n $test_runner && -x $test_runner ]] ; then - einfo "Running preinst sanity tests..." - "$test_runner" || die "preinst sanity tests failed" - fi - fi - - if use xattr && ! current_python_has_xattr ; then - ewarn "For optimal performance in xattr handling, install" - ewarn "dev-python/pyxattr, or install >=dev-lang/python-3.3 and" - ewarn "enable USE=python3 for $CATEGORY/$PN." - fi - - if ! use build && ! has_version dev-python/pycrypto && \ - ! has_version '>=dev-lang/python-2.6[ssl]' ; then - ewarn "If you are an ebuild developer and you plan to commit ebuilds" - ewarn "with this system then please install dev-python/pycrypto or" - ewarn "enable the ssl USE flag for >=dev-lang/python-2.6 in order" - ewarn "to enable RMD160 hash support." - ewarn "See bug #198398 for more information." - fi - if [ -f "${EROOT}/etc/make.globals" ]; then - rm "${EROOT}/etc/make.globals" - fi - - has_version "<${CATEGORY}/${PN}-2.2_alpha" \ - && MINOR_UPGRADE=true || MINOR_UPGRADE=false - - has_version "<=${CATEGORY}/${PN}-2.2_pre5" \ - && WORLD_MIGRATION_UPGRADE=true || WORLD_MIGRATION_UPGRADE=false - - # If portage-2.1.6 is installed and the preserved_libs_registry exists, - # assume that the NEEDED.ELF.2 files have already been generated. - has_version "<=${CATEGORY}/${PN}-2.2_pre7" && \ - ! ( [ -e "${EROOT}"var/lib/portage/preserved_libs_registry ] && \ - has_version ">=${CATEGORY}/${PN}-2.1.6_rc" ) \ - && NEEDED_REBUILD_UPGRADE=true || NEEDED_REBUILD_UPGRADE=false - - [[ -n $PORTDIR_OVERLAY ]] && has_version "<${CATEGORY}/${PN}-2.1.6.12" \ - && REPO_LAYOUT_CONF_WARN=true || REPO_LAYOUT_CONF_WARN=false -} - -pkg_postinst() { - # Compile all source files recursively. Any orphans - # will be identified and removed in postrm. - python_mod_optimize /usr/$(get_libdir)/portage/pym - - if $WORLD_MIGRATION_UPGRADE ; then - einfo "moving set references from the worldfile into world_sets" - cd "${EROOT}/var/lib/portage/" - grep "^@" world >> world_sets - sed -i -e '/^@/d' world - fi - - if $NEEDED_REBUILD_UPGRADE ; then - einfo "rebuilding NEEDED.ELF.2 files" - for cpv in "${EROOT}/var/db/pkg"/*/*; do - if [ -f "${cpv}/NEEDED" ]; then - rm -f "${cpv}/NEEDED.ELF.2" - while read line; do - filename=${line% *} - needed=${line#* } - needed=${needed//+/++} - needed=${needed//#/##} - needed=${needed//%/%%} - newline=$(scanelf -BF "%a;%F;%S;%r;${needed}" $filename) - newline=${newline// - } - echo "${newline:3}" >> "${cpv}/NEEDED.ELF.2" - done < "${cpv}/NEEDED" - fi - done - fi - - if $REPO_LAYOUT_CONF_WARN ; then - ewarn - echo "If you want overlay eclasses to override eclasses from" \ - "other repos then see the portage(5) man page" \ - "for information about the new layout.conf and repos.conf" \ - "configuration files." \ - | fmt -w 75 | while read -r ; do ewarn "$REPLY" ; done - ewarn - fi - - if $MINOR_UPGRADE ; then - elog "If you're upgrading from a pre-2.2 version of portage you might" - elog "want to remerge world (emerge -e world) to take full advantage" - elog "of some of the new features in 2.2." - elog "This is not required however for portage to function properly." - elog - fi -} - -pkg_postrm() { - python_mod_cleanup /usr/$(get_libdir)/portage/pym -} diff --git a/sys-boot/grub/files/grub-2.00-10_linux-genkernel.patch b/sys-boot/grub/files/grub-2.00-10_linux-genkernel.patch deleted file mode 100644 index 590c6958cf2b..000000000000 --- a/sys-boot/grub/files/grub-2.00-10_linux-genkernel.patch +++ /dev/null @@ -1,39 +0,0 @@ ---- util/grub.d/10_linux.in -+++ util/grub.d/10_linux.in -@@ -150,7 +150,8 @@ - EOF - } - --case x`uname -m` in -+machine=`uname -m` -+case "x$machine" in - xi?86 | xx86_64) - list=`for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do - if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi -@@ -161,6 +162,14 @@ - done` ;; - esac - -+case "$machine" in -+ i?86) GENKERNEL_ARCH="x86" ;; -+ mips|mips64) GENKERNEL_ARCH="mips" ;; -+ mipsel|mips64el) GENKERNEL_ARCH="mipsel" ;; -+ arm*) GENKERNEL_ARCH="arm" ;; -+ *) GENKERNEL_ARCH="$machine" ;; -+esac -+ - prepare_boot_cache= - prepare_root_cache= - boot_device_id= -@@ -187,7 +196,9 @@ - "initrd.img-${alt_version}" "initrd-${alt_version}.img" \ - "initrd-${alt_version}" "initramfs-${alt_version}.img" \ - "initramfs-genkernel-${version}" \ -- "initramfs-genkernel-${alt_version}"; do -+ "initramfs-genkernel-${alt_version}" \ -+ "initramfs-genkernel-${GENKERNEL_ARCH}-${version}" \ -+ "initramfs-genkernel-${GENKERNEL_ARCH}-${alt_version}"; do - if test -e "${dirname}/${i}" ; then - initrd="$i" - break - diff --git a/sys-boot/grub/files/grub-2.00-manpage-race.patch b/sys-boot/grub/files/grub-2.00-manpage-race.patch new file mode 100644 index 000000000000..0781942f4fbf --- /dev/null +++ b/sys-boot/grub/files/grub-2.00-manpage-race.patch @@ -0,0 +1,16 @@ +Fix race condition when generating manpages. +https://bugs.gentoo.org/show_bug.cgi?id=424231 +https://savannah.gnu.org/bugs/?36758 + +--- gentpl.py 2012-05-28 15:57:18 +0000 ++++ gentpl.py 2012-07-01 20:17:09 +0000 +@@ -487,7 +487,7 @@ + def manpage(): + r = "if COND_MAN_PAGES\n" + r += gvar_add("man_MANS", "[+ name +].[+ mansection +]\n") +- r += rule("[+ name +].[+ mansection +]", "[+ name +]", """ ++ r += rule("[+ name +].[+ mansection +]", "[+ name +] grub-mkconfig_lib", """ + chmod a+x [+ name +] + PATH=$(builddir):$$PATH pkgdatadir=$(builddir) $(HELP2MAN) --section=[+ mansection +] -i $(top_srcdir)/docs/man/[+ name +].h2m -o $@ [+ name +] + """) + diff --git a/sys-boot/grub/grub-2.00.ebuild b/sys-boot/grub/grub-2.00.ebuild index fef8e8bb8ed0..85ea67f6061b 100644 --- a/sys-boot/grub/grub-2.00.ebuild +++ b/sys-boot/grub/grub-2.00.ebuild @@ -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/sys-boot/grub/grub-2.00.ebuild,v 1.8 2012/06/29 22:06:15 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.00.ebuild,v 1.10 2012/07/01 22:11:04 floppym Exp $ EAPI=4 @@ -19,6 +19,7 @@ else fi KEYWORDS="~amd64 ~x86" S=${WORKDIR}/${MY_P} + DO_AUTORECONF="true" fi inherit eutils flag-o-matic pax-utils toolchain-funcs ${DO_AUTORECONF:+autotools} ${LIVE_ECLASS} @@ -70,6 +71,7 @@ DEPEND="${RDEPEND} >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison + sys-apps/help2man sys-apps/texinfo static? ( truetype? ( @@ -84,7 +86,7 @@ RDEPEND+=" grub_platforms_efi-64? ( sys-boot/efibootmgr ) " if [[ -n ${DO_AUTORECONF} ]] ; then - DEPEND+=" >=sys-devel/autogen-5.10 sys-apps/help2man" + DEPEND+=" >=sys-devel/autogen-5.10" else DEPEND+=" app-arch/xz-utils" fi @@ -207,6 +209,10 @@ grub_src_install() { src_prepare() { local i j + if [[ ${PV} != 9999 ]]; then + epatch "${FILESDIR}/${P}-manpage-race.patch" + fi + # fix texinfo file name, bug 416035 sed -i \ -e 's/^\* GRUB:/* GRUB2:/' \ @@ -241,7 +247,7 @@ src_prepare() { src_configure() { local i - use custom-cflags || unset CFLAGS CPPFLAGS LDFLAGS + use custom-cflags || unset CCASFLAGS CFLAGS CPPFLAGS LDFLAGS use static && append-ldflags -static # Sandbox bug 404013. diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild index e1441639b298..9e593804912c 100644 --- a/sys-boot/grub/grub-9999.ebuild +++ b/sys-boot/grub/grub-9999.ebuild @@ -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/sys-boot/grub/grub-9999.ebuild,v 1.74 2012/06/29 22:06:15 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.76 2012/07/01 22:11:04 floppym Exp $ EAPI=4 @@ -19,6 +19,7 @@ else fi KEYWORDS="~amd64 ~x86" S=${WORKDIR}/${MY_P} + DO_AUTORECONF="true" fi inherit eutils flag-o-matic pax-utils toolchain-funcs ${DO_AUTORECONF:+autotools} ${LIVE_ECLASS} @@ -70,6 +71,7 @@ DEPEND="${RDEPEND} >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison + sys-apps/help2man sys-apps/texinfo static? ( truetype? ( @@ -84,7 +86,7 @@ RDEPEND+=" grub_platforms_efi-64? ( sys-boot/efibootmgr ) " if [[ -n ${DO_AUTORECONF} ]] ; then - DEPEND+=" >=sys-devel/autogen-5.10 sys-apps/help2man" + DEPEND+=" >=sys-devel/autogen-5.10" else DEPEND+=" app-arch/xz-utils" fi @@ -207,6 +209,10 @@ grub_src_install() { src_prepare() { local i j + if [[ ${PV} != 9999 ]]; then + epatch "${FILESDIR}/${P}-manpage-race.patch" + fi + # fix texinfo file name, bug 416035 sed -i \ -e 's/^\* GRUB:/* GRUB2:/' \ @@ -241,7 +247,7 @@ src_prepare() { src_configure() { local i - use custom-cflags || unset CFLAGS CPPFLAGS LDFLAGS + use custom-cflags || unset CCASFLAGS CFLAGS CPPFLAGS LDFLAGS use static && append-ldflags -static # Sandbox bug 404013. diff --git a/sys-kernel/hardened-sources/Manifest b/sys-kernel/hardened-sources/Manifest index d5a64190450e..2de54410a5af 100644 --- a/sys-kernel/hardened-sources/Manifest +++ b/sys-kernel/hardened-sources/Manifest @@ -35,6 +35,7 @@ DIST hardened-patches-3.2.20-1.extras.tar.bz2 576830 RMD160 f0463d9582e1649833e6 DIST hardened-patches-3.2.20-2.extras.tar.bz2 588061 RMD160 b74563eb428c1fedd0a511a607d6fd79dec1f85e SHA1 86e857892be2444d595ec39c3da5cbe2293499d9 SHA256 3f14543be3b5fd882c01f66cb1a25056190ee2e5d69b0f4b16d785bccda010a9 DIST hardened-patches-3.2.21-1.extras.tar.bz2 563495 RMD160 3756d134285056b3a4c9f0dcbea406a9c69f3f43 SHA1 dfbb0eba27c3a7224278b717999a14406007e567 SHA256 9acbefe1e35a233f3509c5fae79174803f28230fbee49f8f5efccf84743dae69 DIST hardened-patches-3.2.21-2.extras.tar.bz2 563622 RMD160 cfd319f525229b277446a58a7942d399ffa9b86a SHA1 09173557d61eb01fe314c012c27ebafaf70b1fcb SHA256 5e3532665389e95060996ff293e292c9d2ead72fd2cb3a26d2371497a63be1f3 +DIST hardened-patches-3.2.21-3.extras.tar.bz2 563724 RMD160 d4a2abec6c3f187654a2416a665f41598e999f4b SHA1 519903ceeab5537aff468a8219f76b2bf2ede7a8 SHA256 8b2c0305acc6ae4709131c875427ff4006822f1e78ffb9a1b1e38fb720f75e04 DIST hardened-patches-3.4.2-1.extras.tar.bz2 546639 RMD160 23b07aaa0c87b11b4945fd6f84e31e286dc2c964 SHA1 29fd884c8f4bd53a923bb08835b15a26fa20b9bf SHA256 a513ad66af2e1feccc40c89b492336525db3c4c9e9227b6d957a05ee9fcabfd3 DIST hardened-patches-3.4.3-1.extras.tar.bz2 562591 RMD160 afea8d716eb27286b9179446f688b68174959150 SHA1 7617f40c7e23562566d47ddd8232874fd401c1a0 SHA256 a2d3d78f5ec904239aeb084965c628da96aaa60f576f73628aedba15f261494b DIST hardened-patches-3.4.3-2.extras.tar.bz2 551688 RMD160 76ca77896b19f72a216300b420a8372575a54abf SHA1 500c26c2b03585668426c8eef41b5e8fbae4b3de SHA256 d7aa3138473eedae5772a1a24b7d023ec7bf498183222fa0fe9bd396d9ca0491 diff --git a/sys-kernel/hardened-sources/hardened-sources-3.2.21-r2.ebuild b/sys-kernel/hardened-sources/hardened-sources-3.2.21-r2.ebuild new file mode 100644 index 000000000000..edfcaf173e12 --- /dev/null +++ b/sys-kernel/hardened-sources/hardened-sources-3.2.21-r2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hardened-sources/hardened-sources-3.2.21-r2.ebuild,v 1.1 2012/07/01 20:37:35 blueness Exp $ + +EAPI="4" + +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="16" +K_DEBLOB_AVAILABLE="1" + +inherit kernel-2 +detect_version + +HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-3" +HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2" +SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2" +UNIPATCH_EXCLUDE="4200_fbcondecor-0.9.6.patch" + +DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/" +IUSE="deblob" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=sys-devel/gcc-4.5" + +pkg_postinst() { + kernel-2_pkg_postinst + + local GRADM_COMPAT="sys-apps/gradm-2.9.1" + + ewarn + ewarn "Hardened Gentoo provides three different predefined grsecurity level:" + ewarn "[server], [workstation], and [virtualization]. Those who intend to" + ewarn "use one of these predefined grsecurity levels should read the help" + ewarn "associated with the level. Because some options require >=gcc-4.5," + ewarn "users with more, than one version of gcc installed should use gcc-config" + ewarn "to select a compatible version." + ewarn + ewarn "Users of grsecurity's RBAC system must ensure they are using" + ewarn "${GRADM_COMPAT}, which is compatible with ${PF}." + ewarn "It is strongly recommended that the following command is issued" + ewarn "prior to booting a ${PF} kernel for the first time:" + ewarn + ewarn "emerge -na =${GRADM_COMPAT}*" + ewarn +} diff --git a/x11-apps/ccsm/ccsm-0.8.4-r1.ebuild b/x11-apps/ccsm/ccsm-0.8.4-r1.ebuild index 618f968f77ba..9f6f478a5484 100644 --- a/x11-apps/ccsm/ccsm-0.8.4-r1.ebuild +++ b/x11-apps/ccsm/ccsm-0.8.4-r1.ebuild @@ -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/x11-apps/ccsm/ccsm-0.8.4-r1.ebuild,v 1.3 2012/04/20 01:35:42 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/ccsm/ccsm-0.8.4-r1.ebuild,v 1.4 2012/07/01 22:55:20 naota Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -19,7 +19,6 @@ IUSE="" DEPEND=" >=dev-python/compizconfig-python-${PV} >=dev-python/pygtk-2.12:2 - dev-python/sexy-python dev-util/intltool gnome-base/librsvg " diff --git a/x11-apps/ccsm/metadata.xml b/x11-apps/ccsm/metadata.xml index 0c38f410cc17..9e18ae4c96ca 100644 --- a/x11-apps/ccsm/metadata.xml +++ b/x11-apps/ccsm/metadata.xml @@ -2,7 +2,7 @@ - pinkbyte@mail.ru + admin@pinkbyte.ru Pinkbyte diff --git a/x11-libs/goffice/goffice-0.8.17-r1.ebuild b/x11-libs/goffice/goffice-0.8.17-r1.ebuild index af61886aaaa8..9a2dfadd79e9 100644 --- a/x11-libs/goffice/goffice-0.8.17-r1.ebuild +++ b/x11-libs/goffice/goffice-0.8.17-r1.ebuild @@ -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/x11-libs/goffice/goffice-0.8.17-r1.ebuild,v 1.3 2012/07/01 18:27:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.8.17-r1.ebuild,v 1.4 2012/07/02 06:38:09 jdhore Exp $ EAPI="4" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://git.gnome.org/browse/goffice/" LICENSE="GPL-2" SLOT="0.8" -KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris" +KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris" IUSE="doc gnome" # Build fails with -gtk diff --git a/x11-themes/tangerine-icon-theme/Manifest b/x11-themes/tangerine-icon-theme/Manifest index d1c35ae6d6e4..b89539008195 100644 --- a/x11-themes/tangerine-icon-theme/Manifest +++ b/x11-themes/tangerine-icon-theme/Manifest @@ -1,3 +1,2 @@ DIST gentoo-logo.svg 13764 RMD160 62b740f670377486eb1350c4f180d9f0ab63948c SHA1 a81d7fb4be541547be78d648bbeb0d3c51f1a41e SHA256 ad81a212991cd24faaddbc260c806c805fd7a67f65b24655908a8971fa10794e -DIST tangerine-icon-theme_0.26.tar.gz 1167388 RMD160 0b35f6c60fce6f0228568f0945158579e577da47 SHA1 38602a729a5d760eebbd79a79905a834ba449553 SHA256 ff35de84580b15a472994f6338a50b96e4df3da2ab5c4cb086c7e0a1af82ea5a DIST tangerine-icon-theme_0.27.tar.gz 1163543 RMD160 faad4ce47916a0bac93864477162fd56fe905cee SHA1 235645dc235558701784b4c8da06419a9523be93 SHA256 4842f55143694a4d5b12517ff0b53d3dac1a67413b32c4a46bbf1b4b805f5489 diff --git a/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild b/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild deleted file mode 100644 index 9f9ee4468510..000000000000 --- a/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.26.ebuild,v 1.11 2012/05/05 04:10:04 jdhore Exp $ - -EAPI=2 -inherit autotools gnome2-utils - -DESCRIPTION="a derivative of the standard Tango theme, using a more orange approach" -HOMEPAGE="http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme" -SRC_URI="mirror://gentoo/${PN}_${PV}.tar.gz - http://www.gentoo.org/images/gentoo-logo.svg" - -LICENSE="CCPL-Attribution-ShareAlike-2.5" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="png" - -RDEPEND=">=x11-themes/gnome-icon-theme-2.24" -DEPEND=">=gnome-base/librsvg-2.12.3 - || ( media-gfx/imagemagick[png?] media-gfx/graphicsmagick[imagemagick,png?] ) - >=x11-misc/icon-naming-utils-0.8.2 - virtual/pkgconfig - dev-util/intltool - sys-devel/gettext" - -RESTRICT="binchecks strip" - -src_unpack() { unpack ${PN}_${PV}.tar.gz; } -src_prepare() { - cp "${DISTDIR}"/gentoo-logo.svg scalable/places/start-here.svg \ - || die "cp failed" - - for res in 16 22 32; do - rsvg -w ${res} -h ${res} scalable/places/start-here.svg \ - ${res}x${res}/places/start-here.png || die - done - - intltoolize --force --copy --automake || die - eautoreconf -} - -src_configure() { - econf \ - $(use_enable png png-creation) \ - $(use_enable png icon-framing) -} - -src_install() { - addwrite /root/.gnome2 - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog README -} - -pkg_preinst() { gnome2_icon_savelist; } -pkg_postinst() { gnome2_icon_cache_update; } -pkg_postrm() { gnome2_icon_cache_update; } diff --git a/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild b/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild index 5a420b776da3..2356a5ed1260 100644 --- a/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild +++ b/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild,v 1.7 2012/03/17 18:00:38 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild,v 1.8 2012/07/02 06:54:35 ssuominen Exp $ -EAPI=3 +EAPI=4 inherit gnome2-utils DESCRIPTION="a derivative of the standard Tango theme, using a more orange approach" @@ -13,16 +13,22 @@ SRC_URI="mirror://ubuntu/pool/universe/t/${PN}/${PN}_${PV}.tar.gz LICENSE="CCPL-Attribution-ShareAlike-2.5 LGPL-2.1" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="|| ( kde-base/oxygen-icons x11-themes/gnome-icon-theme )" -DEPEND="gnome-base/librsvg - >=x11-misc/icon-naming-utils-0.8.90 - dev-util/intltool - sys-devel/gettext" +IUSE="minimal" RESTRICT="binchecks strip" +RDEPEND="!minimal? ( || ( x11-themes/gnome-icon-theme kde-base/oxygen-icons ) )" +DEPEND="dev-util/intltool + >=gnome-base/librsvg-2.34 + sys-devel/gettext + >=x11-misc/icon-naming-utils-0.8.90" + +DOCS="AUTHORS README" + +src_unpack() { + unpack ${PN}_${PV}.tar.gz +} + src_prepare() { sed -i \ -e 's:lib/icon-naming-utils/icon:libexec/icon:' \ @@ -32,18 +38,13 @@ src_prepare() { local res for res in 16 22 32; do - rsvg -w ${res} -h ${res} scalable/places/start-here.svg \ - ${res}x${res}/places/start-here.png || die + rsvg-convert -w ${res} -h ${res} scalable/places/start-here.svg \ + > ${res}x${res}/places/start-here.png || die done } src_compile() { - emake index.theme || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS README + emake index.theme } pkg_preinst() { gnome2_icon_savelist; } diff --git a/x11-wm/notion/notion-9999.ebuild b/x11-wm/notion/notion-9999.ebuild index 6893e805c87d..7c53fa020cfa 100644 --- a/x11-wm/notion/notion-9999.ebuild +++ b/x11-wm/notion/notion-9999.ebuild @@ -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/x11-wm/notion/notion-9999.ebuild,v 1.2 2012/06/20 19:49:13 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/notion/notion-9999.ebuild,v 1.3 2012/07/02 07:15:59 jdhore Exp $ EAPI="4" @@ -26,7 +26,7 @@ RDEPEND="dev-lang/lua xrandr? ( x11-libs/libXrandr )" DEPEND="${RDEPEND} - dev-util/pkgconfig" + virtual/pkgconfig" src_prepare() { sed -e "/^CFLAGS=/s:=:+=:" \