Sync with portage [Mon Mar 25 16:49:12 MSK 2013].

mhiretskiy
root 11 years ago
parent 8fd2a512e6
commit 467dac8d04

@ -1,9 +1,9 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.4.ebuild,v 1.6 2013/03/05 09:52:13 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.4-r1.ebuild,v 1.1 2013/03/25 03:21:12 patrick Exp $
EAPI="3"
inherit flag-o-matic eutils
inherit flag-o-matic eutils multilib
DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm"
HOMEPAGE="http://httpd.apache.org/"
@ -36,6 +36,7 @@ src_configure() {
# econf overwrites the stuff from config.layout, so we have to put them into
# our myconf line too
econf \
--libexecdir=/usr/$(get_libdir)/apache2/modules \
--sbindir="${EPREFIX}"/usr/sbin \
--with-perl="${EPREFIX}"/usr/bin/perl \
--with-expat="${EPREFIX}"/usr \

@ -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-backup/spideroak-bin/spideroak-bin-4.8.3-r1.ebuild,v 1.2 2013/03/23 19:44:29 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-backup/spideroak-bin/spideroak-bin-4.8.3-r1.ebuild,v 1.3 2013/03/24 17:55:18 blueness Exp $
EAPI="4"
@ -42,7 +42,7 @@ S=${WORKDIR}
QA_PREBUILT="*"
src_prepare() {
use headless && epatch "${FILESDIR}"/${PF}-headless.patch
use headless && epatch "${FILESDIR}"/${P}-headless.patch
# Set RPATH for preserve-libs handling (bug #400979).
cd "${S}/opt/SpiderOak/lib" || die

@ -1,2 +1 @@
DIST krb5-1.11.1-signed.tar 11663360 SHA256 3a230ff6a7f8775752292e9303d3fa8a801a353301bc24d80b860d99f9d20768 SHA512 721a14bf09571d951b0070110e2f2469e55b593d7321a1288bea1da62f33fb6d2be556bf6410a8ad0134cecdb6b67dafbd5f34404eb00383fe8fcac167f7743e WHIRLPOOL e8363343229e96eb9d2e05767d4b9b426b41a8bca51bb91cf815b50f920d289a7273d7cf9d279bfafcc3407ca0ecf67559c5c0a510562d2f7b61fc5d71f8cf3d
DIST krb5-1.9.4-signed.tar 13025280 SHA256 42fd639b0cb9568c4ae3d92874a76f75ffdc0071cf466a967b7beb340c020961 SHA512 8638f679a3f93a145ec6c5304125c77743278e5912a2d0d5e96157d60639ce26d5a135caa528570b301b3896c4752e81c523ee71b99534fe71fdc6d8083cbc04 WHIRLPOOL 559098eb8654248c612a2d23533d953f3572052b74a469dd6b4054a25167f72d1ac65ad4f5b714d9d8b9101376728c0ac34e4fce1dc73ad0aab7fa6f4a49d3c0

@ -1,40 +0,0 @@
diff --git a/src/kdc/kdc_preauth.c b/src/kdc/kdc_preauth.c
index 9d8cb34..d4ece3f 100644
--- a/src/kdc/kdc_preauth.c
+++ b/src/kdc/kdc_preauth.c
@@ -1438,7 +1438,8 @@ etype_info_helper(krb5_context context, krb5_kdc_req *request,
continue;
}
- if (request_contains_enctype(context, request, db_etype)) {
+ if (krb5_is_permitted_enctype(context, db_etype) &&
+ request_contains_enctype(context, request, db_etype)) {
retval = _make_etype_info_entry(context, client->princ,
client_key, db_etype,
&entry[i], etype_info2);
diff --git a/src/kdc/kdc_util.c b/src/kdc/kdc_util.c
index a43b291..94dad3a 100644
--- a/src/kdc/kdc_util.c
+++ b/src/kdc/kdc_util.c
@@ -2461,6 +2461,7 @@ kdc_handle_protected_negotiation(krb5_data *req_pkt, krb5_kdc_req *request,
return 0;
pa.magic = KV5M_PA_DATA;
pa.pa_type = KRB5_ENCPADATA_REQ_ENC_PA_REP;
+ memset(&checksum, 0, sizeof(checksum));
retval = krb5_c_make_checksum(kdc_context,0, reply_key,
KRB5_KEYUSAGE_AS_REQ, req_pkt, &checksum);
if (retval != 0)
diff --git a/src/lib/kdb/kdb_default.c b/src/lib/kdb/kdb_default.c
index c4bf92e..367c894 100644
--- a/src/lib/kdb/kdb_default.c
+++ b/src/lib/kdb/kdb_default.c
@@ -61,6 +61,9 @@ krb5_dbe_def_search_enctype(kcontext, dbentp, start, ktype, stype, kvno, kdatap)
krb5_boolean saw_non_permitted = FALSE;
ret = 0;
+ if (ktype != -1 && !krb5_is_permitted_enctype(kcontext, ktype))
+ return KRB5_KDB_NO_PERMITTED_KEY;
+
if (kvno == -1 && stype == -1 && ktype == -1)
kvno = 0;

@ -1,24 +0,0 @@
#!/sbin/runscript
#---------------------------------------------------------------------------
# This script starts/stops the MIT Kerberos 5 Admin daemon
#---------------------------------------------------------------------------
daemon="MIT Kerberos 5 Admin daemon"
exec="/usr/sbin/kadmind"
depend() {
need net mit-krb5kdc
}
start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} 1>&2
eend $? "Error starting $daemon"
}
stop() {
ebegin "Stopping $daemon"
start-stop-daemon --stop --quiet --exec ${exec} 1>&2
eend $? "Error stopping $daemon"
}

@ -1,24 +0,0 @@
#!/sbin/runscript
#---------------------------------------------------------------------------
# This script starts/stops the MIT Kerberos 5 KDC
#---------------------------------------------------------------------------
daemon="MIT Kerberos 5 KDC"
exec="/usr/sbin/krb5kdc"
depend() {
need net
}
start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} 1>&2
eend $? "Error starting $daemon"
}
stop() {
ebegin "Stopping $daemon"
start-stop-daemon --stop --quiet --exec ${exec} 1>&2
eend $? "Error stopping $daemon"
}

@ -1,25 +0,0 @@
#!/sbin/runscript
#---------------------------------------------------------------------------
# This script starts/stops the MIT Kerberos 5 kpropd
#---------------------------------------------------------------------------
daemon="MIT Kerberos 5 kpropd"
exec="/usr/sbin/kpropd"
depend() {
need net
use mit-krb5kdc mit-krb5kadmind
}
start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} -- -S 1>&2
eend $? "Error starting $daemon"
}
stop() {
ebegin "Stopping $daemon"
start-stop-daemon --stop --quiet --exec ${exec} 1>&2
eend $? "Error stopping $daemon"
}

@ -1,120 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/mit-krb5/mit-krb5-1.9.4-r1.ebuild,v 1.9 2012/12/16 19:38:25 ulm Exp $
EAPI=4
inherit eutils flag-o-matic versionator
MY_P="${P/mit-}"
P_DIR=$(get_version_component_range 1-2)
DESCRIPTION="MIT Kerberos V"
HOMEPAGE="http://web.mit.edu/kerberos/www/"
SRC_URI="http://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}-signed.tar"
LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc +keyutils openldap +pkinit +threads test xinetd"
RDEPEND="!!app-crypt/heimdal
>=sys-libs/e2fsprogs-libs-1.41.0
keyutils? ( sys-apps/keyutils )
openldap? ( net-nds/openldap )
pkinit? ( dev-libs/openssl )
xinetd? ( sys-apps/xinetd )"
DEPEND="${RDEPEND}
virtual/yacc
doc? ( virtual/latex-base )
test? ( dev-lang/tcl
dev-lang/python
dev-util/dejagnu )"
S=${WORKDIR}/${MY_P}/src
src_unpack() {
unpack ${A}
unpack ./"${MY_P}".tar.gz
}
src_prepare() {
epatch "${FILESDIR}"/CVE-2012-1015.patch
}
src_configure() {
# QA
append-flags -fno-strict-aliasing
append-flags -fno-strict-overflow
use keyutils || export ac_cv_header_keyutils_h=no
econf \
$(use_with openldap ldap) \
"$(use_with test tcl "${EPREFIX}/usr")" \
$(use_enable pkinit) \
$(use_enable threads thread-support) \
--without-hesiod \
--enable-shared \
--with-system-et \
--with-system-ss \
--enable-dns-for-realm \
--enable-kdc-lookaside-cache \
--disable-rpath
}
src_compile() {
emake -j1
if use doc ; then
cd ../doc
for dir in api implement ; do
emake -C "${dir}" || die "doc emake failed"
done
fi
}
src_install() {
emake \
DESTDIR="${D}" \
EXAMPLEDIR="${EPREFIX}/usr/share/doc/${PF}/examples" \
install
# default database dir
keepdir /var/lib/krb5kdc
cd ..
dodoc NOTICE README
dodoc doc/*.{ps,txt}
doinfo doc/*.info*
dohtml -r doc/*.html
# die if we cannot respect a USE flag
if use doc ; then
dodoc doc/{api,implement}/*.ps
fi
newinitd "${FILESDIR}"/mit-krb5kadmind.initd mit-krb5kadmind
newinitd "${FILESDIR}"/mit-krb5kdc.initd mit-krb5kdc
newinitd "${FILESDIR}"/mit-krb5kpropd.initd mit-krb5kpropd
insinto /etc
newins "${ED}/usr/share/doc/${PF}/examples/krb5.conf" krb5.conf.example
insinto /var/lib/krb5kdc
newins "${ED}/usr/share/doc/${PF}/examples/kdc.conf" kdc.conf.example
if use openldap ; then
insinto /etc/openldap/schema
doins "${S}/plugins/kdb/ldap/libkdb_ldap/kerberos.schema"
fi
if use xinetd ; then
insinto /etc/xinetd.d
newins "${FILESDIR}/kpropd.xinetd" kpropd
fi
}
pkg_preinst() {
if has_version "<${CATEGORY}/${PN}-1.8.0" ; then
elog "MIT split the Kerberos applications from the base Kerberos"
elog "distribution. Kerberized versions of telnet, rlogin, rsh, rcp,"
elog "ftp clients and telnet, ftp deamons now live in"
elog "\"app-crypt/mit-krb5-appl\" package."
fi
}

@ -1,3 +1,4 @@
DIST hyph_ro_RO.3.3.6.zip 18439 SHA256 80a7bd5abd2a0339272ce4e2be897ae7bc4458292e762cf5f9ca9cc641b2b381 SHA512 f98857b99933ba52855a0e31483a7649591459b13c7a1abd4145736c78986e9c6c59c32fd62d171793569946b4af49be70d20b1eb33522d7d012104340360247 WHIRLPOOL 43b802ee31f83980ca1fa3f211310ff61b55fe3da51c50b0a94c185fcdb6f6b7424f3885c30a191aa7cbd5932ff4bd41d418cc4a9ba14ac97f95b6b26dbbdc6f
DIST ro_RO.3.3.7.zip 1155284 SHA256 3c7e21d221fea7e7ba7bd230b8b0bedc1ab91213b9fdd6ca98894509e089a2c2 SHA512 1498ebd7d10b56b0582c448462349c452a209a23a73c2300ecb5da3b1bd8eaa402090eac6cd3c6807b8d26a00514135e17e35b264b303efa706fd8ad12efdde6 WHIRLPOOL 96e7469d32af2e52717280f282901b5a48473db2c88f9cd24ead0bb591e6b54ec465993440e1b261ae605c7bc6f9c8e3eaa2bbfb377931802e779c3d32da4ab5
DIST ro_RO.3.3.8.zip 1212983 SHA256 cae4910b0a1f143abafef43de60926b95f8d1d64e475f4b1923aa87aba50ad80 SHA512 60e8cbd37b0218d7b49043ede4e469db5cdcae5f245f8900dd0f7b720babd1bc0cebb6180a7717c8fcad58af495d764d6eca09931ecf5947cb2f7546010aa7ba WHIRLPOOL 169bac80381ce247741251eec5f3ced8b53c09af93dbc4af8eac4a2d1ee27f3f9dab2361622fb12f3de63c0febd26ded70a8da9e7d4663f8f1f880c7b0cc8a24
DIST th_ro_RO.3.3.zip 1235156 SHA256 097f0a58be60859292fb0c8109669d579abd19a500b9d93bda3c16b9aa446be0 SHA512 6204706c2b325a08ac31205e0c6834e1720a7bab9231859e3ae33d58e516607a338631c6a8cb52fe79ffc79297529e8b2a509c28df6e45766a56054a54d180e4 WHIRLPOOL 6c5d83500f7403adfa1ec05e790e904652ba1d28124227bad6a8c0e9f7e1541920516b8f472c4e57e2f1093351787fc5b3423db32cefac630dddc4b53a6528bc

@ -0,0 +1,36 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-ro/myspell-ro-3.3.8.ebuild,v 1.1 2013/03/25 07:40:27 scarabeus Exp $
EAPI=5
MY_P="ro_RO.${PV}"
MYSPELL_DICT=(
"ro_RO.aff"
"ro_RO.dic"
)
MYSPELL_HYPH=(
"hyph_ro_RO.dic"
)
MYSPELL_THES=(
"th_ro_RO.dat"
"th_ro_RO.idx"
)
inherit myspell-r2
DESCRIPTION="Romanian dictionaries for myspell/hunspell"
HOMEPAGE="http://rospell.sourceforge.net/index_en.html"
SRC_URI="
mirror://sourceforge/rospell/${MY_P}.zip
mirror://sourceforge/rospell/hyph_ro_RO.3.3.6.zip
mirror://sourceforge/rospell/th_ro_RO.3.3.zip
"
LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

@ -1,6 +1,6 @@
DIST myspell-sv-2.12-hyph.oxt 44382 SHA256 cd7cc138f736c97a5580d46223d39893279bcc6dc6d01527f397caebe57fdd47 SHA512 0f71809d2d401bb917037bb50a2fa88ffe825cac081cb14e9378ffeebc447144b733a9d4fd99cc5bc1f1a37835cc880210512ccc79341a4ba8c6cb5dcc38fc40 WHIRLPOOL fd245716f11566cce3de29267c97feada5a7c440d4a85b62e6b8b924de80c3de14a2213deb166e5792fb99588f0b7815c155b02cd7f927ff7c46c4396005fab9
DIST myspell-sv-2.12-thes.oxt 306542 SHA256 58de0797f5dca60b7dd5e2355c381eb4ced72aff7a726861a2512ebc2e97ad55 SHA512 e637dc92bfc9bc86ccf10710fac1b036a99b0abc2888d30ea7dbdaca1c3cbec57fd7a184648d922b120a26f7c151b7cc043f783fb35b7e121ae22458f0a72103 WHIRLPOOL 9a17cb528cd5b2bc201a93429e83cfaf6f83acd8afa430ca2a7446e224684c877edcbc743af9c9a7f75a4342bb9fe3a15479ceabae3401b1218fa8b7b5723149
DIST myspell-sv-2.13-hyph.oxt 44382 SHA256 cd7cc138f736c97a5580d46223d39893279bcc6dc6d01527f397caebe57fdd47 SHA512 0f71809d2d401bb917037bb50a2fa88ffe825cac081cb14e9378ffeebc447144b733a9d4fd99cc5bc1f1a37835cc880210512ccc79341a4ba8c6cb5dcc38fc40 WHIRLPOOL fd245716f11566cce3de29267c97feada5a7c440d4a85b62e6b8b924de80c3de14a2213deb166e5792fb99588f0b7815c155b02cd7f927ff7c46c4396005fab9
DIST myspell-sv-2.13-thes.oxt 306542 SHA256 58de0797f5dca60b7dd5e2355c381eb4ced72aff7a726861a2512ebc2e97ad55 SHA512 e637dc92bfc9bc86ccf10710fac1b036a99b0abc2888d30ea7dbdaca1c3cbec57fd7a184648d922b120a26f7c151b7cc043f783fb35b7e121ae22458f0a72103 WHIRLPOOL 9a17cb528cd5b2bc201a93429e83cfaf6f83acd8afa430ca2a7446e224684c877edcbc743af9c9a7f75a4342bb9fe3a15479ceabae3401b1218fa8b7b5723149
DIST ooo_swedish_dict_2.12.oxt 1273603 SHA256 9025ed8f695a4245edcf37ec5c1711ace09ab7579dac392dfd492b023c966794 SHA512 d268b31e83233d067c8f72994e7c99637d2f8671bd343948312261e7aeb13e4e1306cb99fa686994ab2c1c52ec27213ca059a8ccd28f61db9ba473231a1c658c WHIRLPOOL 68f9eabd89facdc18cdde29d6deca72569feacb930faa7f5a4046e0eaf36f659ab34f7884ae2da63db2b7e3d73b2ee806010f4ee93a1ca16fe4257822824940b
DIST myspell-sv-2.14-hyph.oxt 44382 SHA256 cd7cc138f736c97a5580d46223d39893279bcc6dc6d01527f397caebe57fdd47 SHA512 0f71809d2d401bb917037bb50a2fa88ffe825cac081cb14e9378ffeebc447144b733a9d4fd99cc5bc1f1a37835cc880210512ccc79341a4ba8c6cb5dcc38fc40 WHIRLPOOL fd245716f11566cce3de29267c97feada5a7c440d4a85b62e6b8b924de80c3de14a2213deb166e5792fb99588f0b7815c155b02cd7f927ff7c46c4396005fab9
DIST myspell-sv-2.14-thes.oxt 306542 SHA256 58de0797f5dca60b7dd5e2355c381eb4ced72aff7a726861a2512ebc2e97ad55 SHA512 e637dc92bfc9bc86ccf10710fac1b036a99b0abc2888d30ea7dbdaca1c3cbec57fd7a184648d922b120a26f7c151b7cc043f783fb35b7e121ae22458f0a72103 WHIRLPOOL 9a17cb528cd5b2bc201a93429e83cfaf6f83acd8afa430ca2a7446e224684c877edcbc743af9c9a7f75a4342bb9fe3a15479ceabae3401b1218fa8b7b5723149
DIST ooo_swedish_dict_2.13.oxt 1288042 SHA256 16919babab61391eb873b1341603f82fab81371d075b10117324550678c6b20d SHA512 fa88ef84f8d0d6433409ead7ea53c56b863489360a8f4da1f0ab6a023d4ce5b9d1784e94e242168b8acb7278d49a05b23b1c75a5b4fbd980e250be2aad0e7ae0 WHIRLPOOL 7756bc4d8adcc2dea83dd44411a079806370d7339638711a1c694507367529d5f3d236e0605da7f31e8164f4c954e3d54776ae7f95a1360bdd585eeb28f95023
DIST ooo_swedish_dict_2.14.oxt 1288382 SHA256 88af1cd933dba882b4fde82b83d825bd1569212a2984a284e75039493a332e1f SHA512 77ab715ccb66c7e14ed84189dd0847c809824a3cf0881ee39d08f6d4ef89eccfeafcdbde1759bfa8224650b1907760d9a48f40e464211ae12593ed5525d6372b WHIRLPOOL 4e9ae9d5ef1be73ab66f836d0b37b6082b019b67cd69dd3cdfc8002ad82d495e61bde62c18ad795d1cf532174c4095536995ee9f3adb4debfbd3744b2b619114

@ -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-dicts/myspell-sv/myspell-sv-2.13.ebuild,v 1.1 2013/03/06 21:03:11 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-sv/myspell-sv-2.13.ebuild,v 1.2 2013/03/25 07:37:19 scarabeus Exp $
EAPI=4
@ -36,5 +36,5 @@ SRC_URI="
LICENSE="CC-BY-SA-3.0 GPL-2 LGPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

@ -1,8 +1,8 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-sv/myspell-sv-2.12.ebuild,v 1.3 2013/03/06 21:03:11 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-sv/myspell-sv-2.14.ebuild,v 1.1 2013/03/25 07:37:19 scarabeus Exp $
EAPI=4
EAPI=5
MYSPELL_DICT=(
"sv_FI.aff"
@ -36,5 +36,5 @@ SRC_URI="
LICENSE="CC-BY-SA-3.0 GPL-2 LGPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

@ -2,3 +2,4 @@ DIST libewf-20121209.tar.gz 1533967 SHA256 1a10c8ec2b4ed756e9becff49c5596c455702
DIST libewf-20130105.tar.gz 1534184 SHA256 ea7397872942717ee307766b204651aa545fdbb0d3191ebf0bed98f34eddd50a SHA512 ce396c6badb29eaac04cf08e107fce5d3a89ccad62a283327ab66d332bc6c6b4a6eed30eaeb86f935702e6a3451bf6adb1ca7b03de904e822ace6b060a509091 WHIRLPOOL 1abb3e7ec234c7256c19a2beea2ffeb4d59d0f61b8f7f58468fc7d60482023bea521041ff706bdbdd454a5be66339808deafa34c2bcc64292f621225fff45afe
DIST libewf-20130120.tar.gz 1976835 SHA256 9ef1b4f72517150e12716d331f3f70d2577c76689e41584c7a09461ae6788e97 SHA512 671ee8e6a176a96b0d3c8fba1044482255d72b4f1ccf56e977cfd1d8393f183418c0dcbbc372a632aa02ca2c7eb90e8fdd3f93d58d24a5a53cf5b8dbed32c686 WHIRLPOOL d983db196d1f84e5852c0a6fc6963687ac234d83e4a40ef59421f739b21e7a6c16b5b373b52554e291b00a0b89ecd122e275746c3990bf76f8c537e568cd4d2e
DIST libewf-20130128.tar.gz 1978794 SHA256 769a5662299485f98d50ef484e73da23813827ac52a2963b67a3e3416fd663d5 SHA512 94cdd0c3f0d8f535f3462c5adba266302f9b129abacda077ed429fa38af6862fca5a90ba2e606b78607b509769305cc6134c483c7033c20e226596cca2d42b90 WHIRLPOOL c126f4d074b032ccaeef6e5ef747c188f62c2b09cd7cc021facb94a8c6a9412a0169921b35a2371d7644a927ecb4d15c69a353747a4c6c98111823070c9577cd
DIST libewf-20130303.tar.gz 1972292 SHA256 a4a3a0179f882d0f392ea19893275da4146fb412d5211280d2d06d9f238451a5 SHA512 92f029c932265d0e0ee8f1a7e47ab02efd51977c13f1c811cca7d7137478ec33c99da1f8e07d8d2e71c8d5740a7ed15532440d9529bb2753704fad03fc66c01b WHIRLPOOL 1c04e2a78927cc60d3458ec5ae8b1d9514eeae3e88eb1136bb17a6f10f8eb719d2d96d6d53a3748f4e9e9f6dc95679d1f0398d065c749950c5c0b90415e9002c

@ -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/app-forensics/libewf/libewf-20130303.ebuild,v 1.1 2013/03/24 22:28:44 radhermit Exp $
EAPI=5
inherit autotools-utils
DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
HOMEPAGE="http://code.google.com/p/libewf/"
SRC_URI="http://libewf.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/2"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
# upstream bug #2597171, pyewf has implicit declarations
#IUSE="debug python rawio unicode"
IUSE="debug ewf +fuse rawio +ssl static-libs +uuid unicode zlib"
DEPEND="
sys-libs/zlib
fuse? ( sys-fs/fuse )
uuid? ( sys-apps/util-linux )
ssl? ( dev-libs/openssl )
zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
AUTOTOOLS_IN_SOURCE_BUILD=1
DOCS=( AUTHORS ChangeLog NEWS README documents/header.txt documents/header2.txt )
src_configure() {
local myeconfargs=(
$(use_enable debug debug-output)
$(use_enable debug verbose-output)
$(use_enable ewf v1-api)
$(use_enable rawio low-level-functions)
$(use_enable unicode wide-character-type)
$(use_with zlib)
# autodetects bzip2 but does not use
--without-bzip2
$(use_with ssl openssl)
$(use_with uuid libuuid)
$(use_with fuse libfuse)
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
doman manuals/*.1 manuals/*.3
}

@ -1,2 +1 @@
DIST ibus-qt-1.3.0-Source.tar.gz 138525 SHA256 f7b143e53c775bd2db14079d0dd6ab9d404e43a5a1634ff3487fe372b494cee0 SHA512 5c8244f25bcd49c0da78a5b38e295df098fb9f8f4d27934036f2e637b43716b1580b2cae9c3fa66ff9c77aba2863f0ad77fb639b2ffa0e49a1f2a373e3b7bef0 WHIRLPOOL 0e98b94be3d1d8f3a72f1e5e1aa3cc3d3a1de39b7f87dda07447c0270a82233b03d8cdbaebf59b0c17ef5cc409a3e3430024cd1505c2b8886bb9796c40830ad4
DIST ibus-qt-1.3.1-Source.tar.gz 141488 SHA256 4079577a240c961278f7bdab11a5ad546dff414c687c60560fdbc19208b3ac85 SHA512 2cd28f8ff3fff411496ccaf9ab67ab5332b7f2d2d0d0e3460dbeb34874ed931aa56c222c3ea5ce39053577b91cd2de4ebe01152039cd6def37c366ab3065cff2 WHIRLPOOL 585ead9a02d2014f7536aa633c72e07f8ce990c768d0aa9b5bf00105166f467307fb12457c5da4c2aa0b7b5cf9656d616de7d0e344e8d02161e123368bdad9ff

@ -0,0 +1,29 @@
From 40e119bd5577fc383990ad02b175ec64292f764b Mon Sep 17 00:00:00 2001
From: Jekyll Wu <adaptee@gmail.com>
Date: Tue, 16 Oct 2012 11:24:06 +0900
Subject: [PATCH] Fix a non-const lvalue build error with clang-3.1
BUG=http://code.google.com/p/ibus/issues/detail?id=1506
Review URL: https://codereview.appspot.com/6697048
Patch from Jekyll Wu <adaptee@gmail.com>.
---
src/qibusserializable.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/qibusserializable.h b/src/qibusserializable.h
index 594d973..92a32ed 100644
--- a/src/qibusserializable.h
+++ b/src/qibusserializable.h
@@ -91,7 +91,7 @@ class Serializable : public Object
template<typename T>
QVariant &
-qVariantFromSerializable (const Pointer<T> &p, QVariant & variant = QVariant ())
+qVariantFromSerializable (const Pointer<T> &p, QVariant & variant)
{
QDBusArgument argument;
--
1.8.1.5

@ -1,54 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.0.ebuild,v 1.6 2013/03/02 19:27:03 hwoarang Exp $
EAPI="5"
inherit cmake-utils eutils multilib
MY_P="${P}-Source"
DESCRIPTION="Qt IBus library and Qt input method plugin"
HOMEPAGE="http://code.google.com/p/ibus/"
SRC_URI="http://ibus.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND=">=app-i18n/ibus-1.2
>=sys-apps/dbus-1.2
x11-libs/libX11
>=dev-qt/qtcore-4.5:4
>=dev-qt/qtdbus-4.5:4"
DEPEND="${RDEPEND}
>=dev-libs/icu-4:=
dev-util/cmake
virtual/pkgconfig
doc? ( app-doc/doxygen )"
S="${WORKDIR}/${MY_P}"
DOCS="AUTHORS README TODO"
mycmakeargs="-DLIBDIR=$(get_libdir) -DDOCDIR=/usr/share/doc/${PF} all"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.2.0.20091217-doc.patch"
}
src_compile() {
cmake-utils_src_compile
if use doc ; then
cd "${CMAKE_BUILD_DIR}"
emake docs || die
fi
}
src_install() {
if use doc ; then
HTML_DOCS="${CMAKE_BUILD_DIR}/docs/html/*"
fi
cmake-utils_src_install
}

@ -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-i18n/ibus-qt/ibus-qt-1.3.1.ebuild,v 1.8 2013/03/02 19:27:03 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.3.1.ebuild,v 1.9 2013/03/25 11:23:46 naota Exp $
EAPI="5"
inherit cmake-utils eutils multilib
@ -35,7 +35,8 @@ mycmakeargs="-DLIBDIR=$(get_libdir) -DDOCDIR=/usr/share/doc/${PF} all"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.2.0.20091217-doc.patch" \
"${FILESDIR}"/${PN}-1.3.1-display-unset.patch \
"${FILESDIR}"/${PN}-1.3.1-gold.patch
"${FILESDIR}"/${PN}-1.3.1-gold.patch \
"${FILESDIR}"/${PN}-1.3.1-qvariant.patch
}
src_compile() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicode-data/unicode-data-6.1.0.ebuild,v 1.1 2012/11/04 12:20:24 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicode-data/unicode-data-6.1.0.ebuild,v 1.2 2013/03/25 06:11:12 pinkbyte Exp $
EAPI=5
@ -10,7 +10,7 @@ SRC_URI="mirror://debian/pool/main/u/${PN}/${PN}_${PV}.orig.tar.gz"
LICENSE="unicode"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
DEPEND="app-arch/unzip"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.8.ebuild,v 1.1 2013/02/17 05:53:38 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.8.ebuild,v 1.2 2013/03/25 04:50:27 tomka Exp $
EAPI=4
@ -67,6 +67,5 @@ pkg_preinst() {
elog "converted to the new format and a backup of your Anki-1"
elog "decks is created. Please read the following:"
elog "http://ankisrs.net/anki2.html"
elog "The mobile clients for Anki 2 are still under development."
fi
}

@ -1,3 +1,4 @@
DIST gramps-3.4.0.tar.gz 9470815 SHA256 4d029c4f3d3ffd369cbf3859f86f3602ce97a038ed6238b9811d0bf3cd15acf0 SHA512 469fbbcb1e864f0c5a771f83e4592ff27f86b017fd9fe9d6d56fff04aa888bfd08d1a6d2bfcccb244328b3a78c7b22e031452d9eb409b674cf0369e0af8aed0f WHIRLPOOL f068bb558cd5a6c5b4bf03dfb0d7a389aa8ea3175d2240d3a9d612a684a1cfbdf781b98d8ba859bfeaf5843ea744b721673b8115495777401bbc165922bebf08
DIST gramps-3.4.1.tar.gz 10024633 SHA256 dc0cabfbe5586d5f38af6364a7adfdb52a543614583f60a5ecbdb317d0bac8c7 SHA512 550b104458eacdeb765bf856808474d73b18903cdc56b91c7a5cb0ee28a3fef6ae48979daa6ec36a693b396697a415838dda7aa5314800c4118865205883fca5 WHIRLPOOL 3f7d40962a8b339d2af59767e692ae2d7c831e489675dac3d46c2ee53a3c0a4a340a346a9e317718bf85eb43fff0a3d6461656c00218ea978176d6813ba0f0bb
DIST gramps-3.4.2.tar.gz 9799202 SHA256 8cfc19b53ddf2bb864356c6749ac7703560bd818a3d47bb514f05d7b07a5b222 SHA512 73406fd5f5a29af5c8b03972a40ca73cc2198e93bacbf05bec521828c6fd50229b099380eafb7515e4e49c19f8395d992cf03a7ce256d85884294466eb3daa6b WHIRLPOOL dc0e996f71f0bc1e44a367509ea1862ade333c2870354a1e0a4017f0ca460a8235bf7c38f4818782d6c3f5c370db97258f1787db828a7b8b79cafdbcaca40cb2
DIST gramps-3.4.3.tar.gz 10358169 SHA256 f7a87def57d1d3fbdc9f4528da50742bbbd6dfc7e8c5e43710f5a8618f9c46c1 SHA512 f30a5f7ce89f3570f73a7576906342edab25d3c3d12686acc0d5ec6fff142e443f42d3345a55e30ca47a304fe63225b310e7d11ad3d22ce69098a539f9adae02 WHIRLPOOL 59d237da058831bc6a5c9fd0fa305c34f6d5a90491c80916624d83a61c30800007b2da2c112b2dae0f53295e25631d7dd7ea47c3cfb30fb449f878be8d3f23a8

@ -0,0 +1,90 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gramps/gramps-3.4.3.ebuild,v 1.1 2013/03/24 20:14:28 fauli Exp $
EAPI=3
PYTHON_DEPEND="2:2.6"
GCONF_DEBUG="no"
inherit eutils gnome2 python
DESCRIPTION="Genealogical Research and Analysis Management Programming System"
HOMEPAGE="http://www.gramps-project.org/"
SRC_URI="mirror://sourceforge/gramps/Stable/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gnome reports spell webkit"
RDEPEND="dev-python/bsddb3
>=dev-python/pygtk-2.16.0
dev-python/pygoocanvas
x11-misc/xdg-utils
gnome-base/librsvg:2
gnome? ( dev-python/libgnome-python
dev-python/gconf-python )
spell? ( dev-python/gtkspell-python )
reports? ( media-gfx/graphviz )
webkit? ( dev-python/pywebkitgtk )"
DEPEND="${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/libiconv
virtual/pkgconfig"
DOCS="NEWS README TODO"
pkg_setup() {
G2CONF="${G2CONF} --disable-mime-install PYTHON="${EROOT}"/usr/bin/python2"
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
gnome2_src_prepare
epatch "${FILESDIR}/${PN}-3.4.0-use_bsddb3.patch"
# This is for bug 215944, so .pyo/.pyc files don't get into the
# file system
python_clean_py-compile_files
# Fix install path, bug 423315 for example
einfo "Fix installation path"
find . -iname 'Makefile.in' | xargs \
sed "s;\(pkgdatadir = \)\(\$(datadir)\);\1$(python_get_sitedir);" -i \
|| die
find . -iname 'Makefile.in' | xargs \
sed "s;\(pkgpythondir = \)\(\$(datadir)\);\1$(python_get_sitedir);" -i \
|| die
sed "s;\$(prefix)/share/gramps;/$(python_get_sitedir)/@PACKAGE@;" \
-i src/Makefile.in || die
sed "s;\$(prefix)/share/gramps;/$(python_get_sitedir)/@PACKAGE@;" \
-i src/docgen/Makefile.in || die
einfo "Fix wrapper script"
sed "s;@datadir@;$(python_get_sitedir);" \
-i gramps.sh.in || die
einfo "Fix icon location"
sed "s;gramps/;pixmap/;g" -i data/gramps.keys.in || die
}
src_install() {
python_need_rebuild
gnome2_src_install
}
pkg_postinst() {
gnome2_pkg_postinst
python_mod_optimize ${PN}
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup ${PN}
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/grc/grc-1.4-r1.ebuild,v 1.1 2013/01/08 14:54:46 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/grc/grc-1.4-r1.ebuild,v 1.2 2013/03/25 05:56:05 pinkbyte Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="http://kassiopeia.juls.savba.sk/~garabik/software/${PN}/${P/-/_}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
KEYWORDS="amd64 ~ppc ~x86"
IUSE=""
RDEPEND="${PYTHON_DEPS}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.0.ebuild,v 1.5 2013/03/02 19:34:29 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.0.ebuild,v 1.6 2013/03/24 18:42:02 dilfridge Exp $
EAPI=4
@ -22,7 +22,7 @@ HOMEPAGE="http://pim.kde.org/akonadi"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="+mysql postgres sqlite test"
IUSE="+mysql postgres +sqlite test"
CDEPEND="
dev-libs/boost
@ -72,13 +72,18 @@ pkg_setup() {
fi
# Notify about MySQL not being default anymore
if ! use sqlite && has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
if has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
ewarn
ewarn "The default storage drive has changed from SQLite to MySQL."
ewarn "If you want to stay with SQLite, enable the sqlite USE flag and reinstall"
ewarn "${CATEGORY}/${PN}."
ewarn "Otherwise, select a different driver in your ~/.config/akonadi/akonadiserverrc."
ewarn "We strongly recommend you change your Akonadi database backend to MySQL in your"
ewarn "user configuration. This is the backend recommended by KDE upstream."
ewarn "In particular, kde-base/kmail-4.10 does not work properly with the sqlite"
ewarn "backend anymore."
ewarn "To ease the transition, this akonadi-server ebuild has enabled both sqlite"
ewarn "and mysql backend by default. Future stable versions will by default"
ewarn "disable the sqlite backend."
ewarn "You can select the backend in your ~/.config/akonadi/akonadiserverrc."
ewarn "Available drivers are:${AVAILABLE}"
ewarn
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-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.1 2013/03/20 13:38:54 kensington Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.2 2013/03/24 18:42:02 dilfridge Exp $
EAPI=4
@ -22,7 +22,7 @@ HOMEPAGE="http://pim.kde.org/akonadi"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="+mysql postgres sqlite test"
IUSE="+mysql postgres +sqlite test"
CDEPEND="
dev-libs/boost
@ -72,13 +72,18 @@ pkg_setup() {
fi
# Notify about MySQL not being default anymore
if ! use sqlite && has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
if has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
ewarn
ewarn "The default storage drive has changed from SQLite to MySQL."
ewarn "If you want to stay with SQLite, enable the sqlite USE flag and reinstall"
ewarn "${CATEGORY}/${PN}."
ewarn "Otherwise, select a different driver in your ~/.config/akonadi/akonadiserverrc."
ewarn "We strongly recommend you change your Akonadi database backend to MySQL in your"
ewarn "user configuration. This is the backend recommended by KDE upstream."
ewarn "In particular, kde-base/kmail-4.10 does not work properly with the sqlite"
ewarn "backend anymore."
ewarn "To ease the transition, this akonadi-server ebuild has enabled both sqlite"
ewarn "and mysql backend by default. Future stable versions will by default"
ewarn "disable the sqlite backend."
ewarn "You can select the backend in your ~/.config/akonadi/akonadiserverrc."
ewarn "Available drivers are:${AVAILABLE}"
ewarn
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-office/akonadi-server/akonadi-server-1.9.1.ebuild,v 1.2 2013/03/04 19:14:29 mschiff Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1.ebuild,v 1.3 2013/03/24 18:42:02 dilfridge Exp $
EAPI=4
@ -22,7 +22,7 @@ HOMEPAGE="http://pim.kde.org/akonadi"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="+mysql postgres sqlite test"
IUSE="+mysql postgres +sqlite test"
CDEPEND="
dev-libs/boost
@ -72,13 +72,18 @@ pkg_setup() {
fi
# Notify about MySQL not being default anymore
if ! use sqlite && has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
if has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then
ewarn
ewarn "The default storage drive has changed from SQLite to MySQL."
ewarn "If you want to stay with SQLite, enable the sqlite USE flag and reinstall"
ewarn "${CATEGORY}/${PN}."
ewarn "Otherwise, select a different driver in your ~/.config/akonadi/akonadiserverrc."
ewarn "We strongly recommend you change your Akonadi database backend to MySQL in your"
ewarn "user configuration. This is the backend recommended by KDE upstream."
ewarn "In particular, kde-base/kmail-4.10 does not work properly with the sqlite"
ewarn "backend anymore."
ewarn "To ease the transition, this akonadi-server ebuild has enabled both sqlite"
ewarn "and mysql backend by default. Future stable versions will by default"
ewarn "disable the sqlite backend."
ewarn "You can select the backend in your ~/.config/akonadi/akonadiserverrc."
ewarn "Available drivers are:${AVAILABLE}"
ewarn
fi
}

@ -1,2 +1 @@
DIST libpaper_1.1.23.tar.gz 351153 SHA256 d6fe2af9da1f5f035665ba5f4600ea53cf00041eb268d981447c193eb3212acb SHA512 6bec4ef4fb11578d50a76645bbd555545387c25a7c2fedd92417f0e26f63b532bea93b850882fb3e8b8e9b8b1e85f04b30ebd10c0dcc3899a53df5593dcb4f70 WHIRLPOOL f38933da21afbfd7fcd4e7b00b9c5e9ebff2f126b45c90e965de5309f5e5b3c1f2b703dba9253bbef9ce1264f67637224bb85958170ef33f71f7200d3c36cbfc
DIST libpaper_1.1.24.tar.gz 355272 SHA256 38ac28114673d4b175a939d981e0477a0ed9bcaab27033522ecb2ca78ee90c7e SHA512 f90816723dafa9ce0aef652e027b13174d2430208003d3715d6f96226130bc66cfc36465f1a5a3f855697708c389f219b964a5534a64a8c98ac53662040df67b WHIRLPOOL 74a7cb6dec146104988dd5c5e0b4bf7fb776bde086c4fecf658d949e17d6701fa1b23511a7be43f01a01dcfd7c0340f23c3c9ec1c51fb7718d6b0dbf1761e75d

@ -1,12 +0,0 @@
Index: libpaper-1.1.14ubuntu8/lib/paper.c
===================================================================
--- libpaper-1.1.14ubuntu8.orig/lib/paper.c
+++ libpaper-1.1.14ubuntu8/lib/paper.c
@@ -14,7 +14,6 @@
#include <sys/stat.h>
#include <stdio.h>
-#include <malloc.h>
#include <string.h>
#include <ctype.h>

@ -1,36 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libpaper/libpaper-1.1.23.ebuild,v 1.10 2010/03/08 08:14:49 sping Exp $
inherit eutils libtool
MY_P=${P/-/_}
DESCRIPTION="Library for handling paper characteristics"
HOMEPAGE="http://packages.debian.org/unstable/source/libpaper"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/libpaper-1.1.14.8-malloc.patch
elibtoolize
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README ChangeLog debian/changelog debian/NEWS
dodir /etc
(paperconf 2>/dev/null || echo a4) > "${D}"/etc/papersize
}
pkg_postinst() {
echo
elog "run \"paperconfig -p letter\" as root to use letter-pagesizes"
elog "or paperconf with normal user privileges."
echo
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libpaper/libpaper-1.1.24-r1.ebuild,v 1.9 2012/04/26 20:47:07 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libpaper/libpaper-1.1.24-r1.ebuild,v 1.11 2013/03/24 22:23:43 dilfridge Exp $
EAPI=4
@ -37,11 +37,10 @@ src_install() {
dodir /etc
(paperconf 2>/dev/null || echo a4) > "${ED}"/etc/papersize \
|| die "papersize config failed"
}
pkg_postinst() {
echo
elog "run \"paperconf -p letter\" as root to use letter-pagesizes"
elog "or paperconf with normal user privileges."
echo
if ! has_version app-text/libpaper ; then
echo
elog "run e.g. \"paperconfig -p letter\" as root to use letter-pagesizes"
echo
fi
}

@ -1,3 +1,3 @@
DIST llpp-12.tar.gz 100362 SHA256 30c66684a1b2892bd1125afb99583abad5cc433dee2c623ec0cdefb0ec4c6fe4 SHA512 c6c298bf0fdf8eb10aa1e1812d386022fae26271084b014a3a512fc1c8cf7c8ca5768c3587e7c83e34210354e4219b74cee22fb51edc1fe467de4c11b631416c WHIRLPOOL f2ffe1005b2f0d89dda865c3d0f0a306e311cad6ef45070a702eefe2c44e59ca5067e95de182fb4673526dea801b8969d44260fb32d1fd57549777f95194dfde
DIST llpp-13.tar.gz 102399 SHA256 43d74cef7f0235766b99aa4ebdd284f1c5f3472c989f2c49cf16fc118c40598e SHA512 7d59d7ad904cc1fcc82420bd893fab3cbc91a7bf8eb0fbc7345ed2fe5a19885c4e417ea76bb397bce8c0c25ce3b2a93242f43a04e4bfacaa590d6e07775a42ba WHIRLPOOL 06de03657d1becd7d930dfeaf1becb92b95313e3a8f4a3f37cee923fb0a6dc87f10aeb71e96a7a2930536b32f1a6a923253ca632c7e02cbd72840a9db87c000c
DIST llpp-13_p20121123.tar.gz 110436 SHA256 367c01e14478b18c39a34bc515f495b980789e536744e7b698d1639e6935eb35 SHA512 2c8f47adb619416743eb2ee9f43df38989af4e255626810bc9ac34020e37d5e6637589a4e20324184184c1da21d2ed9c3f6083d02cc98a8364946091831edc60 WHIRLPOOL e8ccfbf7a6c782913ea8ba4851b42f30eba171f0c03a14946697e0763f4b95c0f56e629d0d1747f169b6bb138cedbe0bb2487012d9e1b76a902722aaf6866c59
DIST llpp-15.tar.gz 109546 SHA256 cc415775a62144f8e4185f5d550952b6d2d573072b5b7d91bc8c09c564ce156c SHA512 96f4720f2ee0d9d2d5903ed452e7314e08d14a5806b13d439e01bfd4121fe714f5146e0cb6b33bced3c9c4b652ed8c9334070643e66276f07ea9e9b50d8b5b93 WHIRLPOOL 097871bcb121807eb1d5211254e8670c0cc08eb79787d9255217d10841a0e2436ee50194f038023efa052a4db4e5ac251dd88215ef44ae966689ff03cf79252a

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-13_p20121123.ebuild,v 1.1 2012/11/28 08:16:43 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-13_p20121123.ebuild,v 1.2 2013/03/25 09:52:52 xmw Exp $
EAPI=4
@ -22,7 +22,7 @@ RDEPEND="media-libs/freetype
x11-libs/libX11
x11-misc/xsel"
DEPEND="${RDEPEND}
>=app-text/mupdf-1.1_p20121127
=app-text/mupdf-1.1_p20121127
dev-lang/ocaml[ocamlopt]
dev-ml/lablgl[glut]"

@ -1,14 +1,14 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-13.ebuild,v 1.1 2012/11/27 12:39:27 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-15.ebuild,v 1.2 2013/03/25 10:17:12 xmw Exp $
EAPI=4
inherit eutils toolchain-funcs
inherit eutils toolchain-funcs vcs-snapshot
DESCRIPTION="a graphical PDF viewer which aims to superficially resemble less(1)"
HOMEPAGE="http://repo.or.cz/w/llpp.git"
SRC_URI="http://repo.or.cz/w/llpp.git/snapshot/68f22b01f680b7afaf56c24ec0b4d7eae3d08c35.tar.gz -> ${P}.tar.gz"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
@ -22,12 +22,10 @@ RDEPEND="media-libs/freetype
x11-libs/libX11
x11-misc/xsel"
DEPEND="${RDEPEND}
app-text/mupdf
>=app-text/mupdf-1.2
dev-lang/ocaml[ocamlopt]
dev-ml/lablgl[glut]"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${PN}-11-WM_CLASS.patch
}
@ -40,13 +38,15 @@ src_compile() {
local mycclib="-lfitz -lz -ljpeg -lopenjpeg -ljbig2dec -lfreetype -lX11 -lpthread"
ocamlopt.opt -c -o link.o -ccopt "${myccopt}" link.c || die
ocamlopt.opt -c -o help.cmx help.ml || die
ocamlopt.opt -c -o utils.cmx utils.ml || die
ocamlopt.opt -c -o wsi.cmi wsi.mli || die
ocamlopt.opt -c -o wsi.cmx wsi.ml || die
ocamlopt.opt -c -o parser.cmx parser.ml || die
ocamlopt.opt -c -o main.cmx -I +lablGL main.ml || die
ocamlopt.opt -o llpp -I +lablGL \
str.cmxa unix.cmxa lablgl.cmxa link.o \
-cclib "${mycclib}" help.cmx parser.cmx wsi.cmx main.cmx || die
-cclib "${mycclib}" help.cmx utils.cmx parser.cmx wsi.cmx main.cmx \
|| die
}
src_install() {

@ -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-text/llpp/llpp-9999.ebuild,v 1.16 2013/02/17 23:13:52 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/llpp-9999.ebuild,v 1.17 2013/03/25 10:07:18 xmw Exp $
EAPI=4
@ -24,7 +24,7 @@ RDEPEND="media-libs/freetype
x11-libs/libX11
x11-misc/xsel"
DEPEND="${RDEPEND}
>=app-text/mupdf-1.0
>=app-text/mupdf-1.2
dev-lang/ocaml[ocamlopt]
dev-ml/lablgl[glut]"

@ -1,4 +1,4 @@
DIST mupdf-1.0-source.tar.gz 4208530 SHA256 4f5e12625f7f827f6eb5606026c9a7a7dbdeaf935fcea3bc173ed8d469698ec2 SHA512 00f71288740a137fa3eb3537453f0465949a2dbc590a38651b3dd7a651dad6d0dc5070a3072988439f52729b12478cb467f202157ceb44e5a560431354567861 WHIRLPOOL b58166c37fa6ba81e946e53326dad50426886380b051943f2988657780e3c77e4970541f27ec3efc29ce6693012293bf3104dfd79dfc50f644c6f051431294f3
DIST mupdf-1.1-source.tar.gz 4281735 SHA256 e54666bbe1d9f0a5464349bfbeffcf676c4a0fcad3efb89eba1f20d4ac991f34 SHA512 d61694041d28309e8119283fb97cef5e1f2effa6e93bfe5ad0b2a0b6b76e38a575a23b0ba367cb59efa77f35b131bf82667f2c7c8df29eb4cdbe3c12b0ad3a33 WHIRLPOOL 67ba7df6c0b94f3213b2e6a709fc3d9ec02945a0825169fb8833b2919b4bd4d8e6fd5f29b2b231df213f8e68d092526b59c152281b56d1c3a9064799ed35e60c
DIST mupdf-1.1_p20120816.tar.gz 4274527 SHA256 f1905839972c8a0315cd9487c05db87670bc9860320a348c15d34d50306d3fb0 SHA512 8dc809545e1931da5772847ccecc668eb09d048c086b21001bdc3514ac096e5a5a5f50d29cd98a033b641ef4d71c70d40dec9227a6e7baf6cd4ca6a6d84a1a44 WHIRLPOOL 7ee83acc09cec52f435524339f5c102a3459bbc9155e924f88f50879961ca7fa167dd78b3b1c968a2e80b22c29cc85840930340ffaecf7b1f525b6cdd3ebbc91
DIST mupdf-1.1_p20121127.tar.gz 6922632 SHA256 4594bc0473e61200e6d2aba06488ea3127a7d42cd70daa01ea12c3dba5eb654c SHA512 1dff76502a5cf13e26f0bed30046878334730912ddec12f2674de69f62b173182020566f1ddd341bf3a51b28af1334c0cfcc70cac0ac8b0fb1dceacae6b25418 WHIRLPOOL 1597b87b7c53e522a5929b8c0c5c07b0a957084fb4b6974d68feea755d88606930b8a78b998efb94190c00d3d9135a60652f2751c709d49315ae10e30dc9ee0e
DIST mupdf-1.2-source.zip 13808821 SHA256 9bc9e31ec27c091dad37f70940bd799e46ab6da4299bc58e803bff3dbb07dc3b SHA512 49261c5356d4e5648f89bfb783a23a3c3a470e044fe3b234f0906b0f6b71efad557981682e41ce3d754a5a31f1e5518e5e5f5f8dc83d2ca53181dbd3f4726e02 WHIRLPOOL 86fb60a2ac94c8ca4495c0891dd2b43ea49c9e212e2961f02914a3aaa5685566201f561c196da7d4c568dcec938eea8676959bbec839e33a7bff4e6410cc1a25

@ -0,0 +1,11 @@
--- mupdf-1.1/debian/mupdf.desktop
+++ mupdf-1.1/debian/mupdf.desktop
@@ -10,6 +10,8 @@
Type=Application
MimeType=application/pdf;application/x-pdf;
Categories=Viewer;Graphics;
+Actions=View;
[Desktop Action View]
+Name=View with mupdf
Exec=mupdf %f

@ -0,0 +1,13 @@
should be upstream, but not included here http://bugs.ghostscript.com/show_bug.cgi?id=693595#c1
--- mupdf-1.2-source/Makefile
+++ mupdf-1.2-source/Makefile
@@ -212,7 +212,7 @@
install -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(incdir) $(DESTDIR)$(mandir)/man1
install $(FITZ_LIB) $(DESTDIR)$(libdir)
install fitz/memento.h fitz/fitz.h pdf/mupdf.h xps/muxps.h cbz/mucbz.h $(DESTDIR)$(incdir)
- install $(MUVIEW) $(MUDRAW) $(MUBUSY) $(DESTDIR)$(bindir)
+ install $(MUVIEW) $(MUDRAW) $(MUTOOL) $(DESTDIR)$(bindir)
install $(wildcard apps/man/*.1) $(DESTDIR)$(mandir)/man1
# --- Clean and Default ---

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.1.ebuild,v 1.5 2012/11/29 13:11:52 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.1.ebuild,v 1.6 2013/03/25 09:19:23 xmw Exp $
EAPI=4
@ -8,7 +8,7 @@ inherit eutils flag-o-matic multilib toolchain-funcs
DESCRIPTION="a lightweight PDF viewer and toolkit written in portable C"
HOMEPAGE="http://mupdf.com/"
SRC_URI=" http://${PN}.googlecode.com/files/${P/_rc/-rc}-source.tar.gz"
SRC_URI="http://${PN}.googlecode.com/files/${P/_rc/-rc}-source.tar.gz"
LICENSE="GPL-3"
SLOT="0"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.1_p20121127.ebuild,v 1.1 2012/11/28 08:14:04 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.1_p20121127.ebuild,v 1.2 2013/03/25 09:50:29 xmw Exp $
EAPI=4
@ -26,6 +26,7 @@ DEPEND="${RDEPEND}
src_prepare() {
epatch "${FILESDIR}"/${P}-buildsystem.patch
epatch "${FILESDIR}"/${P}-desktop-integration.patch
if ! use vanilla ; then
epatch "${FILESDIR}"/${PN}-1.1_rc1-zoom-2.patch

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.1_p20120816.ebuild,v 1.1 2012/11/28 08:05:27 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.2.ebuild,v 1.2 2013/03/25 09:50:29 xmw Exp $
EAPI=4
@ -8,9 +8,9 @@ inherit eutils flag-o-matic multilib toolchain-funcs
DESCRIPTION="a lightweight PDF viewer and toolkit written in portable C"
HOMEPAGE="http://mupdf.com/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
SRC_URI="http://${PN}.googlecode.com/files/${P}-source.zip"
LICENSE="GPL-3"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X vanilla"
@ -24,8 +24,14 @@ RDEPEND="media-libs/freetype:2
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${P}-source
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.1_rc1-buildsystem.patch
rm -rf thirdparty || die
epatch "${FILESDIR}"/${PN}-1.1_p20121127-buildsystem.patch
epatch "${FILESDIR}"/${PN}-1.1_p20121127-desktop-integration.patch
epatch "${FILESDIR}"/${PN}-1.2-mubusy_rename_fix.patch
if ! use vanilla ; then
epatch "${FILESDIR}"/${PN}-1.1_rc1-zoom-2.patch
@ -55,5 +61,5 @@ src_install() {
domenu debian/mupdf.desktop
doicon debian/mupdf.xpm
fi
dodoc README doc/{example.c,overview.txt}
dodoc CHANGES README doc/{example.c,overview.txt}
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.23 2012/11/28 07:33:08 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.24 2013/03/25 09:50:29 xmw Exp $
EAPI=4
@ -25,6 +25,7 @@ DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.1_p20121127-desktop-integration.patch
epatch "${FILESDIR}"/${PN}-9999-buildsystem.patch
if ! use vanilla ; then

@ -1 +1,2 @@
DIST pdftk-1.44-src.zip 1137086 SHA256 d70cb3faf2af849c2bee6c35e4e829277a5090cbb595321f04b59c94d784aa24 SHA512 b19392cb3e28ba6bb8e550df6fbffd05743bb95ffa4e1ac4b3935ef5456f7def275f1177b50e6e6aae45a16d6639ea3b731adee684a37f0445f2a64a9d1cebdf WHIRLPOOL bead1b44b2415aca57d0e35daecee1dab2c0ef2b8c30a651647ace09e82b1f91c26b70df4924662b1d134688a13032653a6d55098803b8a5e67c2b0de08e5ffe
DIST pdftk-1.45-src.zip 1159411 SHA256 f4e1a50a9ae748dc71883182b797c80c497884fb3071e564361af57354378fcf SHA512 c14b0d411ec26e59bb54b21e10615b4d8e78c0e300f78e46e84ee634b122ded08b3fb45c2b534e60fb45fe3994b782d3b3dbea759da61cef470de89e29689e5c WHIRLPOOL cdfa25cda0167cf4920515689c56813efed821fdcf1599c754fbefacc7968518bc18d7756dc3432cf7f4a23f75c8bbc1dfcf540d93f242082c96cbe1abac3510

@ -0,0 +1,46 @@
Based on Debian patch, see http://patch-tracker.debian.org/patch/series/view/pdftk/1.45-1/customise_build_parameters
diff -ruN pdftk-1.45-dist.orig/pdftk/Makefile.Base pdftk-1.45-dist/pdftk/Makefile.Base
--- pdftk-1.45-dist.orig/pdftk/Makefile.Base 2012-12-06 19:57:36.000000000 +0100
+++ pdftk-1.45-dist/pdftk/Makefile.Base 2013-03-24 18:32:52.669492230 +0100
@@ -44,7 +44,7 @@
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -I$(JAVALIBPATH) pdftk.cc -c
pdftk : pdftk.o attachments.o report.o $(JAVALIB) $(GCJ_LOCAL_LIB_FULL)
- $(CXX) $(CXXFLAGS) attachments.o report.o pdftk.o $(JAVALIB) $(GCJ_LOCAL_LIB_FULL) $(LDLIBS) -o pdftk
+ $(CXX) $(LDFLAGS) $(CXXFLAGS) attachments.o report.o pdftk.o $(JAVALIB) $(GCJ_LOCAL_LIB_FULL) $(LDLIBS) -o pdftk
install:
/usr/bin/install pdftk /usr/local/bin
diff -ruN pdftk-1.45-dist.orig/pdftk/Makefile.Debian pdftk-1.45-dist/pdftk/Makefile.Debian
--- pdftk-1.45-dist.orig/pdftk/Makefile.Debian 2012-12-06 19:58:44.000000000 +0100
+++ pdftk-1.45-dist/pdftk/Makefile.Debian 2013-03-24 18:34:39.034540850 +0100
@@ -29,7 +29,7 @@
# tools
# need direct path to libgcj for gcjh (starting in gcj 4.1.2 per Aurélien GÉRÔME)
TOOLPATH=
-export VERSUFF=-4.6
+export VERSUFF=
export CXX= $(TOOLPATH)g++$(VERSUFF)
export GCJ= $(TOOLPATH)gcj$(VERSUFF)
export GCJH= $(TOOLPATH)gcjh$(VERSUFF)
@@ -71,13 +71,13 @@
# only effects libraries following option on the command line
#
#
-export CPPFLAGS= -DPATH_DELIM=0x2f -DASK_ABOUT_WARNINGS=false -DUNBLOCK_SIGNALS -fdollars-in-identifiers
-export CXXFLAGS= -Wall -Wextra -Weffc++ -O2
-export GCJFLAGS= -Wall -Wextra -fsource=1.3 -O2
-export GCJHFLAGS= -force
+export CPPFLAGS+= -DPATH_DELIM=0x2f -DASK_ABOUT_WARNINGS=false -DUNBLOCK_SIGNALS -fdollars-in-identifiers
+export CXXFLAGS+= -Wall -Wextra -Weffc++
+export GCJFLAGS+= -fsource=1.3
+export GCJHFLAGS+= -force
export LDLIBS= -lgcj
include Makefile.Base
# required packages (xubuntu 12.04)
-# gcj-jdk, g++
\ Kein Zeilenumbruch am Dateiende.
+# gcj-jdk, g++

@ -0,0 +1,38 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pdftk/pdftk-1.45.ebuild,v 1.1 2013/03/24 17:39:03 dilfridge Exp $
EAPI=5
inherit eutils
DESCRIPTION="A tool for manipulating PDF documents"
HOMEPAGE="http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/"
SRC_URI="http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/${P}-src.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE=""
DEPEND="sys-devel/gcc[gcj]"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${P}-dist/${PN}
src_prepare() {
epatch "${FILESDIR}/${P}-flags.patch"
}
src_compile() {
# java-config settings break compilation by gcj.
unset CLASSPATH
unset JAVA_HOME
# parallel make fails
emake -j1 -f "${S}"/Makefile.Debian || die "Compilation failed."
}
src_install() {
dobin pdftk || die
doman ../pdftk.1 || die
dohtml ../pdftk.1.html || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/qpdfview/qpdfview-0.4.ebuild,v 1.1 2013/03/19 11:21:33 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/qpdfview/qpdfview-0.4.ebuild,v 1.2 2013/03/25 04:19:41 pinkbyte Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="cups dbus djvu pdf postscript sqlite +svg synctex"
IUSE="cups dbus djvu +pdf postscript sqlite +svg synctex"
RDEPEND="app-text/poppler[qt4]
dev-qt/qtcore:4[iconv]

@ -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-embedded/bitbake/bitbake-1.17.0.ebuild,v 1.3 2013/01/14 04:06:32 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/bitbake/bitbake-1.17.0.ebuild,v 1.4 2013/03/24 20:40:06 vapier Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]] ; then
KEYWORDS=""
else
SRC_URI="https://github.com/openembedded/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~ppc ~x86"
KEYWORDS="amd64 ppc x86"
fi
DESCRIPTION="package management tool for OpenEmbedded"

@ -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-lang/ekopath/ekopath-4.0.12.1_pre20121102.ebuild,v 1.1 2013/01/03 07:45:23 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-4.0.12.1_pre20121102.ebuild,v 1.2 2013/03/24 21:06:04 xarthisius Exp $
EAPI=4
@ -47,6 +47,7 @@ src_prepare() {
PATH=/opt/${PN}/bin
ROOTPATH=/opt/${PN}/bin
LDPATH=/opt/${PN}/lib:/opt/${PN}/lib/${MY_PV}/x8664/64
MANPATH=/opt/${PN}/docs/man
EOF
}

@ -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-lang/ekopath/ekopath-5.0.0_pre20130113.ebuild,v 1.1 2013/01/14 17:41:37 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-5.0.0_pre20130113.ebuild,v 1.2 2013/03/24 21:06:04 xarthisius Exp $
EAPI=4
@ -19,7 +19,7 @@ SRC_URI="http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${PN}-${DATE}-in
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
IUSE=""
DEPEND="!!app-arch/rpm"
RDEPEND=""
@ -47,12 +47,12 @@ src_prepare() {
PATH=/opt/${PN}/bin
ROOTPATH=/opt/${PN}/bin
LDPATH=/opt/${PN}/lib:/opt/${PN}/lib/${MY_PV}/x8664/64
MANPATH=/opt/${PN}/docs/man
EOF
}
src_install() {
local opts
use doc || opts="${opts} --disable-components documentation"
# You must paxmark -m EI_PAX (not PT_PAX) to run the installer
# on a pax enabled kernel. Adding PT_PAX breaks the binary.
/usr/bin/scanelf -Xxz m ${P}.run >> /dev/null

@ -1,3 +1,2 @@
DIST jemalloc-2.2.5.tar.bz2 224118 SHA256 efcc9636757bd7f53a0fde084c2988bfe26f2868e435447f2d41ac42c0b3521e SHA512 56a29dc7dca66c41d2934731c4bc756de5b58bf707dc2ebcf8515be400ce25e372af6526035117cad5b1964b9ba040ab7178f4c28c1649e86dcb53c3ec884a9d WHIRLPOOL e88fc56ac9db024483196d62e870fe4981d1d02fbf5e3819da504568cc58c8f246df668bb3dfe70ad2d551671577c18d5e6432e60bb3107296e6faad7cd8595c
DIST jemalloc-3.2.0.tar.bz2 250072 SHA256 96eff12ec2bcf135e502cad8df67af484f491aa19856eaa5ee89ec771abe040f SHA512 daabfab75c7a4b35d6765b47c1e7b88728391f679c71b261be3783cae04e32510f817701fd774b9c4904b86fff83713d60c8e1e310ccda432960f97007e3a1f6 WHIRLPOOL 2813ce75467228623c8060c15ae77980362197d690d2fabc59c376f6d1c9bd2e839a7a6de78c0bd1a3674e87a1a2f54244753bf6c6ebb15f2c68f71f03b1bed4
DIST jemalloc-3.3.0.tar.bz2 252647 SHA256 aa97722c6e0d646aaa65a78312425c206c922f015102dbd0ac546bc3da4a56e3 SHA512 91602c6f8b8ab1da95094e6d28c49a6f343bac21a4d7a29a0dcb6bb177fe1c98031806fff64f62f03a412b8decf7a950cdd85ca5cb7500c7d439d2ccb9a08c3f WHIRLPOOL d33f776f0eebf7485228a5e326b3f9f0ea3098846261e0f5d21cf3ed12f853dd35e7eeeca3b6e48e050548b21af77eb582781c73601b7e571a38e1ba422354f9
DIST jemalloc-3.3.1.tar.bz2 252997 SHA256 35c433cc1df5cdf9eb58b7980338552fc1d7aa64f89fe5643a972ccedb7cf20a SHA512 32814e8678af4954e26c0c0a0e5d06aba8f3844205fe212c5e41929dfab6a94ff11127a9238b5c18d72749827c467ecb874b8f3a9bc161cf1afdf4ea84c58690 WHIRLPOOL 35e8948e18ea7111ae830a8245be995b35f44ed2c2f687f706ee6941c78350c2cfaabefba223c4433069de47a9f92d621feaf176ec0c728e513e5f076e5fc874

@ -1,31 +0,0 @@
From 0b0774d2bc6092ca5ad07f0653c569b6fa55c6fe Mon Sep 17 00:00:00 2001
From: Mike Frysinger <vapier@gentoo.org>
Date: Mon, 28 Jan 2013 15:14:26 -0500
Subject: [PATCH] fix building for s390 systems
Checking for __s390x__ means you work on s390x, but not s390 (32bit)
systems. So use __s390__ which works for both.
With this, `make check` passes on s390.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
include/jemalloc/internal/jemalloc_internal.h.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/jemalloc/internal/jemalloc_internal.h.in b/include/jemalloc/internal/jemalloc_internal.h.in
index c606c12..74a8bd5 100644
--- a/include/jemalloc/internal/jemalloc_internal.h.in
+++ b/include/jemalloc/internal/jemalloc_internal.h.in
@@ -287,7 +287,7 @@ static const bool config_ivsalloc =
# ifdef __powerpc__
# define LG_QUANTUM 4
# endif
-# ifdef __s390x__
+# ifdef __s390__
# define LG_QUANTUM 4
# endif
# ifdef __SH4__
--
1.8.0.2

@ -1,43 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.2.0.ebuild,v 1.3 2012/12/29 19:28:18 armin76 Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator"
HOMEPAGE="http://www.canonware.com/jemalloc/"
SRC_URI="http://www.canonware.com/download/${PN}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
IUSE="debug static-libs stats"
DEPEND=""
RDEPEND=""
src_prepare() {
epatch \
"${FILESDIR}/${PN}-3.0.0-strip-optimization.patch" \
"${FILESDIR}/${PN}-3.0.0-no-pprof.patch" \
"${FILESDIR}/${PN}-3.0.0_fix_html_install.patch"
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
$(use_enable stats)
}
src_install() {
emake DESTDIR="${ED}" install || die
dodoc ChangeLog README
dohtml doc/jemalloc.html
use static-libs || find "${ED}" -name '*.a' -exec rm -f {} +
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.3.0.ebuild,v 1.2 2013/01/28 20:17:28 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.3.1.ebuild,v 1.1 2013/03/24 19:18:31 anarchy Exp $
EAPI=4
@ -19,8 +19,7 @@ src_prepare() {
epatch \
"${FILESDIR}/${PN}-3.0.0-strip-optimization.patch" \
"${FILESDIR}/${PN}-3.0.0-no-pprof.patch" \
"${FILESDIR}/${PN}-3.0.0_fix_html_install.patch" \
"${FILESDIR}/${PN}-3.3.0-s390.patch"
"${FILESDIR}/${PN}-3.0.0_fix_html_install.patch"
eautoreconf
}

@ -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-perl/Net-IP/Net-IP-1.260.0.ebuild,v 1.1 2012/12/03 17:34:38 tove Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-IP/Net-IP-1.260.0.ebuild,v 1.2 2013/03/25 07:57:58 pinkbyte Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Perl extension for manipulating IPv4/IPv6 addresses"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
PATCHES=( "${FILESDIR}/initip-0.patch" )

@ -1,3 +1,4 @@
DIST Archive_Tar-1.3.11.tgz 18537 SHA256 e77f30899c09503745cca5069a0ee5a09add102c1a9b9113a7bd6d6a9d065174 SHA512 6bfd6f3dea7e48f6f66a335549ef5d85e69fbf3f89137b640cc44b7982575d0eccb5a5b5e600ba5b96f4e5139ba3648f832f2945e36ecbe8008bed4ad4a628e4 WHIRLPOOL 6f2f56fd1f5d047f75203fcf10566429c1ca69d147465921044994d860871db46eb46b787405f3b3eb8e5d77d3cb3b993cf20f24e5b0fe20bed4213474b9fa78
DIST Archive_Tar-1.3.7.tgz 17610 SHA256 85169ccd734913be8076bf67c34d46ab70742bc85e86d59204458eee99aa2882 SHA512 532d5bf0824777e8f39ecd5763e9e90715d983f3e04d446164fbb3de1a55c9cd6c5471d004f76c2e65117b8f1a4273970133fe918b0a55e7c00fb71706e93151 WHIRLPOOL b7461f7700735be330b9adb77cebf4f6a3d6acbd232e1cb9093ea2a152dea033b6f233a267f111bf435627fae0438ea75db9a32caa4fc3de1f3a30feee88ad14
DIST Archive_Tar-1.3.8.tgz 17995 SHA256 44d38ec2d694d91983f6552af5def76631e63dd97e59e4d135906a20e660d6a4 SHA512 65bda3d7699f0c9ae30a6e9d51d877d9ce4a59e59ef17573b49b4f89a43c1b561ec9713c9b53222a52b2ac67141a24cc4be182acb72c5a15b77b4da2315f6fc3 WHIRLPOOL 6381ec6cd4c99949388eca9b3a9c31ad66a6d2ee5f18d1eca856c04ba516d42af2ec1190733b61def63144030a275b1b11c2b3c87d66c55898d559b4651a00bc
DIST Archive_Tar-1.3.9.tgz 18123 SHA256 192e602055b5b28b8d43841dced83f9257fa999a1be0ec9fa96f277ae592c49d SHA512 adf7d9fbbcb28643dfd7373ec9f77f328c01cb190f6a1f9c66efb916a3da181ca3329bec52142edb21c9e448b3b0e6974a9f3dd87ffd7edcedd9504eddcd2589 WHIRLPOOL 4106d613ef3ba1868f7ea3574fd90f983fdc62c05c915d05b6a487be32cdedc3145968ab4c6e034f24c985c998be86c68ca0247c92d0d88a959d39078e84b896

@ -0,0 +1,31 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild,v 1.1 2013/03/24 18:59:48 mabi Exp $
EAPI="4"
MY_PN="${PN/PEAR-/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Tar file management class"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
DEPEND="|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )
>=dev-php/PEAR-PEAR-1.8.1
"
RDEPEND="${DEPEND}"
PDEPEND="dev-php/pear"
HOMEPAGE="http://pear.php.net/package/Archive_Tar"
S="${WORKDIR}/${MY_P}"
src_install() {
insinto /usr/share/php/Archive
doins Archive/*
dodoc docs/*
}

@ -1,4 +1,2 @@
DIST Cache_Lite-1.7.12.tgz 30469 SHA256 2c5f051e3d2ec24a34acad491e2a4d0e0b1b7b2f62fd9db2c8989a2ecbc28606 SHA512 6fcdb74dc0fd745890efc4585d582284f7b9437c5a611afc0cca274a7e0b9be8d828a96f5e60e55c9cafc992f2be89a532497037bb0ee940e95ddaf34a6a8524 WHIRLPOOL 83f72f6d6f8e27da30f6d410f4620af31756eaf79d44c76258acac4f133b3dd9945ef7191b7eacdc3e4a60756ff1b44bdbf2cf44ba827226fe0d39bf8771fb0a
DIST Cache_Lite-1.7.2.tgz 29055 SHA256 3da5796d6f7911020be5f0ce6acb049c31da73126a8bd220567fc12a7f916601 SHA512 833a05a8a02e6202dbbd766dcbddada6cf3835ebd6cc2be842fa09fe1f2105c63cff2eaeea739ca7431843cfd2d4e59fe00eefe4b10895f465df17f4f8b01fa4 WHIRLPOOL 5dd325e3d5a4bda3e3af743062cd4493557674ed27efd875e7f1011629c4ef793cb8347425307bedc933c26594883033327fb29ae29f915ef352233ca43b507b
DIST Cache_Lite-1.7.8.tgz 30061 SHA256 ff1590719197b392d27171ba5891e6f3615b1dc9e99172b717e1a4b408a5e607 SHA512 d2b16f5c51e888c40afec5653fd3ed6d6acb8fb956f8345fa0cd163ff014179c730d3783461fdd329fdb786aef751823b5f85281357a6e4a6801fde08a48f2e4 WHIRLPOOL f53e75207ba050840bbb1adba9bbbc4c394375e524e218391d05442e98b8874404211ba16c459c0d7a4d188fa662b9a0036023ae3e4749ecf489f1dda2615602
DIST Cache_Lite-1.7.9.tgz 30318 SHA256 8c750cc04f3d3d95866ae33511db767532ad98eace33669129dbcf46335a0c7b SHA512 32fb40e2ef4d6fa2446a96d4d85f631f39808515b2aa405c6f21d7a672418a907995f8321ff818768f7b44d385731f110708240b87b9ec9f10242a06c1ddc46e WHIRLPOOL 36fb9810bde2d813fa4bf4a68a4ba9de8af1979c0c86a0d026867267eef1520e44051d7efad087172191a284a54481cbb62fe50d263b16d9281c81436046bc2d
DIST Cache_Lite-1.7.15.tgz 32355 SHA256 18a2c2d40a697c309d750a54ff7b3bc0c3db1853459da8667dc5e25fa57a5853 SHA512 18a80d6617b7b49a0bde80ee8b637e32d4408ae1474191b1b0aecada2dcd45292c998d6e6a0fe9ae7698c0be9ed506bf7b00ba61ac353ae38ae1fba22b875a63 WHIRLPOOL b2ac7f628e941517dfa2badca167c010ce7b7d01222feb23ac378d935729781cf34337a71eecfc7aab56630e4062c760654762e49615ad1a4de5526fdaae4196

@ -1,6 +1,8 @@
# 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/dev-php/PEAR-Cache_Lite/PEAR-Cache_Lite-1.7.8.ebuild,v 1.1 2009/08/22 18:00:21 beandog Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Cache_Lite/PEAR-Cache_Lite-1.7.15.ebuild,v 1.1 2013/03/24 19:07:47 mabi Exp $
EAPI="4"
inherit php-pear-r1

@ -1,11 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Cache_Lite/PEAR-Cache_Lite-1.7.2.ebuild,v 1.9 2007/12/05 23:37:37 jokey Exp $
inherit php-pear-r1
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
DESCRIPTION="Fast and safe little cache system."
LICENSE="LGPL-2.1"
SLOT="0"
IUSE=""

@ -1,11 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Cache_Lite/PEAR-Cache_Lite-1.7.9.ebuild,v 1.1 2011/03/03 10:20:44 olemarkus Exp $
inherit php-pear-r1
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="Fast and safe little cache system."
LICENSE="LGPL-2.1"
SLOT="0"
IUSE=""

@ -1,2 +1,2 @@
DIST Calendar-0.5.3.tgz 63274 SHA256 a65828ed11c39a64b25c0fcb6f9726d3789aeddf724f0d54f17b7073ea388e62 SHA512 7af867e47ca39d2d36051963b6a1a4290f57dafd2efe0975024e99906b25fd0415ae8b23d3f17915c07763fbb1a294f47f5bc5815e5b8d321ea7f8016f936839 WHIRLPOOL 4f52f769f49d91155bd480e22896802b259ceb2512d53e5e9adc7cdd8424693b1a146b25afc96b6a066a20f42e6c3b0e302744cc6f8610f6c8e6067b8bcb7918
DIST Calendar-0.5.4.tgz 54759 SHA256 c835607605c90b9dfb8ad72f2d98613becb9912fe8811572da82c5603ad92584 SHA512 5faa38c804a43e01ec1ec82a36fad4ae193abeb624a6f3a0b4c89cba9d97586f8d964fe00584ba31ae03e5fafd299bdb3c122c54240a29e2e5cca9e739026b61 WHIRLPOOL e985fa03c056b5d639f3df00b59b742a7c536e055e62aacf52ba9ad00f9573cf6dcc306cb2ae00708638b3d2aea0e6e73b02d29004770975ce6f66b9c57a35a4
DIST Calendar-0.5.5.tgz 58159 SHA256 ecb44c40d91b1bf815980429438788d76b90c056d733313fc193277dea418cdc SHA512 0d49f78c86343112eb177e16d4831f9589cb13a4585e3d6fd3443a94e4c78382d3545697623c28e1219ee8469ba99684ef0fb9f1df1375f3bbc6009fd9d59c95 WHIRLPOOL 5da5f0ae8e9520a27796ba3dfabe656eba266e9c2f28f198a39e3f111084b0b57382503586b908b6145729ca4b38e66084adb919bc7bfac0f7ee7a5ad9a5cbe0

@ -1,6 +1,8 @@
# Copyright 1999-2007 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Calendar/PEAR-Calendar-0.5.3.ebuild,v 1.5 2007/12/05 23:38:21 jokey Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Calendar/PEAR-Calendar-0.5.5.ebuild,v 1.1 2013/03/24 19:12:59 mabi Exp $
EAPI="4"
inherit php-pear-r1

@ -1 +1,2 @@
DIST Console_Color-1.0.2.tgz 4727 SHA256 b2ddb9f7d37505887700d7598993110b31848825e4bc94cf73c67aceec2d713d SHA512 a1e36768935294bda95b1751a9e284fb916592818771e057ff77bd312f60a75dae4afa1ecae7d845094aeba474058f804fa9d9c1744672f7ba4c17b6a5e5a222 WHIRLPOOL 0478bb57c33fde815b26c4722194a4d79c5e6a390ad0a9ac2ffc5d186d1d164607247495b2d15f3995e430085be6c2ac539e9162288849b881c989be0f16bb2c
DIST Console_Color-1.0.3.tgz 4933 SHA256 895ad17220bf2f54b4880cc6d68db9fbde6eb6f781a72d349296f9c6d5cfad56 SHA512 56449c02194ac707f7165c4f591762b1d895b97c0727d11f1e84a1763b266f808e6c62c42dcd93ef8ea60e2ab97ec56f902cd1b5b57ad135cc0bd35cccf16e14 WHIRLPOOL fe7389c7642e747507356a20af5bd7e8272d6c24510552345b27cd2ba47700370ae5aa71c4858b05c94a08e6d9bda8956261e26df0698564c2875c60c08946ad

@ -0,0 +1,14 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Color/PEAR-Console_Color-1.0.3.ebuild,v 1.1 2013/03/24 19:29:00 mabi Exp $
EAPI="4"
inherit php-pear-r1
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="This Class allows you to easily use ANSI console colors in your
application."
LICENSE="MIT"
SLOT="0"
IUSE=""

@ -1 +1,2 @@
DIST Console_Getargs-1.3.4.tgz 17796 SHA256 78536ad98f9cfd1bd19e0c21a6ee2a3d112c5df55269aa899a8f19eb4dfdfd02 SHA512 76a990802d68dc83a6fded1afc2174056d1c3b973f7ed6a9fc31626400a9e8c9b8e61470a0ef403ce701db4766c2f6d9bc199bd35cdb29dfa43f3458835e0c12 WHIRLPOOL 9928e6b8d14524257c925b847a137d1cf4015363eb336a3869a7651edc887092564e3b227897505b7203b4abd6cfd2af530bd1678792ddb682dac394a0f4f0dc
DIST Console_Getargs-1.3.5.tgz 18207 SHA256 f2a2be1c3dfead4328a85dafc6236d945a927ceeaa05e0ec21d8af43a2e918ea SHA512 2e79bfc3947dbce928ae592d825ea16414de147a10f7c41a896d9a557c40a1e83842e39de6e6a78918d91235da73307f84b837a3d049b36cacd202c4b8aa7fd6 WHIRLPOOL 0103e2332eeccdc932ff7508e36ecc79f82f0f83fefdf4cf1bd88ab0431ebd6f45c2921713cb7a79fc7135ca10c748fc64f1fd479f52d21d045cfb4686c4dd4a

@ -0,0 +1,14 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_Getargs/PEAR-Console_Getargs-1.3.5.ebuild,v 1.1 2013/03/24 19:38:57 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="A command-line arguments parser."
LICENSE="PHP-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
IUSE=""

@ -1 +1,2 @@
DIST Crypt_RC4-1.0.2.tgz 1850 SHA256 9b4e03c69b898126d119fb957fdf18339d4d1030917b4fd0af4406615f9f55e2 SHA512 12f4658141dff8bbee33e3a64a64e56db0907aa33da1aac9bf23bb3b946fbd69b8b6ea5e73db8c884dd26e405aa9f8d3d1f05c5d5cae89e80e8abb3e87fff531 WHIRLPOOL 07f3b5c6e675a51207ce3f954f2f5756cd5a4525c8069320009dfa835c057df65e722f0f19b32746c41f6167b98f5479a366436256f88464fc12e08e1a8549ad
DIST Crypt_RC4-1.0.3.tgz 2295 SHA256 047870ce11d39d59b68cfcf39dce3e4487059f1102a22ca91c697333e34db65c SHA512 4ede7c1b63b7c23b29fe25754f18af1dfb7fa3ee66ff85adb612b382143601cab7f9dbe27ed10291b71568d15e3d306e53eb483df3defb7c6912e0e6feb94640 WHIRLPOOL 773d4e8de19b13fa9fafdc0038b9051bd31eebfefdf4d6d4cfc7c83758c9831c2502332b0bce27eadab5fb864d8c11eaf95e0d0a07d508a89ae44cd1232ae64d

@ -0,0 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Crypt_RC4/PEAR-Crypt_RC4-1.0.3.ebuild,v 1.1 2013/03/24 20:31:19 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="Encryption class for RC4 encryption."
LICENSE="PHP-2.02"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""

@ -1,2 +1,2 @@
DIST DB_DataObject-1.8.7.tgz 63184 SHA256 f2144c67b8923d0f5933119f15045f96eaaf2a9e0ec15099660dbf96c2a94d69 SHA512 2889f3ab54313492f3c17a203ca64ddf38cd20f26dcbb244fd41b643bcbf6ecb7d8554ab6ca66726cd13c69468268966dfb5f308685ea24742a35193d12397a5 WHIRLPOOL b66bc1fba33084216d19be559b42b4e30d6ea58a041b26f8e64fd125c4f3b7a325ca17ed4ee499fbc00b13cf5acc6a9e60917de575416c795cc89c79c7ff09a3
DIST DB_DataObject-1.10.0.tgz 78487 SHA256 6367b94bbd444c82690ddd4aa8fa3a7801eb3f6b067494e6ba5f088cecfe8345 SHA512 08bc8c9a529812b80e69aa59db9f1a7e3a12741e0bd9570ec505dd89a19115e9a20a0731026f2de846174eddeee91c6fb20aa71c5f76c55bf241b4c4305381a6 WHIRLPOOL fce0370d15f75b1562e1ccd449fc712d3405f0b9ac39f29ccaf6af87c59b19d7ca535d231c746204dc6ef36b151000ad9cf79f7e6bf00451fcaa36f95f27544e
DIST DB_DataObject-1.9.6.tgz 72249 SHA256 d7f5e76569b4246ef56394108f8b8e2fb2b57ce05cb32bdedd7e47b8fe059f3b SHA512 325a3e4899a5b0cb762816b013432fe6166fb77d7bcb2ee3a9190255a0a495b4a8bd1cfcd204488014a0bdcd2563bbc640aba7693d4e7c560291769b7a154577 WHIRLPOOL 4dbf1491bfadf9591530afb4a8d286fb2322f64a031b6efb3b776384e25f6e653ede04e898c277befdd1d770b759c1bc1cf7876247816f004ef2ffe1f886b676

@ -1,12 +1,14 @@
# Copyright 1999-2007 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-DB_DataObject/PEAR-DB_DataObject-1.8.7.ebuild,v 1.9 2007/12/05 23:54:58 jokey Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-DB_DataObject/PEAR-DB_DataObject-1.10.0.ebuild,v 1.1 2013/03/24 20:37:51 mabi Exp $
EAPI="4"
inherit php-pear-r1
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="An SQL Builder, Object Interface to Database Tables."
DESCRIPTION="A SQL Builder, Object Interface to Database Tables"
LICENSE="PHP-2.02 PHP-3"
SLOT="0"
IUSE="minimal"
@ -17,8 +19,7 @@ RDEPEND=">=dev-php/PEAR-DB-1.7.6-r1
!minimal? ( >=dev-php/PEAR-Validate-0.5.0-r1
>=dev-php/PEAR-MDB2-2.0.0_rc1 )"
src_unpack() {
unpack "${A}"
src_prepare() {
# don't install windows-only stuff
sed -re 's:<file baseinstalldir="DB" md5sum=".{32}" name="scripts/DB_DataObject_createTables.bat" role="script" />::' -i package.xml || die "sed failed"
sed -re 's:<file baseinstalldir="DB" md5sum=".{32}" name="scripts/DB_DataObject_createTables.bat" role="script" />::' -i "${WORKDIR}/package.xml" || die "sed failed"
}

@ -1,2 +1,3 @@
DIST File-1.3.0.tgz 25727 SHA256 543b9e83d69a44300ac389ab64da1cbd8d0a3ea1d01d7fe51bfaf5e2302ca0f6 SHA512 e739ff0b8fdc26d7e2bfbd5ee37a50bff4f4d19900849717551e3188745bbfd31b4a1399fc25bad1b503bbdf468915cb0a4ae4ef50cc2e5c1cdb27a550c4309a WHIRLPOOL 181fc6908166e8a5323006b661e9662dc7e689d3e4071527b676b875014448efd6a1b0f528be8c466af7611b63ea417c367dff0c222b28f84d459ab52c480e5b
DIST File-1.4.0.tgz 8120 SHA256 d2cb6395822c0d869e7efa1312cd6d9cfea50ebf75c7b78a031fe1cbfae2a727 SHA512 53e6891f9f19036002ddabb1c070041eeb6a93b288f14241f0ff1fb609a59b261c0f17205dde186d4c5b575af7b9bfcc292f7da364928986d6c9e7a4ed4d2016 WHIRLPOOL bf9bed8a335f57a79968e1767f0772f8e365e0b05ea75f3c84a8d6063dd1d21a528f1c35dc4c9c4c2d5c9a5d7631a848cee2fbb8e3e6e35fd159cd25700aa754
DIST File-1.4.1.tgz 8164 SHA256 f9b7e03dced7c7b6575531fbc73bc479ae4849d80c764862eeeec9b90f74a4d0 SHA512 78dbe4f80296f3c16df89de2f0d332b442d4787be4f7a3bb78259b0e0a0eb719bbadecba6571609ea6b6a488124ff36b6de08061e88268d5f2805fb8a3be05b0 WHIRLPOOL 417ad2e633ca78a96d430acb8c4b9ce064954edc7c297defaec6456c09e7d7116bc1cca39f4ec7947f59030fc370b8d3aa8bdc70210d90dade2e8d38bc97eabf

@ -0,0 +1,14 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File/PEAR-File-1.4.1.ebuild,v 1.1 2013/03/24 20:46:25 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="Common file and directory routines"
LICENSE="PHP-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""

@ -1 +1,2 @@
DIST File_Archive-1.5.4.tgz 58042 SHA256 b3cbbd9387a733a1b574a31176c71bd2a0a4b4fb842e2d4e22f816ec98c8c00d SHA512 d3f22b39ece7428e055b62834df546681917caf82340afac2113915985172838d14789d0fc0a35eff50edd2f618877b941d888b664071f6b6ab7561edf21f42e WHIRLPOOL ca07f298199e9870927e9448eead59ea247fe7ecb1e614ed2756b00eccde2fdace4a11757900e6c191b90f05d9db08b76ce9ea436c7c0c04e0c157121843ad42
DIST File_Archive-1.5.5.tgz 62598 SHA256 d739ca1d3cc52f7e5b8c46cfe2233afb11dee0e145e57754c0eaba50ffb8bde1 SHA512 528449e59e0853bbd73e2d7cb14cd11748e68abe889781f0476c6206e0d15e1c4b0b457172d88e73f7bb31cde3b6612ab3e86d8862322e0921e00db331f1d1e1 WHIRLPOOL e0899619ee8b7234dc0b2db29ac7201f8817d75b69a66b5d49804db6da738bde2349ca4d6ca70255d282fa3cdfd5d9dbf75eec6b7b13e47f7b908653d200f431

@ -0,0 +1,18 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5.ebuild,v 1.1 2013/03/24 20:50:09 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="Lets you manipulate easily the tar, gz, tgz, bz2, tbz, zip, ar (or deb) files."
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="minimal"
RDEPEND="dev-lang/php[bzip2,zlib]
dev-php/PEAR-MIME_Type
!minimal? ( dev-php/PEAR-Mail_Mime
dev-php/PEAR-Mail
>=dev-php/PEAR-Cache_Lite-1.5.0 )"

@ -1 +1,2 @@
DIST File_Gettext-0.4.1.tgz 6033 SHA256 ac782312a2e285ba90b54ef359249cc5bfb1198151afe23169cf6fe7ba13295f SHA512 f449da008af88127fe40444023f9b6dfc97a6a076e66cb818ff72068bdead3ad2ef4b33c64a24ceaa601193b3d147e1af011f8cb889b82a84b21a04627a2eb44 WHIRLPOOL 3f64afde581341267cfb84a6d08944237776392ec411fb8f1e896ee8d145a71606bfdaacc3dd84236af514fda2498fe7499c7079c757c88437111aaad2e85d4b
DIST File_Gettext-0.4.2.tgz 7307 SHA256 4e222b6feb535cf87f182bf474a1f5f8ad8f0ca18e9083d397fd86a7db37cd87 SHA512 cc56430076485d90afca548c78650a2ada4eb8df7e0a58458eded2dca222466aba91d982fb0103e6b63fc4c8140c3ac4c2a4a7c3c77fbc7740922a8b4e33c6a9 WHIRLPOOL 768ee08a95fbb23e9683da2ab512cd34935e44d16a41f64c05a6b9aec5d0fcab21d4500a8d4564a31ee223d38acf90e1c98fb54a5e6bbdaed1d834d095139d44

@ -0,0 +1,14 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Gettext/PEAR-File_Gettext-0.4.2.ebuild,v 1.1 2013/03/24 21:02:31 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="GNU Gettext file parser."
LICENSE="PHP-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""

@ -1 +1,2 @@
DIST HTML_Common2-2.0.0.tgz 7777 SHA256 39dfa02c71e0921f240fcde39168d5fbf5a32b638d812c5a5c64047f6a15b5bd SHA512 19d0c0f95c9839a5d2a3ef77725639f52206a359dcbab7af683bd12913ffdd3885a9ae8a99e91a7b60caf2916e1b2865244670965caaf95284cadb5c9225dd93 WHIRLPOOL 242e974f1c6f7c9c0fc9bad4435b5db374daff1902ae7936fd788da6be8683a974943ddfdb22103952712d107993a73010f287da05935546583bf43d5a1e5586
DIST HTML_Common2-2.1.0.tgz 8630 SHA256 a86e9b8f149b0f6aed0b67b4e65ebf76fe17d8e51d04d619523ce27c5b6c85e5 SHA512 486ea3f9479905468124e6960b7679e19de121c4e8a0e4eca6462124089bd5d434da6527552b8314bcabe849012f1d3a44659049d3a461c26628d62aa3023357 WHIRLPOOL 7ddb1b42e553254b2f41c2d4433c27590bd794a2aeba3973a5ce82e691b49c08f00b182d266c30daa794089083e65ec46e824f543258471a7959efb2deffd377

@ -0,0 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Common2/PEAR-HTML_Common2-2.1.0.ebuild,v 1.1 2013/03/24 21:15:03 mabi Exp $
EAPI="4"
inherit php-pear-r1
DESCRIPTION="Abstract base class for HTML classes (PHP5 port of PEAR-HTML_Common package)."
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""

@ -1 +1,2 @@
DIST HTML_Select-1.3.0.tgz 4027 SHA256 e6f27ae8c4672744c862410ac6845de541d8bc0aa383c563b5e037eb8a53b19d SHA512 274b2a282eb991965da02481a3c8ca5b5a0647afe0250b614ac0321fcf9973adb2b2458955c5c0e5dbf799db122eb0eeeb7d83faecddb707a9c7ac7d40a346b9 WHIRLPOOL e990c0af68ac7fb873a3b096831ca02551f17c9a90129d446623c0514da0dbf80869149b9bbdedb5ef217083508c897cc24af4cd22aed80175e6f71a94c621c3
DIST HTML_Select-1.3.1.tgz 5630 SHA256 9999d1a38de69d61cdb8520cee8b316220fc73b80fbd1ffbdb2692a3e8073d31 SHA512 57af5201902f00f35b7f77f6c3763e734b21e6b8274f0b41f74e6f77ad1d6e1a110fd09586aa8bb08a257a4b30da1268f19e9aff6fe1d5e840864bd0cd0f0ab8 WHIRLPOOL 839abb1d92874f1a7eaaee73024a8bb11d049070f2c3ceae5229c053d9d0a490cad2ebc7b32c208b6b51de8d44b759533665f2b38a3bbf51119973590fcae6f2

@ -0,0 +1,12 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTML_Select/PEAR-HTML_Select-1.3.1.ebuild,v 1.1 2013/03/24 21:19:08 mabi Exp $
inherit php-pear-r1
IUSE=""
DESCRIPTION="HTML_Select is a class for generating HTML form select elements."
LICENSE="PHP-3.01"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="dev-php/PEAR-HTML_Common"

@ -1 +1,2 @@
DIST HTTP_Header-1.2.0.tgz 10440 SHA256 7a21470836d77be540a635c23a9090bd38316a7fbf621a9fae12218a4d481716 SHA512 a964faeaba3b21d22b8f675d84c48dc5b824482c9cac4b30a26f41bb340d4f50c0ed429b3c74f6a1aa1bfca728b0d277b5d1376c800cd64145994204bba4a53b WHIRLPOOL b788787a43f8a925dd0b1620c694451a1a44120a0258ea608b6f2488aca1ac720bcebb66541b3bf28b2f1353f44d404876402f42fa827711c2dbb19befe71549
DIST HTTP_Header-1.2.1.tgz 10682 SHA256 4c9ae365b9c5b9f562d5a6897547b2db6c5e01d904283cffbf6371ff57fae14e SHA512 3d4245c99445042c6fb8ac8133be742f5009de8fa10e7104f0558ef091ba449c201fe0727d9714470e0d2d0cf8d8639c3d9b08801cb0cfff2d3d6e457364e137 WHIRLPOOL d1a68f3b3d7d80460e3f9f98d5745f1194b0e6688b7fedb66fc0ad78dbec35ef8ca80a2e1a7d82d06076aca035039719ba4533dc98c5058e0a2eb862402bad9a

@ -0,0 +1,12 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTTP_Header/PEAR-HTTP_Header-1.2.1.ebuild,v 1.1 2013/03/24 21:34:23 mabi Exp $
inherit php-pear-r1
DESCRIPTION="Provides interface to handle and modify HTTP headers and status codes."
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-php/PEAR-HTTP"

@ -1 +1,2 @@
DIST 1.0.4.tgz 2022880 SHA256 8d840e845b34a870f64da02600f8e448815828a4472753020bd584ac5f826ebd SHA512 86f15cee47fcce1d3c3b76a012303f9516478e20390546c9993d576eeae58143b1c4cfd8f6840d6b648adabdbf9421a2b35e4b10b764449ad5ffce0bd76f9521 WHIRLPOOL e6a28ac24de227aaba3bea7e729a7b70a03562142b74e13f3e3ebec56a8f59eee80a8c379767eaf5314b5b3a80552b98609b30d1a337e6180a1074d94db73622
DIST 1.0.7.tgz 2064782 SHA256 46cb0f9a4f9381ec06e0b82b11683930ac732140188b2e841d3e73d2574173f7 SHA512 157d1213b8279a4edd1706f66334bc60889b51b1e71c6d398b74272c72ff47f540f7c7eaf3b1c57c0d6e4397c647f80264a74fa5929d5521ec67799aa9f58156 WHIRLPOOL 999d7275a3a42dd1abdec017597015c6c500abdf80a9b0d40ff1fab3ff19694225f9f080eae7389e7fedf97ef46c96587f95e78b9793c7ec53c1561d5beee9ff

@ -0,0 +1,40 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/agavi/agavi-1.0.7.ebuild,v 1.1 2013/03/24 18:36:11 mabi Exp $
EAPI="4"
inherit php-pear-lib-r1
DESCRIPTION="PHP5 MVC Application Framework."
HOMEPAGE="http://www.agavi.org/"
SRC_URI="http://www.agavi.org/download/${PV}.tgz"
LICENSE="LGPL-2.1+ icu unicode ZLIB public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# currently fails to install with dev-php/PEAR-PEAR_PackageFileManager-1.7.0
DEPEND="
>=dev-lang/php-5[xml]
>=dev-php/PEAR-PEAR-1.6.2-r1
>=dev-php/phing-2.4[-minimal]
<dev-php/PEAR-PEAR_PackageFileManager-1.7.0
"
RDEPEND="
>=dev-php/phing-2.4
"
src_compile() {
phing package-pear || die "failed to build pear package"
}
src_install() {
cd "${WORKDIR}"
mv "${S}" "${WORKDIR}"/${PV}
cp -pPR "${WORKDIR}"/${PV}/pear-build/* "${WORKDIR}"/
cd "${S}"
php-pear-lib-r1_src_install
}

@ -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-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild,v 1.2 2013/03/05 10:41:09 olemarkus Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild,v 1.3 2013/03/25 10:00:50 aballier Exp $
EAPI="5"
@ -39,6 +39,8 @@ src_prepare() {
epatch "${FILESDIR}/${P}-ffmpeg.patch"
epatch "${FILESDIR}/${P}-log.patch"
epatch "${FILESDIR}/${P}-php5-4.patch"
epatch "${FILESDIR}/${P}-ffincludes.patch"
epatch "${FILESDIR}/${P}-ffmpeg1.patch"
done
php-ext-source-r2_src_prepare
}

@ -0,0 +1,115 @@
Incldue properly FFmpeg headers.
https://bugs.gentoo.org/show_bug.cgi?id=461438
Index: php5.3/config.m4
===================================================================
--- php5.3.orig/config.m4
+++ php5.3/config.m4
@@ -31,15 +31,8 @@ if test "$PHP_FFMPEG" != "no"; then
FFMPEG_INC_FOUND=$i/include
break
elif test -f $i/include/libavcodec/avcodec.h; then
- dnl ffmpeg svn revision 12194 and newer put each header in its own dir
- dnl so we have to include them all.
- PHP_ADD_INCLUDE($i/include/libavcodec/)
- PHP_ADD_INCLUDE($i/include/libavformat/)
- PHP_ADD_INCLUDE($i/include/libavutil/)
- PHP_ADD_INCLUDE($i/include/libswscale/)
- PHP_ADD_INCLUDE($i/include/libavfilter/)
- PHP_ADD_INCLUDE($i/include/libavdevice/)
- FFMPEG_INC_FOUND=$i/include/libavcodec
+ PHP_ADD_INCLUDE($i/include)
+ FFMPEG_INC_FOUND=$i/include
break
fi
done
Index: php5.3/ffmpeg-php.c
===================================================================
--- php5.3.orig/ffmpeg-php.c
+++ php5.3/ffmpeg-php.c
@@ -39,11 +39,11 @@
#include "php.h"
-#include <avcodec.h>
-#include <avformat.h>
+#include <libavcodec/avcodec.h>
+#include <libavformat/avformat.h>
#if HAVE_SWSCALER
-#include <swscale.h>
+#include <libswscale/swscale.h>
#endif
#include "php_ini.h"
Index: php5.3/ffmpeg_errorhandler.c
===================================================================
--- php5.3.orig/ffmpeg_errorhandler.c
+++ php5.3/ffmpeg_errorhandler.c
@@ -34,7 +34,7 @@
*/
#include "php.h"
-#include <avcodec.h>
+#include <libavcodec/avcodec.h>
/* {{{ ffmpeg_errorhandler()
*/
Index: php5.3/ffmpeg_frame.h
===================================================================
--- php5.3.orig/ffmpeg_frame.h
+++ php5.3/ffmpeg_frame.h
@@ -38,8 +38,8 @@
#include "php_version.h"
-#include <avcodec.h>
-#include <avformat.h>
+#include <libavcodec/avcodec.h>
+#include <libavformat/avformat.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
Index: php5.3/ffmpeg_movie.c
===================================================================
--- php5.3.orig/ffmpeg_movie.c
+++ php5.3/ffmpeg_movie.c
@@ -34,9 +34,9 @@
#include "php_globals.h"
#include "ext/standard/info.h"
-#include <avcodec.h>
-#include <avformat.h>
-#include <pixdesc.h>
+#include <libavcodec/avcodec.h>
+#include <libavformat/avformat.h>
+#include <libavutil/pixdesc.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
Index: php5.3/ffmpeg_tools.c
===================================================================
--- php5.3.orig/ffmpeg_tools.c
+++ php5.3/ffmpeg_tools.c
@@ -42,7 +42,7 @@
#include "ffmpeg_tools.h"
#ifdef HAVE_SWSCALER
-#include <swscale.h>
+#include <libswscale/swscale.h>
#endif
/* {{{ ffmpeg_img_convert()
Index: php5.3/ffmpeg_tools.h
===================================================================
--- php5.3.orig/ffmpeg_tools.h
+++ php5.3/ffmpeg_tools.h
@@ -36,7 +36,7 @@
#ifndef FFMPEG_TOOLS_H
#define FFMPEG_TOOLS_H
-#include <avcodec.h>
+#include <libavcodec/avcodec.h>
int ffmpeg_img_convert(
AVPicture *dst, int dst_pix_fmt,

@ -0,0 +1,30 @@
Fix runtime with ffmpeg-1.
https://bugs.gentoo.org/show_bug.cgi?id=461438
Index: php5.3/ffmpeg-php.c
===================================================================
--- php5.3.orig/ffmpeg-php.c
+++ php5.3/ffmpeg-php.c
@@ -90,9 +90,6 @@ PHP_INI_END()
*/
PHP_MINIT_FUNCTION(ffmpeg)
{
- /* must be called before using avcodec libraries. */
- avcodec_init();
-
/* register all codecs */
av_register_all();
Index: php5.3/ffmpeg_movie.c
===================================================================
--- php5.3.orig/ffmpeg_movie.c
+++ php5.3/ffmpeg_movie.c
@@ -259,7 +259,7 @@ static int _php_open_movie_file(ff_movie
}
/* open the file with generic libav function */
- if (av_open_input_file(&ffmovie_ctx->fmt_ctx, filename, NULL, 0, NULL) < 0) {
+ if (avformat_open_input(&ffmovie_ctx->fmt_ctx, filename, NULL, NULL) < 0) {
return 1;
}

@ -1,2 +1,2 @@
DIST libchart-1.2.1.tar.gz 102592 SHA256 6a8e8831c4f7e25d20bcfe631b6741ccc8b29c173dd7c069e8f3c9fab883197e SHA512 85c3859412cd13aff57abfe3199d59f95c3ac4e6c5a22a49b5cad83a0c3e082432b1f35be7f05161b8e243e0febaaf1df709391845dcd3198f9d8da8a62b8f30 WHIRLPOOL ae3478f5350d8b0aafe83abf9c38a6e28523aa5d8c368c660f4ce029ad27f72a6195ad6f2a31bd164e4f15d4357ff808384eed1e2e4e4c8241388747ee3b9826
DIST libchart-1.2.2.tar.gz 103063 SHA256 3a369f3d0caf18cb2fa25db9744f2d7986c5020a474ca6b42ef807785bd78166 SHA512 6b86be1afdf4492e911c7c4bb08045d4f4f7229204a53c77339a8a7c5aa896c221e7bd9fe6bac2be05f97de653372689e22827ec1c13ee63402e9058818969bf WHIRLPOOL 033297a4d323729579240c17559d2765fb910e951c71f07b6a8f6f19dc98c84e2fd0f6e62489c7fa6f18da1229903bd51889e4c079088d529bea16d36c4797df
DIST libchart-1.3.tar.gz 106204 SHA256 ab3bdf1ccdb008a7ca9f7908d7ed8698163ab6679eaaf4bc37d5229471f38ac2 SHA512 5d2a0b014546487029f552f225fa83de856210a997e69bb5b129e99790f5acfdcfff904077126c42f82974d10f81e7e0342991221af5f108902b2792df24d586 WHIRLPOOL e4bb9b86939592a97bec0b00ebc26046a599a9b6d1ed266db9ad7b6b4a653cca21fdb7aa31078ba2d0957ddc0cc0c5741fd1d62a80b229b55f78dda81c2acca9

@ -1,10 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/libchart/libchart-1.2.1.ebuild,v 1.1 2011/04/09 19:15:10 olemarkus Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-php/libchart/libchart-1.3.ebuild,v 1.1 2013/03/24 18:46:26 mabi Exp $
EAPI="2"
inherit php-lib-r1 depend.php
EAPI="4"
DESCRIPTION="Libchart is a chart creation PHP library that is easy to use."
HOMEPAGE="http://naku.dohcrew.com/libchart"
@ -15,20 +13,22 @@ KEYWORDS="~x86 ~amd64"
SLOT=0
IUSE="examples"
need_php5
DEPEND=""
RDEPEND="dev-lang/php[truetype]
|| ( dev-lang/php[gd] dev-lang/php[gd-external] )"
S="${WORKDIR}/${PN}"
src_install() {
php-lib-r1_src_install ${PN} `cd ${PN}; find . -type f -print`
for i in ${PN}/{ChangeLog,README} ; do
dodoc-php ${i}
rm -f ${i}
done
dodoc "${PN}/ChangeLog" "${PN}/README"
rm -f "${PN}/ChangeLog" "${PN}/ChangeLog" "${PN}/COPYING"
if use examples ; then
insinto /usr/share/doc/${CATEGORY}/${PF}
doins -r demo/
# no point making users unzip all files individually
docompress -x "/usr/share/doc/${PF}/demo"
dodoc -r demo/
fi
insinto "/usr/share/php/${PN}"
doins -r ${PN}
}

@ -1,4 +1,3 @@
DIST pymongo-2.3.tar.gz 254199 SHA256 8e43fdd7ea8e2aa965791af1b6e24186248023c6fde70092d9631b1d9150b1dc SHA512 eb08f9716b2d5ee6c71ab06fe4e1ab57cb1385de808f26720a0173375be52a184dfabad23f7b10e765a7eb1b06fed597d27c052e7d42a60f7e470862abef8b25 WHIRLPOOL 25612002a891eb39d00416e0fbc0c64289bd307da11aef7bcd8f5763d12dec0c6495de7a62d24bc5518c50e7af3743724c1bc0c9a972872c420cca0c8f5881ae
DIST pymongo-2.4.1.tar.gz 275222 SHA256 dae8a074137ade3c854c47f76853792b69d1cbc263d9e74aaca50a02842da970 SHA512 89e4765952d7b38a41d4b148a6f2d8de808f3b35a78efa84589fc9ed138784b5ad7e1047436b3a21b7b145446cac837a6472207db0e711a1de3c37c77c922652 WHIRLPOOL 42a75a2db5349ac0261ac24f713c4969a9a948d14b23e291dfe3d948e0ff66ff6f7560629a7b2dcf6b37c9c0109c55f39766542bea18c6f2dd62f0bf94ad5e50
DIST pymongo-2.4.2.tar.gz 283269 SHA256 6862c85844f1766c261a39022ec7a6b631988cb5528a31f8d20e78181398aa5f SHA512 c29da74eecd1e75cd5649dad23d51e848e20d082fce5c5f620e46f257caa9044d821daaa2895bbdab79039fb29fa0ada9a244f8905bb9f0180bd714220e55f0f WHIRLPOOL 93111b01ec2635bd61a830b3287644994d916ae06b9eb09cc13fbb0ccda82ac5966be8f4f9283d03531ec8c1dc8736655b26e49a4ede96e68bfe1da12c6ff30b
DIST pymongo-2.4.tar.gz 273479 SHA256 11d6a2934188eea6a6b6c55f3a0b1ac610175e6de92b0e5632bb8d90acb3d48d SHA512 cd3bed659614a3d61217bb445e0313494783ff01f25be681b86a24f66692a16c123213625ca5b046d50433c395d8f4b4b2be93e9bcad8f0f392cb7f6b6c60560 WHIRLPOOL 346959547590518bc7747f3e6a84013b0931743ae485b88293c6974ddc564884a70f8b2c6f5e33b8f1c65a9d5b547a43090bf01028613278f096cecf5d5509d1
DIST pymongo-2.5.tar.gz 294930 SHA256 79aff1c77ec6be6158a4d1a11002400ee0eb8f74dc6f4f67527f59bfac78c222 SHA512 f99adf2f9ccb4bb8c0bf098ae34663759336fbbdd24fda98dfd30133c9f0aea819243185430e247e09529cf31ef723739a75605d7ee534fe1db0f22af3afc19b WHIRLPOOL 24afd7a137b62ff6bc831c189658e42763a19d92632e2fbd633d57c79bb872191aae1de0841b821208e2d726b55a7762f8295bbdd96f4aaf95dc30fe4f758034

@ -1,64 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.4.1.ebuild,v 1.1 2012/12/13 10:22:17 ultrabug Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_TESTS_FAILURES_TOLERANT_ABIS="*-jython"
DISTUTILS_SRC_TEST="nosetests"
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
inherit distutils
DESCRIPTION="Python driver for MongoDB"
HOMEPAGE="http://github.com/mongodb/mongo-python-driver http://pypi.python.org/pypi/pymongo"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc mod_wsgi"
RDEPEND="dev-db/mongodb"
DEPEND="${RDEPEND}
dev-python/setuptools
doc? ( dev-python/sphinx )"
PYTHON_MODNAME="bson gridfs pymongo"
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
mkdir html
sphinx-build doc html || die "Generation of documentation failed"
fi
}
distutils_src_test_pre_hook() {
mkdir -p "${T}/tests-${PYTHON_ABI}/mongo.db"
mongod --dbpath "${T}/tests-${PYTHON_ABI}/mongo.db" --fork --logpath "${T}/tests-${PYTHON_ABI}/mongo.log"
}
src_test() {
distutils_src_test
killall -u "$(id -nu)" mongod
}
src_install() {
# Maintainer note:
# In order to work with mod_wsgi, we need to disable the C extension.
# See [1] for more information.
# [1] http://api.mongodb.org/python/current/faq.html#does-pymongo-work-with-mod-wsgi
distutils_src_install $(use mod_wsgi && echo --no_ext)
if use doc; then
dohtml -r html/* || die "Error installing docs"
fi
}
pkg_postinst() {
ewarn "Important changes on this release, make sure to read the changelog:"
ewarn "http://api.mongodb.org/python/${PV}/changelog.html"
}

@ -1,64 +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/pymongo/pymongo-2.4.2.ebuild,v 1.1 2013/01/25 10:45:44 ultrabug Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_TESTS_FAILURES_TOLERANT_ABIS="*-jython"
DISTUTILS_SRC_TEST="nosetests"
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
inherit distutils
DESCRIPTION="Python driver for MongoDB"
HOMEPAGE="http://github.com/mongodb/mongo-python-driver http://pypi.python.org/pypi/pymongo"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc mod_wsgi"
RDEPEND="dev-db/mongodb"
DEPEND="${RDEPEND}
dev-python/setuptools
doc? ( dev-python/sphinx )"
PYTHON_MODNAME="bson gridfs pymongo"
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
mkdir html
sphinx-build doc html || die "Generation of documentation failed"
fi
}
distutils_src_test_pre_hook() {
mkdir -p "${T}/tests-${PYTHON_ABI}/mongo.db"
mongod --dbpath "${T}/tests-${PYTHON_ABI}/mongo.db" --fork --logpath "${T}/tests-${PYTHON_ABI}/mongo.log"
}
src_test() {
distutils_src_test
killall -u "$(id -nu)" mongod
}
src_install() {
# Maintainer note:
# In order to work with mod_wsgi, we need to disable the C extension.
# See [1] for more information.
# [1] http://api.mongodb.org/python/current/faq.html#does-pymongo-work-with-mod-wsgi
distutils_src_install $(use mod_wsgi && echo --no_ext)
if use doc; then
dohtml -r html/* || die "Error installing docs"
fi
}
pkg_postinst() {
ewarn "Important changes on this release, make sure to read the changelog:"
ewarn "http://api.mongodb.org/python/${PV}/changelog.html"
}

@ -1,64 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.4.ebuild,v 1.2 2012/12/05 04:17:19 mr_bones_ Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_TESTS_FAILURES_TOLERANT_ABIS="*-jython"
DISTUTILS_SRC_TEST="nosetests"
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
inherit distutils
DESCRIPTION="Python driver for MongoDB"
HOMEPAGE="http://github.com/mongodb/mongo-python-driver http://pypi.python.org/pypi/pymongo"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc mod_wsgi"
RDEPEND="dev-db/mongodb"
DEPEND="${RDEPEND}
dev-python/setuptools
doc? ( dev-python/sphinx )"
PYTHON_MODNAME="bson gridfs pymongo"
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
mkdir html
sphinx-build doc html || die "Generation of documentation failed"
fi
}
distutils_src_test_pre_hook() {
mkdir -p "${T}/tests-${PYTHON_ABI}/mongo.db"
mongod --dbpath "${T}/tests-${PYTHON_ABI}/mongo.db" --fork --logpath "${T}/tests-${PYTHON_ABI}/mongo.log"
}
src_test() {
distutils_src_test
killall -u "$(id -nu)" mongod
}
src_install() {
# Maintainer note:
# In order to work with mod_wsgi, we need to disable the C extension.
# See [1] for more information.
# [1] http://api.mongodb.org/python/current/faq.html#does-pymongo-work-with-mod-wsgi
distutils_src_install $(use mod_wsgi && echo --no_ext)
if use doc; then
dohtml -r html/* || die "Error installing docs"
fi
}
pkg_postinst() {
ewarn "Important changes on this release, make sure to read the changelog:"
ewarn "http://api.mongodb.org/python/${PV}/changelog.html"
}

@ -0,0 +1,129 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.5.ebuild,v 1.1 2013/03/25 09:20:07 ultrabug Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} )
inherit check-reqs distutils-r1
DESCRIPTION="Python driver for MongoDB"
HOMEPAGE="http://github.com/mongodb/mongo-python-driver http://pypi.python.org/pypi/pymongo"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc kerberos mod_wsgi test"
RDEPEND="dev-db/mongodb"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/nose[${PYTHON_USEDEP}] )
kerberos? ( dev-python/pykerberos )"
reqcheck() {
if use test; then
# During the tests, database size reaches 1.5G.
local CHECKREQS_DISK_BUILD=1536M
check-reqs_${1}
fi
}
pkg_pretend() {
reqcheck pkg_pretend
}
pkg_setup() {
reqcheck pkg_setup
}
python_compile_all() {
if use doc; then
mkdir html || die
sphinx-build doc html || die
fi
}
src_test() {
# Yes, we need TCP/IP for that...
local DB_IP=127.0.0.1
local DB_PORT=27017
export DB_IP DB_PORT
# 1.5G of disk space per run.
local DISTUTILS_NO_PARALLEL_BUILD=1
distutils-r1_src_test
}
python_test() {
local dbpath=${TMPDIR}/mongo.db
local logpath=${TMPDIR}/mongod.log
# Now, the hard part: we need to find a free port for mongod.
# We're just trying to run it random port numbers and check the log
# for bind errors. It shall be noted that 'mongod --fork' does not
# return failure when it fails to bind.
mkdir -p "${dbpath}" || die
while true; do
ebegin "Trying to start mongod on port ${DB_PORT}"
LC_ALL=C \
mongod --dbpath "${dbpath}" --smallfiles --nojournal \
--bind_ip ${DB_IP} --port ${DB_PORT} \
--unixSocketPrefix "${TMPDIR}" \
--logpath "${logpath}" --fork \
&& sleep 2
# Now we need to check if the server actually started...
if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then
# yay!
eend 0
break
elif grep -q 'Address already in use' "${logpath}"; then
# ay, someone took our port!
eend 1
: $(( DB_PORT += 1 ))
continue
else
eend 1
eerror "Unable to start mongod for tests. See the server log:"
eerror " ${logpath}"
die "Unable to start mongod for tests."
fi
done
local failed
nosetests || failed=1
mongod --dbpath "${dbpath}" --shutdown
[[ ${failed} ]] && die "Tests fail with ${EPYTHON}"
rm -rf "${dbpath}"
}
python_install() {
# Maintainer note:
# In order to work with mod_wsgi, we need to disable the C extension.
# See [1] for more information.
# [1] http://api.mongodb.org/python/current/faq.html#does-pymongo-work-with-mod-wsgi
distutils-r1_python_install $(use mod_wsgi && echo --no_ext)
}
python_install_all() {
use doc && local HTML_DOCS=( html/. )
distutils-r1_python_install_all
}
pkg_postinst() {
ewarn "Important changes on this release, make sure to read the changelog:"
ewarn "http://api.mongodb.org/python/${PV}/changelog.html"
}

@ -1,2 +0,0 @@
DIST pysqlite-1.0.1.tar.gz 41099 SHA256 9ceed0af9e94b2f8701d4f36d7e86715d8ca64283e0b311e1816c031c3658f08 SHA512 4e156ea0ed888bb3d215edc678cc57b9943363703da995c142837488510ed333a121987f865b4f8553852ec2a221c08b5bd56ef6fee7d70683de9485d185ca94 WHIRLPOOL b5dd6ddc049207a78dd40ca34a177993c1d763c26e97622f748a7dd589dad720e3e178f28ecf8b2149b61ab800cf91f9308885d11db5e48617aee5064913fd77
DIST pysqlite-2.6.3.tar.gz 74846 SHA256 0d538880717f6347bb83f9ce11e9b171caf9d76e1980a0e9c22f8b03aec3585b SHA512 fe7618b9b4b764a32be94dc8abd97445e33009c8489d2b417c9677382452a5c2d176feffe8b3167eb543f89d5ed3b9b717ceef63bfb2157b3f24a539cfb89a51 WHIRLPOOL ad40bf2531fd4a83aedaf6f7b38868a09dcf93de76b3191deebb9f51654240c41689826fe4aa3f5ca499910cf841d28000f403b968b7e59f122688dd0e0c1416

@ -1,33 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-1.0.1.ebuild,v 1.13 2012/02/24 01:09:05 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
inherit distutils
DESCRIPTION="Python wrapper for the local database Sqlite"
HOMEPAGE="http://pysqlite.org/"
SRC_URI="mirror://sourceforge/pysqlite/pysqlite-${PV}.tar.gz"
LICENSE="pysqlite"
SLOT="0"
KEYWORDS="amd64 ~arm ppc sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="dev-db/sqlite:0"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
PYTHON_MODNAME="sqlite"
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}/examples || die
doins -r examples/* || die
}

@ -1,2 +1,3 @@
DIST six-1.1.0.tar.gz 12573 SHA256 8c421a58100704148fd9ad2e38b05d5646f6d3139ac209dfda4c980d124c75ba SHA512 a3afc67451009044dfc57a90529a2d1ec4d2f98eba534dd74f529318a03c99d98d4850daed157177145763cd925393f4f0afaba20634b982e201bc7d422cc828 WHIRLPOOL 87c2bbfa392180d203b339267518cafa3d4b695a44ccc7fd540329246a8253f378e6e0bbd306282bd4b11b6b1a5df8d4e0b4fad556ca60959eca94b10a98d4a3
DIST six-1.2.0.tar.gz 15316 SHA256 4a86d87623f75811524f30832e092914d65af7ff2eb1d403e01ec235b0e19cb3 SHA512 8963f851f88016286a2159f0e7d6eddacdaad8c84048cb233fb2b2371ea2b4b5a3f75a5937677fe5c6ceb1a1f1791362bd181134e0f15409e44e2358e6c07712 WHIRLPOOL 81d1cca6d55055c53143ce0f5b16b2faf3a402122bb3f7cb7228e508665bcd8d4e09a2cbd32278b4bd5085c1789b7b35a84345d259719116a182ecc6561861f4
DIST six-1.3.0.tar.gz 17701 SHA256 d59793f9b255bd00de800b97f9a50cce4fc8a44c205f7defa5bb7d691d13b852 SHA512 e8974d4bf62325f98e301e68c237489ca39cfa9ed1066f1cdfa34e18d20d0baf788cb515e44f00f1c823f9f923d2b30f63443dbc5df8c934b1a69b8c68210130 WHIRLPOOL bd259a4e2cd0ae2629a8998a01641874266928d6fe3e65669198a9706cd4f90579902196680932b5c9207db1005376ae8b4cbc7b63f30afabe8993e719df9a5e

@ -0,0 +1,34 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/six/six-1.3.0.ebuild,v 1.1 2013/03/24 18:23:44 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_8,1_9,2_0} )
inherit distutils-r1
DESCRIPTION="Python 2 and 3 compatibility library"
HOMEPAGE="https://bitbucket.org/gutworth/six http://pypi.python.org/pypi/six"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE="doc test"
DEPEND="doc? ( dev-python/sphinx )
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
python_compile_all() {
use doc && emake -C documentation html
}
python_test() {
py.test || die "Testing failed with ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( documentation/_build/html/ )
distutils-r1_python_install_all
}

@ -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/sqlalchemy-migrate/sqlalchemy-migrate-0.7.1.ebuild,v 1.6 2012/10/07 13:30:24 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.1.ebuild,v 1.7 2013/03/24 20:05:38 floppym Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -21,6 +21,7 @@ IUSE=""
DEPEND="dev-python/decorator
dev-python/setuptools
>=dev-python/sqlalchemy-0.5
<dev-python/sqlalchemy-0.8
dev-python/tempita"
RDEPEND="${DEPEND}"
# for tests: unittest2 and scripttest

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild,v 1.14 2013/02/24 17:48:34 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy-migrate/sqlalchemy-migrate-0.7.2.ebuild,v 1.15 2013/03/24 20:05:38 floppym Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -20,7 +20,8 @@ IUSE=""
DEPEND="dev-python/decorator
dev-python/setuptools
>=dev-python/sqlalchemy-0.5
>=dev-python/sqlalchemy-0.6
<dev-python/sqlalchemy-0.8
dev-python/tempita"
RDEPEND="${DEPEND}"
# for tests: unittest2 and scripttest

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

Loading…
Cancel
Save