Sync with portage [Mon Oct 8 16:15:52 MSK 2012].

mhiretskiy
root 12 years ago
parent 18eeedaf2f
commit 95f2829db5

@ -1,2 +1,2 @@
DIST KeePass-2.19-Source.zip 3338045 SHA256 772a223ca9a799176fb6e473527bfc756663a57c322241002e6b81638e5e7bef SHA512 27c22552ccf6ec55d430bd90d8f79ac70ff11cf674240cb16575ba8342eee44a0079ee8ab8800b773985fb41b79875b7d88a54267989e3b7b2112732169093e0 WHIRLPOOL a9b5cb2adf48f90f1a922f9ed165cc3e3e95f21e5ed76a1ea6a40c8f1bea1d34ddf0417b7d372adcc557152ee762bfd0a80c8ac7f94da50cafe03fc4a35c22bc
DIST KeePass-2.20-Source.zip 3417074 SHA256 84917e57e69ae598cd55cc7eeed26f2b1732614e84890cd641a6e64c35509bd4 SHA512 5e4d388d68b23d77d3c519e975a53f85113f6ed7cad7414e14cfc6a8f8ffe3499da594cd571076e1977625c2ebbae8a1add33f1efd34739b0692718b7535a58c WHIRLPOOL 171071195a296e52f44a5c028b1c48665b3e2259d030d6d545370491ef86c4db52f44132cde44a4d871adc0c86890ac879568f341da00b4bbbc65a02c890a3bf
DIST KeePass-2.20.1-Source.zip 3361753 SHA256 21b9b36f18457b5a4058775b9ba3124d7bc9f2654f78d43a7f7850daafd99213 SHA512 e127935adbbb7e87b1ba3f21b76bdb3ee8eff8e20c7b7589b42b3498db33988b2365fec1bbcf0de51a33267015098232bacebb4bb496fe187ba12b323530f766 WHIRLPOOL 519c08d1fa7a80a9aa81a6012dfb54b75446bc2f655572d139d5ca26d43828115cc4f6b9c344f94f9cf3d62e9d96f3c941d026af29147e6f199c7373c17fc6fb

@ -1,18 +0,0 @@
This patch is a workaround to disable the use of sgen.exe after the build,
since sgen.exe is not available in Mono. The trick works because we use a
syntax which is common to sh and cmd.exe, but we also use `true` which is part
of UNIX coreutils.
true || windows-part
--- a/KeePass/KeePass.csproj
+++ b/KeePass/KeePass.csproj
@@ -1249,6 +1249,6 @@
</Target>
-->
<PropertyGroup>
- <PostBuildEvent>"$(FrameworkSDKDir)bin\sgen.exe" /assembly:"$(TargetPath)" /force /nologo /compiler:/keycontainer:VS_KEY_33430356D8D7D1B8 /compiler:/delaysign-</PostBuildEvent>
+ <PostBuildEvent>true || "$(FrameworkSDKDir)bin\sgen.exe" /assembly:"$(TargetPath)" /force /nologo /compiler:/keycontainer:VS_KEY_33430356D8D7D1B8 /compiler:/delaysign-</PostBuildEvent>
</PropertyGroup>
-</Project>
\ No newline at end of file
+</Project>

@ -1,43 +0,0 @@
KeePass looks for some resources (XSL files) in the executable directory,
however under UNIX system this not a good idea, so we look into the
CommonApplicationData SpecialFolder, which usually maps to "/usr/share/".
So the final search path should be "/usr/share/KeePass/XSL/".
--- a/KeePass/Forms/AboutForm.cs
+++ b/KeePass/Forms/AboutForm.cs
@@ -31,9 +31,11 @@ using KeePass.UI;
using KeePass.Resources;
using KeePass.Util;
using KeePass.DataExchange;
+using KeePass.Native;
using KeePassLib;
using KeePassLib.Utility;
+using KeePassLib.Native;
namespace KeePass.Forms
{
@@ -92,8 +94,21 @@ namespace KeePass.Forms
m_lvComponents.Items.Add(lvi);
lvi = new ListViewItem(KPRes.XslStylesheets);
- string strPath = WinUtil.GetExecutable();
- strPath = UrlUtil.GetFileDirectory(strPath, true, false);
+
+ string strPath;
+ if (NativeLib.IsUnix())
+ {
+ strPath = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData);
+ strPath = UrlUtil.EnsureTerminatingSeparator(strPath, false);
+ strPath += PwDefs.ShortProductName.ToLower();
+ strPath = UrlUtil.EnsureTerminatingSeparator(strPath, false);
+ }
+ else
+ {
+ strPath = WinUtil.GetExecutable();
+ strPath = UrlUtil.GetFileDirectory(strPath, true, false);
+ }
+
strPath += AppDefs.XslFilesDir;
strPath = UrlUtil.EnsureTerminatingSeparator(strPath, false);
bool bInstalled = File.Exists(strPath + AppDefs.XslFileHtmlLite);

@ -1,100 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.19.ebuild,v 1.1 2012/08/04 14:21:04 kensington Exp $
EAPI=4
inherit eutils fdo-mime gnome2-utils mono multilib
MY_PN="KeePass"
DESCRIPTION="A free, open source, light-weight and easy-to-use password manager"
HOMEPAGE="http://keepass.info/"
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="aot"
RDEPEND=">=dev-lang/mono-2.10.5"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
src_prepare() {
# Remove Windows-specific things
pushd Build || die
. PrepMonoDev.sh || die
popd || die
# sgen not available on mono
epatch "${FILESDIR}/${PN}-2.19-skip-sgen-if-unix.patch"
# KeePass looks for some XSL files in the same folder as the executable,
# we prefer to have it in /usr/share/KeePass
epatch "${FILESDIR}/${PN}-2.19-xsl-path-detection.patch"
}
src_compile() {
# Build with Release target
xbuild /target:KeePass /property:Configuration=Release || die
# Run Ahead Of Time compiler on the binary
if use aot; then
mono --aot -O=all Build/KeePass/Release/KeePass.exe || die
fi
}
src_install() {
# Wrapper script to launch mono
make_wrapper ${PN} "mono /usr/$(get_libdir)/${PN}/KeePass.exe"
# Some XSL files
insinto /usr/share/${PN}/XSL
doins Ext/XSL/*
insinto /usr/$(get_libdir)/${PN}/
exeinto /usr/$(get_libdir)/${PN}/
doins Ext/KeePass.exe.config
# Default configuration, simply says to use user-specific configuration
doins Ext/KeePass.config.xml
# The actual executable
doexe Build/KeePass/Release/KeePass.exe
# Copy the AOT compilation result
if use aot; then
doexe Build/KeePass/Release/KeePass.exe.so
fi
# Prepare the icons
newicon -s 256 Ext/Icons/Finals/plockb.png "${PN}.png"
newicon -s 256 -t gnome -c mimetypes Ext/Icons/Finals/plockb.png "application-x-${PN}2.png"
# Create a desktop entry and associate it with the KeePass mime type
make_desktop_entry ${PN} ${MY_PN} ${PN} "System;Security" "MimeType=application/x-keepass2;"
# MIME descriptor for .kdbx files
insinto /usr/share/mime/packages/
doins "${FILESDIR}/${PN}.xml"
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
fdo-mime_mime_database_update
fdo-mime_desktop_database_update
elog "Optional dependencies:"
elog " x11-misc/xdotool (enables autotype)"
}
pkg_postrm() {
gnome2_icon_cache_update
fdo-mime_mime_database_update
fdo-mime_desktop_database_update
}

@ -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-admin/keepass/keepass-2.20.ebuild,v 1.1 2012/09/11 12:55:30 kensington Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.20.1.ebuild,v 1.1 2012/10/08 08:09:23 kensington Exp $
EAPI=4
@ -41,6 +41,7 @@ src_compile() {
# Run Ahead Of Time compiler on the binary
if use aot; then
cp Ext/KeePass.exe.config Build/KeePass/Release/
mono --aot -O=all Build/KeePass/Release/KeePass.exe || die
fi
}

@ -1,30 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cdircmp/cdircmp-0.3.ebuild,v 1.11 2012/10/06 16:59:30 armin76 Exp $
inherit toolchain-funcs
DESCRIPTION="Compare directories and select files to copy"
HOMEPAGE="http://home.hccnet.nl/paul.schuurmans/"
SRC_URI="http://home.hccnet.nl/paul.schuurmans/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
RDEPEND=">=sys-libs/ncurses-5.4"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_compile() {
emake CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
|| die "emake failed"
}
src_install() {
dodoc AUTHORS ChangeLog README
dobin ${PN} || die "dobin failed"
}

@ -1,2 +1 @@
DIST worker-2.17.8.tar.bz2 1010693 SHA256 286fbd910ee5a977364e9c33b6dacb86da306bea41864c862d8141a480fc5c6c SHA512 5be912008ecb63a6b922fdff03d96cde54c0db720561dbbc1ba2cee8a8ba35c29e5b381cdf08967d65a07e72452e44a81565317451a5d9f70c46831db487b747 WHIRLPOOL 2c85fc7dcaafd764422abe52fc6d0b12a8a601e64dced8c2d140d42b9afea0aafbe35331a231f5b4895740e77c3965f73572d9c6d574ba0d5cdda3f1b01ffa39
DIST worker-2.18.1.tar.bz2 1154781 SHA256 1ff2ec1e66287128f76cb6e81973e4fc227a2a559071997f3dbb0fdbb00a90ce SHA512 b81a7b56598248a3331d874536b6dea480e3871f90b2a058863f04214e193625b7e1f3419459db8bef7c582b24310f7bb5bedd4234821a3bafe7b4fe9c4ba398 WHIRLPOOL a6d3793281b82a6ba8e4c19b80d6953c552fc24cfc64e115f3bfbfea72ddb7a021e139694897341afb358a75e97dceb6d63de1e5890b0416b79356c0a5e42043

@ -1,32 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/worker/worker-2.17.8.ebuild,v 1.9 2012/09/30 18:00:37 armin76 Exp $
inherit eutils
DESCRIPTION="Worker Filemanager: Amiga Directory Opus 4 clone"
HOMEPAGE="http://www.boomerangsworld.de/worker/"
SRC_URI="http://www.boomerangsworld.de/worker/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc ~ppc64 x86"
IUSE="avfs"
RDEPEND="x11-libs/libSM
dev-libs/dbus-glib
avfs? ( sys-fs/avfs )"
DEPEND="${RDEPEND}"
src_compile() {
econf \
$(use_with avfs) || die "./configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "make install failed"
doman man/worker.1
dodoc AUTHORS ChangeLog INSTALL NEWS README README_LARGEFILES THANKS
make_desktop_entry ${PN} Worker WorkerIcon "System;Utility"
}

@ -1,44 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/rhyme-0.9.ebuild,v 1.14 2012/10/06 17:00:10 armin76 Exp $
inherit toolchain-funcs
# missing files ...
RESTRICT="test"
DESCRIPTION="Console based Rhyming Dictionary"
HOMEPAGE="http://rhyme.sourceforge.net/"
SRC_URI="mirror://sourceforge/rhyme/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.3
>=sys-libs/readline-4.3
>=sys-libs/gdbm-1.8.0"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# termcap is used by default, switch to ncurses
sed -i 's/-ltermcap/-lncurses/g' "${S}"/Makefile
}
src_compile() {
# Disable parallell building wrt bug #125967
emake -j1 CC="$(tc-getCC)" FLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
# author doesnt use -D for install
dodir /usr/share/rhyme /usr/bin /usr/share/man/man1
einstall BINPATH="${D}"/usr/bin \
MANPATH="${D}"/usr/share/man/man1 \
RHYMEPATH="${D}"/usr/share/rhyme
}

@ -1,2 +1,3 @@
DIST deprecated-2.0.1.tar.gz 12938 SHA256 ad73879e276f555ca47e482f5df72a2e90e598e4d1c6c8518d22128b80274ddb SHA512 bb0b5b569615443fb84235244c21e499b88659887bfb09d75a7d2508b839999a6bd5ff5a35d570e825744c2809b7b7566c8296c94d46bc6cb7bfcec13db8f27e WHIRLPOOL 822e80202931485c8f24a2d0a6ba628cf3a76c37fe65d50099922d549c25248eaee895f0241068150e5a97945cc80c93dc83c6f57cf884a93021d996a92a2420
DIST deprecated-3.0.0.gem 6144 SHA256 cf09d59afc58de6d6054502f7d59b1855285fd5cf50c5adb504abbc00ef18c5c SHA512 b102af5a3f2eed37f9353c616442a00f16008accbd647ec1d532f4bc8e058694635fe24834e07d35ea7ac0134954132b7311cd73cb0dfc23b6c101ecfd617cda WHIRLPOOL 9193f86e514403a119fd51d205bdcee9884478f72d7f3be80c09e82ab01d008a253d162c818e24530fa977676134e09aac48ffe021b22c28129258424ac81cec
DIST deprecated-3.0.1.gem 6144 SHA256 032cc3b7367275bebd2b46c0fa23f70447f65e7f34f0d68977b0c9243c07c2cf SHA512 c4280f8bd6914a6b073cbc443db5dd5232379abb7870d90cd0146c08312f82aa8fd8c042b48c2b9b26c4120dc8afb326070a1256c51355f1cfa898905ec59e51 WHIRLPOOL 383fc0a4736861cc56720c7307e40c7db09d626d6d61cad278c7793a969ab5061574b02d181f92c90d0f906977bd34ef0ea2f5929aab78a4f8e002c169e4a56b

@ -0,0 +1,26 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/deprecated/deprecated-3.0.1.ebuild,v 1.1 2012/10/08 06:12:52 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 jruby"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""
inherit ruby-fakegem
DESCRIPTION="A Ruby library for handling deprecated code"
HOMEPAGE="http://rubyforge.org/projects/deprecated"
LICENSE="BSD"
SLOT="3"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="test"
ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
each_ruby_test() {
${RUBY} -Ilib:. test/test_deprecated.rb || die "test failed"
}

@ -1,2 +1,3 @@
DIST ruby-progressbar-0.0.10.gem 13824 SHA256 2a0be5104423670956c545a200e445d5a99a02d05f6d3a1539ef53d9e4f6f0ff SHA512 d8221d1d977e98370766ada10a363bf7c05757c33388caa9abffcb1a40e16d9587055b2531639b7d1ee67cb790a8fc0bc5af0dafeefc5dfba0a8942b976b9375 WHIRLPOOL 830293fccb82068590a478d3628d1acdffcd99a806122c74ede8d7771c023a014b337d8edc2ba16a1060f57cfe540642b6961691974535e620df0c69d40a5b10
DIST ruby-progressbar-0.0.9.gem 13824 SHA256 3f432b7fde9e49c6eb5ff1c413163fc9277638767c4ac5df58618c35ad8feea3 SHA512 aefa5688b0e57d03e0bf06a49f4a5a6d6a4bfd7a448ba80272b3a97db75e1ff57aca1c42c74cf4364f53a85ebfe7390693eeea8684807a88743542c2f38724a8 WHIRLPOOL 93cf49496453fa948bedf16772a1eaec5ee935e2e85ccf8fbfab73e51294bfbc4ea282281e2b0ce25e40c6e48c16f8e6d07538e9ab01ba29b27998538b8648c7
DIST ruby-progressbar-1.0.2.gem 22528 SHA256 1c579c244ca8b9e3cdd878eae9062dd85541fe87702c051dd1954ffd5b993d77 SHA512 e323e93d1f52103079b093916af62ceeffd34715250f6fcc2623470d3327abcb2998f561e99867607e6cb5bbbc521d236c5ab348349b2ff44daf3baf6badc254 WHIRLPOOL 5418d120a766b0dc4118bc2a4ecf9649939a7810ffbdfe3574282d6c0c43fdb5338f015ea013b092a1d7f0820c69003091c686869c4cc2edd92d85412fcc4d32

@ -0,0 +1,29 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-progressbar/ruby-progressbar-1.0.2.ebuild,v 1.1 2012/10/08 06:06:31 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18 jruby"
RUBY_FAKEGEM_RECIPE_TEST="rspec"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.md"
inherit ruby-fakegem
DESCRIPTION="A Text Progress Bar Library for Ruby"
HOMEPAGE="https://github.com/jfelchner/ruby-progressbar"
LICENSE="|| ( Ruby GPL-2 )"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
ruby_add_bdepend "test? ( dev-ruby/timecop )"
all_ruby_prepare() {
sed -i -e '/[Ss]imple[Cc]ov/ s:^:#:' spec/spec_helper.rb || die
}

@ -1,2 +1 @@
DIST piklab-0.15.10.tar.bz2 929956 SHA256 9ae1fc44bdd8eb99d67d74507a55b8115579791bc36235fa4a93748bbd18b418 SHA512 30195b6bd8ce2077a315f99b12bd0abc995c607c2da0f8d37bdffe93bfc1652149f9b30f3fa0d8f2467d41adeb968bf93e16c4d80f334cd9d3e0db8b79dd1ea4 WHIRLPOOL d1438231005091c057926ad38bee98686b217fb3f80ec2e2617f9813a5241de69c877627521b966d3cacf8bf6901ab56ada9cc22c6fa29cb709bcc2a4c83d2a3
DIST piklab-0.16.1.tar.bz2 972681 SHA256 80db24022de47a7377412912b1fd186d6ad08fafa042bed17b49ada2de56004d SHA512 c5f9ce109c4351bf77a2732efa12aa3195f3632447e6400f74ea114f3ee890f69da273c56ca3796f778e970f4b47c585f0a1de8b95b833dd8401b91ab39f828e WHIRLPOOL e2d8e10dddf38aaaeee7b4c9801b1f18fc41575d86a6e0e7d56662f8b6f5bb4179fc2d605d911c0c515e964ebe9150ea54e4057c20e4b9188bfa6f51bb9d51dd

@ -1,12 +0,0 @@
diff -ur piklab-0.15.10/src/xml_to_data/device_xml_to_data.h piklab-0.15.10-gcc46/src/xml_to_data/device_xml_to_data.h
--- piklab-0.15.10/src/xml_to_data/device_xml_to_data.h 2010-07-05 18:16:57.000000000 +0200
+++ piklab-0.15.10-gcc46/src/xml_to_data/device_xml_to_data.h 2011-01-31 17:03:42.000000000 +0100
@@ -61,7 +61,7 @@
ts << "const char *" << namespaceName() << "::DATA_STREAM =" << endl;
QValueList<DataType *> list;
for (QMap<QString, Data *>::const_iterator it=_map.begin(); it!=_map.end(); ++it)
- list.append(static_cast<const DataType *>(it.data()));
+ list.append(static_cast<DataType *>(it.data()));
uint size = toCppString(list, ts);
ts << ";" << endl;
ts << "const uint " << namespaceName() << "::DATA_SIZE = " << size << ";" << endl;

@ -1,35 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/piklab/piklab-0.15.10.ebuild,v 1.2 2011/06/03 15:02:45 jlec Exp $
EAPI=4
inherit qt4-r2 cmake-utils
DESCRIPTION="CLI programmer and debugger for PIC and dsPIC microcontrollers"
HOMEPAGE="http://piklab.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
x11-libs/qt-gui:4
x11-libs/qt-qt3support:4
sys-libs/ncurses
sys-libs/readline
virtual/libusb:0"
DEPEND="${RDEPEND}"
MYCMAKEARGS="-DQT_ONLY=1"
PATCHES=( "${FILESDIR}"/${P}-gcc46.patch )
src_prepare() {
sed -i \
-e "/\<share.doc.piklab\>/s:/piklab:/${PF}:" \
CMakeLists.txt
base_src_prepare
}

@ -1 +1 @@
DIST btanks-0.9.8083.tar.bz2 28754069 RMD160 e0eaebdfea636ddeabfba230315353036e06dfcb SHA1 e3f76e7cbda0a90a606e8358c6aa686cebba02d6 SHA256 3fd2ce6a2b45f7a60c3b114fa9aff13cb3dd9fbb6a65cdc9798b76c4fa2c4341
DIST btanks-0.9.8083.tar.bz2 28754069 SHA256 3fd2ce6a2b45f7a60c3b114fa9aff13cb3dd9fbb6a65cdc9798b76c4fa2c4341 SHA512 beef8f480e4c20c4f3d29aaa63fd52b370b89cceb8a7dda92f0d0fa5517969abf1fce6b0109782300f1b5bb92cf3c599677b168cd66f3b44c2d2dd1742ce0241 WHIRLPOOL 5320ce692ae5c6a760121fb52120ff35632d06610dfa514897f6569f7b5a9c8246b824a81b50d74c649dff7c0cb84b9af537edbb5d2fc88b7bafdf92d0b1c749

@ -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-action/btanks/btanks-0.9.8083.ebuild,v 1.5 2012/05/03 03:02:34 jdhore Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/btanks/btanks-0.9.8083.ebuild,v 1.6 2012/10/08 09:02:14 tupone Exp $
EAPI=2
inherit eutils scons-utils games
@ -28,7 +28,8 @@ DEPEND="${RDEPEND}
src_prepare() {
rm -rf sdlx/gfx
epatch "${FILESDIR}"/${P}-scons-blows.patch \
"${FILESDIR}"/${P}-gcc46.patch
"${FILESDIR}"/${P}-gcc46.patch \
"${FILESDIR}"/${P}-gcc47.patch
}
src_compile() {

@ -0,0 +1,103 @@
--- mrt/base_file.h.old 2012-10-08 10:16:43.941487723 +0200
+++ mrt/base_file.h 2012-10-08 10:18:55.788771445 +0200
@@ -20,6 +20,7 @@
*/
#include <string>
+#include <unistd.h>
#include "export_mrt.h"
namespace mrt {
--- math/range_list.h.old 2012-10-08 09:49:34.283887937 +0200
+++ math/range_list.h 2012-10-08 09:50:36.258212096 +0200
@@ -53,14 +53,14 @@
return;
}
- typename parent_type::iterator i = lower_bound(value);
+ typename parent_type::iterator i = this->lower_bound(value);
if (i != parent_type::end()) {
if (i->first == value)
return;
if (value + 1 == i->first) {
T e = i->second;
- erase(i);
+ this->erase(i);
i = parent_type::insert(typename parent_type::value_type(value, e)).first; //expand beginning
i = pack_left(i);
}
--- engine/sl08/sl08.h.old 2012-10-04 09:50:37.845681514 +0200
+++ engine/sl08/sl08.h 2012-10-08 09:58:32.873166723 +0200
@@ -272,7 +272,7 @@
inline slot1(object_type *object, func_t func, signal_type * signal = NULL) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; this->connect(signal_ref); }
inline return_type operator() (arg1_type a1) const {
return (object->*func) (a1) ;
@@ -293,7 +293,7 @@
inline slot1 () : object(NULL), func(NULL) {}
inline slot1 (object_type *object, func_t func) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; this->connect(signal_ref); }
inline void operator() (arg1_type a1) const {
(object->*func) (a1);
@@ -447,7 +447,7 @@
inline slot2(object_type *object, func_t func, signal_type * signal = NULL) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; this->connect(signal_ref); }
inline return_type operator() (arg1_type a1, arg2_type a2) const {
return (object->*func) (a1, a2) ;
@@ -468,7 +468,7 @@
inline slot2 () : object(NULL), func(NULL) {}
inline slot2 (object_type *object, func_t func) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; this->connect(signal_ref); }
inline void operator() (arg1_type a1, arg2_type a2) const {
(object->*func) (a1, a2);
@@ -643,7 +643,7 @@
inline slot3 () : object(NULL), func(NULL) {}
inline slot3 (object_type *object, func_t func) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; this->connect(signal_ref); }
inline void operator() (arg1_type a1, arg2_type a2, arg3_type a3) const {
(object->*func) (a1, a2, a3);
@@ -797,7 +797,7 @@
inline slot4(object_type *object, func_t func, signal_type * signal = NULL) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; this->connect(signal_ref); }
inline return_type operator() (arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4) const {
return (object->*func) (a1, a2, a3, a4) ;
@@ -818,7 +818,7 @@
inline slot4 () : object(NULL), func(NULL) {}
inline slot4 (object_type *object, func_t func) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref) { object = o; func = f; this->connect(signal_ref); }
inline void operator() (arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4) const {
(object->*func) (a1, a2, a3, a4);
@@ -972,7 +972,7 @@
inline slot5(object_type *object, func_t func, signal_type * signal = NULL) : object(object), func(func) {}
inline void assign(object_type *o, func_t f) { object = o; func = f; }
- inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; connect(signal_ref); }
+ inline void assign(object_type *o, func_t f, signal_type &signal_ref = NULL) { object = o; func = f; this->connect(signal_ref); }
inline return_type operator() (arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4, arg5_type a5) const {
return (object->*func) (a1, a2, a3, a4, a5) ;

@ -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/kde-base/ksudoku/ksudoku-4.9.2.ebuild,v 1.1 2012/10/02 18:11:43 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/ksudoku/ksudoku-4.9.2.ebuild,v 1.2 2012/10/08 06:39:23 kensington Exp $
EAPI=4
@ -11,12 +11,22 @@ else
KMNAME="kdegames"
fi
KDE_HANDBOOK="optional"
OPENGL_REQUIRED="always"
OPENGL_REQUIRED="optional"
inherit ${eclass}
DESCRIPTION="KDE Sudoku"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="$(add_kdebase_dep libkdegames)"
DEPEND="
$(add_kdebase_dep libkdegames)
opengl? ( virtual/glu )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with opengl OpenGL)
)
${eclass}_src_configure
}

@ -1,4 +1,4 @@
DIST postfix-2.10-20120924.tar.gz 3789252 SHA256 df9f25c56fd6aa0c9cc68b57c695187be51746c7ee897a16f9a7408c281aa6d2 SHA512 2985124fbe65d6988975851ff58214363a7ed242a90efd9251d9d3dd86120856b084f0a2ec7a545a12c2e1f986733a19b7a8e943e2bd73fc3483679131b7e48c WHIRLPOOL 465f7cba0757a76b4cbf8000f2d76118699bfbd1c46d94b70b26e0f3674e709ffc54bb7cfab66e2c63d7883f385d04037cb4d7a20e12135ab4ded5db64bf2566
DIST postfix-2.10-20121007.tar.gz 3823336 SHA256 6a3c488497213f19a8f2b5ebd4bb03534d71f1d67343a8c46bd69e2bb1bb6dd3 SHA512 f4e2293698425df81a472497b0f3b77599419607f371f9c0b51506c6802428154f9765723114b2ac991329e9183e470b681c8a162da1e41081e43b4396add862 WHIRLPOOL 12c4261d994bf9d9cd56ed3ff1db29f4e96ad4c497e905a8ed844fbde0ee61330c0eae0d32d0227a5290b0340642fa238f7784c602598d5b706fe687ac3b66a4
DIST postfix-2.8.10.tar.gz 3640084 SHA256 2984005ca77457992b133eefc16f788e1eacd2c10b7626678bd24a53240ad3f2
DIST postfix-2.8.11.tar.gz 3641059 SHA256 15997ff5c9a9cd95dd381c3faa1a0d4812a158c14eab229e8f81fd7b5dbfcac4
DIST postfix-2.8.12.tar.gz 3641269 SHA256 f46b0117cab52e862b12869810327e2bd248a60f209079a875818ee2653de087 SHA512 55141e75da43b13975f85af636dceeed7783440fb5f7b83642e5a146d8a06af3a847beff77fe0dd495c58c7caed492dbb2dc52f542f44b9388f2ded30e37acee WHIRLPOOL 1d3c454fc938546c74b666feb109229a71b4e55d72c6f3833a15a81ec8eb3b48e318df69611fe4c40ac970332a8fcdfe98fa235863ae44bdf952b2b74537100c

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.10_pre20120924.ebuild,v 1.1 2012/10/01 06:58:04 eras Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.10_pre20121007.ebuild,v 1.1 2012/10/08 07:05:33 eras Exp $
EAPI=4
inherit eutils multilib ssl-cert toolchain-funcs flag-o-matic pam user versionator
@ -302,8 +302,8 @@ pkg_postinst() {
elog "http://www.postfix.org/MULTI_INSTANCE_README.html"
if ! use berkdb; then
ewarn "\nPostfix is installed without BerkeleyDB support."
ewarn "Please turn on berkdb USE flag for hash or btree table"
ewarn "lookup support.\n"
ewarn "Please turn on berkdb USE flag if you need hash or"
ewarn "btree table lookups.\n"
fi
ewarn "Postfix daemons now live under /usr/libexec/postfix"
ewarn "Please adjust your main.cf accordingly by running"

@ -1,4 +1,5 @@
DIST mplus-TESTFLIGHT-030.tar.gz 17620215 RMD160 408607a35f2a7eb06b17c5050631f0e069ef4249 SHA1 e78e3b3daf4626642c9617098db94d98e3cebe0b SHA256 558b3a7f2f6de6556d1e9727ca6f2dd1fa1d60f343f532d1012059d1c45e9583
DIST mplus-TESTFLIGHT-040.tar.gz 24481123 RMD160 9e31f1734215daf789cf732ac318b39619c6feae SHA1 28954514b573cb573a6cb153c2497dd4b36cc5eb SHA256 cd5e26ac3ed07d3426acc006abed4374b16a33241e5fb3494d6d32760a9cdcb0
DIST mplus-TESTFLIGHT-043.tar.gz 29665544 RMD160 4051e25558cd95538747f8292178a23476a66377 SHA1 85f835803ff6c9a722e3377d41139e6b4bc61a07 SHA256 fd18833a8849ac099078a863bf5bb245b6099098d8c5fffebf58e6dd02f28acd
DIST mplus-TESTFLIGHT-046.tar.xz 7856848 RMD160 d39b79686b46702411a19e2c2dced080f1466b46 SHA1 8971d7ad29be068c6d575a568629e245a6dfca2e SHA256 6109d9c895c9f7cff0d4f1196cd28485e0a6918b25acdb710c5c3f1a926dcbc1
DIST mplus-TESTFLIGHT-030.tar.gz 17620215 SHA256 558b3a7f2f6de6556d1e9727ca6f2dd1fa1d60f343f532d1012059d1c45e9583
DIST mplus-TESTFLIGHT-040.tar.gz 24481123 SHA256 cd5e26ac3ed07d3426acc006abed4374b16a33241e5fb3494d6d32760a9cdcb0
DIST mplus-TESTFLIGHT-043.tar.gz 29665544 SHA256 fd18833a8849ac099078a863bf5bb245b6099098d8c5fffebf58e6dd02f28acd
DIST mplus-TESTFLIGHT-046.tar.xz 7856848 SHA256 6109d9c895c9f7cff0d4f1196cd28485e0a6918b25acdb710c5c3f1a926dcbc1
DIST mplus-TESTFLIGHT-052.tar.xz 8302388 SHA256 a2e0f93e1eeb1d1dae5cf215e35df70de9d692fb3bb42eed85b9b9b590966220 SHA512 b135f4ebaac97540787064c89e8cf747317015b44d083ecec903b0a4c8bcac561ae99d7cf187119cec94199609810a0d63b24cc0991a5a42137304093d5c6423 WHIRLPOOL 862b2517d2712b079173e0f26240dc5c2a1517bb8fd4b2ba325d5ed10a20499c053f3e4ffe5f22c78c28205aa0eab6ba009d76f3185c0d7f130657b3274cceb6

@ -0,0 +1,46 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/mplus-outline-fonts/mplus-outline-fonts-0_pre052.ebuild,v 1.1 2012/10/08 10:01:49 hattya Exp $
EAPI="3"
inherit font
MY_P="mplus-${PV/0_pre/TESTFLIGHT-}"
DESCRIPTION="M+ Japanese outline fonts"
HOMEPAGE="http://mplus-fonts.sourceforge.jp/ http://ossipedia.ipa.go.jp/ipafont/"
SRC_URI="mirror://sourceforge.jp/mplus-fonts/6650/${MY_P}.tar.xz"
LICENSE="mplus-fonts ipafont? ( IPAfont )"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~x86 ~ppc-macos ~x86-macos"
IUSE="ipafont"
DEPEND="ipafont? (
media-gfx/fontforge
>=media-fonts/ja-ipafonts-003.02
)"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
FONT_SUFFIX="ttf"
FONT_S="${S}"
DOCS="README_J README_E"
RESTRICT="strip binchecks"
IPAFONT_DIR="${EPREFIX}/usr/share/fonts/ja-ipafonts"
src_prepare() {
if use ipafont ; then
cp -p "${IPAFONT_DIR}/ipag.ttf" "${S}" || die
fi
}
src_compile() {
if use ipafont ; then
fontforge -script m++ipa.pe || die
rm -f ipag.ttf || die
fi
}

@ -1 +1 @@
DIST gozer-0.7.tar.gz 103545 RMD160 334901c89e9a9792d0fdc0798a50a3054527121b SHA1 70e9c5dc84ea31a92197febb19b576b556ff526b SHA256 a99400630cb7f362717f08d650aff8c59624fdd5dd70cfa7c1efe17d3bf58fd9
DIST gozer-0.7.tar.gz 103545 SHA256 a99400630cb7f362717f08d650aff8c59624fdd5dd70cfa7c1efe17d3bf58fd9

@ -1,21 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gozer/gozer-0.7-r1.ebuild,v 1.9 2009/11/25 22:19:57 maekke Exp $
DESCRIPTION="tool for rendering arbitrary text as graphics, using ttfs and styles"
HOMEPAGE="http://www.linuxbrit.co.uk/gozer/"
SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="x11-libs/libXext
>=media-libs/giblib-1.2.1"
src_install() {
make install DESTDIR=${D} || die
rm -rf ${D}/usr/doc
dodoc TODO README AUTHORS ChangeLog
}

@ -1,2 +1,3 @@
DIST photopc-3.05.tar.gz 122059 RMD160 5e636c9f4dc83d5c1b981312d3302f879a5d89b3 SHA1 0eaccf2af0e5d7d1c1060a777e7a7e60b1cbbb6d SHA256 d8b1f6a7e1b497ad77dff83592e791ffa0afc12cd374f2f0856d35eddeac5535
DIST photopc-3.06.tar.gz 191170 RMD160 5ae2da325548486c7a6011dcd8038dd6790b70c4 SHA1 c19aee0162b029aeaf13dcb4ccd0d21ed908f617 SHA256 51637352c094302a6407f603b2a287536d3f4a163a635a62c29d15ef12a17874
DIST photopc-3.05.tar.gz 122059 SHA256 d8b1f6a7e1b497ad77dff83592e791ffa0afc12cd374f2f0856d35eddeac5535
DIST photopc-3.06.tar.gz 191170 SHA256 51637352c094302a6407f603b2a287536d3f4a163a635a62c29d15ef12a17874
DIST photopc-3.07.tar.gz 183668 SHA256 b42824a7cf7ce76e8e8e81345463d25b8dadd16799920da062aa36aa6ed8489c SHA512 2346da12e8276024a33582806898660da74613edd7fe8ee3f707e505197ba6072c31d58a24b540021e60117d81f553360a7efa57924db9cd0a4e428d64c0c1d3 WHIRLPOOL c2867cfc6e46a038cd00c3ac391e3dac0d6d927e21f1dc1a7fb34c247fb19707286b4e726d0b27f2bb4e69f960204b9dbf1ffceffd5038266a14e39c5a552626

@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<upstream>
<remote-id type="sourceforge">photopc</remote-id>
</upstream>
</pkgmetadata>

@ -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/media-gfx/photopc/photopc-3.07.ebuild,v 1.1 2012/10/08 08:58:20 kensington Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="Utility to control digital cameras based on Sierra Imaging firmware"
HOMEPAGE="http://photopc.sourceforge.net"
SRC_URI="mirror://sourceforge/photopc/${P}.tar.gz"
LICENSE="|| ( BSD as-is )"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
src_install() {
dodoc README
dobin photopc epinfo
doman photopc.1 epinfo.1
}

@ -1,12 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/clementine/clementine-1.0.1-r2.ebuild,v 1.1 2012/07/07 08:03:03 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/clementine/clementine-1.0.1-r2.ebuild,v 1.3 2012/10/08 10:00:17 pinkbyte Exp $
EAPI=4
LANGS=" ar be bg bn br bs ca cs cy da de el en_CA en_GB eo es et eu fa fi fr gl he hi hr hu hy ia id is it ja ka kk ko lt lv mr ms nb nl oc pa pl pt_BR pt ro ru sk sl sr@latin sr sv tr uk vi zh_CN zh_TW"
inherit cmake-utils eutils gnome2-utils virtualx
inherit cmake-utils eutils flag-o-matic gnome2-utils virtualx
DESCRIPTION="A modern music player and library organizer based on Amarok 1.4 and Qt4"
HOMEPAGE="http://www.clementine-player.org/ http://code.google.com/p/clementine-player/"
@ -15,7 +15,7 @@ SRC_URI="http://clementine-player.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ayatana cdda +dbus ios ipod kde lastfm mms mtp projectm test +udev wiimote"
IUSE="ayatana cdda +dbus debug ios ipod kde lastfm mms mtp projectm test +udev wiimote"
IUSE+="${LANGS// / linguas_}"
REQUIRED_USE="
@ -123,6 +123,8 @@ src_configure() {
-DUSE_SYSTEM_GMOCK=ON
)
use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
cmake-utils_src_configure
}

@ -1 +1 @@
Mon, 08 Oct 2012 05:36:59 +0000
Mon, 08 Oct 2012 11:36:58 +0000

@ -1 +1 @@
Mon, 08 Oct 2012 05:36:59 +0000
Mon, 08 Oct 2012 11:36:58 +0000

@ -1,13 +0,0 @@
DEFINED_PHASES=compile install postinst postrm preinst prepare
DEPEND=>=dev-lang/mono-2.10.5 app-arch/unzip >=sys-apps/sed-4
DESCRIPTION=A free, open source, light-weight and easy-to-use password manager
EAPI=4
HOMEPAGE=http://keepass.info/
IUSE=aot
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=>=dev-lang/mono-2.10.5
SLOT=0
SRC_URI=mirror://sourceforge/keepass/KeePass-2.19-Source.zip
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 0d2178d7f87923f3c110366ece3c930f mono 203a4295c06155d318bdff9c6b2d5e1c multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9a8ddfa5b365ed291aef0d05701d9e1d

@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=>=dev-lang/mono-2.10.5 dev-dotnet/libgdiplus[cairo]
SLOT=0
SRC_URI=mirror://sourceforge/keepass/KeePass-2.20-Source.zip
SRC_URI=mirror://sourceforge/keepass/KeePass-2.20.1-Source.zip
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 0d2178d7f87923f3c110366ece3c930f mono 203a4295c06155d318bdff9c6b2d5e1c multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=16556b79691b39fe6b18f2a40205ae0e
_md5_=533b449dce59be05d9198c5f8f747e57

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install
DEPEND=>=sys-libs/ncurses-5.4 >=sys-apps/sed-4
DESCRIPTION=Compare directories and select files to copy
HOMEPAGE=http://home.hccnet.nl/paul.schuurmans/
KEYWORDS=~amd64 ~ppc x86
LICENSE=GPL-2
RDEPEND=>=sys-libs/ncurses-5.4
SLOT=0
SRC_URI=http://home.hccnet.nl/paul.schuurmans/download/cdircmp-0.3.tar.gz
_eclasses_=multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=7e24aa6d3d5ccf8428105adbeb1674e2

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install
DEPEND=x11-libs/libSM dev-libs/dbus-glib avfs? ( sys-fs/avfs )
DESCRIPTION=Worker Filemanager: Amiga Directory Opus 4 clone
HOMEPAGE=http://www.boomerangsworld.de/worker/
IUSE=avfs
KEYWORDS=amd64 ~hppa ppc ~ppc64 x86
LICENSE=GPL-2
RDEPEND=x11-libs/libSM dev-libs/dbus-glib avfs? ( sys-fs/avfs )
SLOT=0
SRC_URI=http://www.boomerangsworld.de/worker/downloads/worker-2.17.8.tar.bz2
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=392b4f9e69f28e17768cfa2d1ba88d54

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install unpack
DEPEND=>=sys-libs/ncurses-5.3 >=sys-libs/readline-4.3 >=sys-libs/gdbm-1.8.0
DESCRIPTION=Console based Rhyming Dictionary
HOMEPAGE=http://rhyme.sourceforge.net/
KEYWORDS=~amd64 x86
LICENSE=GPL-2
RDEPEND=>=sys-libs/ncurses-5.3 >=sys-libs/readline-4.3 >=sys-libs/gdbm-1.8.0
RESTRICT=test
SLOT=0
SRC_URI=mirror://sourceforge/rhyme/rhyme-0.9.tar.gz
_eclasses_=multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=d9decd899f75d7a3be454608680e1b36

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare setup test unpack
DEPEND=ruby_targets_ruby18? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( dev-ruby/test-unit:2[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
DESCRIPTION=A Ruby library for handling deprecated code
EAPI=4
HOMEPAGE=http://rubyforge.org/projects/deprecated
IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby test
KEYWORDS=~amd64 ~ppc ~x86
LICENSE=BSD
RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby )
SLOT=3
SRC_URI=mirror://rubygems/deprecated-3.0.1.gem
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f java-utils-2 2d9eb3508fa5d6759e39354b74545567 multilib c2b85b5c63a44798c1e442147ac14c5c ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=10f26e1381c99b197cd66b384d7ccced

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare setup test unpack
DEPEND=ruby_targets_ruby18? ( test? ( dev-ruby/timecop[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/timecop[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/timecop[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/timecop[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rspec:2[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
DESCRIPTION=A Text Progress Bar Library for Ruby
EAPI=4
HOMEPAGE=https://github.com/jfelchner/ruby-progressbar
IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby test test
KEYWORDS=~amd64
LICENSE=|| ( Ruby GPL-2 )
RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby )
SLOT=0
SRC_URI=mirror://rubygems/ruby-progressbar-1.0.2.gem
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f java-utils-2 2d9eb3508fa5d6759e39354b74545567 multilib c2b85b5c63a44798c1e442147ac14c5c ruby-fakegem 2785c639b173dd603e95bd60b8d6c4c0 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=d91f3c2648625376ad2aa2a4d936c502

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=x11-libs/qt-gui:4 x11-libs/qt-qt3support:4 sys-libs/ncurses sys-libs/readline virtual/libusb:0 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=CLI programmer and debugger for PIC and dsPIC microcontrollers
EAPI=4
HOMEPAGE=http://piklab.sourceforge.net/
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=x11-libs/qt-gui:4 x11-libs/qt-qt3support:4 sys-libs/ncurses sys-libs/readline virtual/libusb:0
SLOT=0
SRC_URI=mirror://sourceforge/piklab/piklab-0.15.10.tar.bz2
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 2e18cd8b379d307b2473aa632de5a077 eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c qt4-r2 75aa32643ef22632eb9b45989b4c03fc toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=21c13b49c2bcbec61b6a619cd0912f6c

@ -9,4 +9,4 @@ RDEPEND=>=dev-lang/lua-5.1 media-libs/libsdl[joystick,video] media-libs/libvorbi
SLOT=0
SRC_URI=mirror://sourceforge/btanks/btanks-0.9.8083.tar.bz2
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 2fd401453e32e8c9a676cd0361b82a5f games e0a83e3f3f024b8c8ef7a8217d716cbf multilib c2b85b5c63a44798c1e442147ac14c5c scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f3411e9c1ea66a74a9f406bfbc02d596
_md5_=93fd658bb2c099763d4154fba6f8847d

@ -1,13 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
DEPEND=>=kde-base/libkdegames-4.9.2:4[aqua=] >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) >=x11-libs/qt-opengl-4.8.0:4 dev-lang/perl >=x11-libs/qt-core-4.8.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.8.0:4 >=x11-libs/qt-gui-4.8.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.8.0:4[accessibility] >=x11-libs/qt-script-4.8.0:4 >=x11-libs/qt-sql-4.8.0:4[qt3support] >=x11-libs/qt-svg-4.8.0:4 >=x11-libs/qt-test-4.8.0:4 >=x11-libs/qt-webkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.9.2:4[aqua=] >=kde-base/libkdegames-4.9.2:4[aqua=]
DEPEND=>=kde-base/libkdegames-4.9.2:4[aqua=] opengl? ( virtual/glu ) >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) opengl? ( >=x11-libs/qt-opengl-4.8.0:4 ) dev-lang/perl >=x11-libs/qt-core-4.8.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.8.0:4 >=x11-libs/qt-gui-4.8.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.8.0:4[accessibility] >=x11-libs/qt-script-4.8.0:4 >=x11-libs/qt-sql-4.8.0:4[qt3support] >=x11-libs/qt-svg-4.8.0:4 >=x11-libs/qt-test-4.8.0:4 >=x11-libs/qt-webkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.9.2:4[aqua=] >=kde-base/libkdegames-4.9.2:4[aqua=]
DESCRIPTION=KDE Sudoku
EAPI=4
HOMEPAGE=http://www.kde.org/
IUSE=debug +handbook aqua
IUSE=debug opengl +handbook aqua
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
LICENSE=GPL-2
RDEPEND=>=kde-base/libkdegames-4.9.2:4[aqua=] >=kde-base/oxygen-icons-4.9.2:4[aqua=] handbook? ( >=kde-base/kdelibs-4.9.2:4[aqua=,handbook] ) >=x11-libs/qt-opengl-4.8.0:4 dev-lang/perl >=x11-libs/qt-core-4.8.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.8.0:4 >=x11-libs/qt-gui-4.8.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.8.0:4[accessibility] >=x11-libs/qt-script-4.8.0:4 >=x11-libs/qt-sql-4.8.0:4[qt3support] >=x11-libs/qt-svg-4.8.0:4 >=x11-libs/qt-test-4.8.0:4 >=x11-libs/qt-webkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.9.2:4[aqua=] >=kde-base/libkdegames-4.9.2:4[aqua=]
RDEPEND=>=kde-base/libkdegames-4.9.2:4[aqua=] opengl? ( virtual/glu ) >=kde-base/oxygen-icons-4.9.2:4[aqua=] handbook? ( >=kde-base/kdelibs-4.9.2:4[aqua=,handbook] ) opengl? ( >=x11-libs/qt-opengl-4.8.0:4 ) dev-lang/perl >=x11-libs/qt-core-4.8.0:4[qt3support,ssl] >=x11-libs/qt-dbus-4.8.0:4 >=x11-libs/qt-gui-4.8.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.8.0:4[accessibility] >=x11-libs/qt-script-4.8.0:4 >=x11-libs/qt-sql-4.8.0:4[qt3support] >=x11-libs/qt-svg-4.8.0:4 >=x11-libs/qt-test-4.8.0:4 >=x11-libs/qt-webkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.9.2:4[aqua=] >=kde-base/libkdegames-4.9.2:4[aqua=]
SLOT=4
SRC_URI=mirror://kde/stable/4.9.2/src/kdegames-4.9.2.tar.xz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 2e18cd8b379d307b2473aa632de5a077 eutils 2fd401453e32e8c9a676cd0361b82a5f fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils 0d2178d7f87923f3c110366ece3c930f kde4-base 6e4e3fc3a36f43b71c84ad615e804a83 kde4-functions 37767566f9ffa88075c4d392a59100a9 kde4-meta 74063838ddcd8177a6a4b3e19354ee3b multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86
_md5_=fe0e98f0ceef8217182d3ca1ebcc7a73
_md5_=37050336b702376a3f2128f45821f721

@ -9,6 +9,6 @@ LICENSE=IBM
RDEPEND=>=dev-libs/libpcre-3.4 dev-lang/perl berkdb? ( >=sys-libs/db-3.2 ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r1 ) ) ldap? ( net-nds/openldap ) ldap-bind? ( net-nds/openldap[sasl] ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-0.9.6g ) dovecot-sasl? ( net-mail/dovecot ) memcached? ( net-misc/memcached ) net-mail/mailbase selinux? ( sec-policy/selinux-postfix ) !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/mini-qmail !mail-mta/msmtp[mta] !mail-mta/nbsmtp !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/qmail-ldap !mail-mta/sendmail !<mail-mta/ssmtp-2.64-r2 !>=mail-mta/ssmtp-2.64-r2[mta] !net-mail/fastforward
REQUIRED_USE=ldap-bind? ( ldap sasl )
SLOT=0
SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-2.10-20120924.tar.gz vda? ( http://vda.sourceforge.net/VDA/postfix-vda-v11-2.9.1.patch )
SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-2.10-20121007.tar.gz vda? ( http://vda.sourceforge.net/VDA/postfix-vda-v11-2.9.1.patch )
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 ssl-cert 7f678cd359743d336ecf3a6cc4ce1521 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=0e103a4ea3e1b46d759f715a093acea2
_md5_=d927d6a90d8f63db41a47a36922a0abe

@ -0,0 +1,13 @@
DEFINED_PHASES=compile install postinst postrm prepare setup
DEPEND=ipafont? ( media-gfx/fontforge >=media-fonts/ja-ipafonts-003.02 ) X? ( x11-apps/mkfontdir media-fonts/encodings ) >=media-libs/fontconfig-2.4.0
DESCRIPTION=M+ Japanese outline fonts
EAPI=3
HOMEPAGE=http://mplus-fonts.sourceforge.jp/ http://ossipedia.ipa.go.jp/ipafont/
IUSE=ipafont X
KEYWORDS=~amd64 ~hppa ~ia64 ~ppc ~x86 ~ppc-macos ~x86-macos
LICENSE=mplus-fonts ipafont? ( IPAfont )
RESTRICT=strip binchecks
SLOT=0
SRC_URI=mirror://sourceforge.jp/mplus-fonts/6650/mplus-TESTFLIGHT-052.tar.xz
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f font 9aa70ebc5cefbdd9056687b550a2fdc4 multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9c87cc7a6300aa4213ac661b31388f1f

@ -1,10 +0,0 @@
DEFINED_PHASES=install
DEPEND=x11-libs/libXext >=media-libs/giblib-1.2.1
DESCRIPTION=tool for rendering arbitrary text as graphics, using ttfs and styles
HOMEPAGE=http://www.linuxbrit.co.uk/gozer/
KEYWORDS=amd64 ppc x86
LICENSE=GPL-2
RDEPEND=x11-libs/libXext >=media-libs/giblib-1.2.1
SLOT=0
SRC_URI=http://www.linuxbrit.co.uk/downloads/gozer-0.7.tar.gz
_md5_=ca0a1c5fb3551026672bbb042450f211

@ -0,0 +1,10 @@
DEFINED_PHASES=install
DESCRIPTION=Utility to control digital cameras based on Sierra Imaging firmware
EAPI=4
HOMEPAGE=http://photopc.sourceforge.net
KEYWORDS=~amd64 ~ppc ~x86
LICENSE=|| ( BSD as-is )
SLOT=0
SRC_URI=mirror://sourceforge/photopc/photopc-3.07.tar.gz
_eclasses_=multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=8e86493852318e0f54f0739d5120d4b0

@ -3,7 +3,7 @@ DEPEND=>=x11-libs/qt-gui-4.5:4[dbus?] >=x11-libs/qt-opengl-4.5:4 >=x11-libs/qt-s
DESCRIPTION=A modern music player and library organizer based on Amarok 1.4 and Qt4
EAPI=4
HOMEPAGE=http://www.clementine-player.org/ http://code.google.com/p/clementine-player/
IUSE=ayatana cdda +dbus ios ipod kde lastfm mms mtp projectm test +udev wiimote linguas_ar linguas_be linguas_bg linguas_bn linguas_br linguas_bs linguas_ca linguas_cs linguas_cy linguas_da linguas_de linguas_el linguas_en_CA linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_gl linguas_he linguas_hi linguas_hr linguas_hu linguas_hy linguas_ia linguas_id linguas_is linguas_it linguas_ja linguas_ka linguas_kk linguas_ko linguas_lt linguas_lv linguas_mr linguas_ms linguas_nb linguas_nl linguas_oc linguas_pa linguas_pl linguas_pt_BR linguas_pt linguas_ro linguas_ru linguas_sk linguas_sl linguas_sr@latin linguas_sr linguas_sv linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW test
IUSE=ayatana cdda +dbus debug ios ipod kde lastfm mms mtp projectm test +udev wiimote linguas_ar linguas_be linguas_bg linguas_bn linguas_br linguas_bs linguas_ca linguas_cs linguas_cy linguas_da linguas_de linguas_el linguas_en_CA linguas_en_GB linguas_eo linguas_es linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_gl linguas_he linguas_hi linguas_hr linguas_hu linguas_hy linguas_ia linguas_id linguas_is linguas_it linguas_ja linguas_ka linguas_kk linguas_ko linguas_lt linguas_lv linguas_mr linguas_ms linguas_nb linguas_nl linguas_oc linguas_pa linguas_pl linguas_pt_BR linguas_pt linguas_ro linguas_ru linguas_sk linguas_sl linguas_sr@latin linguas_sr linguas_sv linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW test
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=>=x11-libs/qt-gui-4.5:4[dbus?] >=x11-libs/qt-opengl-4.5:4 >=x11-libs/qt-sql-4.5:4[sqlite] dev-db/sqlite[fts3] >=media-libs/taglib-1.7[mp4] >=dev-libs/glib-2.24.1-r1 dev-libs/libxml2 dev-libs/qjson media-libs/libechonest >=media-libs/chromaprint-0.6 media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 ayatana? ( dev-libs/libindicate-qt ) cdda? ( dev-libs/libcdio ) ipod? ( >=media-libs/libgpod-0.8.0[ios?] ios? ( app-pda/libplist >=app-pda/libimobiledevice-1.0 app-pda/usbmuxd ) ) kde? ( >=kde-base/kdelibs-4.4 ) lastfm? ( >=media-libs/liblastfm-1 ) mtp? ( >=media-libs/libmtp-1.0.0 ) projectm? ( media-libs/glew ) dbus? ( udev? ( sys-fs/udisks:0 ) ) mms? ( media-plugins/gst-plugins-libmms:0.10 ) mtp? ( gnome-base/gvfs ) projectm? ( >=media-libs/libprojectm-1.2.0 ) media-plugins/gst-plugins-meta:0.10 media-plugins/gst-plugins-gio:0.10 media-plugins/gst-plugins-soup:0.10 media-plugins/gst-plugins-taglib:0.10
@ -11,4 +11,4 @@ REQUIRED_USE=ios? ( ipod ) udev? ( dbus ) wiimote? ( dbus )
SLOT=0
SRC_URI=http://clementine-player.googlecode.com/files/clementine-1.0.1.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 2e18cd8b379d307b2473aa632de5a077 eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f gnome2-utils 0d2178d7f87923f3c110366ece3c930f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86
_md5_=776520bba50663959a3ca1f67305f3c6
_md5_=f82e56442bad322a566b6ca1f6e6e0e5

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install
DEPEND=sys-libs/readline nls? ( sys-devel/gettext ) curl? ( net-misc/curl )
DESCRIPTION=An HTTP authentication brute forcer
HOMEPAGE=http://www.divineinvasion.net/authforce
IUSE=curl nls
KEYWORDS=~amd64 ~ppc x86
LICENSE=GPL-2
RDEPEND=sys-libs/readline nls? ( sys-devel/gettext ) curl? ( net-misc/curl )
SLOT=0
SRC_URI=http://www.divineinvasion.net/authforce/authforce-0.9.9.tar.gz
_md5_=68ad4bbd488b8e81aca0b68c7aa0b093

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install prepare
DEPEND=x11-libs/gtk+:2 dev-libs/glib:2 net-libs/libnet:1.1
DESCRIPTION=A simple GTK/command line TCP/IP packet generator
EAPI=2
HOMEPAGE=http://gspoof.sourceforge.net/
KEYWORDS=amd64 ~ppc x86
LICENSE=GPL-2
RDEPEND=x11-libs/gtk+:2 dev-libs/glib:2 net-libs/libnet:1.1
SLOT=0
SRC_URI=http://gspoof.sourceforge.net/src/gspoof-3.2.tar.gz
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b5ac957b115d3b5b97872d2657e4e2a3

@ -1,13 +0,0 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=dbus? ( sys-apps/dbus ) idn? ( net-dns/libidn ) nls? ( sys-devel/gettext net-dns/libidn ) virtual/pkgconfig || ( app-arch/xz-utils app-arch/lzma )
DESCRIPTION=Small forwarding DNS server
EAPI=2
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/
IUSE=dbus +dhcp idn ipv6 nls tftp
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd
LICENSE=GPL-2
RDEPEND=dbus? ( sys-apps/dbus ) idn? ( net-dns/libidn ) nls? ( sys-devel/gettext net-dns/libidn )
SLOT=0
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.57.tar.lzma
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b9e2c601cff16b7ab77182354978bb90

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare setup
DEPEND=dbus? ( sys-apps/dbus ) idn? ( net-dns/libidn ) lua? ( dev-lang/lua ) conntrack? ( net-libs/libnetfilter_conntrack ) nls? ( sys-devel/gettext net-dns/libidn ) virtual/pkgconfig || ( app-arch/xz-utils app-arch/lzma )
DESCRIPTION=Small forwarding DNS server
EAPI=4
HOMEPAGE=http://www.thekelleys.org.uk/dnsmasq/
IUSE=conntrack dbus +dhcp idn ipv6 lua nls script tftp
KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc ~x86 ~sparc-fbsd ~x86-fbsd
LICENSE=|| ( GPL-2 GPL-3 )
RDEPEND=dbus? ( sys-apps/dbus ) idn? ( net-dns/libidn ) lua? ( dev-lang/lua ) conntrack? ( net-libs/libnetfilter_conntrack ) nls? ( sys-devel/gettext net-dns/libidn )
REQUIRED_USE=lua? ( script )
SLOT=0
SRC_URI=http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.61.tar.lzma
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=bcb799b3f03d6ba978c5091085df52ec

@ -1,9 +1,9 @@
DEFINED_PHASES=compile install postinst unpack
DESCRIPTION=network connection relaying command
HOMEPAGE=http://www.meadowy.org/~gotoh/projects/connect/
KEYWORDS=amd64 ~x86
KEYWORDS=amd64 x86
LICENSE=GPL-2
SLOT=0
SRC_URI=http://www.meadowy.org/~gotoh/ssh/connect-r100.c
_eclasses_=multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4
_md5_=261eade7d36b4ce60895d82c36e5a9c2
_md5_=fecb972d7a6305b9f1b2ed91d4862e33

@ -1,9 +1,9 @@
DEFINED_PHASES=compile configure install prepare
DEFINED_PHASES=configure install prepare
DEPEND=gtk? ( x11-libs/gtk+:2 ) postgres? ( dev-db/postgresql-base ) qt4? ( x11-libs/qt-gui:4[qt3support] ) ssl? ( dev-libs/openssl ) tcl? ( dev-lang/tcl ) X? ( x11-libs/libXt ) >=sys-devel/flex-2.5.2 >=sys-devel/bison-1.22 || ( >=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 freely available and fully compliant implementation of the CORBA standard
EAPI=3
HOMEPAGE=http://www.mico.org/
IUSE=gtk postgres qt4 ssl tcl threads X findbug
IUSE=gtk postgres qt4 ssl tcl threads X
KEYWORDS=~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-aix ~ia64-hpux ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt
LICENSE=GPL-2 LGPL-2
RDEPEND=gtk? ( x11-libs/gtk+:2 ) postgres? ( dev-db/postgresql-base ) qt4? ( x11-libs/qt-gui:4[qt3support] ) ssl? ( dev-libs/openssl ) tcl? ( dev-lang/tcl ) X? ( x11-libs/libXt )
@ -11,4 +11,4 @@ RESTRICT=test
SLOT=0
SRC_URI=http://www.mico.org/mico-2.3.13.tar.gz http://dev.gentoo.org/~haubi/distfiles/mico-2.3.13-gentoo-patches-0.2.tar.bz2
_eclasses_=autotools f4bee52a728da1f76470f4b8d246c50f eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f libtool 2b273eea1976cfaed3449345d94331ac multilib c2b85b5c63a44798c1e442147ac14c5c multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=34c46e0bbd643ae4b0f3b4a48ed5ddd2
_md5_=53793dfade0abe987176cd6e7d3aaa9a

@ -1,9 +1,9 @@
DEFINED_PHASES=compile configure install prepare
DEFINED_PHASES=configure install prepare
DEPEND=gtk? ( x11-libs/gtk+:2 ) postgres? ( dev-db/postgresql-base ) qt4? ( x11-libs/qt-gui:4[qt3support] ) ssl? ( dev-libs/openssl ) tcl? ( dev-lang/tcl ) X? ( x11-libs/libXt ) >=sys-devel/flex-2.5.2 >=sys-devel/bison-1.22 || ( >=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 freely available and fully compliant implementation of the CORBA standard
EAPI=3
HOMEPAGE=http://www.mico.org/
IUSE=gtk postgres qt4 ssl tcl threads X findbug
IUSE=gtk postgres qt4 ssl tcl threads X
KEYWORDS=~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-aix ~ia64-hpux ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt
LICENSE=GPL-2 LGPL-2
RDEPEND=gtk? ( x11-libs/gtk+:2 ) postgres? ( dev-db/postgresql-base ) qt4? ( x11-libs/qt-gui:4[qt3support] ) ssl? ( dev-libs/openssl ) tcl? ( dev-lang/tcl ) X? ( x11-libs/libXt )
@ -11,4 +11,4 @@ RESTRICT=test
SLOT=0
SRC_URI=http://www.mico.org/mico-2.3.13.tar.gz http://dev.gentoo.org/~haubi/distfiles/mico-2.3.13-gentoo-patches-0.3.tar.bz2
_eclasses_=autotools f4bee52a728da1f76470f4b8d246c50f eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f libtool 2b273eea1976cfaed3449345d94331ac multilib c2b85b5c63a44798c1e442147ac14c5c multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e1688c61e5bb2b58e1dd3b6471d5f489
_md5_=d2ae8059dd4497b17c17fcd3be3783c6

@ -4,11 +4,11 @@ DESCRIPTION=A Fast, Easy and Free BitTorrent client
EAPI=4
HOMEPAGE=http://www.transmissionbt.com/
IUSE=ayatana gtk lightweight qt4 xfs
KEYWORDS=amd64 ~arm ppc ppc64 ~x86 ~x86-fbsd ~amd64-linux
KEYWORDS=amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux
LICENSE=GPL-2 MIT
RDEPEND=>=dev-libs/libevent-2.0.10 dev-libs/openssl:0 net-libs/libnatpmp >=net-libs/miniupnpc-1.6.20120509 >=net-misc/curl-7.16.3[ssl] sys-libs/zlib gtk? ( >=dev-libs/dbus-glib-0.100 >=dev-libs/glib-2.28 >=x11-libs/gtk+-3.4:3 ayatana? ( >=dev-libs/libappindicator-0.4.90:3 ) ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4[dbus] )
REQUIRED_USE=ayatana? ( gtk )
SLOT=0
SRC_URI=http://download.transmissionbt.com/transmission/files/transmission-2.61.tar.xz
_eclasses_=autotools f4bee52a728da1f76470f4b8d246c50f base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 2fd401453e32e8c9a676cd0361b82a5f fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 0d2178d7f87923f3c110366ece3c930f libtool 2b273eea1976cfaed3449345d94331ac multilib c2b85b5c63a44798c1e442147ac14c5c multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 qt4-r2 75aa32643ef22632eb9b45989b4c03fc toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=1c569b2db4332ac46160c58a731fc4e6
_md5_=6d30863daeba6225daf6be24677cb1a9

@ -0,0 +1,14 @@
DEFINED_PHASES=configure install postinst prepare pretend setup
DEPEND=caps? ( >=sys-libs/libcap-2.16 ) pam? ( virtual/pam ) ldap? ( net-nds/openldap ) kerberos? ( virtual/krb5 ) qos? ( net-libs/libnetfilter_conntrack ) ssl? ( dev-libs/openssl ) sasl? ( dev-libs/cyrus-sasl ) ecap? ( net-libs/libecap:2 ) selinux? ( sec-policy/selinux-squid ) !x86-fbsd? ( logrotate? ( app-admin/logrotate ) ) >=sys-libs/db-4 sys-devel/libtool dev-lang/perl sys-apps/ed test? ( dev-util/cppunit ) || ( >=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 full-featured web proxy cache
EAPI=4
HOMEPAGE=http://www.squid-cache.org/
IUSE=caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux logrotate test ecap icap-client ssl-crtd mysql postgres sqlite qos tproxy pf-transparent ipf-transparent kqueue elibc_uclibc kernel_linux
KEYWORDS=~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd
LICENSE=GPL-2
RDEPEND=caps? ( >=sys-libs/libcap-2.16 ) pam? ( virtual/pam ) ldap? ( net-nds/openldap ) kerberos? ( virtual/krb5 ) qos? ( net-libs/libnetfilter_conntrack ) ssl? ( dev-libs/openssl ) sasl? ( dev-libs/cyrus-sasl ) ecap? ( net-libs/libecap:2 ) selinux? ( sec-policy/selinux-squid ) !x86-fbsd? ( logrotate? ( app-admin/logrotate ) ) >=sys-libs/db-4 sys-devel/libtool dev-lang/perl samba? ( net-fs/samba ) mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite )
REQUIRED_USE=tproxy? ( caps ) qos? ( caps )
SLOT=0
SRC_URI=http://www.squid-cache.org/Versions/v3/3.2/squid-3.2.2.tar.gz
_eclasses_=autotools f4bee52a728da1f76470f4b8d246c50f eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f libtool 2b273eea1976cfaed3449345d94331ac linux-info 0b7adf68a2edb4e5a32b07bb6e68121c multilib c2b85b5c63a44798c1e442147ac14c5c multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=e8415c10e17e3c9f69f35d65a0102166

@ -1,5 +1,5 @@
DEFINED_PHASES=configure install postinst prepare setup
DEPEND=>=dev-lang/spidermonkey-1.8.5 >=dev-libs/glib-2.32 >=dev-libs/expat-2 introspection? ( >=dev-libs/gobject-introspection-1 ) pam? ( sys-auth/pambase virtual/pam ) selinux? ( sec-policy/selinux-policykit ) systemd? ( sys-apps/systemd ) app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/intltool virtual/pkgconfig
DEFINED_PHASES=compile configure install postinst prepare setup
DEPEND=>=dev-lang/spidermonkey-1.8.5-r1 >=dev-libs/glib-2.32 >=dev-libs/expat-2 introspection? ( >=dev-libs/gobject-introspection-1 ) pam? ( sys-auth/pambase virtual/pam ) selinux? ( sec-policy/selinux-policykit ) systemd? ( sys-apps/systemd ) app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xsl-stylesheets dev-libs/libxslt dev-util/intltool virtual/pkgconfig
DESCRIPTION=Policy framework for controlling privileges for system-wide services
EAPI=4
HOMEPAGE=http://www.freedesktop.org/wiki/Software/polkit
@ -7,9 +7,8 @@ IUSE=examples gtk +introspection kde nls pam selinux systemd
KEYWORDS=~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
LICENSE=LGPL-2
PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 lxde-base/lxpolkit ) ) kde? ( sys-auth/polkit-kde-agent ) pam? ( systemd? ( sys-auth/pambase[systemd] ) !systemd? ( sys-auth/pambase[consolekit] ) ) !systemd? ( >=sys-auth/consolekit-0.4.5_p2012[policykit] )
RDEPEND=>=dev-lang/spidermonkey-1.8.5 >=dev-libs/glib-2.32 >=dev-libs/expat-2 introspection? ( >=dev-libs/gobject-introspection-1 ) pam? ( sys-auth/pambase virtual/pam ) selinux? ( sec-policy/selinux-policykit ) systemd? ( sys-apps/systemd )
RESTRICT=multilib-strict
RDEPEND=>=dev-lang/spidermonkey-1.8.5-r1 >=dev-libs/glib-2.32 >=dev-libs/expat-2 introspection? ( >=dev-libs/gobject-introspection-1 ) pam? ( sys-auth/pambase virtual/pam ) selinux? ( sec-policy/selinux-policykit ) systemd? ( sys-apps/systemd )
SLOT=0
SRC_URI=http://www.freedesktop.org/software/polkit/releases/polkit-0.107.tar.gz
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 pax-utils 0ace932c4045349c7fc1af0fe7091acf systemd 647a5a2d457d440371b3c86b4ccb9d38 toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=16c88176567a481b075e2602886e9817
_md5_=9cf68c114ded800a6a1208937e95af51

@ -10,4 +10,4 @@ RDEPEND=!sys-fs/aufs !sys-fs/aufs2 kernel_linux? ( virtual/modutils )
SLOT=0
SRC_URI=http://dev.gentoo.org/~jlec/distfiles/aufs3-3_p20120813.tar.xz
_eclasses_=eutils 2fd401453e32e8c9a676cd0361b82a5f linux-info 0b7adf68a2edb4e5a32b07bb6e68121c linux-mod dbc722ed035721476f23ab7b0572985e multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=13f354f607ee92668c0286c5750c67d7
_md5_=6c041d307a9bdd077fc96e8971f3b6e9

@ -3,4 +3,4 @@ DESCRIPTION=A virtual for the Foreign Function Interface implementation
KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
RDEPEND=>=dev-libs/libffi-3.0.10
SLOT=0
_md5_=f1899dc09c6c07dd8a9962f0fa5130ce
_md5_=6d7876d1e3f6c386d1171a1692c9540f

@ -0,0 +1,6 @@
DEFINED_PHASES=-
DESCRIPTION=A virtual for the Foreign Function Interface implementation
KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
RDEPEND=>=dev-libs/libffi-3.0.11
SLOT=0
_md5_=d5f41752392cdbb157c90d89eed5fd60

@ -4,10 +4,10 @@ DESCRIPTION=PHP/MySQL/Web based bugtracking system
EAPI=2
HOMEPAGE=http://www.mantisbt.org/
IUSE=vhosts
KEYWORDS=amd64 ~x86
KEYWORDS=amd64 x86
LICENSE=GPL-2
RDEPEND=virtual/httpd-php virtual/httpd-cgi || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 ) >=dev-php/ezc-Base-1.8 >=dev-php/ezc-Graph-1.5 >=dev-php/adodb-5.10 >=app-admin/webapp-config-1.50.15
SLOT=1.2.11
SRC_URI=mirror://sourceforge/mantisbt/mantisbt-1.2.11.tar.gz
_eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 2fd401453e32e8c9a676cd0361b82a5f multilib c2b85b5c63a44798c1e442147ac14c5c phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e
_md5_=50368a0f2aa5d035d5dfaf2afe02498a
_md5_=f41a945a64bafbb935bf42d84498ee93

@ -1,10 +0,0 @@
DEFINED_PHASES=install postinst unpack
DESCRIPTION=A collection of miscellaneous Gentoo Linux logos and artwork
HOMEPAGE=http://www.gentoo.org/index-graphics.html
IUSE=kde offensive
KEYWORDS=alpha amd64 ppc ppc64 sparc x86 ~x86-fbsd
LICENSE=GPL-2
RESTRICT=binchecks strip
SLOT=0
SRC_URI=mirror://gentoo/gentoo-artwork-0.2.tar.bz2 mirror://gentoo/gentoo-artwork-0.3.tar.bz2 mirror://gentoo/gentoo-artwork-0.4.tar.bz2 mirror://gentoo/gentoo-artwork-0.4.1.tar.bz2 mirror://gentoo/gentoo-artwork-0.4.2.tar.bz2 mirror://gentoo/gentoo-bubble-icons-20060811.tar.gz
_md5_=6cd9a7cd100463475315e5fdb47fa9b3

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=!x11-themes/oxygen-gtk:0 dev-libs/dbus-glib dev-libs/glib x11-libs/cairo x11-libs/gtk+:3 x11-libs/libX11 virtual/pkgconfig doc? ( app-doc/doxygen ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=Official GTK+:3 port of KDE's Oxygen widget style
EAPI=4
HOMEPAGE=https://projects.kde.org/projects/playground/artwork/oxygen-gtk
IUSE=debug doc
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=!x11-themes/oxygen-gtk:0 dev-libs/dbus-glib dev-libs/glib x11-libs/cairo x11-libs/gtk+:3 x11-libs/libX11
SLOT=3
SRC_URI=mirror://kde/stable/oxygen-gtk3/1.1.1/src/oxygen-gtk3-1.1.1.tar.bz2
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 2e18cd8b379d307b2473aa632de5a077 eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=199de3273b49110a634364c4879189d9

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=!x11-themes/oxygen-gtk:0 dev-libs/dbus-glib dev-libs/glib x11-libs/cairo >=x11-libs/gtk+-2.24.2:2 x11-libs/libX11 x11-libs/pango virtual/pkgconfig doc? ( app-doc/doxygen ) >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=Official GTK+:2 port of KDE's Oxygen widget style
EAPI=4
HOMEPAGE=https://projects.kde.org/projects/playground/artwork/oxygen-gtk
IUSE=debug doc
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=!x11-themes/oxygen-gtk:0 dev-libs/dbus-glib dev-libs/glib x11-libs/cairo >=x11-libs/gtk+-2.24.2:2 x11-libs/libX11 x11-libs/pango
SLOT=2
SRC_URI=mirror://kde/stable/oxygen-gtk2/1.3.1/src/oxygen-gtk2-1.3.1.tar.bz2
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 2e18cd8b379d307b2473aa632de5a077 eutils 2fd401453e32e8c9a676cd0361b82a5f flag-o-matic 2c938a1fe61ea9899a2b97ea1e065f5f multilib c2b85b5c63a44798c1e442147ac14c5c toolchain-funcs 134429b842a6c67254bfd76a8753e4d4 user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3f214f282b8d977502a9bfc829c9ca8c

@ -1 +1 @@
Mon, 08 Oct 2012 05:37:01 +0000
Mon, 08 Oct 2012 11:37:00 +0000

@ -1 +1 @@
Mon Oct 8 05:36:59 UTC 2012
Mon Oct 8 11:36:58 UTC 2012

@ -1 +1 @@
Mon, 08 Oct 2012 06:00:01 +0000
Mon, 08 Oct 2012 12:00:01 +0000

@ -1 +1 @@
1349674501 Mon Oct 8 05:35:01 2012 UTC
1349696101 Mon Oct 8 11:35:01 2012 UTC

@ -1 +1 @@
DIST authforce-0.9.9.tar.gz 424557 RMD160 4e5c75d3cdf10e61397988356950d5051eff6fc9 SHA1 ec5f646b54b89f694a65bd070795374ee32693ca SHA256 366adfda9dbdb2c6dfefa9c50f143fa535a77db17cbe0b7ef338f835e211f7db
DIST authforce-0.9.9.tar.gz 424557 SHA256 366adfda9dbdb2c6dfefa9c50f143fa535a77db17cbe0b7ef338f835e211f7db

@ -1,25 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/authforce/authforce-0.9.9.ebuild,v 1.4 2011/11/05 16:07:19 jer Exp $
DESCRIPTION="An HTTP authentication brute forcer"
HOMEPAGE="http://www.divineinvasion.net/authforce"
SRC_URI="http://www.divineinvasion.net/authforce/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="curl nls"
DEPEND="sys-libs/readline
nls? ( sys-devel/gettext )
curl? ( net-misc/curl )"
src_compile() {
econf $(use_with curl) $(use_enable nls) --with-path=/usr/share/${PN}/data:. || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS BUGS INSTALL NEWS README THANKS TODO
}

@ -1 +1 @@
DIST gspoof-3.2.tar.gz 69340 RMD160 2030e4b99d5191ae9dadec617eec2ae73b021775 SHA1 e31ef5104395d23cafa7106bc6f713d940a4bb68 SHA256 65f12bf8ca23d3fa6af0cedda4fb6c28c955a909e1787bd5dda14404a0280019
DIST gspoof-3.2.tar.gz 69340 SHA256 65f12bf8ca23d3fa6af0cedda4fb6c28c955a909e1787bd5dda14404a0280019

@ -1,36 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/gspoof/gspoof-3.2-r1.ebuild,v 1.3 2011/04/26 09:09:21 hwoarang Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A simple GTK/command line TCP/IP packet generator"
HOMEPAGE="http://gspoof.sourceforge.net/"
SRC_URI="http://gspoof.sourceforge.net/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="x11-libs/gtk+:2
dev-libs/glib:2
net-libs/libnet:1.1"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-def-values.patch \
"${FILESDIR}"/${P}-icon.patch
}
src_compile() {
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
}
src_install() {
dobin gspoof || die
newicon pixmap/icon.png ${PN}.png || die
dodoc README CHANGELOG TODO || die
}

@ -1,3 +1 @@
DIST dnsmasq-2.57.tar.lzma 333348 SHA256 b35c5a31afce2b7c4bd62566d5dc87e1ce62d0d2ebd9c2baf15b5ea16bcc279d SHA512 866e9b54d884750edefa667db01dc5f4ce0338de19d2d8ace8ce62225afd82e72b1632c0316f1b27264de994c69ddd2bca76fbb14d2e32e5203950d2557aa5c8 WHIRLPOOL 1e51e8035e6c51dcbf49fe2dde2c30a6860de17a63473865d588e8defd1adaebf696c3c5066c5fbf3010d4f2e30928fe48d8598745a0ca6d2d0cfc1564b5d81d
DIST dnsmasq-2.61.tar.lzma 374461 SHA256 c37fc14c3d0ee32d0418c125871665dd586cfe1a21f4b0307eb171bff41a2683 SHA512 0937d98264eba50801071a132b6b5ebee9b6e41ce3509f04027e648134031ba3144512abe1d689af70114f7fb7b030c0f8129a731f5cc345b94e6cde820f0b2e WHIRLPOOL 84488fca877735764172386e5dd639732aa725026feb94bf7dd3caf5d1a08a18e64247845cc9d88ca6e9a8b191235b2b50e28635b10ed59036f28b4d11b1e824
DIST dnsmasq-2.63.tar.xz 378148 SHA256 f5eb1c2dfd47a2c75b0d40a60f85dce2e84c6af6d1cd5318fbe8cd69845ed2d8 SHA512 be057e19062b2eed46fd4677f1419048d4546e0de93a9b0b889417c240a5f7930329d659de41105670c23ca612ce53285875ed64ac56a0cf94ff01d522194cb1 WHIRLPOOL 7e1279efa347c8d69d56c240477f6acc1664b90f05de6a7053f8264d74200afad16389e33ea710e371c0c19c0d7ea9bfdec8d0089ca0fba341bf5e265d4ea783

@ -1,75 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.57.ebuild,v 1.9 2012/05/03 03:59:12 jdhore Exp $
EAPI=2
inherit eutils toolchain-funcs flag-o-matic
MY_P="${P/_/}"
MY_PV="${PV/_/}"
DESCRIPTION="Small forwarding DNS server"
HOMEPAGE="http://www.thekelleys.org.uk/dnsmasq/"
SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${MY_P}.tar.lzma"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="dbus +dhcp idn ipv6 nls tftp"
RDEPEND="dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
nls? (
sys-devel/gettext
net-dns/libidn
)"
DEPEND="${RDEPEND}
virtual/pkgconfig
|| ( app-arch/xz-utils app-arch/lzma )"
S="${WORKDIR}/${PN}-${MY_PV}"
src_prepare() {
# dnsmasq on FreeBSD wants the config file in a silly location, this fixes
epatch "${FILESDIR}/${PN}-2.47-fbsd-config.patch"
}
src_configure() {
COPTS=""
use tftp || COPTS+=" -DNO_TFTP"
use dhcp || COPTS+=" -DNO_DHCP"
use ipv6 || COPTS+=" -DNO_IPV6"
use dbus && COPTS+=" -DHAVE_DBUS"
use idn && COPTS+=" -DHAVE_IDN"
}
src_compile() {
emake \
PREFIX=/usr \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
COPTS="${COPTS}" \
all$(use nls && echo "-i18n") || die
}
src_install() {
emake \
PREFIX=/usr \
MANDIR=/usr/share/man \
DESTDIR="${D}" \
install$(use nls && echo "-i18n") || die
dodoc CHANGELOG FAQ
dohtml *.html
newinitd "${FILESDIR}"/dnsmasq-init dnsmasq
newconfd "${FILESDIR}"/dnsmasq.confd dnsmasq
insinto /etc
newins dnsmasq.conf.example dnsmasq.conf
if use dbus ; then
insinto /etc/dbus-1/system.d
doins dbus/dnsmasq.conf
fi
}

@ -1,110 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-2.61.ebuild,v 1.10 2012/10/05 18:00:14 ranger Exp $
EAPI=4
inherit eutils toolchain-funcs flag-o-matic user
MY_P="${P/_/}"
MY_PV="${PV/_/}"
DESCRIPTION="Small forwarding DNS server"
HOMEPAGE="http://www.thekelleys.org.uk/dnsmasq/"
SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${MY_P}.tar.lzma"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="conntrack dbus +dhcp idn ipv6 lua nls script tftp"
RDEPEND="dbus? ( sys-apps/dbus )
idn? ( net-dns/libidn )
lua? ( dev-lang/lua )
conntrack? ( net-libs/libnetfilter_conntrack )
nls? (
sys-devel/gettext
net-dns/libidn
)"
DEPEND="${RDEPEND}
virtual/pkgconfig
|| ( app-arch/xz-utils app-arch/lzma )"
S="${WORKDIR}/${PN}-${MY_PV}"
REQUIRED_USE="lua? ( script )"
use_have() {
local NO_ONLY=""
if [ $1 == '-n' ]; then
NO_ONLY=1
shift
fi
local UWORD=${2:-$1}
UWORD=${UWORD^^*}
if ! use ${1}; then
echo " -DNO_${UWORD}"
elif [ -z "${NO_ONLY}" ]; then
echo " -DHAVE_${UWORD}"
fi
}
pkg_setup() {
enewgroup dnsmasq
enewuser dnsmasq -1 -1 /dev/null dnsmasq
}
src_prepare() {
# dnsmasq on FreeBSD wants the config file in a silly location, this fixes
epatch "${FILESDIR}/${PN}-2.47-fbsd-config.patch"
sed -i -r 's:lua5.[0-9]+:lua:' Makefile
}
src_configure() {
COPTS="$(use_have conntrack)"
COPTS+="$(use_have dbus)"
COPTS+="$(use_have -n dhcp)"
COPTS+="$(use_have idn)"
COPTS+="$(use_have -n ipv6)"
COPTS+="$(use_have lua luascript)"
COPTS+="$(use_have -n script)"
COPTS+="$(use_have -n tftp)"
COPTS+="$(use ipv6 && use dhcp || echo " -DNO_DHCP6")"
}
src_compile() {
emake \
PREFIX=/usr \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
COPTS="${COPTS}" \
all$(use nls && echo "-i18n")
}
src_install() {
emake \
PREFIX=/usr \
MANDIR=/usr/share/man \
DESTDIR="${D}" \
install$(use nls && echo "-i18n")
dodoc CHANGELOG CHANGELOG.archive FAQ
dodoc -r logo
dodoc CHANGELOG FAQ
dohtml *.html
newinitd "${FILESDIR}"/dnsmasq-init-r2 dnsmasq
newconfd "${FILESDIR}"/dnsmasq.confd-r1 dnsmasq
insinto /etc
newins dnsmasq.conf.example dnsmasq.conf
if use dbus ; then
insinto /etc/dbus-1/system.d
doins dbus/dnsmasq.conf
fi
}

@ -1,35 +0,0 @@
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/files/dnsmasq-init,v 1.15 2011/12/04 10:28:47 swegener Exp $
extra_started_commands="reload"
depend() {
provide dns
need localmount net
after bootmisc
use logger
}
start() {
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --exec /usr/sbin/dnsmasq \
--pidfile /var/run/dnsmasq.pid \
-- -x /var/run/dnsmasq.pid ${DNSMASQ_OPTS}
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --exec /usr/sbin/dnsmasq \
--pidfile /var/run/dnsmasq.pid
eend $?
}
reload() {
ebegin "Reloading ${SVCNAME}"
start-stop-daemon --stop --oknodo --signal HUP \
--exec /usr/sbin/dnsmasq --pidfile /var/run/dnsmasq.pid
eend $?
}

@ -1,4 +0,0 @@
# /etc/conf.d/dnsmasq: config file for /etc/init.d/dnsmasq
# See the dnsmasq(8) man page for possible options to put here.
DNSMASQ_OPTS=""

@ -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/connect/connect-100.ebuild,v 1.4 2012/10/03 10:31:04 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/net-misc/connect/connect-100.ebuild,v 1.5 2012/10/08 11:08:10 nativemad Exp $
inherit toolchain-funcs
@ -10,7 +10,7 @@ HOMEPAGE="http://www.meadowy.org/~gotoh/projects/connect/"
SRC_URI="http://www.meadowy.org/~gotoh/ssh/${PN}-r${PV}.c"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
DEPEND=""
S=${WORKDIR}

@ -1,51 +0,0 @@
--- orb/address.cc.orig 2011-06-28 17:22:58.275355766 +0200
+++ orb/address.cc 2011-06-28 17:46:12.268357549 +0200
@@ -269,21 +269,30 @@
{
if (_ipaddr.size() > 0)
return TRUE;
- if (_host.length() == 0)
+
+ if (_host.length() == 0) {
+::std::cerr << "for gentoo bug#343827: resolve_ip() detected _host.length() == 0, failed." << ::std::endl;
return FALSE;
+ }
InetAddress &me = (InetAddress &)*this;
+::std::cerr << "for gentoo bug#343827: resolve_ip() for hostname '" << _host << "' using ::inet_addr()...";
+
CORBA::ULong addr = ::inet_addr ((char *)_host.c_str());
if (addr != (CORBA::ULong)-1L || _host == string("255.255.255.255")) {
me._ipaddr.insert (me._ipaddr.begin(),
(CORBA::Octet *)&addr,
(CORBA::Octet *)&addr + sizeof (CORBA::ULong));
+::std::cerr << " succeeded." << ::std::endl;
return TRUE;
}
+::std::cerr << " failed, using ::gethostbyname() ";
#ifndef HAVE_THREADS
+::std::cerr << "without threads...";
struct hostent *hent = ::gethostbyname ((char *)_host.c_str());
#else // HAVE_THREADS
+::std::cerr << "with threads...";
struct hostent* hent = NULL;
{
MICOMT::AutoLock lock(S_netdb_lock_);
@@ -293,6 +302,7 @@
me._ipaddr.insert (me._ipaddr.begin(),
(CORBA::Octet *)hent->h_addr,
(CORBA::Octet *)hent->h_addr + hent->h_length);
+::std::cerr << " succeeded." << ::std::endl;
return TRUE;
}
#ifdef HAVE_THREADS
@@ -305,6 +315,8 @@
<< "Warning: cannot resolve hostname '" << _host
<< "' into an IP address." << endl;
}
+
+::std::cerr << " failed." << ::std::endl;
return FALSE;
}

@ -12,8 +12,5 @@
renowned for its market-leading security features, its great
user-friendliness, and its full standard-compliance.
</longdescription>
<use>
<flag name="findbug">Adds patch to help finding bug#343827</flag>
</use>
</pkgmetadata>

@ -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/net-misc/mico/mico-2.3.13-r5.ebuild,v 1.2 2011/06/29 11:44:04 haubi Exp $
# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/mico-2.3.13-r5.ebuild,v 1.3 2012/10/08 08:26:13 haubi Exp $
EAPI="3"
@ -15,7 +15,7 @@ PATCH_VER=0.2
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-aix ~ia64-hpux ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt"
IUSE="gtk postgres qt4 ssl tcl threads X findbug"
IUSE="gtk postgres qt4 ssl tcl threads X"
RESTRICT="test" #298101
[[ -z ${PATCH_VER} ]] || \
@ -42,8 +42,6 @@ S=${WORKDIR}/${PN}
src_prepare() {
EPATCH_SUFFIX=patch epatch "${WORKDIR}"/patches
use findbug && epatch "${FILESDIR}"/find-bug343827.patch
eautoreconf
# cannot use big TOC (AIX only), gdb doesn't like it.
@ -113,11 +111,6 @@ src_configure() {
econf ${myconf}
}
src_compile() {
use findbug && export EXTRA_EMAKE="${EXTRA_EMAKE} -j1"
default
}
src_install() {
emake INSTDIR="${ED}"usr SHARED_INSTDIR="${ED}"usr install LDCONFIG=: || die "install failed"

@ -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/mico/mico-2.3.13-r6.ebuild,v 1.1 2012/09/24 20:39:20 haubi Exp $
# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/mico-2.3.13-r6.ebuild,v 1.2 2012/10/08 08:26:13 haubi Exp $
EAPI="3"
@ -15,7 +15,7 @@ PATCH_VER=0.3
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-aix ~ia64-hpux ~amd64-linux ~x86-linux ~sparc-solaris ~x86-winnt"
IUSE="gtk postgres qt4 ssl tcl threads X findbug"
IUSE="gtk postgres qt4 ssl tcl threads X"
RESTRICT="test" #298101
[[ -z ${PATCH_VER} ]] || \
@ -42,8 +42,6 @@ S=${WORKDIR}/${PN}
src_prepare() {
EPATCH_SUFFIX=patch epatch "${WORKDIR}"/patches
use findbug && epatch "${FILESDIR}"/find-bug343827.patch
eautoreconf
# cannot use big TOC (AIX only), gdb doesn't like it.
@ -113,11 +111,6 @@ src_configure() {
econf ${myconf}
}
src_compile() {
use findbug && export EXTRA_EMAKE="${EXTRA_EMAKE} -j1"
default
}
src_install() {
emake INSTDIR="${ED}"usr SHARED_INSTDIR="${ED}"usr install LDCONFIG=: || die "install failed"

@ -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-p2p/transmission/transmission-2.61.ebuild,v 1.6 2012/10/06 21:51:42 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-2.61.ebuild,v 1.7 2012/10/08 07:18:12 nativemad Exp $
EAPI=4
inherit autotools eutils fdo-mime gnome2-utils qt4-r2 user
@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
inherit subversion
else
SRC_URI="http://download.transmissionbt.com/${PN}/files/${P}.tar.xz"
KEYWORDS="amd64 ~arm ppc ppc64 ~x86 ~x86-fbsd ~amd64-linux"
KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux"
fi
DESCRIPTION="A Fast, Easy and Free BitTorrent client"

@ -6,3 +6,4 @@ DIST squid-3.1.19.tar.gz 3403110 SHA256 1a2ebfd832364ada4793532dcc59fb79588ee381
DIST squid-3.1.20.tar.gz 3489463 SHA256 a0d52fa5d04a5382d63627ff622cea23f5f39a8f8a931f9ff10e4219fff44198 SHA512 2d4fb73dc612f907f32642cb0136d26f266f522aff66b8e005082d94c4cece4408cf636d40c6e8f5dda77074173c586657815c61c24ea976bf29fc0105242b9d WHIRLPOOL 387662bc6622777dcd6b4dbce4a2a04f88667aaea6e2949065f8eaf6c2d5f385a628ef168024f5ec7ff08f0515451eb12d530ce93c3a01e70f790de2b602d0ca
DIST squid-3.1.21.tar.gz 3488540 SHA256 04ad5693bc3a018d63cb4e4ac4822020def77d50ec40581e5c298fa14525acf4 SHA512 e6ec25b07be94a867f8cb729d015935bec84f1e8762612b165ea57e6fb7998b7a9a7976d7f76f814190802aece28021177a24ad0c5f18beba99fef6a34ebf0a7 WHIRLPOOL 46670e177e2f0fcd5a4c20948332ba8a5547026151335df19154dcddeff127d8b880563ac10c3b33ab1f151f2d826be0cb4ad58f7a68b0bb9c3a96450a57dcf9
DIST squid-3.2.1.tar.gz 4100448 SHA256 793ba5f04f3d3797b624fe061f8be9ededdc9f68cd39c1b58df78861ed4382f7 SHA512 2b0b80670634908cd5e93c68e9c50bcf5e773f26cd2197cccaaba74dfab6c40e9965b7691315406d2d90d318495df63e038436b5f6d4cc97f6f36655c765a2bb WHIRLPOOL 720598de6a2e963a42db31ef352836b2ff647815c85a3087f477419fe8f7ad2d3237ef806fd84dc1f68a8763ccf97af62f1161938f5205b334e96e96ca09446b
DIST squid-3.2.2.tar.gz 4102323 SHA256 36828bb92f5f7cb4343b5d4ceebb654c6a1a1479e75a3514fa1a509495987916 SHA512 abc4307317bf2f25b933200d89a6ed610dc42e1179be48065e4501be53650358136e28967687d52fee39ec192ca569ec8b1bd4b67cd0725736c0440cb557b7b4 WHIRLPOOL 65591204208be238a6e9e830d26831a7aed6599f67f792b06aff43493ef14e2fbe9aff98d16923b023d46bef74ebe3070bc92234a68f1c63841cf611291dd6eb

@ -0,0 +1,236 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.2.2.ebuild,v 1.1 2012/10/08 07:20:25 eras Exp $
EAPI=4
inherit eutils pam toolchain-funcs autotools linux-info user versionator
DESCRIPTION="A full-featured web proxy cache"
HOMEPAGE="http://www.squid-cache.org/"
SRC_URI="http://www.squid-cache.org/Versions/v3/3.2/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux logrotate test \
ecap icap-client ssl-crtd \
mysql postgres sqlite \
qos tproxy \
pf-transparent ipf-transparent kqueue \
elibc_uclibc kernel_linux"
COMMON_DEPEND="caps? ( >=sys-libs/libcap-2.16 )
pam? ( virtual/pam )
ldap? ( net-nds/openldap )
kerberos? ( virtual/krb5 )
qos? ( net-libs/libnetfilter_conntrack )
ssl? ( dev-libs/openssl )
sasl? ( dev-libs/cyrus-sasl )
ecap? ( net-libs/libecap:2 )
selinux? ( sec-policy/selinux-squid )
!x86-fbsd? ( logrotate? ( app-admin/logrotate ) )
>=sys-libs/db-4
sys-devel/libtool
dev-lang/perl"
DEPEND="${COMMON_DEPEND}
sys-apps/ed
test? ( dev-util/cppunit )"
RDEPEND="${COMMON_DEPEND}
samba? ( net-fs/samba )
mysql? ( dev-perl/DBD-mysql )
postgres? ( dev-perl/DBD-Pg )
sqlite? ( dev-perl/DBD-SQLite )"
REQUIRED_USE="tproxy? ( caps )
qos? ( caps )"
pkg_pretend() {
if use tproxy; then
echo
elog "Checking kernel configuration for full Tproxy4 support"
local CONFIG_CHECK="~NF_CONNTRACK ~NETFILTER_TPROXY ~NETFILTER_XT_MATCH_SOCKET ~NETFILTER_XT_TARGET_TPROXY"
linux-info_pkg_setup
echo
fi
}
pkg_setup() {
enewgroup squid 31
enewuser squid 31 -1 /var/cache/squid squid
}
src_prepare() {
epatch "${FILESDIR}/${PN}-3.2.1-gentoo.patch"
sed -i -e 's:/usr/local/squid/etc:/etc/squid:' \
INSTALL QUICKSTART \
helpers/basic_auth/MSNT/README.html \
helpers/basic_auth/MSNT/confload.cc \
helpers/basic_auth/MSNT/msntauth.conf.default \
scripts/fileno-to-pathname.pl \
scripts/check_cache.pl \
tools/cachemgr.cgi.8 \
tools/purge/conffile.hh \
tools/purge/README || die
sed -i -e 's:/usr/local/squid/sbin:/usr/sbin:' \
INSTALL QUICKSTART || die
sed -i -e 's:/usr/local/squid/var/cache:/var/cache/squid:' \
QUICKSTART || die
sed -i -e 's:/usr/local/squid/var/logs:/var/log/squid:' \
QUICKSTART \
src/log/access_log.cc || die
sed -i -e 's:/usr/local/squid/logs:/var/log/squid:' \
src/log/access_log.cc || die
sed -i -e 's:/usr/local/squid/bin:/usr/bin:' \
helpers/basic_auth/MSNT/README.html || die
sed -i -e 's:/usr/local/squid/libexec:/usr/libexec/squid:' \
helpers/external_acl/unix_group/ext_unix_group_acl.8 \
helpers/external_acl/session/ext_session_acl.8 \
src/ssl/ssl_crtd.8 || die
sed -i -e 's:/usr/local/squid/cache:/var/cache/squid:' \
scripts/check_cache.pl || die
sed -i -e 's:/usr/local/squid/ssl_cert:/etc/ssl/squid:' \
src/ssl/ssl_crtd.8 || die
sed -i -e 's:/usr/local/squid/var/lib/ssl_db:/var/lib/squid/ssl_db:' \
src/ssl/ssl_crtd.8 || die
sed -i -e 's:/var/lib/ssl_db:/var/lib/squid/ssl_db:' \
src/ssl/ssl_crtd.8 || die
eautoreconf
}
src_configure() {
local basic_modules="MSNT,MSNT-multi-domain,NCSA,POP3,getpwnam"
use samba && basic_modules+=",SMB"
use ldap && basic_modules+=",LDAP"
use pam && basic_modules+=",PAM"
use sasl && basic_modules+=",SASL"
use nis && ! use elibc_uclibc && basic_modules+=",NIS"
use radius && basic_modules+=",RADIUS"
if use mysql || use postgres || use sqlite ; then
basic_modules+=",DB"
fi
local digest_modules="file"
use ldap && digest_modules+=",LDAP,eDirectory"
local negotiate_modules="none"
use kerberos && negotiate_modules="kerberos,wrapper"
local ntlm_modules="none"
use samba && ntlm_modules="smb_lm"
local ext_helpers="file_userip,session,unix_group"
use samba && ext_helpers+=",wbinfo_group"
use ldap && ext_helpers+=",LDAP_group,eDirectory_userip"
use ldap && use kerberos && ext_helpers+=",kerberos_ldap_group"
# uclibc does not have aio support - needed for coss (#61175)
local storeio_modules="aufs,diskd,rock,ufs"
# not stable enough yet
#! use elibc_uclibc && storeio_modules+=",coss"
local transparent
if use kernel_linux ; then
transparent+=" --enable-linux-netfilter"
use qos && transparent+=" --enable-zph-qos --with-netfilter-conntrack"
fi
if use kernel_FreeBSD || use kernel_OpenBSD || use kernel_NetBSD ; then
transparent+=" $(use_enable kqueue)"
if use pf-transparent; then
transparent+=" --enable-pf-transparent"
elif use ipf-transparent; then
transparent+=" --enable-ipf-transparent"
fi
fi
export CC=$(tc-getCC)
econf \
--sysconfdir=/etc/squid \
--libexecdir=/usr/libexec/squid \
--localstatedir=/var \
--with-pidfile=/var/run/squid.pid \
--datadir=/usr/share/squid \
--with-logdir=/var/log/squid \
--with-default-user=squid \
--enable-removal-policies="lru,heap" \
--enable-storeio="${storeio_modules}" \
--enable-disk-io \
--enable-auth \
--enable-auth-basic="${basic_modules}" \
--enable-auth-digest="${digest_modules}" \
--enable-auth-ntlm="${ntlm_modules}" \
--enable-auth-negotiate="${negotiate_modules}" \
--enable-external-acl-helpers="${ext_helpers}" \
--enable-log-daemon-helpers \
--enable-url-rewrite-helpers \
--enable-cache-digests \
--enable-delay-pools \
--enable-eui \
--enable-icmp \
--enable-follow-x-forwarded-for \
--enable-esi \
--with-large-files \
--with-filedescriptors=8192 \
--disable-strict-error-checking \
$(use_with caps libcap) \
$(use_enable ipv6) \
$(use_enable snmp) \
$(use_enable ssl) \
$(use_enable ssl-crtd) \
$(use_enable icap-client) \
$(use_enable ecap) \
${transparent}
}
src_install() {
emake DESTDIR="${D}" install
# need suid root for looking into /etc/shadow
fowners root:squid /usr/libexec/squid/basic_ncsa_auth
fperms 4750 /usr/libexec/squid/basic_ncsa_auth
if use pam; then
fowners root:squid /usr/libexec/squid/basic_pam_auth
fperms 4750 /usr/libexec/squid/basic_pam_auth
fi
# pinger needs suid as well
fowners root:squid /usr/libexec/squid/pinger
fperms 4750 /usr/libexec/squid/pinger
# some cleanups
rm -f "${D}"/usr/bin/Run*
dodoc CONTRIBUTORS CREDITS ChangeLog INSTALL QUICKSTART README SPONSORS doc/*.txt
newdoc helpers/negotiate_auth/kerberos/README README.kerberos
newdoc helpers/basic_auth/MSNT-multi-domain/README.txt README.MSNT-multi-domain
newdoc helpers/basic_auth/LDAP/README README.LDAP
newdoc helpers/basic_auth/RADIUS/README README.RADIUS
newdoc helpers/external_acl/kerberos_ldap_group/README README.kerberos_ldap_group
newdoc tools/purge/README README.purge
newdoc tools/helper-mux.README README.helper-mux
dohtml RELEASENOTES.html
newpamd "${FILESDIR}/squid.pam" squid
newconfd "${FILESDIR}/squid.confd" squid
if use logrotate; then
newinitd "${FILESDIR}/squid.initd-logrotate" squid
insinto /etc/logrotate.d
newins "${FILESDIR}/squid.logrotate" squid
else
newinitd "${FILESDIR}/squid.initd" squid
exeinto /etc/cron.weekly
newexe "${FILESDIR}/squid.cron" squid.cron
fi
diropts -m0750 -o squid -g squid
keepdir /var/cache/squid /var/log/squid /etc/ssl/squid /var/lib/squid
}
pkg_postinst() {
if [[ $(get_version_component_range 1 ${REPLACING_VERSIONS}) -lt 3 ]] || \
[[ $(get_version_component_range 2 ${REPLACING_VERSIONS}) -lt 2 ]]; then
elog "Please read the release notes at:"
elog " http://www.squid-cache.org/Versions/v3/3.2/RELEASENOTES.html"
echo
fi
}

@ -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/profiles/use.desc,v 1.493 2012/09/08 18:35:24 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/profiles/use.desc,v 1.494 2012/10/08 06:28:13 mr_bones_ Exp $
# Keep them sorted
@ -68,7 +68,6 @@ cxx - Builds support for C++ (bindings, extra libraries, code generation, ...)
dbi - Enable dev-db/libdbi (database-independent abstraction layer) support
dbm - Adds support for generic DBM databases
dbus - Enable dbus support for anything that needs it (gpsd, gnomemeeting, etc)
dbx - Adds database abstraction layer
debug - Enable extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see http://www.gentoo.org/proj/en/qa/backtraces.xml
dedicated - Adds support for dedicated game servers (some packages do not provide clients and servers at the same time)
dga - Adds DGA (Direct Graphic Access) support for X

@ -4428,7 +4428,6 @@ net-misc/mediatomb:mysql - Use dev-db/mysql as backend rather than SQLite3
net-misc/mediatomb:taglib - Use media-libs/taglib for reading files' metadata rather than id3lib
net-misc/mediatomb:thumbnail - Enables video thumbnails generation throughmedia-video/ffmpegthumbnailer
net-misc/memcached:slabs-reassign - Allow manual reassignment of memory slabs at the cost of slab optimizations.
net-misc/mico:findbug - Adds patch to help finding bug#343827
net-misc/mosh:client - Build network client
net-misc/mosh:examples - Include example scripts
net-misc/mosh:mosh-hardening - Enable compiler and linker options to frustrate memory corruption exploits

@ -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-auth/polkit/polkit-0.107-r1.ebuild,v 1.2 2012/10/07 10:46:47 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.107-r1.ebuild,v 1.3 2012/10/08 06:24:32 ssuominen Exp $
EAPI=4
inherit eutils multilib pam pax-utils systemd user
@ -14,9 +14,7 @@ SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="examples gtk +introspection kde nls pam selinux systemd"
RESTRICT="multilib-strict" #424423
RDEPEND=">=dev-lang/spidermonkey-1.8.5
RDEPEND=">=dev-lang/spidermonkey-1.8.5-r1
>=dev-libs/glib-2.32
>=dev-libs/expat-2
introspection? ( >=dev-libs/gobject-introspection-1 )
@ -76,7 +74,27 @@ src_configure() {
--with-os-type=gentoo
}
src_compile() {
default
# Required for polkitd on hardened/PaX due to spidermonkey's JIT
local f='src/polkitbackend/.libs/polkitd test/polkitbackend/.libs/polkitbackendjsauthoritytest'
if has_version '>=dev-lang/spidermonkey-1.8.7[jit]'; then
pax-mark m ${f}
else
pax-mark mr ${f}
fi
}
src_install() {
if has multilib-strict ${FEATURES}; then
ewarn
ewarn "Possible broken flag multilib-strict in FEATURES detected."
ewarn "Your build will likely fail to install wrt bug #424423."
ewarn "This is a bug in the Package Manager instead of polkit."
ewarn
fi
emake DESTDIR="${D}" install
dodoc docs/TODO HACKING NEWS README
@ -92,13 +110,6 @@ src_install() {
fi
prune_libtool_files
# Required for polkitd on hardened/PaX due to spidermonkey's JIT
if has_version '<dev-lang/spidermonkey-1.8.7'; then
pax-mark mr "${ED}"/usr/lib/polkit-1/polkitd
elif has_version '>=dev-lang/spidermonkey-1.8.7[jit]'; then
pax-mark m "${ED}"/usr/lib/polkit-1/polkitd
fi
}
pkg_postinst() {

@ -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-fs/aufs3/aufs3-3_p20120813-r1.ebuild,v 1.1 2012/10/07 11:37:44 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs3/aufs3-3_p20120813-r1.ebuild,v 1.2 2012/10/08 05:33:15 jlec Exp $
EAPI=4
@ -107,7 +107,7 @@ src_prepare() {
use hfs && set_config BR_HFSPLUS
use inotify && set_config HNOTIFY HFSNOTIFY
use nfs && set_config EXPORT
( use amd64 || use ppc64 ) && set_config INO_T_64
use nfs && ( use amd64 || use ppc64 ) && set_config INO_T_64
use ramfs && set_config BR_RAMFS
use pax_kernel && epatch "${FILESDIR}"/pax.patch

@ -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/virtual/libffi/libffi-0.ebuild,v 1.30 2012/06/14 23:13:33 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/virtual/libffi/libffi-3.0.10.ebuild,v 1.1 2012/10/08 06:47:07 ssuominen Exp $
# The purpose of this ebuild is to provide quick fallback if and when we need to
# switch back to internal copy of libffi from sys-devel/gcc.

@ -0,0 +1,18 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/virtual/libffi/libffi-3.0.11.ebuild,v 1.1 2012/10/08 06:47:07 ssuominen Exp $
# The purpose of this ebuild is to provide quick fallback if and when we need to
# switch back to internal copy of libffi from sys-devel/gcc.
DESCRIPTION="A virtual for the Foreign Function Interface implementation"
HOMEPAGE=""
SRC_URI=""
LICENSE=""
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RDEPEND=">=dev-libs/libffi-3.0.11"
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.11.ebuild,v 1.2 2012/09/28 09:48:27 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.11.ebuild,v 1.3 2012/10/08 08:10:48 nativemad Exp $
EAPI="2"
@ -11,7 +11,7 @@ HOMEPAGE="http://www.mantisbt.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="

@ -1,101 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gentoo-artwork/gentoo-artwork-0.4.2.ebuild,v 1.6 2007/10/15 19:04:31 cla Exp $
BI_VER="20060811"
DESCRIPTION="A collection of miscellaneous Gentoo Linux logos and artwork"
SRC_URI="mirror://gentoo/gentoo-artwork-0.2.tar.bz2
mirror://gentoo/gentoo-artwork-0.3.tar.bz2
mirror://gentoo/gentoo-artwork-0.4.tar.bz2
mirror://gentoo/gentoo-artwork-0.4.1.tar.bz2
mirror://gentoo/gentoo-artwork-0.4.2.tar.bz2
mirror://gentoo/gentoo-bubble-icons-${BI_VER}.tar.gz"
HOMEPAGE="http://www.gentoo.org/index-graphics.html"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~x86-fbsd"
LICENSE="GPL-2"
SLOT="0"
IUSE="kde offensive"
RESTRICT="binchecks strip"
DEPEND=""
src_unpack() {
unpack gentoo-artwork-0.2.tar.bz2
# rename unpacked dir so that updated files get overwritten
mv "${WORKDIR}"/gentoo-artwork-0.2 "${WORKDIR}"/gentoo-artwork-0.3
unpack gentoo-artwork-0.3.tar.bz2
mv "${WORKDIR}"/gentoo-artwork-0.3 "${WORKDIR}"/gentoo-artwork-0.4
unpack gentoo-artwork-0.4.tar.bz2
mv "${WORKDIR}"/gentoo-artwork-0.4 "${WORKDIR}"/gentoo-artwork-0.4.1
unpack gentoo-artwork-0.4.1.tar.bz2
mv "${WORKDIR}"/gentoo-artwork-0.4.1 "${WORKDIR}"/gentoo-artwork-0.4.2
unpack gentoo-artwork-0.4.2.tar.bz2
# Gentoo Bubble Icons
unpack gentoo-bubble-icons-${BI_VER}.tar.gz
cd "${WORKDIR}"/gentoo-artwork-0.4.2/icons/gentoo
cp "${FILESDIR}"/index.theme .
mv l33t/l33t_BRO_lynx.png l33t/l33t_BRO_lynx2.png
mv "${WORKDIR}"/gentoo-bubble-icons/README bubble-icons-README
find "${WORKDIR}"/gentoo-bubble-icons -name '*.png' \
-exec mv "{}" l33t/ \;
# fix errors in filenames
mv l33t/l33t_nero.png l33t/l33t_UTI_nero.png
mv "${S}"/pixmaps/1280x1024/gentoo-freedom-1280x1024,jpg \
"${S}"/pixmaps/1280x1024/gentoo-freedom-1280x1024.jpg
# remove misspelled files
rm "${S}"/icons/gentoo/{32x32,48x48,64x64}/slypheed.png
# bug #132271
rm "${S}"/pixmaps/1024x768/gentoo-blue-leaf-1024x768.jpg
rm "${S}"/pixmaps/1024x768/gentoo-blue-ute-1024x768.jpg
if ! use offensive ; then
for i in $(<"${FILESDIR}"/offensive_list) ; do
rm -f "${S}/${i}"
done
fi
}
src_install() {
# pixmaps
dodir /usr/share/pixmaps/gentoo/
cd "${S}"/pixmaps
cp -pPR . "${D}"/usr/share/pixmaps/gentoo/
rm "${D}"/usr/share/pixmaps/gentoo/CREDITS
if use kde ; then
# a Gentoo colour scheme for KDE
insinto /usr/share/apps/kdisplay/color-schemes
doins "${S}"/misc/Gentoo.kcsrc
fi
# Gentoo icons
dodir /usr/share/icons/gentoo
cp -pR "${S}"/icons/gentoo/* "${D}"/usr/share/icons/gentoo/
# grub splash images
dodir /usr/share/grub/splashimages
insinto /usr/share/grub/splashimages
doins "${S}"/grub/*.xpm.gz
# lilo splash images
dodir /usr/share/lilo/splashimages
insinto /usr/share/lilo/splashimages
doins "${S}"/lilo/*
dodoc "${S}"/pixmaps/CREDITS
}
pkg_postinst() {
einfo "See:"
einfo " http://dev.gentoo.org/~spock/gentoo/artwork.php"
einfo "for information about submitting new artwork for this package."
}

@ -1,2 +1,4 @@
DIST oxygen-gtk2-1.3.0.tar.bz2 193987 SHA256 a8879f18ed454e51f9dda1a242412b08d8a08481beb311bcc294dbec8ad0fd33 SHA512 18833fe056e711a99b1f52957e5b1c2e68cd4954b78370b8bccf9d1947e0ce3e0e6d6a0bf764984bea6e6bd89f48e590d6838590339e102cf0f1d118e0ccc253 WHIRLPOOL 00e724f8c7b2ffa2d7cd76f19a23db911f485290f6ad9d3bdd56b1df72b7140237e381d84ca3d5e7f70fbe8b688fb025f09c56b95fecbcf615450b46315d4be3
DIST oxygen-gtk2-1.3.1.tar.bz2 193863 SHA256 50de5a24a1021fd1fb8c0ca73b9f7888224983f57c17e0db3a7a85f077ae418b SHA512 0ee536059ebf80d718f936ab03fb27acd556b3fb883f45a0da05fdac26c483558c8b453252aafa409d850e7a44e68109d4a9a58e6746ca1cc9f96ae5fedaa7ea WHIRLPOOL 4330b829029891e0689f7423211b4838b2daa88e938874d29bdf3730a0163dca8c18d30119b3ccdf3daa9b00c2d18cd838e27baf0b9d65c3e434f5b3977d0316
DIST oxygen-gtk3-1.1.0.tar.bz2 187778 SHA256 c3cbc6b86124dcc4f99faeb8e7b389f7259cbf86e293766fa92219cb79b9d0a0 SHA512 6524c2dd6c5792bb386a25f6bb9bd6f1c92d600392f70ad83e5f8031dbf1f9b66e8ac1d7ffaf9e2ed9aa92fcb440dd394808fc34e4b2908841947b35a48236cb WHIRLPOOL df32d2a36b7e7f15a9d328b8a15d75722cc9b43cfe06339e1942823db3c9b16245e5c2bf92fd27a8481cafa786ef9c1221f03b5855af5745b544db38e0d9b1b6
DIST oxygen-gtk3-1.1.1.tar.bz2 187810 SHA256 faa9d27e623f8da17acfdf1fb8ba4254c81fb72c8fa449f14c23bef070fb960a SHA512 c7e5ade4aea3c3d09637e8adc15c1a8a3ade0cdb7c9eac4da7f986c9ce8ffbe49662b2decf39f80e1a1eac9e47597a833783da384b27bd42705fe63fd3262fce WHIRLPOOL c17a3d3cc56c8d8f61000b5501151879edbe7c2c1e6c576dea76f01c06ad9ce373516c62c8f3a3897bfa62fb62ea77dc127de5465a0b90e60527db5ef757ff70

@ -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/x11-themes/oxygen-gtk/oxygen-gtk-1.1.1.ebuild,v 1.3 2012/10/08 07:48:59 kensington Exp $
EAPI=4
MY_PN=${PN}3
MY_P=${MY_PN}-${PV}
inherit cmake-utils
DESCRIPTION="Official GTK+:3 port of KDE's Oxygen widget style"
HOMEPAGE="https://projects.kde.org/projects/playground/artwork/oxygen-gtk"
SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~x86"
SLOT="3"
IUSE="debug doc"
RDEPEND="
!x11-themes/oxygen-gtk:0
dev-libs/dbus-glib
dev-libs/glib
x11-libs/cairo
x11-libs/gtk+:3
x11-libs/libX11
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
DOCS=(AUTHORS README TODO)
S="${WORKDIR}/${MY_P}"
src_install() {
if use doc; then
{ cd "${S}" && doxygen Doxyfile; } || die "Generating documentation failed"
HTML_DOCS=( "${S}/doc/html/" )
fi
cmake-utils_src_install
cat <<-EOF > 99oxygen-gtk3
CONFIG_PROTECT="${EPREFIX}/usr/share/themes/oxygen-gtk/gtk-3.0"
EOF
doenvd 99oxygen-gtk3
}

@ -0,0 +1,51 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.3.1.ebuild,v 1.1 2012/10/08 07:48:59 kensington Exp $
EAPI=4
MY_PN=${PN}2
MY_P=${MY_PN}-${PV}
inherit cmake-utils
DESCRIPTION="Official GTK+:2 port of KDE's Oxygen widget style"
HOMEPAGE="https://projects.kde.org/projects/playground/artwork/oxygen-gtk"
SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~x86"
SLOT="2"
IUSE="debug doc"
RDEPEND="
!x11-themes/oxygen-gtk:0
dev-libs/dbus-glib
dev-libs/glib
x11-libs/cairo
>=x11-libs/gtk+-2.24.2:2
x11-libs/libX11
x11-libs/pango
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
DOCS=(AUTHORS README TODO)
S="${WORKDIR}/${MY_P}"
src_install() {
if use doc; then
{ cd "${S}" && doxygen Doxyfile; } || die "Generating documentation failed"
HTML_DOCS=( "${S}/doc/html/" )
fi
cmake-utils_src_install
cat <<-EOF > 99oxygen-gtk2
CONFIG_PROTECT="${EPREFIX}/usr/share/themes/oxygen-gtk/gtk-2.0"
EOF
doenvd 99oxygen-gtk2
}
Loading…
Cancel
Save