Sync with portage [Fri Jun 7 22:38:00 MSK 2013].

mhiretskiy
root 11 years ago
parent 9bd123f1fb
commit 40a6b9f178

@ -1,12 +1,12 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/perlbox-voice/perlbox-voice-0.09-r1.ebuild,v 1.5 2009/04/01 18:42:21 williamh Exp $
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/perlbox-voice/perlbox-voice-0.09-r1.ebuild,v 1.6 2013/06/07 14:13:13 zlogene Exp $
IUSE=""
DESCRIPTION="A voice enabled application to bring your desktop under your command."
HOMEPAGE="http://perlbox.org/"
HOMEPAGE="http://perlbox.sourceforge.net/"
SRC_URI="mirror://sourceforge/perlbox/${P}.noarch.tgz"
LICENSE="GPL-2"

@ -2,8 +2,4 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>shell-tools</herd>
<maintainer>
<email>billie@gentoo.org</email>
<name>Daniel Pielmeier</name>
</maintainer>
</pkgmetadata>

@ -1,2 +1,3 @@
DIST cdrtools-3.00.tar.bz2 1978563 SHA256 7f9cb64820055573b880f77b2f16662a512518336ba95ab49228a1617973423d SHA512 93887afd6c244814b7f6a623f0ac5b551934626163065a6f32aefe82aa7438450fd7a42737ef3cdaad3f18841c066d25e72e37891531dd0be5be328692712cec WHIRLPOOL a02750131e4ec55df10387a01dab3881afee669cd8b8ea65eaed4fdd82e6bd11040c6d79fc64ccc9377e787f5903ec92ea3ae81db1945554b65a8636737cc931
DIST cdrtools-3.01a13.tar.bz2 2053012 SHA256 43d0a271f398851b1692b0a3f481c7238649090b4497752024a6d090816e09f5 SHA512 f5a33375be0002f6ec8d5fc77af8a1e5de65b67218139cd1064dbf2c7a8b3d0d0012c5e062e9976581b4684946a08ee0d4d980e83a38eadb8992003b7f343892 WHIRLPOOL 5ea0f786d839c7050b1820252ca8f638c65d322e35a04765dabb91c0a395de879f2fab1f60e0c7a1568eb5b8a63b7b890525333f17448fa428ad0f5f7bcc7e40
DIST cdrtools-3.01a15.tar.bz2 2058342 SHA256 3f07db935c489d30a07429ffa7bf3dd2ecf1853013979117492b7169ae01fa96 SHA512 a4bcc999ebfc2bbb95cf25881904f70e746cc21bcacba8afbfe9a35095d942dc71ad2d4757167c5ba09eff095bb64d4f88ae542e2b585e362b70b30e19e4c5bd WHIRLPOOL 324f68477c7e13109fb522f18bbdf93135ada21c46fb51f4abf474edcd65564b1592d5e6910204b1a3cbb024ad48d8a91b11242dcffc9312e017ca926eae0cff

@ -0,0 +1,156 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/cdrtools-3.01_alpha15.ebuild,v 1.1 2013/06/07 15:39:25 billie Exp $
EAPI=5
inherit fcaps multilib eutils toolchain-funcs flag-o-matic
MY_P="${P/_alpha/a}"
DESCRIPTION="A set of tools for CD/DVD reading and recording, including cdrecord"
HOMEPAGE="http://cdrecord.berlios.de/private/cdrecord.html"
SRC_URI="ftp://ftp.berlios.de/pub/cdrecord/$([[ -z ${PV/*_alpha*} ]] && echo 'alpha/')/${MY_P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1 CDDL-Schily"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="acl nls unicode"
RDEPEND="acl? ( virtual/acl )
nls? ( virtual/libintl )
!app-cdr/cdrkit"
DEPEND="${RDEPEND}
nls? ( >=sys-devel/gettext-0.18.1.1 )"
S=${WORKDIR}/${P/_alpha[0-9][0-9]}
FILECAPS=(
cap_sys_resource,cap_dac_override,cap_sys_admin,cap_sys_nice,cap_net_bind_service,cap_ipc_lock,cap_sys_rawio+ep usr/bin/cdrecord --
cap_dac_override,cap_sys_admin,cap_sys_nice,cap_net_bind_service,cap_sys_rawio+ep usr/bin/cdda2wav --
cap_dac_override,cap_sys_admin,cap_net_bind_service,cap_sys_rawio+ep usr/bin/readcd
)
src_prepare() {
# Remove profiled make files.
rm -f $(find . -name '*_p.mk') || die "rm profiled"
# Adjusting hardcoded paths.
sed -i -e 's:opt/schily:usr:' \
$(find ./ -type f -name \*.[0-9ch] -exec grep -l 'opt/schily' '{}' '+') \
|| die "sed opt/schily"
sed -i -e "s:\(^INSDIR=\t\tshare/doc/\):\1${PF}/:" \
$(find ./ -type f -exec grep -l 'INSDIR.\+doc' '{}' '+') \
|| die "sed doc"
# Respect libdir.
sed -i -e "s:\(^INSDIR=\t\t\)lib:\1$(get_libdir):" \
$(find ./ -type f -exec grep -l '^INSDIR.\+lib\(/siconv\)\?$' '{}' '+') \
|| die "sed multilib"
# Do not install static libraries.
sed -i -e 's:include\t\t.*rules.lib::' \
$(find ./ -type f -exec grep -l '^include.\+rules\.lib' '{}' '+') \
|| die "sed rules"
# Respect CC/CXX variables.
cd "${S}"/RULES
local tcCC=$(tc-getCC)
local tcCXX=$(tc-getCXX)
sed -i -e "/cc-config.sh/s|\$(C_ARCH:%64=%) \$(CCOM_DEF)|${tcCC} ${tcCC}|" \
rules1.top || die "sed rules1.top"
sed -i -e "/^\(CC\|DYNLD\|LDCC\|MKDEP\)/s|gcc|${tcCC}|" \
-e "/^\(CC++\|DYNLDC++\|LDCC++\|MKC++DEP\)/s|g++|${tcCXX}|" \
-e "/COPTOPT=/s/-O//" \
-e 's/$(GCCOPTOPT)//' \
cc-gcc.rul || die "sed cc-gcc.rul"
sed -i -e "s|^#CONFFLAGS +=\t-cc=\$(XCC_COM)$|CONFFLAGS +=\t-cc=${tcCC}|g" \
rules.cnf || die "sed rules.cnf"
# Create additional symlinks needed for some archs (armv4l already created)
local t
for t in armv4tl armv5l armv5tel armv6l armv7l ppc64 s390x; do
ln -s i586-linux-cc.rul ${t}-linux-cc.rul || die
ln -s i586-linux-gcc.rul ${t}-linux-gcc.rul || die
done
# Schily make setup.
cd "${S}"/DEFAULTS
local os="linux"
[[ ${CHOST} == *-darwin* ]] && os="mac-os10"
sed -i \
-e "s:/opt/schily:/usr:g" \
-e "s:/usr/src/linux/include::g" \
-e "s:bin:root:g" \
Defaults.${os} || die "sed Schily make setup"
}
# skip obsolete configure script
src_configure() { : ; }
src_compile() {
if use unicode; then
local flags="$(test-flags -finput-charset=ISO-8859-1 -fexec-charset=UTF-8)"
if [[ -n ${flags} ]]; then
append-flags ${flags}
else
ewarn "Your compiler does not support the options required to build"
ewarn "cdrtools with unicode in USE. unicode flag will be ignored."
fi
fi
if ! use filecaps; then
CFLAGS="${CFLAGS} -DNO_LINUX_CAPS"
fi
if ! use acl; then
CFLAGS="${CFLAGS} -DNO_ACL"
fi
# If not built with -j1, "sometimes" cdda2wav will not be built.
emake -j1 CC="$(tc-getCC)" CPPOPTX="${CPPFLAGS}" COPTX="${CFLAGS}" \
LDOPTX="${LDFLAGS}" \
INS_BASE="${ED}/usr" INS_RBASE="${ED}" LINKMODE="dynamic" \
RUNPATH="" GMAKE_NOWARN="true"
}
src_install() {
# If not built with -j1, "sometimes" manpages are not installed.
emake -j1 CC="$(tc-getCC)" CPPOPTX="${CPPFLAGS}" COPTX="${CFLAGS}" \
LDOPTX="${LDFLAGS}" \
INS_BASE="${ED}/usr" INS_RBASE="${ED}" LINKMODE="dynamic" \
RUNPATH="" GMAKE_NOWARN="true" install
# These symlinks are for compat with cdrkit.
dosym schily /usr/include/scsilib
dosym ../scg /usr/include/schily/scg
dodoc ABOUT Changelog* CONTRIBUTING PORTING README.linux-shm READMEs/README.linux
cd "${S}"/cdda2wav
docinto cdda2wav
dodoc Changelog FAQ Frontends HOWTOUSE NEEDED README THANKS TODO
cd "${S}"/mkisofs
docinto mkisofs
dodoc ChangeLog* TODO
# Remove man pages related to the build system
rm -rvf "${ED}"/usr/share/man/man5
}
pkg_postinst() {
fcaps_pkg_postinst
if [[ ${CHOST} == *-darwin* ]] ; then
einfo
einfo "Darwin/OS X use the following device names:"
einfo
einfo "CD burners: (probably) ./cdrecord dev=IOCompactDiscServices"
einfo
einfo "DVD burners: (probably) ./cdrecord dev=IODVDServices"
einfo
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/moe/moe-1.5.ebuild,v 1.3 2013/06/06 18:39:31 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/moe/moe-1.5.ebuild,v 1.4 2013/06/07 13:05:32 zlogene Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
DEPEND="sys-libs/ncurses"
RDEPEND="${DEPEND}"

@ -1,3 +1,2 @@
DIST libburn-1.2.4.tar.gz 917837 SHA256 f0598fa76d157a935b576778ab8cc772f96480894239da14be84986ef1313e4b SHA512 4d8c34bdb2c829931b2a8860580319f8e374d6ea04622e40d6b97fc2120dddcd0836d31011c7797508fce0e9e5a4bcd763332bb9d505058ce656e1118c85fe0e WHIRLPOOL ab175c6af51ab1cd1982e5b96480e3b6d17dcf6c70cd6fe3509cb0d440de81c30c5e88d9add269ebf6f4c031c814c56d299d3c125dcf6fdfae16b6ff974917f7
DIST libburn-1.2.8.tar.gz 926601 SHA256 5f33c8616c49950729133a4eb751b1bfe4a61943b59ea0a6e5968d475448845c SHA512 0fcab29201292a4a7341806281b550f36d3849268e5de25b9fe8d5e1610da457897eafdf2b7f2a2b9d3adb1258b5e072bdfd717675dea28ecab11d1f1c8951f1 WHIRLPOOL e07498fbd278bd930f842da01d1ebfe3eeca3f83ff2be4493716bbaf361a87bdfb19da883d887aecaa73920bca08717144853833807bff967ad104ee150f095b
DIST libburn-1.3.0.tar.gz 928091 SHA256 c0005515e25b960890d8ab6e3bcc0f6d0b258e164fad6c0aade996f1906e40ba SHA512 b81c7e78508f2622b0a6640c4bb6dbcbae91dea3536ff3f7c65e011ed863d36ded2d84d2b4812096fbf3b9b3a6fd25cf37bfd9785c9fb86d15cca0355a0bb819 WHIRLPOOL 81f1b1c313f999e5b32aa3826ec6e8dac43ebfdc60f6a1c93ac811e49ae173f8a7bfd54ba587e4f1ac195be7ba7364ec12c3876f1f4e5d2a986204c70b6061ae
DIST libburn-1.3.0.pl01.tar.gz 929085 SHA256 c90c566f7a54f3de0f3ed5ddc6a5b897245ac6e6ec6c0be752feb7ec6001e17c SHA512 7f328e21ac90653e5e8a72f4c3f68f70dec878004811ebd430ed5cec571e7630c9e39e5e331ad8b4d8ad0a2a97dbadb5e6b654b2736359dd040815b2f2b3b229 WHIRLPOOL a95a311a408f2c08a755ddf049f5094b858aee3b6dcd7093dc5474649d28d3ce5dd6aa18763e3488d918059186eebed60f94124ec83ce5f206b3d15a87e2f92d

@ -1,41 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.2.4.ebuild,v 1.9 2013/01/06 09:23:11 ago Exp $
EAPI=4
DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs."
HOMEPAGE="http://libburnia-project.org"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE="cdio debug static-libs track-src-odirect"
RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )"
DEPEND="$RDEPEND
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable track-src-odirect) \
$(use_enable cdio libcdio) \
--disable-ldconfig-at-install \
$(use_enable debug)
}
src_install() {
default
dodoc CONTRIBUTORS doc/{comments,*.txt}
cd "${S}"/cdrskin
docinto cdrskin
dodoc *.txt README
docinto cdrskin/html
dohtml cdrskin_eng.html
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}

@ -1,12 +1,16 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.3.0.ebuild,v 1.1 2013/05/18 08:11:05 billie Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libburn/libburn-1.3.0_p01.ebuild,v 1.1 2013/06/07 15:23:13 billie Exp $
EAPI=5
MY_PL=01
[[ ${PV/_p} != ${PV} ]] && MY_PL=${PV#*_p}
MY_PV="${PV%_p*}.pl${MY_PL}"
DESCRIPTION="Libburn is an open-source library for reading, mastering and writing optical discs."
HOMEPAGE="http://libburnia-project.org"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
SRC_URI="http://files.libburnia-project.org/releases/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
@ -17,6 +21,8 @@ RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )"
DEPEND="$RDEPEND
virtual/pkgconfig"
S=${WORKDIR}/${P%_p*}
src_configure() {
econf \
$(use_enable static-libs static) \

@ -1,59 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisoburn/libisoburn-1.2.8-r1.ebuild,v 1.2 2013/04/21 13:48:13 maekke Exp $
EAPI=5
DESCRIPTION="Enables creation and expansion of ISO-9660 filesystems on all CD/DVD media supported by libburn"
HOMEPAGE="http://libburnia-project.org/"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2 GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
IUSE="acl cdio debug external-filters external-filters-setuid frontend-optional launch-frontend launch-frontend-setuid readline static-libs xattr zlib"
REQUIRED_USE="frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )"
RDEPEND=">=dev-libs/libburn-1.2.8
>=dev-libs/libisofs-1.2.8
readline? ( sys-libs/readline )
acl? ( virtual/acl )
xattr? ( sys-apps/attr )
zlib? ( sys-libs/zlib )
cdio? ( >=dev-libs/libcdio-0.83 )
launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 )
launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 )
frontend-optional? ( dev-tcltk/bwidget )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable readline libreadline) \
$(use_enable acl libacl) \
$(use_enable xattr) \
$(use_enable zlib) \
--disable-libjte \
$(use_enable cdio libcdio) \
$(use_enable external-filters) \
$(use_enable external-filters-setuid) \
$(use_enable launch-frontend) \
$(use_enable launch-frontend-setuid) \
--disable-ldconfig-at-install \
--enable-pkg-check-modules \
$(use_enable debug)
}
src_install() {
default
dodoc CONTRIBUTORS doc/{comments,*.wiki,startup_file.txt}
cd "${S}"/xorriso
docinto xorriso
dodoc changelog.txt README_gnu_xorriso
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}

@ -1,3 +1,2 @@
DIST libisofs-1.2.4.tar.gz 763300 SHA256 d0875e51f229c5e34491dce58f3cdddf8c98fadeae9e84b62b27cff7800a967f SHA512 4ebdab4b1d7c2b4b8ffd5431e27e765a405db14117f55a0c749ffa30ca705529f692762959b6e136bee78924524dd38fdbadbd722be1bd11be10ec23d928ab26 WHIRLPOOL 056f4176a84145eacd654648d7df122da843db4f66e76bb54ef579995718ead240bf3abe512fe405f6535245014bb92dec9a101c56a4849928f908afe1ce618b
DIST libisofs-1.2.8.tar.gz 764335 SHA256 665f07752d416d05bc780ff12cccc438b9b0a9917b943750f2b3236ddeac65a0 SHA512 707a220fe49ff5ecd6816ac69d614823a3fa38e79d29c03f0bf696551cdeb6489b0f251ec7532fe79887cddb31183e5233862ce0b859fde46092588fd4313a38 WHIRLPOOL 81082eca7f73d8efac457138320f9a0bc8c5a4f42e4b252ee11b86f6e14bdc5f6dffc8508a1311ea258bb1975fdabd72e9952e9379f4aa75fd69028754d69a44
DIST libisofs-1.3.0.tar.gz 768516 SHA256 6a4b84b9faf3c017725ee8edf4461a0dc325d25a272f884244dea94b19191f91 SHA512 1033038cf4a88bc701562a6b386a50925189f2780c6abfdbac78635f3855db18b6de6bbc6e5744a804c5bb84814175dc079e64572db713bec4939c6767b7597e WHIRLPOOL 67d2d5a3f5be6a8da2994dde4b45f6ad890b917110bbe896910b19619316e4f531e6a1a0e09340e63fd59c5950218b1c312d5f8395221519f55ebeaf92891472

@ -1,40 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libisofs/libisofs-1.2.4.ebuild,v 1.9 2013/01/06 09:24:12 ago Exp $
EAPI=4
DESCRIPTION="libisofs is an open-source library for reading, mastering and writing optical discs."
HOMEPAGE="http://libburnia-project.org/"
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE="acl debug static-libs verbose-debug xattr zlib"
RDEPEND="acl? ( virtual/acl )
xattr? ( sys-apps/attr )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable debug) \
$(use_enable verbose-debug) \
$(use_enable acl libacl) \
$(use_enable xattr) \
$(use_enable zlib) \
--disable-libjte \
--disable-ldconfig-at-install
}
src_install() {
default
dodoc Roadmap doc/{checksums.txt,susp_aaip*,Tutorial,zisofs_format.txt}
find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed"
}

@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/eventlet/eventlet-0.12.1-r1.ebuild,v 1.1 2013/02/12 12:22:20 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/eventlet/eventlet-0.12.1-r1.ebuild,v 1.2 2013/06/07 13:36:41 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
@ -17,8 +17,8 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples test"
RDEPEND="dev-python/greenlet"
DEPEND="doc? ( dev-python/sphinx )
RDEPEND="dev-python/greenlet[${PYTHON_USEDEP}]"
DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( ${RDEPEND}
dev-python/nose[${PYTHON_USEDEP}] )"
@ -39,10 +39,6 @@ python_test() {
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/html/. )
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
if use examples; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}

@ -1,44 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/eventlet/eventlet-0.12.1.ebuild,v 1.1 2013/01/26 05:22:00 prometheanfire Exp $
EAPI=3
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Highly concurrent networking library"
HOMEPAGE="http://pypi.python.org/pypi/eventlet"
SRC_URI="mirror://pypi/e/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples test"
DEPEND="doc? ( dev-python/sphinx )
test? ( dev-python/greenlet )"
RDEPEND="dev-python/greenlet"
src_compile() {
distutils_src_compile
if use doc ; then
emake -C doc html || die
fi
}
src_install() {
distutils_src_install
use doc && dohtml -r doc/_build/html/*
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples || die
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-0.9.6.ebuild,v 1.1 2012/05/16 15:42:54 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-0.9.6.ebuild,v 1.3 2013/06/07 15:30:53 idella4 Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"

@ -0,0 +1,52 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-1.0.3-r1.ebuild,v 1.1 2013/06/07 15:17:52 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy2_0)
inherit distutils-r1
DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing."
HOMEPAGE="http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
RDEPEND=""
DISTUTILS_IN_SOURCE_BUILD=1
python_prepare_all() {
find -name "._*" -print0 | xargs -0 rm -f
distutils-r1_python_prepare_all
}
python_compile_all() {
use doc && emake -C docs html
}
python_compile() {
if ! use test; then
pushd $"{BUILD_DIR}"/lib > /dev/null
rm -rf ${PN}/tests/ || die
fi
distutils-r1_python_compile
}
python_test() {
if [[ "${EPYTHON}" == python3* ]]; then
pushd $"{BUILD_DIR}"../ > /dev/null
2to3 --no-diffs build/lib/${PN}/tests
fi
nosetests -w build/lib/${PN}/tests || die
rm -rf build/lib/${PN}/tests/ || die
}
python_install_all() {
use doc && local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}

@ -1,60 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/fudge-1.0.3.ebuild,v 1.1 2011/03/22 22:33:49 arfrever Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing."
HOMEPAGE="http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="doc? ( dev-python/sphinx )"
RDEPEND=""
src_prepare() {
distutils_src_prepare
find -name "._*" -print0 | xargs -0 rm -f
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
pushd docs > /dev/null
emake html || die "Generation of documentation failed"
popd > /dev/null
fi
}
src_test() {
testing() {
nosetests build-${PYTHON_ABI}/lib
}
python_execute_function testing
}
src_install() {
distutils_src_install
delete_tests() {
rm -fr "${ED}$(python_get_sitedir)/fudge/tests"
}
python_execute_function -q delete_tests
if use doc; then
pushd docs/_build/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static || die "Installation of documentation failed"
popd > /dev/null
fi
}

@ -0,0 +1 @@
DIST bbe-0.2.2.tar.gz 211590 SHA256 baaeaf5775a6d9bceb594ea100c8f45a677a0a7d07529fa573ba0842226edddb SHA512 6ac31aa005f18cbfd3fbacfe86b3d81ee61a027764296f574c4180da6ccc23dbf716a835fb013730d30c09c045197a70e28584303f3521afab0e5c63d0cf693f WHIRLPOOL f9c124a08b2458cc4368bdc7153da986c4ebf27b26ecfc3d356677f927bf3fac499c93265a6f2c74daf96c2c88efa7038eb2dca80627c8ce39cd8060a9222d4a

@ -0,0 +1,25 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/bbe/bbe-0.2.2.ebuild,v 1.1 2013/06/07 15:57:09 billie Exp $
EAPI=5
inherit autotools
DESCRIPTION="Sed-like editor for binary files."
HOMEPAGE="http://sourceforge.net/projects/bbe-/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
src_prepare() {
sed -i -e '/^htmldir/d' doc/Makefile.am || die
eautoreconf
}
src_configure() {
econf --htmldir=/usr/share/doc/${PF}/html
}

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>games</herd>
<maintainer>
<email>billie@gentoo.org</email>
<name>Daniel Pielmeier</name>
</maintainer>
</pkgmetadata>

@ -1,4 +1,4 @@
DIST mercurial-2.4.2.tar.gz 3613392 SHA256 cc21083d7eab4caa8159b941e36c7229acbb6d41a26a7bed21a771b3f63dedf3 SHA512 642dbcc9de6662e563059cafadbd4a0f1b4d6cebad48b2bfc7160571fad950a0110456be52690f1aeef6b91a4f6ac1edf6fc3607d1f590337a60c4b2bcab4625 WHIRLPOOL 64b7f5d620ed132849318e270bc97a0bed99f8be16d1c65da0a38dab47cf3f20bbe0f6b1b9ab145ca6df70c48ba70814df5c0c6c8fa07b271fcda251bb7c9ddf
DIST mercurial-2.5.4.tar.gz 3673850 SHA256 c86fe9feb9aaada286fa297d9d68d1b16e2f842b8bd645826c81bc705a629d5a SHA512 928fdeaaf0eaec80adbd8765521de9666ab56aaa2101fb9ab2cb392d8b29475d3b052d89652ff9b67522cfcc6cd958717ac715f51b0573ee088e9a595f29afe2 WHIRLPOOL d90a0c6a8752442ad2f7e524a4b07910538aa9d910ae4889196eb41cdcc903dbfb3f17d18f54a788fcf8232e154852566503d652a3904b4b307242a7d306ce80
DIST mercurial-2.6.1.tar.gz 3728067 SHA256 b6413aa339fd91a86288df7cf4f9db9bf3443b1ff55e8118530fdb9e8c788e64 SHA512 2ebc2608ca991d99e729d2ff22fc8b61811e709a855f051a0e1b611d21a1eddc3d6e46b7a8886d4bc476d0c0218ed768a4a42d820b6fa138e4f3d3538857cc59 WHIRLPOOL 1846d6a0e9c9d8d7db13d84f947a901569385d9664c3d51465c99d6539f9a15e45ae3886937d98d9b6fa5775003e87ec10d1b348f47f754d3535cd5a336a42d3
DIST mercurial-2.6.tar.gz 3726957 SHA256 5da022bd8114c498fbeb249f7f670a1b3e381e57225419b50f941b65444da1c1 SHA512 bbe8691d629905e73affb3b1208901ecbd0d4a6e4a4765a5a37588bde026b66a09f1060cfdf49b1470c1fc226be091036adc249bbd7a6e45e76f9eed0b6821b5 WHIRLPOOL 01c7088f67936048ad13115ecd5df8c23c271988e3f4c2102c56b5d9aebfd139242cfbe145cbc3f038f26c1e07a99d6641528c29eff7b40f446ab5e990ca3baa
DIST mercurial-2.6.2.tar.gz 3740489 SHA256 55b4a0e20e21ebd7a4341c828d2ec4ba72ba77d61b424e937a7f77c385220e3d SHA512 88aa79cb523b77beef0d637159abe096abd590f3193c65294eb8850cbfd355bf21784bb0e39338ce239d161d91be08ac7efb2cb3560f7b3cc83ade6e64a9c1b1 WHIRLPOOL 2a58ff31546cd32ebca207ad54656aa7d6b49a3caaeacd54abe5c774ad3b3fc31810c2ab4b8dd30bd3e5cc3e8613984cc209f7a6564cc4ef66a01002b2ddc119

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.6.ebuild,v 1.1 2013/05/03 07:26:46 djc Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.6.2.ebuild,v 1.1 2013/06/07 13:45:33 polynomial-c Exp $
EAPI=5

@ -1,3 +1,2 @@
DIST tortoisehg-2.7.1.tar.gz 8954742 SHA256 d279432f612b2fe9790a4601119aaf50024bf2372cad2df76b9aea24c1c843c6 SHA512 d3787be0815df054fdde65e4c9077fd9abf5862a7ea5f3e8641435d2beea3422ecd6c48657decbfd95427e48cc49125882edab09d6719db896b2ccb8440b9140 WHIRLPOOL 60e65fc217f2b1dd51e247f8c2c33a5427b458b833565bc6b6ee27d9afd3d1ad54c5e405436a4c3d587d8972dd38d5bc1beaeaeb0fb9c91f5cf85bcf244f3115
DIST tortoisehg-2.7.2.tar.gz 8971703 SHA256 21da4ea31d3a376a53f98ead49dceb4c68179327fd740522021a1ff7edad1b1d SHA512 677a3bfd1d98a8e0860d0d84abc223db9337141a7891125b564c69354e18838a4e5cd9fe92ff39d244706cdce3c9d0b23550416afb66f730a6a338e02fee2a96 WHIRLPOOL ee58ddf1bcb7dc83e50027545f672db5c51bde02ca0c4724508e53caaf5e865501b835229daaeb2c1571233eb5a061aa93df71029caf1bd36e7a07fc25821773
DIST tortoisehg-2.8.tar.gz 8978628 SHA256 473aba6d925f91a8461166bcfd5e21a28d05ce810f96cefb4184bd2cbb388fde SHA512 979641268c743816a73bd748ed396f38a8bee0ff6fe64d9dc1a0c31a41b99f71491712932355ee87d1a5be9e27e2cf59c0c0ac3fc318614b4e6c48413334107c WHIRLPOOL 0f30a421ef208a12c2eef22a8ba3e06a8d5c9f7b855f6d0971c59e028c5928b978c3cbbd8219587ef0dbf94892ce8de55d0ecb0933eeabbb42b21b04350bf900
DIST tortoisehg-2.8.1.tar.gz 9001245 SHA256 7c3d67b66ade0f6f845b446279cb0d15d44e66ae4e390f7a9ebfa23e844a5828 SHA512 ca4d15e36f42f871c8a739d721b19040a2bf73e814ee4b1d3bed932db89a5dd407fd5ae1cf1b67e99361eb804c6d428cd261944ac72950a55c56c1f6fa7c59b9 WHIRLPOOL c6afb0babb644e862fe3e3d6427a144f677cfa64f867e7572ae55d16c00c961408ea7ab7893691a02ef3fce3c172bf2e9ee68e8a43b612a16daf6f2cdfd66035

@ -1,79 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.7.1-r1.ebuild,v 1.1 2013/03/16 21:58:48 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
inherit distutils-r1 eutils
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://bitbucket/${PN}/targz/downloads/${P}.tar.gz"
HG_DEPEND=">=dev-vcs/mercurial-2.4 <dev-vcs/mercurial-2.6"
else
inherit mercurial
EHG_REPO_URI="https://bitbucket.org/tortoisehg/thg"
EHG_REVISION="stable"
KEYWORDS=""
SRC_URI=""
HG_DEPEND="dev-vcs/mercurial"
fi
DESCRIPTION="Set of graphical tools for Mercurial"
HOMEPAGE="http://tortoisehg.bitbucket.org"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
RDEPEND="${HG_DEPEND}
dev-python/iniparse[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
dev-python/PyQt4[svg,${PYTHON_USEDEP}]
dev-python/qscintilla-python"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.0.3 )"
# Workaround race condition in build_qt
DISTUTILS_IN_SOURCE_BUILD=1
PATCHES=( "${FILESDIR}/${PV}-qtversion.patch" )
python_prepare_all() {
if [[ ${LINGUAS+set} ]]; then
cd i18n/tortoisehg || die
local x y keep
for x in *.po; do
keep=false
for y in ${LINGUAS}; do
if [[ ${y} == ${x%.po}* ]]; then
keep=true
break
fi
done
${keep} || rm "${x}" || die
done
cd "${S}" || die
fi
distutils-r1_python_prepare_all
}
python_compile_all() {
use doc && emake -C doc html
}
python_install_all() {
distutils-r1_python_install_all
dodoc doc/ReadMe*.txt doc/TODO contrib/mergetools.rc
if use doc ; then
dohtml -r doc/build/html/
fi
newicon -s scalable icons/scalable/apps/thg-logo.svg thg_logo.svg
domenu contrib/${PN}.desktop
}
pkg_postinst() {
elog "When startup of ${PN} fails with an API version mismatch error"
elog "between dev-python/sip and dev-python/PyQt4 please rebuild"
elog "dev-python/qscintilla-python."
}

@ -1,78 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.7.1.ebuild,v 1.1 2013/03/08 13:01:37 polynomial-c Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
inherit distutils-r1 eutils
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://bitbucket/${PN}/targz/downloads/${P}.tar.gz"
HG_DEPEND=">=dev-vcs/mercurial-2.4 <dev-vcs/mercurial-2.6"
else
inherit mercurial
EHG_REPO_URI="https://bitbucket.org/tortoisehg/thg"
EHG_REVISION="stable"
KEYWORDS=""
SRC_URI=""
HG_DEPEND="dev-vcs/mercurial"
fi
DESCRIPTION="Set of graphical tools for Mercurial"
HOMEPAGE="http://tortoisehg.bitbucket.org"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
RDEPEND="${HG_DEPEND}
dev-python/iniparse[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
dev-python/PyQt4[svg,${PYTHON_USEDEP}]
dev-python/qscintilla-python"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.0.3 )"
# Workaround race condition in build_qt
DISTUTILS_IN_SOURCE_BUILD=1
python_prepare_all() {
if [[ ${LINGUAS+set} ]]; then
cd i18n/tortoisehg || die
local x y keep
for x in *.po; do
keep=false
for y in ${LINGUAS}; do
if [[ ${y} == ${x%.po}* ]]; then
keep=true
break
fi
done
${keep} || rm "${x}" || die
done
cd "${S}" || die
fi
distutils-r1_python_prepare_all
}
python_compile_all() {
use doc && emake -C doc html
}
python_install_all() {
distutils-r1_python_install_all
dodoc doc/ReadMe*.txt doc/TODO contrib/mergetools.rc
if use doc ; then
dohtml -r doc/build/html/
fi
newicon -s scalable icons/scalable/apps/thg-logo.svg thg_logo.svg
domenu contrib/${PN}.desktop
}
pkg_postinst() {
elog "When startup of ${PN} fails with an API version mismatch error"
elog "between dev-python/sip and dev-python/PyQt4 please rebuild"
elog "dev-python/qscintilla-python."
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.8.ebuild,v 1.2 2013/05/23 13:48:59 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-2.8.1.ebuild,v 1.1 2013/06/07 13:46:17 polynomial-c Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )

@ -1 +0,0 @@
DIST cdr-1.8.tar.gz 44115 RMD160 a47cb2fc43b939f5d44ee3004527e543a14795fe SHA1 5b0f0e0a52ef7c6b1453e8815cb28cc963fa48dd SHA256 9cb9c74baf5238edff3ce6f569603523c76666c6f646539e0e3f31f85fa8cc10

@ -1,11 +0,0 @@
--- src/Makefile.orig 2003-08-14 01:09:20.989215312 -0400
+++ src/Makefile 2003-08-14 01:09:36.660832864 -0400
@@ -25,7 +25,7 @@
OBJECTS = cdr.o cfg.o
LIBS = -lpthread
-CFLAGS = -g -fPIC -Wall -O2 -fomit-frame-pointer \
+CFLAGS = -fPIC -Wall $(OPTFLAGS) \
-D_REENTRANT -DVERSION=$(VERSION) -DBUILD=$(BUILD)

@ -1,23 +0,0 @@
--- src/Makefile.old 2010-10-18 14:44:19.000000000 +0200
+++ src/Makefile 2010-10-18 14:45:05.000000000 +0200
@@ -34,7 +34,7 @@
plugin: $(OBJECTS)
rm -f $(PLUGIN)
- $(CC) -shared -Wl,-soname,$(PLUGIN) $(CFLAGS) $(OBJECTS) -o $(PLUGIN) $(LIBS)
+ $(CC) $(LDFLAGS) -shared -Wl,-soname,$(PLUGIN) $(CFLAGS) $(OBJECTS) -o $(PLUGIN) $(LIBS)
cfg:
--- src/cfg-gtk2/Makefile.old 2010-10-18 14:45:38.000000000 +0200
+++ src/cfg-gtk2/Makefile 2010-10-18 14:46:06.000000000 +0200
@@ -12,8 +12,7 @@
cfg: ${CFG_OBJECTS}
${RM} ${CFG}
- ${CC} `pkg-config --cflags --libs gtk+-2.0` ${CFLAGS} ${CFG_OBJECTS} -o ${CFG} ${LIBS}
- ${STRIP} ${CFG}
+ ${CC} $(LDFLAGS) ${CFLAGS} ${CFG_OBJECTS} -o ${CFG} ${LIBS}
clean:
${RM} *.o ${CFG}

@ -1,39 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-cdr/psemu-cdr-1.8.ebuild,v 1.13 2012/05/04 04:38:40 jdhore Exp $
EAPI=2
inherit eutils games
DESCRIPTION="PSEmu plugin to read from CD-ROM"
HOMEPAGE="http://www.pcsx.net/"
SRC_URI="http://linuzappz.pcsx.net/downloads/cdr-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
RDEPEND="x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}
PATCHES=( "${FILESDIR}"/${PV}-makefile-cflags.patch
"${FILESDIR}"/${P}-ldflags.patch )
src_compile() {
emake -C src OPTFLAGS="${CFLAGS}" GUI="gtk+2" || die "emake failed"
}
src_install() {
exeinto "$(games_get_libdir)"/psemu/plugins
doexe src/libcdr-* || die "doexe failed (1)"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe src/cfg-gtk*/cfgCdr || die "doexe failed(2)"
insinto "$(games_get_libdir)"/psemu/cfg
doins cdr.cfg || die "doins failed"
dodoc ReadMe.txt
prepgamesdirs
}

@ -1 +0,0 @@
DIST cdriso-1.4.tgz 130168 RMD160 452bc53c9edc60d151e492153ddd948e1e7315d0 SHA1 5d132456fad1d253a8d44f93ad26c0e48b67b050 SHA256 dfe5d8715a7a62127d2075be5d466d1aa462b06bf63775f6e0602e971f20b151

@ -1,11 +0,0 @@
--- cdriso/src/Linux/Makefile.orig 2003-08-14 01:26:32.970330336 -0400
+++ cdriso/src/Linux/Makefile 2003-08-14 01:26:44.489579144 -0400
@@ -6,7 +6,7 @@
BUILD = 4
PLUGIN = libcdriso-${VERSION}.${BUILD}.so
CFG = cfgCdrIso
-CFLAGS = -fPIC -Wall -O2 -fomit-frame-pointer -I.. -I. -D__LINUX__
+CFLAGS = -fPIC -Wall $(OPTFLAGS) -I.. -I. -D__LINUX__
OBJECTS = ../cdriso.o Config.o Linux.o
CFGOBJS = conf.o interface.o support.o Config.o
LIBS = -lz -lbz2

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

@ -1,42 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-cdriso/psemu-cdriso-1.4.ebuild,v 1.12 2012/05/04 04:38:39 jdhore Exp $
inherit eutils games
DESCRIPTION="PSEmu plugin to read CD-images"
HOMEPAGE="http://www.pcsx.net/"
SRC_URI="http://linuzappz.pcsx.net/downloads/cdriso-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
RDEPEND="=x11-libs/gtk+-1.2*"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/cdriso
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PV}-makefile-cflags.patch
cd "${S}"
sed -i '/strip/d' src/Linux/Makefile || die "sed failed"
}
src_compile() {
cd src/Linux
emake OPTFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dodoc ReadMe.txt
cd src/Linux
exeinto "$(games_get_libdir)"/psemu/plugins
doexe libcdriso-* || die "doexe failed"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe cfgCdrIso || die "doexe failed"
prepgamesdirs
}

@ -1 +0,0 @@
DIST spuEternal141_linux.tgz 150260 RMD160 bd1ee64368e828928b55afd56db977047167656d SHA1 4a266cf0a148b9feeb878653af950cfd4c2ecfa8 SHA256 45fe27cce75b3b38cb399cc60acdc8802b59ee970dffac9e4ac39ff9db55aec5

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

@ -1,27 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-eternalspu/psemu-eternalspu-1.41-r2.ebuild,v 1.4 2007/04/09 16:52:47 nyhm Exp $
inherit games
DESCRIPTION="PSEmu Eternal SPU"
HOMEPAGE="http://www1.odn.ne.jp/psx-alternative/"
SRC_URI="http://www1.odn.ne.jp/psx-alternative/download/spuEternal${PV//.}_linux.tgz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RESTRICT="strip"
RDEPEND="x11-libs/libXext
sys-libs/lib-compat"
S=${WORKDIR}
src_install() {
exeinto "$(games_get_libdir)"/psemu/plugins
doexe libspuEternal.so.* || die "doexe failed"
dodoc *.txt
prepgamesdirs
}

@ -1 +0,0 @@
DIST padJoy082.tgz 48399 RMD160 52d4968ea69e6eace5a54904e7d8cb6fcf2bc9d8 SHA1 5226c17b2bc0fe9a02862fa5ba4b0f78408c311d SHA256 a8baecaf0ce7bf7493337e1ce25d0952383dfd55471e58225245f886bd3cd47f

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

@ -1,35 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-padjoy/psemu-padjoy-0.82.ebuild,v 1.7 2007/04/09 17:00:56 nyhm Exp $
inherit games
DESCRIPTION="PSEmu plugin to use joysticks/gamepads in PSX-emulators"
HOMEPAGE="http://www.ammoq.com/"
SRC_URI="http://members.chello.at/erich.kitzmueller/ammoq/padJoy${PV//.}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND="=x11-libs/gtk+-1*"
S=${WORKDIR}/padJoy/src
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:-O2 -fomit-frame-pointer:${CFLAGS}:" Makefile \
|| die "sed failed"
}
src_install() {
exeinto "$(games_get_libdir)"/psemu/plugins
doexe libpadJoy-* || die "doexe failed"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe cfgPadJoy || die "doexe cfgPadJoy failed"
dodoc ../readme.txt
prepgamesdirs
}

@ -1 +0,0 @@
DIST padXwin-1.6.tgz 25364 RMD160 46487dbde413c66cb32bb06364f851eeea081019 SHA1 3c8aca65bf63f54c99ccf4dc7d06321efadf36be SHA256 714b7735a833aa9a4d349ba298ee864ddf97a45706a988d3fc70c586ac7e50d4

@ -1,20 +0,0 @@
--- src/Makefile.orig 2002-09-22 12:47:57.000000000 -0400
+++ src/Makefile 2003-08-14 01:38:09.610424944 -0400
@@ -3,7 +3,7 @@
BUILD = 6
PLUGIN = libpadXwin-${VERSION}.${BUILD}.so
CFG = cfgPadXwin
-CFLAGS = -fPIC -Wall -O2 -fomit-frame-pointer
+CFLAGS = -fPIC -Wall $(OPTFLAGS)
OBJECTS = pad.o
CFGOBJS = conf.o interface.o support.o
LIBS = -lX11
@@ -14,7 +14,7 @@
plugin: ${OBJECTS}
rm -f ${PLUGIN}
- gcc -shared -Wl,-soname,${PLUGIN} ${CFLAGS} ${OBJECTS} -o ${PLUGIN} ${LIBS}
+ gcc -shared -Wl,-soname,${PLUGIN} ${CFLAGS} ${OBJECTS} -o ${PLUGIN} ${LIBS} ${CFGLIBS}
strip --strip-unneeded --strip-debug ${PLUGIN}
cfg: ${CFGOBJS}

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

@ -1,39 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-padxwin/psemu-padxwin-1.6.ebuild,v 1.8 2007/04/09 17:02:28 nyhm Exp $
inherit eutils games
DESCRIPTION="PSEmu plugin to use the keyboard as a gamepad"
HOMEPAGE="http://www.pcsx.net/"
SRC_URI="http://linuzappz.pcsx.net/downloads/padXwin-${PV}.tgz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
DEPEND="=x11-libs/gtk+-1.2*"
S=${WORKDIR}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PV}-makefile-cflags.patch
sed -i '/strip/d' src/Makefile || die "sed failed"
}
src_compile() {
cd src
emake OPTFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dodoc ReadMe.txt
cd src
exeinto "$(games_get_libdir)"/psemu/plugins
doexe libpadXwin-* || die "doexe failed"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe cfgPadXwin || die "doexe failed"
prepgamesdirs
}

@ -1 +0,0 @@
DIST PeopsSoftGpu117.tar.gz 680025 RMD160 65fe7573125d62cab549e79b6ecba1d7ea6198e5 SHA1 47dae549895bd7dcaf5663ebad6258718463e9ee SHA256 eb41ca05bddfc81d6c42d978f1242da95b2c7d76ebe2c9b790100296108e5427

@ -1,24 +0,0 @@
Make sure we can compile when video mode switching has been disabled.
http://bugs.gentoo.org/show_bug.cgi?id=87716
By Wormo <@gentoo.org>
--- src/draw.c
+++ src/draw.c
@@ -3847,6 +3847,7 @@
}
#endif
+#ifdef USE_XF86VM
// Selects the mode with the highest vertical refresh frequency
// from all modes with resolution iResX and iResY.
// Returns -1 if no mode is found.
@@ -3871,6 +3872,7 @@
}
return bestmode;
}
+#endif
// Create display

@ -1,84 +0,0 @@
diff -ur src-orig/draw.c src/draw.c
--- src-orig/draw.c 2006-01-06 03:19:55.000000000 -0500
+++ src/draw.c 2006-01-06 03:20:33.000000000 -0500
@@ -4400,6 +4400,7 @@
#ifdef USE_XF86VM
+#undef BOOL
#include <X11/extensions/xf86vmode.h>
static XF86VidModeModeInfo **modes=0;
static int iOldMode=0;
@@ -5705,7 +5706,13 @@
#else
pDstR=(unsigned long *)(pDst-(ddx+dga2Fix));
#endif
- for(x=0;x<ddx2;x++) *((unsigned long*)pDst)++=*pDstR++;
+ for(x=0;x<ddx2;x++)
+ {
+ *((unsigned long*)pDst) = *pDstR;
+ pDst += sizeof (unsigned long);
+ pDstR += sizeof (unsigned long);
+ }
+
}
else
{
Only in src-orig/: draw.c.orig
diff -ur src-orig/gpu.h src/gpu.h
--- src-orig/gpu.h 2006-01-06 03:19:55.000000000 -0500
+++ src/gpu.h 2006-01-06 03:19:33.000000000 -0500
@@ -63,4 +63,4 @@
/////////////////////////////////////////////////////////////////////////////
-#endif // _GPU_INTERNALS_H
\ No newline at end of file
+#endif // _GPU_INTERNALS_H
diff -ur src-orig/menu.h src/menu.h
--- src-orig/menu.h 2006-01-06 03:19:55.000000000 -0500
+++ src/menu.h 2006-01-06 03:19:33.000000000 -0500
@@ -33,4 +33,4 @@
void BuildDispMenu(int iInc);
void SwitchDispMenu(int iStep);
-#endif // _GPU_MENU_H_
\ No newline at end of file
+#endif // _GPU_MENU_H_
diff -ur src-orig/prim.c src/prim.c
--- src-orig/prim.c 2006-01-06 03:19:55.000000000 -0500
+++ src/prim.c 2006-01-06 03:19:33.000000000 -0500
@@ -269,10 +269,12 @@
// x -466 1023 180 1023
// y 20 -228 222 -100
-
+
+/*
// 0 __1
// \ / \
// 2___3
+*/
__inline BOOL CheckCoord4()
{
diff -ur src-orig/prim.h src/prim.h
--- src-orig/prim.h 2006-01-06 03:19:55.000000000 -0500
+++ src/prim.h 2006-01-06 03:19:33.000000000 -0500
@@ -30,4 +30,4 @@
void UploadScreen (long Position);
void PrepareFullScreenUpload (long Position);
-#endif // _PRIMDRAW_H_
\ No newline at end of file
+#endif // _PRIMDRAW_H_
diff -ur src-orig/psemu.h src/psemu.h
--- src-orig/psemu.h 2006-01-06 03:19:55.000000000 -0500
+++ src/psemu.h 2006-01-06 03:19:33.000000000 -0500
@@ -33,4 +33,4 @@
#define PSE_LT_SPU 4
-#endif // _PSEMU_PLUGIN_DEFS_H
\ No newline at end of file
+#endif // _PSEMU_PLUGIN_DEFS_H

@ -1,13 +0,0 @@
--- src/makes/plg.mk
+++ src/makes/plg.mk
@@ -4,1 +4,1 @@
-CFLAGS = -g -Wall -fPIC -O4 -fomit-frame-pointer -ffast-math $(INCLUDE)
+CFLAGS = -Wall -fPIC $(OPTFLAGS) $(INCLUDE)
--- src/makes/mk.fpse
+++ src/makes/mk.fpse
@@ -7,1 +7,1 @@
-INCLUDE += -I./fpse `gtk-config --cflags`
+INCLUDE += -I./fpse `gtk-config --cflags` `sdl-config --cflags`
@@ -10,1 +10,1 @@
-LIBS += -lSDL
+LIBS += `sdl-config --libs`

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

@ -1,78 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-peopssoftgpu/psemu-peopssoftgpu-1.17.ebuild,v 1.9 2012/05/04 04:38:38 jdhore Exp $
inherit eutils games
DESCRIPTION="P.E.Op.S Software GPU plugin"
HOMEPAGE="http://sourceforge.net/projects/peops/"
SRC_URI="mirror://sourceforge/peops/PeopsSoftGpu${PV//./}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="sdl"
RDEPEND="=x11-libs/gtk+-1*
x11-libs/libXxf86vm
sdl? ( media-libs/libsdl )"
DEPEND="${RDEPEND}
virtual/pkgconfig
x86? ( dev-lang/nasm )
x11-proto/xf86dgaproto
x11-proto/xf86vidmodeproto"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd "${S}"
edos2unix src/makes/mk.fpse
epatch \
"${FILESDIR}"/${P}-makefile-cflags.patch \
"${FILESDIR}"/${P}-fix-noxf86vm.patch \
"${FILESDIR}"/${P}-gcc41.patch
if [[ ${ARCH} != "x86" ]] ; then
sed -i \
-e "s/^CPU = i386/CPU = ${ARCH}/g" \
-e '/^XF86VM =/s:TRUE:FALSE:' "${S}"/src/makes/mk.x11 \
|| die "sed non-x86 failed"
if use sdl ; then
sed -i \
-e "s/OBJECTS.*i386.o//g" \
-e "s/-D__i386__//g" "${S}"/src/makes/mk.fpse \
|| die "sed sdl failed"
fi
fi
# bug #185428
sed -i \
-e 's:/X11R6::' \
"${S}"/src/makes/mk.x11 \
|| die "sed failed"
}
src_compile() {
cd src
emake OPTFLAGS="${CFLAGS}" || die "x11 build failed"
# FIXME: this breaks if src_compile is called twice
if use sdl ; then
sed -i \
-e 's:mk.x11:mk.fpse:g' Makefile \
|| die "sed failed"
emake clean || die "emake clean failed"
emake OPTFLAGS="${CFLAGS}" || die "sdl build failed"
fi
}
src_install() {
dodoc *.txt
insinto "$(games_get_libdir)"/psemu/cfg
doins gpuPeopsSoftX.cfg || die "doins failed"
exeinto "$(games_get_libdir)"/psemu/plugins
doexe src/libgpuPeops* || die "doexe failed"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe src/cfgPeopsSoft || die "doexe failed"
prepgamesdirs
}

@ -1 +0,0 @@
DIST PeopsSpu109.tar.gz 245168 RMD160 bc1f8504b7d1ad3c885524c980e62ebd3617788b SHA1 a39b0ceca9cf3a8d93538917246230feb092528a SHA256 f7dafaf9e3015748952a9f12aafaed85146da4fc63dae380a9ad23e98f5401f6

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

@ -1,66 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-peopsspu/psemu-peopsspu-1.0.9.ebuild,v 1.4 2008/02/14 22:59:29 nyhm Exp $
inherit autotools eutils games
DESCRIPTION="P.E.Op.S Sound Emulation (SPU) PSEmu Plugin"
HOMEPAGE="http://sourceforge.net/projects/peops/"
SRC_URI="mirror://sourceforge/peops/PeopsSpu${PV//./}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="alsa oss"
DEPEND="alsa? ( media-libs/alsa-lib )
=x11-libs/gtk+-1*"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd src
sed -i \
-e "s:-mpentium -O3 -ffast-math -fomit-frame-pointer:${CFLAGS}:" \
Makefile \
|| die "sed Makefile failed"
cd linuxcfg
unpack ./spucfg.tar.gz
emake maintainer-clean || die "distclean linuxcfg"
rm -f {,src/}Makefile.in aclocal.m4 configure
edos2unix $(find -name '*.[ch]') *.in
eautoreconf
}
src_compile() {
cd src
if use oss || ! use alsa; then
emake clean || die "oss clean"
emake USEALSA=FALSE || die "oss build"
mv libspu* ..
fi
if use alsa ; then
emake clean || die "alsa clean"
emake USEALSA=TRUE || die "alsa build"
mv libspu* ..
fi
cd linuxcfg
econf || die
emake || die "linuxcfg failed"
mv src/spucfg src/cfgPeopsOSS
}
src_install() {
exeinto "$(games_get_libdir)"/psemu/plugins
doexe libspu* || die "doexe plugins"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe cfgPeopsOSS || die "doexe cfg"
insinto "$(games_get_libdir)"/psemu/cfg
doins spuPeopsOSS.cfg || die "doins failed"
dodoc src/*.txt *.txt
prepgamesdirs
}

@ -1 +0,0 @@
DIST spunull-1.0.tgz 7056 RMD160 07db199760381e422bd7cd6435827bd4e332639d SHA1 b032d1a002a5f7a476364a6689df60dee36e6793 SHA256 cdcbdf9cc2ac084175e06a4549fe173e57eff66234fa96546d44c15e46caec0b

@ -1,11 +0,0 @@
--- src/Makefile.orig 2003-08-14 01:41:28.679161896 -0400
+++ src/Makefile 2003-08-14 01:41:38.590655120 -0400
@@ -1,7 +1,7 @@
VERSION = 1.0
PLUGIN = libspunull-${VERSION}.so
-CFLAGS+= -fPIC -Wall -O2 -fomit-frame-pointer
+CFLAGS+= -fPIC -Wall $(OPTFLAGS)
OBJECTS = spu.o
all: plugin

@ -1,11 +0,0 @@
--- src/Makefile.old 2010-10-16 22:03:40.000000000 +0200
+++ src/Makefile 2010-10-16 22:04:23.000000000 +0200
@@ -8,7 +8,7 @@
plugin: ${OBJECTS}
rm -f ${PLUGIN}
- $(CC) -shared -Wl,-soname,${PLUGIN} ${CFLAGS} ${OBJECTS} -o ${PLUGIN} ${LIBS}
+ $(CC) -shared -Wl,-soname,${PLUGIN} $(LDFLAGS) ${CFLAGS} ${OBJECTS} -o ${PLUGIN} ${LIBS}
strip --strip-unneeded --strip-debug ${PLUGIN}
clean:

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

@ -1,38 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild,v 1.7 2010/10/16 20:13:51 tupone Exp $
EAPI=2
inherit eutils games
DESCRIPTION="PSEmu plugin to use a null sound driver"
HOMEPAGE="http://www.pcsx.net/"
SRC_URI="http://linuzappz.pcsx.net/downloads/spunull-${PV}.tgz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE=""
S=${WORKDIR}
src_prepare() {
epatch "${FILESDIR}"/${PV}-makefile-cflags.patch
sed -i \
-e 's/gcc/$(CC)/' \
src/Makefile \
|| die "sed failed"
epatch "${FILESDIR}"/${P}-ldflags.patch
}
src_compile() {
emake -C src OPTFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dodoc ReadMe.txt
cd src
exeinto "$(games_get_libdir)"/psemu/plugins
doexe libspunull-* || die "doexe failed"
prepgamesdirs
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xfig/xfig-3.2.5b-r2.ebuild,v 1.1 2011/11/06 06:39:07 pva Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xfig/xfig-3.2.5b-r2.ebuild,v 1.2 2013/06/07 14:23:46 jer Exp $
EAPI="2"
inherit eutils multilib
@ -50,12 +50,18 @@ sed_Imakefile() {
for variable in "${vars2subs[@]}" ; do
varname=${variable%%=*}
varval=${variable##*=}
sed -i "s:^\(XCOMM\)*[[:space:]]*${varname}[[:space:]]*=.*$:${varname} = ${varval}:" "$@"
sed -i \
-e "s:^\(XCOMM\)*[[:space:]]*${varname}[[:space:]]*=.*$:${varname} = ${varval}:" \
"$@" || die
done
sed -i "s:^\(XCOMM\)*[[:space:]]*\(#define I18N\).*$:\2:" "$@"
sed -i \
-e "s:^\(XCOMM\)*[[:space:]]*\(#define I18N\).*$:\2:" \
"$@" || die
if has_version '>=x11-libs/libXaw3d-1.5e'; then
einfo "x11-libs/libXaw3d 1.5e and abover installed"
sed -i "s:^\(XCOMM\)*[[:space:]]*\(#define XAW3D1_5E\).*$:\2:" "$@"
sed -i \
-e "s:^\(XCOMM\)*[[:space:]]*\(#define XAW3D1_5E\).*$:\2:" \
"$@" || die
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xfig/xfig-3.2.5b-r3.ebuild,v 1.4 2013/06/06 21:50:51 nimiux Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xfig/xfig-3.2.5b-r3.ebuild,v 1.5 2013/06/07 14:23:46 jer Exp $
EAPI=5
@ -22,6 +22,7 @@ RDEPEND="x11-libs/libXaw
x11-libs/libXaw3d
nls? ( x11-libs/libXaw3d[unicode] )
x11-libs/libXi
x11-libs/libXt
virtual/jpeg
media-libs/libpng
media-fonts/font-misc-misc
@ -52,23 +53,30 @@ sed_Imakefile() {
for variable in "${vars2subs[@]}" ; do
varname=${variable%%=*}
varval=${variable##*=}
sed -i "s:^\(XCOMM\)*[[:space:]]*${varname}[[:space:]]*=.*$:${varname} = ${varval}:" "$@"
sed -i \
-e "s:^\(XCOMM\)*[[:space:]]*${varname}[[:space:]]*=.*$:${varname} = ${varval}:" \
"$@" || die
done
if use nls; then
sed -i "s:^\(XCOMM\)*[[:space:]]*\(#define I18N\).*$:\2:" "$@"
sed -i \
-e "s:^\(XCOMM\)*[[:space:]]*\(#define I18N\).*$:\2:" \
"$@" || die
# Fix #405475 and #426780 by Markus Peloquin #405475 comment 17
sed -i 's:^I18N_DEFS[[:space:]]*=.*:& -DXAW_INTERNATIONALIZATION:' "$@"
sed -i \
-e 's:^I18N_DEFS[[:space:]]*=.*:& -DXAW_INTERNATIONALIZATION:' \
"$@" || die
fi
if has_version '>=x11-libs/libXaw3d-1.5e'; then
einfo "x11-libs/libXaw3d 1.5e and abover installed"
sed -i "s:^\(XCOMM\)*[[:space:]]*\(#define XAW3D1_5E\).*$:\2:" "$@"
sed -i \
-e "s:^\(XCOMM\)*[[:space:]]*\(#define XAW3D1_5E\).*$:\2:" \
"$@" || die
fi
}
src_prepare() {
# Permissions are really crazy here
chmod -R go+rX .
find . -type f -exec chmod a-x '{}' \;
chmod -R go+rX . || die
find . -type f -exec chmod a-x '{}' \; || die
epatch "${FILESDIR}/${P}-figparserstack.patch" #297379
epatch "${FILESDIR}/${P}-spelling.patch"
epatch "${FILESDIR}/${P}-papersize_b1.patch"

@ -1 +1 @@
Fri, 07 Jun 2013 12:36:55 +0000
Fri, 07 Jun 2013 18:06:55 +0000

@ -1 +1 @@
Fri, 07 Jun 2013 12:36:55 +0000
Fri, 07 Jun 2013 18:06:55 +0000

@ -1,9 +1,9 @@
DEFINED_PHASES=install
DESCRIPTION=A voice enabled application to bring your desktop under your command.
HOMEPAGE=http://perlbox.org/
HOMEPAGE=http://perlbox.sourceforge.net/
KEYWORDS=amd64 x86
LICENSE=GPL-2
RDEPEND=dev-lang/perl dev-perl/perl-tk app-accessibility/sphinx2 app-accessibility/festival app-arch/tar app-accessibility/mbrola
SLOT=0
SRC_URI=mirror://sourceforge/perlbox/perlbox-voice-0.09.noarch.tgz
_md5_=bbe989b1e3f20ec8efb40e3c655e90f5
_md5_=1fb76b8e6df7bebf064a01284e6ff353

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst prepare
DEPEND=acl? ( virtual/acl ) nls? ( virtual/libintl ) !app-cdr/cdrkit nls? ( >=sys-devel/gettext-0.18.1.1 ) filecaps? ( sys-libs/libcap )
DESCRIPTION=A set of tools for CD/DVD reading and recording, including cdrecord
EAPI=5
HOMEPAGE=http://cdrecord.berlios.de/private/cdrecord.html
IUSE=acl nls unicode +filecaps
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris
LICENSE=GPL-2 LGPL-2.1 CDDL-Schily
RDEPEND=acl? ( virtual/acl ) nls? ( virtual/libintl ) !app-cdr/cdrkit
SLOT=0
SRC_URI=ftp://ftp.berlios.de/pub/cdrecord/alpha//cdrtools-3.01a15.tar.bz2
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 fcaps 310b84a3fee3bb17f91526bf6f6206f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=fb9d7b3eb91b191ca18e93bf9de56c38

@ -3,10 +3,10 @@ DEPEND=sys-libs/ncurses
DESCRIPTION=A powerful and user-friendly console text editor
EAPI=5
HOMEPAGE=http://www.gnu.org/software/moe/
KEYWORDS=amd64 arm ~x86 ~amd64-linux ~x86-linux
KEYWORDS=amd64 arm x86 ~amd64-linux ~x86-linux
LICENSE=GPL-3
RDEPEND=sys-libs/ncurses
SLOT=0
SRC_URI=mirror://gnu/moe/moe-1.5.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=1d3feed1267f7bc4a59f39f9ce2be566
_md5_=800f8b89f2b59489e95b861f5679e9a8

@ -1,12 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=cdio? ( >=dev-libs/libcdio-0.83 ) virtual/pkgconfig
DESCRIPTION=Libburn is an open-source library for reading, mastering and writing optical discs.
EAPI=4
HOMEPAGE=http://libburnia-project.org
IUSE=cdio debug static-libs track-src-odirect
KEYWORDS=alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86
LICENSE=GPL-2
RDEPEND=cdio? ( >=dev-libs/libcdio-0.83 )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libburn-1.2.4.tar.gz
_md5_=e567b92aa3f87710b6f5c093eb626bda

@ -8,5 +8,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=GPL-2
RDEPEND=cdio? ( >=dev-libs/libcdio-0.83 )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libburn-1.3.0.tar.gz
_md5_=9d2a59d7a35663129dcc18cdcdec487b
SRC_URI=http://files.libburnia-project.org/releases/libburn-1.3.0.pl01.tar.gz
_md5_=22cc21fd7e6c9f4ba80caf722a7a5e77

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=>=dev-libs/libburn-1.2.8 >=dev-libs/libisofs-1.2.8 readline? ( sys-libs/readline ) acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) cdio? ( >=dev-libs/libcdio-0.83 ) launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 ) launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 ) frontend-optional? ( dev-tcltk/bwidget ) virtual/pkgconfig
DESCRIPTION=Enables creation and expansion of ISO-9660 filesystems on all CD/DVD media supported by libburn
EAPI=5
HOMEPAGE=http://libburnia-project.org/
IUSE=acl cdio debug external-filters external-filters-setuid frontend-optional launch-frontend launch-frontend-setuid readline static-libs xattr zlib
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86
LICENSE=GPL-2 GPL-3
RDEPEND=>=dev-libs/libburn-1.2.8 >=dev-libs/libisofs-1.2.8 readline? ( sys-libs/readline ) acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) cdio? ( >=dev-libs/libcdio-0.83 ) launch-frontend? ( dev-lang/tcl:0 dev-lang/tk:0 ) launch-frontend-setuid? ( dev-lang/tcl:0 dev-lang/tk:0 ) frontend-optional? ( dev-tcltk/bwidget )
REQUIRED_USE=frontend-optional? ( || ( launch-frontend launch-frontend-setuid ) )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libisoburn-1.2.8.tar.gz
_md5_=08db61fdb7c19f5388b6be7a6b3c06c8

@ -1,12 +0,0 @@
DEFINED_PHASES=configure install
DEPEND=acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib ) virtual/pkgconfig
DESCRIPTION=libisofs is an open-source library for reading, mastering and writing optical discs.
EAPI=4
HOMEPAGE=http://libburnia-project.org/
IUSE=acl debug static-libs verbose-debug xattr zlib
KEYWORDS=alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86
LICENSE=GPL-2
RDEPEND=acl? ( virtual/acl ) xattr? ( sys-apps/attr ) zlib? ( sys-libs/zlib )
SLOT=0
SRC_URI=http://files.libburnia-project.org/releases/libisofs-1.2.4.tar.gz
_md5_=07ae4294f8c0924f159714b52660ad12

@ -1,13 +0,0 @@
DEFINED_PHASES=compile install postinst postrm prepare test
DEPEND=doc? ( dev-python/sphinx ) test? ( dev-python/greenlet ) =dev-lang/python-2* test? ( dev-python/nose )
DESCRIPTION=Highly concurrent networking library
EAPI=3
HOMEPAGE=http://pypi.python.org/pypi/eventlet
IUSE=doc examples test test
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=dev-python/greenlet =dev-lang/python-2*
SLOT=0
SRC_URI=mirror://pypi/e/eventlet/eventlet-0.12.1.tar.gz
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=a47c1690aa3648431e7d62a62e843ebe

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=doc? ( dev-python/sphinx ) test? ( dev-python/greenlet dev-python/nose[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DEPEND=doc? ( dev-python/sphinx[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) test? ( dev-python/greenlet[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Highly concurrent networking library
EAPI=5
HOMEPAGE=http://pypi.python.org/pypi/eventlet
IUSE=doc examples test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
IUSE=doc examples test python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=dev-python/greenlet python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
RDEPEND=dev-python/greenlet[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/e/eventlet/eventlet-0.12.1.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=0574f885862ab553f3762e859d1262e2
_md5_=a945f04400255090a8950fc5f6f69af0

@ -10,4 +10,4 @@ RDEPEND=dev-lang/python
SLOT=0
SRC_URI=mirror://pypi/f/fudge/fudge-0.9.6.tar.gz
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=6ae5cc18e3dbdff24bcd9988c4debab3
_md5_=598f1f28d6b07ab9d03156b8365cbd92

@ -1,13 +0,0 @@
DEFINED_PHASES=compile install postinst postrm prepare test
DEPEND=doc? ( dev-python/sphinx ) dev-lang/python test? ( dev-python/nose )
DESCRIPTION=Replace real objects with fakes (mocks, stubs, etc) while testing.
EAPI=3
HOMEPAGE=http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge
IUSE=doc test
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=dev-lang/python
SLOT=0
SRC_URI=mirror://pypi/f/fudge/fudge-1.0.3.tar.gz
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=73062446a9754212ce70398e195a9674

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=doc? ( dev-python/sphinx[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
DESCRIPTION=Replace real objects with fakes (mocks, stubs, etc) while testing.
EAPI=5
HOMEPAGE=http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge
IUSE=doc test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 )
SLOT=0
SRC_URI=mirror://pypi/f/fudge/fudge-1.0.3.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7cb5c9b6afadaa1add66aa5eb9151d3a

@ -0,0 +1,11 @@
DEFINED_PHASES=configure prepare
DEPEND=|| ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=Sed-like editor for binary files.
EAPI=5
HOMEPAGE=http://sourceforge.net/projects/bbe-/
KEYWORDS=~x86
LICENSE=GPL-2
SLOT=0
SRC_URI=mirror://sourceforge/bbe/bbe-0.2.2.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=e48d3cbfde45ff78d7f9c2b6f475c07d

@ -9,6 +9,6 @@ LICENSE=GPL-2
RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) app-misc/ca-certificates python_targets_python2_5? ( dev-lang/python:2.5[threads] ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=http://mercurial.selenic.com/release/mercurial-2.6.tar.gz
SRC_URI=http://mercurial.selenic.com/release/mercurial-2.6.2.tar.gz
_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=eb9c4465307c13ca688114f5695f084c
_md5_=62a72b17c1eab3c6953d1ddd27d45419

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=>=dev-vcs/mercurial-2.4 <dev-vcs/mercurial-2.6 dev-python/iniparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyQt4[svg,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/qscintilla-python doc? ( >=dev-python/sphinx-1.0.3 ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Set of graphical tools for Mercurial
EAPI=5
HOMEPAGE=http://tortoisehg.bitbucket.org
IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=>=dev-vcs/mercurial-2.4 <dev-vcs/mercurial-2.6 dev-python/iniparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyQt4[svg,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/qscintilla-python python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://bitbucket/tortoisehg/targz/downloads/tortoisehg-2.7.1.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=733e486b20f1f797f16922c6b2069e4f

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=>=dev-vcs/mercurial-2.4 <dev-vcs/mercurial-2.6 dev-python/iniparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyQt4[svg,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/qscintilla-python doc? ( >=dev-python/sphinx-1.0.3 ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Set of graphical tools for Mercurial
EAPI=5
HOMEPAGE=http://tortoisehg.bitbucket.org
IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=>=dev-vcs/mercurial-2.4 <dev-vcs/mercurial-2.6 dev-python/iniparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyQt4[svg,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/qscintilla-python python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://bitbucket/tortoisehg/targz/downloads/tortoisehg-2.7.1.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3cc45f1a28f9f2a476dc830af2805828

@ -9,6 +9,6 @@ LICENSE=GPL-2
RDEPEND=>=dev-vcs/mercurial-2.5 <dev-vcs/mercurial-2.7 dev-python/iniparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyQt4[svg,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/qscintilla-python[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://bitbucket/tortoisehg/targz/downloads/tortoisehg-2.8.tar.gz
SRC_URI=mirror://bitbucket/tortoisehg/targz/downloads/tortoisehg-2.8.1.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=87f9d19c63468b4d06a985f1f575aeec
_md5_=43dae59fe720a3ed0b7b26dfca92bc0c

@ -1,12 +0,0 @@
DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack
DEPEND=x11-libs/gtk+:2 virtual/pkgconfig
DESCRIPTION=PSEmu plugin to read from CD-ROM
EAPI=2
HOMEPAGE=http://www.pcsx.net/
KEYWORDS=ppc x86
LICENSE=GPL-2
RDEPEND=x11-libs/gtk+:2
SLOT=0
SRC_URI=http://linuzappz.pcsx.net/downloads/cdr-1.8.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e6535604549d3e44e0e948ffea31796a

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install postinst preinst setup unpack
DEPEND==x11-libs/gtk+-1.2* virtual/pkgconfig
DESCRIPTION=PSEmu plugin to read CD-images
HOMEPAGE=http://www.pcsx.net/
KEYWORDS=ppc x86
LICENSE=GPL-2
RDEPEND==x11-libs/gtk+-1.2*
SLOT=0
SRC_URI=http://linuzappz.pcsx.net/downloads/cdriso-1.4.tgz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=6499554dec52db2fc0538627abc655c1

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install postinst preinst setup unpack
DESCRIPTION=PSEmu Eternal SPU
HOMEPAGE=http://www1.odn.ne.jp/psx-alternative/
KEYWORDS=x86
LICENSE=freedist
RDEPEND=x11-libs/libXext sys-libs/lib-compat
RESTRICT=strip
SLOT=0
SRC_URI=http://www1.odn.ne.jp/psx-alternative/download/spuEternal141_linux.tgz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b86c66519c91b7d015a0103714de1360

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install postinst preinst setup unpack
DEPEND==x11-libs/gtk+-1*
DESCRIPTION=PSEmu plugin to use joysticks/gamepads in PSX-emulators
HOMEPAGE=http://www.ammoq.com/
KEYWORDS=~ppc x86
LICENSE=GPL-2
RDEPEND==x11-libs/gtk+-1*
SLOT=0
SRC_URI=http://members.chello.at/erich.kitzmueller/ammoq/padJoy082.tgz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=f60305fa74af8180ccf44aa785c0d658

@ -1,11 +0,0 @@
DEFINED_PHASES=compile install postinst preinst setup unpack
DEPEND==x11-libs/gtk+-1.2*
DESCRIPTION=PSEmu plugin to use the keyboard as a gamepad
HOMEPAGE=http://www.pcsx.net/
KEYWORDS=ppc x86
LICENSE=freedist
RDEPEND==x11-libs/gtk+-1.2*
SLOT=0
SRC_URI=http://linuzappz.pcsx.net/downloads/padXwin-1.6.tgz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2ad145e175a6e0e887550e3e51b94e28

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install postinst preinst setup unpack
DEPEND==x11-libs/gtk+-1* x11-libs/libXxf86vm sdl? ( media-libs/libsdl ) virtual/pkgconfig x86? ( dev-lang/nasm ) x11-proto/xf86dgaproto x11-proto/xf86vidmodeproto
DESCRIPTION=P.E.Op.S Software GPU plugin
HOMEPAGE=http://sourceforge.net/projects/peops/
IUSE=sdl
KEYWORDS=~ppc x86
LICENSE=GPL-2
RDEPEND==x11-libs/gtk+-1* x11-libs/libXxf86vm sdl? ( media-libs/libsdl )
SLOT=0
SRC_URI=mirror://sourceforge/peops/PeopsSoftGpu117.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9b69ec4ed6fbf07450ccef3cd7b5ba0f

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install postinst preinst setup unpack
DEPEND=alsa? ( media-libs/alsa-lib ) =x11-libs/gtk+-1* || ( >=sys-devel/automake-1.12 >=sys-devel/automake-1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=P.E.Op.S Sound Emulation (SPU) PSEmu Plugin
HOMEPAGE=http://sourceforge.net/projects/peops/
IUSE=alsa oss
KEYWORDS=~ppc x86
LICENSE=GPL-2
RDEPEND=alsa? ( media-libs/alsa-lib ) =x11-libs/gtk+-1*
SLOT=0
SRC_URI=mirror://sourceforge/peops/PeopsSpu109.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3fbe76e458e3be175c4ddb414ce1c044

@ -1,10 +0,0 @@
DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack
DESCRIPTION=PSEmu plugin to use a null sound driver
EAPI=2
HOMEPAGE=http://www.pcsx.net/
KEYWORDS=x86
LICENSE=freedist
SLOT=0
SRC_URI=http://linuzappz.pcsx.net/downloads/spunull-1.0.tgz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 games 0fb7637597e0869f6c8be79b11d0135a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2b2a975de1e908d024dd587eacf58db4

@ -9,4 +9,4 @@ RDEPEND=x11-libs/libXaw x11-libs/libXp x11-libs/libXaw3d x11-libs/libXi virtual/
SLOT=0
SRC_URI=mirror://sourceforge/mcj/xfig.3.2.5b.full.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7f160628c6f602dca8d7cc096fb9d54a
_md5_=45c18ed123e0a32a5c012e605de6ae1f

@ -1,13 +1,13 @@
DEFINED_PHASES=compile install prepare
DEPEND=x11-libs/libXaw x11-libs/libXp x11-libs/libXaw3d nls? ( x11-libs/libXaw3d[unicode] ) x11-libs/libXi virtual/jpeg media-libs/libpng media-fonts/font-misc-misc media-fonts/urw-fonts >=media-gfx/transfig-3.2.5-r1 media-libs/netpbm x11-misc/imake x11-proto/xproto x11-proto/inputproto
DEPEND=x11-libs/libXaw x11-libs/libXp x11-libs/libXaw3d nls? ( x11-libs/libXaw3d[unicode] ) x11-libs/libXi x11-libs/libXt virtual/jpeg media-libs/libpng media-fonts/font-misc-misc media-fonts/urw-fonts >=media-gfx/transfig-3.2.5-r1 media-libs/netpbm x11-misc/imake x11-proto/xproto x11-proto/inputproto
DESCRIPTION=A menu-driven tool to draw and manipulate objects interactively in an X window.
EAPI=5
HOMEPAGE=http://www.xfig.org
IUSE=nls
KEYWORDS=~alpha amd64 ~arm hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris
LICENSE=BSD
RDEPEND=x11-libs/libXaw x11-libs/libXp x11-libs/libXaw3d nls? ( x11-libs/libXaw3d[unicode] ) x11-libs/libXi virtual/jpeg media-libs/libpng media-fonts/font-misc-misc media-fonts/urw-fonts >=media-gfx/transfig-3.2.5-r1 media-libs/netpbm
RDEPEND=x11-libs/libXaw x11-libs/libXp x11-libs/libXaw3d nls? ( x11-libs/libXaw3d[unicode] ) x11-libs/libXi x11-libs/libXt virtual/jpeg media-libs/libpng media-fonts/font-misc-misc media-fonts/urw-fonts >=media-gfx/transfig-3.2.5-r1 media-libs/netpbm
SLOT=0
SRC_URI=mirror://sourceforge/mcj/xfig.3.2.5b.full.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ff454e946657794e65de9e76d620ef0b
_md5_=a02e3b068f4944a5745a0fb0adad540f

@ -11,4 +11,4 @@ REQUIRED_USE=python_single_target_python2_5? ( python_targets_python2_5 ) python
SLOT=0
SRC_URI=https://github.com/fail2ban/fail2ban/tarball/0.8.9 -> fail2ban-0.8.9.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129
_md5_=11c5beaeca51851b808a0af8f3c60b86
_md5_=8b0fb58b0ed239864c780bf80cadce9c

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup
DEPEND=emacs? ( virtual/emacs ) mono? ( >=dev-lang/mono-0.95 ) nls? ( >=sys-devel/gettext-0.17 ) java? ( >=virtual/jdk-1.5 doc? ( dev-java/gjdoc ) ) java? ( >=dev-java/java-config-2.1.9-r1 )
DESCRIPTION=Internationalized Domain Names (IDN) implementation
EAPI=5
HOMEPAGE=http://www.gnu.org/software/libidn/
IUSE=doc emacs java mono nls static-libs elibc_FreeBSD java
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-2 GPL-3 LGPL-3 java? ( Apache-2.0 )
RDEPEND=emacs? ( virtual/emacs ) mono? ( >=dev-lang/mono-0.95 ) nls? ( virtual/libintl ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.1.9-r1 )
SLOT=0
SRC_URI=mirror://gnu/libidn/libidn-1.27.tar.gz
_eclasses_=elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils f31a0ec0d081047cbf9c0bbb4822d831 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=0dd8ffc49bf5e870eb2819d42f54f873

@ -1,15 +0,0 @@
DEFINED_PHASES=compile configure install postinst prepare pretend setup
DEPEND=dev-libs/popt >=sys-libs/talloc-2.0.5 >=sys-libs/tdb-1.2.9 virtual/libiconv ads? ( virtual/krb5 sys-fs/e2fsprogs client? ( sys-apps/keyutils kernel_linux? ( net-fs/cifs-utils[ads] ) ) ) avahi? ( net-dns/avahi[dbus] ) caps? ( sys-libs/libcap ) client? ( !net-fs/mount-cifs dev-libs/iniparser kernel_linux? ( net-fs/cifs-utils ) ) cluster? ( >=dev-db/ctdb-1.13 ) cups? ( net-print/cups ) debug? ( dev-libs/dmalloc ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) ldap? ( net-nds/openldap ) ldb? ( sys-libs/ldb ) pam? ( virtual/pam winbind? ( dev-libs/iniparser ) ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sec-policy/selinux-samba ) syslog? ( virtual/logger )
DESCRIPTION=Library bits of the samba network filesystem
EAPI=4
HOMEPAGE=http://www.samba.org/
IUSE=acl addns ads +aio avahi caps +client cluster cups debug dmapi doc examples fam ldap ldb +netapi pam quota +readline selinux +server +smbclient smbsharemodes swat syslog winbind
KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux
LICENSE=GPL-3
RDEPEND=dev-libs/popt >=sys-libs/talloc-2.0.5 >=sys-libs/tdb-1.2.9 virtual/libiconv ads? ( virtual/krb5 sys-fs/e2fsprogs client? ( sys-apps/keyutils kernel_linux? ( net-fs/cifs-utils[ads] ) ) ) avahi? ( net-dns/avahi[dbus] ) caps? ( sys-libs/libcap ) client? ( !net-fs/mount-cifs dev-libs/iniparser kernel_linux? ( net-fs/cifs-utils ) ) cluster? ( >=dev-db/ctdb-1.13 ) cups? ( net-print/cups ) debug? ( dev-libs/dmalloc ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) ldap? ( net-nds/openldap ) ldb? ( sys-libs/ldb ) pam? ( virtual/pam winbind? ( dev-libs/iniparser ) ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sec-policy/selinux-samba ) syslog? ( virtual/logger )
REQUIRED_USE=ads? ( ldap ) swat? ( server )
RESTRICT=test
SLOT=0
SRC_URI=mirror://samba/stable/samba-3.6.13.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=792b7fd9b27da8a5890a0d08f308be33

@ -10,6 +10,6 @@ RDEPEND=dev-libs/popt >=sys-libs/talloc-2.0.5 >=sys-libs/tdb-1.2.9 virtual/libic
REQUIRED_USE=ads? ( ldap ) swat? ( server )
RESTRICT=test
SLOT=0
SRC_URI=mirror://samba/stable/samba-3.6.14.tar.gz
SRC_URI=mirror://samba/stable/samba-3.6.15.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=6f85790b689b0fd489d161125feb67f1
_md5_=e95ca83d83c64aedd513b90a7feb5fec

@ -1,15 +0,0 @@
DEFINED_PHASES=compile configure install postinst prepare pretend setup
DEPEND=dev-libs/popt >=sys-libs/talloc-2.0.5 >=sys-libs/tdb-1.2.9 virtual/libiconv ads? ( virtual/krb5 sys-fs/e2fsprogs client? ( sys-apps/keyutils kernel_linux? ( net-fs/cifs-utils[ads] ) ) ) avahi? ( net-dns/avahi[dbus] ) caps? ( sys-libs/libcap ) client? ( !net-fs/mount-cifs dev-libs/iniparser kernel_linux? ( net-fs/cifs-utils ) ) cluster? ( >=dev-db/ctdb-1.13 ) cups? ( net-print/cups ) debug? ( dev-libs/dmalloc ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) ldap? ( net-nds/openldap ) ldb? ( sys-libs/ldb ) pam? ( virtual/pam winbind? ( dev-libs/iniparser ) ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sec-policy/selinux-samba ) syslog? ( virtual/logger )
DESCRIPTION=Library bits of the samba network filesystem
EAPI=4
HOMEPAGE=http://www.samba.org/
IUSE=acl addns ads +aio avahi caps +client cluster cups debug dmapi doc examples fam ldap ldb +netapi pam quota +readline selinux +server +smbclient smbsharemodes swat syslog winbind
KEYWORDS=amd64 ~arm hppa x86 ~amd64-fbsd ~x86-fbsd
LICENSE=GPL-3
RDEPEND=dev-libs/popt >=sys-libs/talloc-2.0.5 >=sys-libs/tdb-1.2.9 virtual/libiconv ads? ( virtual/krb5 sys-fs/e2fsprogs client? ( sys-apps/keyutils kernel_linux? ( net-fs/cifs-utils[ads] ) ) ) avahi? ( net-dns/avahi[dbus] ) caps? ( sys-libs/libcap ) client? ( !net-fs/mount-cifs dev-libs/iniparser kernel_linux? ( net-fs/cifs-utils ) ) cluster? ( >=dev-db/ctdb-1.13 ) cups? ( net-print/cups ) debug? ( dev-libs/dmalloc ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) ldap? ( net-nds/openldap ) ldb? ( sys-libs/ldb ) pam? ( virtual/pam winbind? ( dev-libs/iniparser ) ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sec-policy/selinux-samba ) syslog? ( virtual/logger )
REQUIRED_USE=ads? ( ldap ) swat? ( server )
RESTRICT=test
SLOT=0
SRC_URI=mirror://samba/stable/samba-3.6.9.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=a8baec86d8a297184a513fcfb4d110cb

@ -1,15 +1,15 @@
DEFINED_PHASES=compile configure install postinst prepare setup test unpack
DEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/iniparser dev-libs/popt sys-libs/readline virtual/libiconv dev-python/subunit sys-libs/libcap >=sys-libs/ldb-1.1.15 >=sys-libs/tdb-1.2.11[python] >=sys-libs/talloc-2.0.8[python] >=sys-libs/tevent-0.9.17 sys-libs/zlib >=app-crypt/heimdal-1.5[-ssl] addns? ( net-dns/bind-tools[gssapi] ) client? ( net-fs/cifs-utils[ads?] ) cluster? ( >=dev-db/ctdb-1.0.114_p1 ) ldap? ( net-nds/openldap ) gnutls? ( >=net-libs/gnutls-1.4.0 ) selinux? ( sec-policy/selinux-samba ) virtual/pkgconfig dev-lang/python !dev-lang/python[-threads]
DEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/iniparser dev-libs/popt sys-libs/readline virtual/libiconv dev-python/subunit sys-libs/libcap >=sys-libs/ldb-1.1.15-r1 >=sys-libs/tdb-1.2.11[python] >=sys-libs/talloc-2.0.8[python] >=sys-libs/tevent-0.9.18 sys-libs/zlib >=app-crypt/heimdal-1.5[-ssl] addns? ( net-dns/bind-tools[gssapi] ) client? ( net-fs/cifs-utils[ads?] ) cluster? ( >=dev-db/ctdb-1.0.114_p1 ) ldap? ( net-nds/openldap ) gnutls? ( >=net-libs/gnutls-1.4.0 ) selinux? ( sec-policy/selinux-samba ) virtual/pkgconfig dev-lang/python !dev-lang/python[-threads]
DESCRIPTION=Samba Suite Version 4
EAPI=5
HOMEPAGE=http://www.samba.org/
IUSE=acl addns ads aio avahi client cluster cups gnutls iprint ldap pam quota selinux swat syslog test winbind python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=GPL-3
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/iniparser dev-libs/popt sys-libs/readline virtual/libiconv dev-python/subunit sys-libs/libcap >=sys-libs/ldb-1.1.15 >=sys-libs/tdb-1.2.11[python] >=sys-libs/talloc-2.0.8[python] >=sys-libs/tevent-0.9.17 sys-libs/zlib >=app-crypt/heimdal-1.5[-ssl] addns? ( net-dns/bind-tools[gssapi] ) client? ( net-fs/cifs-utils[ads?] ) cluster? ( >=dev-db/ctdb-1.0.114_p1 ) ldap? ( net-nds/openldap ) gnutls? ( >=net-libs/gnutls-1.4.0 ) selinux? ( sec-policy/selinux-samba )
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/iniparser dev-libs/popt sys-libs/readline virtual/libiconv dev-python/subunit sys-libs/libcap >=sys-libs/ldb-1.1.15-r1 >=sys-libs/tdb-1.2.11[python] >=sys-libs/talloc-2.0.8[python] >=sys-libs/tevent-0.9.18 sys-libs/zlib >=app-crypt/heimdal-1.5[-ssl] addns? ( net-dns/bind-tools[gssapi] ) client? ( net-fs/cifs-utils[ads?] ) cluster? ( >=dev-db/ctdb-1.0.114_p1 ) ldap? ( net-nds/openldap ) gnutls? ( >=net-libs/gnutls-1.4.0 ) selinux? ( sec-policy/selinux-samba )
REQUIRED_USE=ads? ( ldap )
RESTRICT=mirror
SLOT=0
SRC_URI=mirror://samba/stable/samba-4.0.4.tar.gz
SRC_URI=mirror://samba/stable/samba-4.0.6.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 waf-utils 681b3e9181d1a20ad8d0c186333ddcf7
_md5_=994dbd734dd8dbdbea05d2cbde02df00
_md5_=37f91e7cfa84e81c054aeb12f2a48269

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup
DEPEND=dev-libs/glib:2 dbus? ( >=dev-libs/dbus-glib-0.98 ) fastscroll? ( x11-libs/libXft ) gtk? ( x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libnotify? ( x11-libs/libnotify ) nls? ( virtual/libintl ) ntlm? ( net-libs/libntlm ) perl? ( >=dev-lang/perl-5.8.0 ) plugin-sysinfo? ( sys-apps/pciutils ) python? ( python_single_target_python2_5? ( dev-lang/python:2.5 ) python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_5(+)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) spell? ( app-text/enchant dev-libs/libxml2 ) ssl? ( >=dev-libs/openssl-0.9.8u ) theme-manager? ( dev-lang/mono ) virtual/pkgconfig nls? ( sys-devel/gettext ) theme-manager? ( dev-util/monodevelop ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
DESCRIPTION=Graphical IRC client based on XChat
EAPI=5
HOMEPAGE=http://www.hexchat.org/
IUSE=dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_single_target_python2_5 python_single_target_python2_6 python_single_target_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux
LICENSE=GPL-2
RDEPEND=dev-libs/glib:2 dbus? ( >=dev-libs/dbus-glib-0.98 ) fastscroll? ( x11-libs/libXft ) gtk? ( x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libnotify? ( x11-libs/libnotify ) nls? ( virtual/libintl ) ntlm? ( net-libs/libntlm ) perl? ( >=dev-lang/perl-5.8.0 ) plugin-sysinfo? ( sys-apps/pciutils ) python? ( python_single_target_python2_5? ( dev-lang/python:2.5 ) python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_5(+)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) spell? ( app-text/enchant dev-libs/libxml2 ) ssl? ( >=dev-libs/openssl-0.9.8u ) theme-manager? ( dev-lang/mono )
REQUIRED_USE=plugin-checksum? ( plugins ) plugin-doat? ( plugins ) plugin-fishlim? ( plugins ) plugin-sysinfo? ( plugins ) python? ( python_single_target_python2_5? ( python_targets_python2_5 ) python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_5 python_single_target_python2_6 python_single_target_python2_7 ) )
SLOT=0
SRC_URI=mirror://github/hexchat/hexchat/hexchat-2.9.5.tar.xz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=58ed82135f064e7ba5c1d25c59988987

@ -0,0 +1,12 @@
DEFINED_PHASES=configure install postinst prepare
DEPEND=virtual/pkgconfig
DESCRIPTION=A fully featured, yet light weight RFC2131 compliant DHCP client
EAPI=5
HOMEPAGE=http://roy.marples.name/projects/dhcpcd/
IUSE=elibc_glibc
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux
LICENSE=BSD-2
SLOT=0
SRC_URI=http://roy.marples.name/downloads/dhcpcd/dhcpcd-5.99.7.tar.bz2
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 systemd 3421a5715404244e4827acd1cf8ce654 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3e3fa3f00d60c4383ff9a085a8970a2f

@ -0,0 +1,14 @@
DEFINED_PHASES=compile install postinst prepare setup
DEPEND=sys-apps/man
DESCRIPTION=The X2Go server
EAPI=4
HOMEPAGE=http://www.x2go.org
IUSE=+fuse postgres +sqlite
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=dev-perl/Config-Simple media-fonts/font-cursor-misc media-fonts/font-misc-misc net-misc/nx virtual/ssh x11-apps/xauth fuse? ( sys-fs/sshfs-fuse ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite )
REQUIRED_USE=|| ( postgres sqlite )
SLOT=0
SRC_URI=http://code.x2go.org/releases/source/x2goserver/x2goserver-4.0.0.2.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=acbed77a768efb4c941d090c70e67d29

@ -1,13 +0,0 @@
DEFINED_PHASES=configure install postinst preinst prepare setup
DEPEND=virtual/jpeg hpijs? ( >=net-print/foomatic-filters-3.0.20080507[cups] ) !minimal? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads,xml] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=net-print/cups-1.4.0 !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( >=media-gfx/sane-backends-1.0.19-r1 ) fax? ( >=sys-apps/dbus-1.6.8-r1 ) snmp? ( net-analyzer/net-snmp dev-libs/openssl:0 ) ) virtual/pkgconfig virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=HP Linux Imaging and Printing. Includes printer, scanner, fax drivers and service tools.
EAPI=5
HOMEPAGE=http://hplipopensource.com/hplip-web/index.html
IUSE=doc fax +hpcups hpijs kde libnotify -libusb0 minimal parport policykit qt4 scanner snmp static-ppds X python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
LICENSE=GPL-2
RDEPEND=virtual/jpeg hpijs? ( >=net-print/foomatic-filters-3.0.20080507[cups] ) !minimal? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads,xml] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=net-print/cups-1.4.0 !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( >=media-gfx/sane-backends-1.0.19-r1 ) fax? ( >=sys-apps/dbus-1.6.8-r1 ) snmp? ( net-analyzer/net-snmp dev-libs/openssl:0 ) ) >=app-text/ghostscript-gpl-8.71-r3 >=dev-python/dbus-python-1.1.1-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] policykit? ( sys-auth/polkit ) !minimal? ( >=dev-python/pygobject-2.28.6-r53:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] kernel_linux? ( virtual/udev !<sys-fs/udev-114 ) scanner? ( >=dev-python/reportlab-2.6[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/imaging-1.1.7-r2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) fax? ( >=dev-python/reportlab-2.6[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/dbus-python-1.1.1-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) qt4? ( >=dev-python/PyQt4-4.9.6-r2[dbus,X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] libnotify? ( >=dev-python/notify-python-0.1.1-r3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) ) )
SLOT=0
SRC_URI=mirror://sourceforge/hplip/hplip-3.13.4.tar.gz http://dev.gentoo.org/~billie/distfiles/hplip-3.12.10-patches-1.tar.xz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=fbb4fa1aee1a949729ad4085f4c48037

@ -7,7 +7,8 @@ IUSE=doc fax +hpcups hpijs kde libnotify -libusb0 minimal parport policykit qt4
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
LICENSE=GPL-2
RDEPEND=virtual/jpeg hpijs? ( >=net-print/foomatic-filters-3.0.20080507[cups] ) !minimal? ( python_single_target_python2_6? ( dev-lang/python:2.6[threads,xml] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=net-print/cups-1.4.0 !libusb0? ( virtual/libusb:1 ) libusb0? ( virtual/libusb:0 ) scanner? ( >=media-gfx/sane-backends-1.0.19-r1 ) fax? ( >=sys-apps/dbus-1.6.8-r1 ) snmp? ( net-analyzer/net-snmp dev-libs/openssl:0 ) ) >=app-text/ghostscript-gpl-8.71-r3 >=dev-python/dbus-python-1.1.1-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] policykit? ( sys-auth/polkit ) !minimal? ( >=dev-python/pygobject-2.28.6-r53:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] kernel_linux? ( virtual/udev !<sys-fs/udev-114 ) scanner? ( >=dev-python/reportlab-2.6[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/imaging-1.1.7-r2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] X? ( || ( kde? ( kde-misc/skanlite ) media-gfx/xsane media-gfx/sane-frontends ) ) ) fax? ( >=dev-python/reportlab-2.6[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/dbus-python-1.1.1-r1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) qt4? ( >=dev-python/PyQt4-4.9.6-r2[dbus,X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] libnotify? ( >=dev-python/notify-python-0.1.1-r3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) ) )
REQUIRED_USE=!minimal? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) )
SLOT=0
SRC_URI=mirror://sourceforge/hplip/hplip-3.13.5.tar.gz http://dev.gentoo.org/~billie/distfiles/hplip-3.13.5-patches-1.tar.xz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=96d17b9183b58646aab85fd4898933ea
_md5_=dfe6f432b0078262a68cb5b3858ed5db

@ -0,0 +1,10 @@
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=virtual/libusb:1 net-libs/libhackrf sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-vcs/git
DESCRIPTION=library for communicating with HackRF SDR platform
EAPI=5
HOMEPAGE=https://github.com/mossmann/hackrf
LICENSE=BSD
RDEPEND=virtual/libusb:1 net-libs/libhackrf
SLOT=0
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=7e00692670eda53b0ae63e0a11cd8b40

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

Loading…
Cancel
Save