Sync with portage [Fri May 8 13:10:05 MSK 2015].
This commit is contained in:
parent
124aee1596
commit
1efa4e2ea9
55 changed files with 803 additions and 933 deletions
|
@ -1,2 +1,4 @@
|
|||
DIST abs-guide-6.6.pdf 3348750 SHA256 dc3ab7f8cdd8516e8758dafb943d39ecee6ab289c171507ea4290478749bc970 SHA512 4338edbd19faf256bc857ecbb596f54a05a687583c4cadc76deb97fa50317c58a3b6b7833649b5209b78d32887d08776d8d2e0b0deaaa915e886505b5ead41c1 WHIRLPOOL 777745b854a3c92efaf94c5aa8206a1e19840a78546f39cfb8563015614bee1502f29a20e46510b8307f8f414478937126cd02807ae77cf3a9d3576c85cc9b47
|
||||
DIST abs-guide-6.6.tar.bz2 1136823 SHA256 922369ab87545c3ae3118122328508ad201a0893fc09ec474bb88e987777f07a SHA512 506590b8279f6719cbbaa18f4468b1f8b99f9ed3b490475426236fcfcc7a479552c579648d5475e047418de1e56e899288150586bf04ba8e1075a6040f50d7a9 WHIRLPOOL 2dd00b9c8915fa90fae37878c2b651b601a7ee52bd0f1b30dbb49a77574e57a92994e07efa77d6270154c80febb568d30a5110ad28cb51c19553a051aada9662
|
||||
DIST abs-guide-final.tar.bz2 1141871 SHA256 c29ffc8721ac2a8e0782bf0518d6a9dbd650f5a3deb00009b825f80f833aa971 SHA512 76c445da6faa47418e50458bf2bfc0b4c34c9efcc93308c39ec880b894d019bf9a1d2f4a8687d14bd9832872b666769f6f7f74c313520e9770f16724eb3adfdd WHIRLPOOL 831e6144ccfafd84725d1b961a9425c2c8bcddf07485453f8ff23cacef1244aa60e5a9532c7156170e617717c4c737fe715a951d7e73d14c5fcc1d79e05da415
|
||||
DIST abs-guide.pdf 3358210 SHA256 6fcd205205d5e549d9ed4dc2e9d620f8af5742917c2a718b32f91398f41155cd SHA512 8691ddab583e816ca9f0e42d37d45d8c27e74b5b62a5a951c7fe5830679e9288d4d5f98e7ff0746e2ac71e26322c7dc8250e33128b3e77591a1e48e8d415777c WHIRLPOOL 407a7c24ceaf98a64b721b0f1cca9c22acf115a6c50f47e54af95ddc2511bd1409cd4a88df21dfde88559e7428a413099e0b77986bbe368ace37a754a288ed2c
|
||||
|
|
39
app-doc/abs-guide/abs-guide-10.ebuild
Normal file
39
app-doc/abs-guide/abs-guide-10.ebuild
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-10.ebuild,v 1.1 2015/05/08 06:42:11 rhill Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
DESCRIPTION="An in-depth exploration of the art of shell scripting"
|
||||
HOMEPAGE="http://www.tldp.org/LDP/abs/html"
|
||||
|
||||
SRC_URI="http://bash.deta.in/abs-guide-final.tar.bz2
|
||||
pdf? ( http://bash.deta.in/abs-guide.pdf )"
|
||||
|
||||
LICENSE="public-domain"
|
||||
IUSE="pdf"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
S="${WORKDIR}/abs"
|
||||
|
||||
src_unpack() {
|
||||
unpack abs-guide-final.tar.bz2
|
||||
use pdf && cp "${DISTDIR}"/abs-guide.pdf "${S}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodoc -r *
|
||||
docompress -x /usr/share/doc/${PF}
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
echo
|
||||
elog "The HTML docs can be accessed through /usr/share/doc/${P}/HTML/index.html"
|
||||
elog "Example scripts from the book are installed in /usr/share/doc/${P}/"
|
||||
use pdf && elog "along with the pdf version."
|
||||
echo
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.11.ebuild,v 1.16 2014/11/19 19:33:13 dilfridge Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.11.ebuild,v 1.17 2015/05/08 06:54:05 jlec Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -66,6 +66,12 @@ src_prepare() {
|
|||
epatch "${FILESDIR}"/${PN}-2.4.11-shared-hdf.patch
|
||||
find . -name Makefile.PL -exec \
|
||||
sed -i -e "s|/usr|${EPREFIX}/usr|g" {} \; || die
|
||||
|
||||
if has_version ">=sci-libs/plplot-5.11"; then
|
||||
sed \
|
||||
-e 's:plplotd:plplot:g' \
|
||||
-i Graphics/PLplot/Makefile.PL || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.0.ebuild,v 1.2 2013/11/14 21:09:09 mabi Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.0.ebuild,v 1.3 2015/05/08 08:33:47 ago Exp $
|
||||
|
||||
EAPI="4"
|
||||
inherit php-pear-r1
|
||||
|
@ -9,7 +9,7 @@ DESCRIPTION="A full featured command line options and arguments parser"
|
|||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
DEPEND=">=dev-php/pear-1.4"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Find/PEAR-File_Find-1.3.2.ebuild,v 1.5 2015/05/05 07:45:36 jer Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-File_Find/PEAR-File_Find-1.3.2.ebuild,v 1.6 2015/05/08 08:32:47 ago Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
|
@ -9,7 +9,7 @@ inherit php-pear-r1
|
|||
DESCRIPTION="A class that facillitates the search of filesystems"
|
||||
LICENSE="PHP-2.02"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
|
||||
IUSE=""
|
||||
|
||||
src_unpack() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.2.2.ebuild,v 1.3 2015/05/05 07:46:43 jer Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.2.2.ebuild,v 1.4 2015/05/08 08:32:04 ago Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
|
@ -9,5 +9,5 @@ inherit php-pear-r1
|
|||
DESCRIPTION="Check the syntax of IPv4 addresses"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
|
||||
IUSE=""
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_DNSBL/PEAR-Net_DNSBL-1.3.7.ebuild,v 1.2 2015/05/05 07:30:00 jer Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_DNSBL/PEAR-Net_DNSBL-1.3.7.ebuild,v 1.3 2015/05/08 08:31:17 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -10,7 +10,7 @@ DESCRIPTION="DNSBL Checker"
|
|||
|
||||
LICENSE="PHP-3.01"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 hppa ~ia64 ~sparc ~x86"
|
||||
KEYWORDS="alpha amd64 hppa ia64 sparc x86"
|
||||
IUSE=""
|
||||
RDEPEND=">=dev-php/PEAR-Cache_Lite-1.5.2-r1
|
||||
>=dev-php/PEAR-Net_CheckIP-1.1-r1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Spreadsheet_Excel_Writer/PEAR-Spreadsheet_Excel_Writer-0.9.3.ebuild,v 1.3 2015/05/05 07:47:52 jer Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Spreadsheet_Excel_Writer/PEAR-Spreadsheet_Excel_Writer-0.9.3.ebuild,v 1.4 2015/05/08 08:30:27 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -9,7 +9,7 @@ inherit php-pear-r1
|
|||
DESCRIPTION="Package for generating Excel spreadsheets"
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
|
||||
RDEPEND="dev-lang/php[iconv]
|
||||
>=dev-php/PEAR-OLE-0.5-r1"
|
||||
IUSE=""
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
DIST billiard-3.3.0.17.tar.gz 151198 SHA256 f55c64d5db5ab98bdc8584917f6d34abb74936210a4496ad03ae672544249d73 SHA512 ed476e434b01490e512a2320d878f6c755f9961d9d567ef85baa830018646811decf8af8226433ddb34da02e8543a4c8c7b8941a18a843a17794497477d13a7e WHIRLPOOL 6771d25326f164fb1b4cf817199695e62d19dd20c45793806f8df1387dc7c7d2dc310a691100e371526f40509f0c62f349cd600146b4a09ad7ab7acc1921a5d6
|
||||
DIST billiard-3.3.0.18.tar.gz 150594 SHA256 59c04036f314c11632a49c15c57735ffb9e111983ee8d15e4d3e188be31583c1 SHA512 8d62c1b5d3e979926cb416f6a85597cf2a959559e4f07f76f189e70cf585ef55ddbba9506bc50c2f9a88d8aa00684b7468668748edbd0530a72970334b8e2617 WHIRLPOOL 34ce61559529ca95fb9aed44917541546ce9955212954aa16b783f5ed22e36a3b7700edd46eb4961bf49b1653f9020aaf760ba67b1123b69e78e04af8e9c93fb
|
||||
DIST billiard-3.3.0.19.tar.gz 150943 SHA256 6e6b8ec6e45b89389051737c7e6215d8e55a83896eb6212fa726ca76e80c7a19 SHA512 492bbf38a7924394dd89f0528598e37ca1a93fc21bdccded396e036b2457c14a06e44de2c9b80d81e5f55bfd1559a6c5fbf1969d108089dc2b697aeaecea60ad WHIRLPOOL cb6e96a1b0c19c62ea07854e7520acb04fa716f79f499e00c24b46f0403ac80d1416fe9669d7e9e1c4955341b29d9215b2e9429d482a4ab34c710397c0fc5e2d
|
||||
DIST billiard-3.3.0.20.tar.gz 150990 SHA256 688f9466b1c3ae14106381e6dbd328115e75c5260c542eb48e6c46931f6928cc SHA512 e068be5e0bc8bc68a38dd1cec2574da25494cfac2d9b4b951af3fd9f019080a4fe402d4b407162bcc0edbd0ac4fa406a964913e4bf1dd98dbf8a937294a34321 WHIRLPOOL 41a2ae0648d7f960c569491d0dea519787e3ba779fa27e71c2dcf12e7955175cf3b9697ca750f4e164e263abd880af287f5645c0864115ef88bb0088d31b74c2
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/billiard-3.3.0.17.ebuild,v 1.1 2014/05/02 07:01:53 idella4 Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/billiard/billiard-3.3.0.20.ebuild,v 1.1 2015/05/08 08:08:45 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
|
||||
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
|
||||
|
||||
inherit distutils-r1 flag-o-matic
|
||||
|
||||
|
@ -20,9 +20,10 @@ IUSE="doc test"
|
|||
RDEPEND=""
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( >=dev-python/unittest2-0.4.0[${PYTHON_USEDEP}]
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
>=dev-python/nose-1.3.4[${PYTHON_USEDEP}]
|
||||
dev-python/nose-cover3[${PYTHON_USEDEP}]
|
||||
dev-python/mock[${PYTHON_USEDEP}] )"
|
||||
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy pypy3 )
|
||||
)"
|
||||
# The usual req'd for tests
|
||||
DISTUTILS_IN_SOURCE_BUILD=1
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
DIST celery-3.1.16.tar.gz 1296002 SHA256 83079c2974b3e1ac7517b33cde829db59fc2f560482c85ee4f2c751d3dd4f8f3 SHA512 935beec3e0c987746640e38120a8c9dff00c332b46914c0569cf306e3d971873708bfcab1eb76ced4be8d780c387ceec0cf2cee4f3be68b80295b240ae822371 WHIRLPOOL d9824128aeaae60e536f709bc0bd58b9a194a20c55b005c97fa305787c7940e541dc2efdb8cc9d33eb0a23d103e819320b9dd22948683daa00bc46d366d11a84
|
||||
DIST celery-3.1.17.tar.gz 1297008 SHA256 cfe2b653268bd586e2d08a75e886f7be3be55ba372f72e2f5747aeb76c470362 SHA512 f45f92161c134f528719768ad863df6b49fa69e022b47ea801e590de8579c24c6a5ec9dd88f712e180ed7d23f4510cecf4f17a959c3338d4bad79f8d7d202453 WHIRLPOOL c0f4ddab40eab2afe579c88bc9e47d46a650a73212abb7cb1d343d7ba72c1d96913c1c04a6e9920789bd6f9bf6907c09e6326aa08e6ba3cf68545e44432b95de
|
||||
DIST celery-3.1.18.tar.gz 1298756 SHA256 0924f94070c6fc57d408b169848c5b38832668fffe060e48b4803fb23e0e3eaf SHA512 219291a64c72a0c95a2b184903e491d5b6b1396b4b519d54503bb059af305c2f118865b71510d5685b8f5946135596c9d80d6ca10162a938ed90baaf4c3c48c3 WHIRLPOOL 0d27eda95fea5b6235afd7d5f90de249eec6d7c58a7563afb0cc73d29b84cb6903eced4b9515fe574206111fc4a304c5f24d3c476b4315416b441f324f2ebfa5
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/celery/celery-3.1.16.ebuild,v 1.2 2014/12/08 09:02:56 idella4 Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/celery/celery-3.1.18.ebuild,v 1.1 2015/05/08 08:47:05 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -17,29 +17,31 @@ SLOT="0"
|
|||
KEYWORDS="~amd64 ~x86"
|
||||
# There are a number of other optional 'extras' which overlap with those of kombu, however
|
||||
# there has been no apparent expression of interest or demand by users for them. See requires.txt
|
||||
IUSE="doc examples redis test"
|
||||
IUSE="doc examples redis sqs test yaml zeromq"
|
||||
|
||||
PY2_USEDEP=$(python_gen_usedep python2_7)
|
||||
PY27_USEDEP=$(python_gen_usedep python2_7)
|
||||
RDEPEND="<dev-python/kombu-3.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/kombu-3.0.23[${PYTHON_USEDEP}]
|
||||
>=dev-python/kombu-3.0.25[${PYTHON_USEDEP}]
|
||||
>=dev-python/anyjson-0.3.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/billiard-3.3.0.18[${PYTHON_USEDEP}]
|
||||
>=dev-python/billiard-3.3.0.20[${PYTHON_USEDEP}]
|
||||
<dev-python/billiard-3.4[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${PYTHON_USEDEP}]
|
||||
dev-python/greenlet[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
sqs? ( >=dev-python/boto-2.13.3[${PY27_USEDEP}] )
|
||||
zeromq? ( >=dev-python/pyzmq-13.1.0[${PYTHON_USEDEP}] )
|
||||
yaml? ( >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] )
|
||||
test? ( ${RDEPEND}
|
||||
dev-python/gevent[${PY2_USEDEP}]
|
||||
>=dev-python/mock-1.0.1[${PY2_USEDEP}]
|
||||
dev-python/gevent[${PY27_USEDEP}]
|
||||
>=dev-python/mock-1.0.1[${PY27_USEDEP}]
|
||||
dev-python/pyopenssl[${PYTHON_USEDEP}]
|
||||
dev-python/nose-cover3[${PYTHON_USEDEP}]
|
||||
dev-python/sqlalchemy[${PYTHON_USEDEP}]
|
||||
>=dev-python/pymongo-2.6.2[${PYTHON_USEDEP}]
|
||||
redis? ( dev-python/redis-py[${PYTHON_USEDEP}]
|
||||
>=dev-db/redis-2.8.0 )
|
||||
>=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
|
||||
)
|
||||
>=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}] )
|
||||
doc? (
|
||||
dev-python/docutils[${PYTHON_USEDEP}]
|
||||
dev-python/sphinx[${PYTHON_USEDEP}]
|
||||
|
@ -61,8 +63,6 @@ python_compile_all() {
|
|||
|
||||
python_test() {
|
||||
nosetests || die "Tests failed with ${EPYTHON}"
|
||||
# alternate method to run testsuite
|
||||
# esetup.py
|
||||
}
|
||||
|
||||
python_install_all() {
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>python</herd>
|
||||
<herd>python</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/utidylib-0.2-r1.ebuild,v 1.8 2012/03/01 23:40:55 ranger Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/utidylib-0.2-r1.ebuild,v 1.9 2015/05/08 07:33:35 jlec Exp $
|
||||
|
||||
EAPI="3"
|
||||
PYTHON_DEPEND="2:2.5"
|
||||
|
@ -12,7 +12,7 @@ inherit distutils eutils
|
|||
MY_P="uTidylib-${PV}"
|
||||
|
||||
DESCRIPTION="TidyLib Python wrapper"
|
||||
HOMEPAGE="http://utidylib.berlios.de/"
|
||||
HOMEPAGE="http://sourceforge.net/projects/utidylib/"
|
||||
SRC_URI="mirror://berlios/${PN}/${MY_P}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/utidylib-0.2-r2.ebuild,v 1.2 2015/04/08 08:05:02 mgorny Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/utidylib-0.2-r2.ebuild,v 1.3 2015/05/08 07:33:35 jlec Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -11,7 +11,7 @@ inherit distutils-r1
|
|||
MY_P="uTidylib-${PV}"
|
||||
|
||||
DESCRIPTION="TidyLib Python wrapper"
|
||||
HOMEPAGE="http://utidylib.berlios.de/"
|
||||
HOMEPAGE="http://sourceforge.net/projects/utidylib/"
|
||||
SRC_URI="mirror://berlios/${PN}/${MY_P}.zip"
|
||||
|
||||
LICENSE="MIT"
|
||||
|
|
14
licenses/CFS
14
licenses/CFS
|
@ -1,14 +0,0 @@
|
|||
The author of this software is Matt Blaze.
|
||||
Copyright (c) 1992, 1993, 1994, 1997 by AT&T.
|
||||
Permission to use, copy, and modify this software without fee
|
||||
is hereby granted, provided that this entire notice is included in
|
||||
all copies of any software which is or includes a copy or
|
||||
modification of this software and in all copies of the supporting
|
||||
documentation for such software.
|
||||
|
||||
This software is subject to United States export controls.
|
||||
|
||||
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
|
||||
WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR AT&T MAKE ANY
|
||||
REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
|
||||
OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
|
|
@ -1,55 +0,0 @@
|
|||
RACER USAGE - READ BEFORE MODIFYING SOURCE CODE
|
||||
|
||||
The programs and source code of the Racer project are copyright of Ruud van
|
||||
Gaal, Dolphinity, 2000-2001.
|
||||
All rights reserved. Publishing of included material without prior written
|
||||
permission of the author is prohibited.
|
||||
|
||||
Publishing of material downloadable here may however be done on a
|
||||
non-commericial basis. In this case, I would appreciate it if you send me a
|
||||
note regarding where you make available the material.
|
||||
|
||||
Use of any of the published source code in commercial software is explicilty
|
||||
NOT allowed without prior written permission. Distributions on Linux
|
||||
distributions (as is done on SuSE8.0 for example) IS however allowed. Use of
|
||||
(parts of) the source code in non-commercial software is allowed however.
|
||||
For commercial usage, licensing may be an option, for which you can contact
|
||||
the author.
|
||||
|
||||
This is NOT an Open Source project, although many people think so. You CAN
|
||||
contribute to the source if you want (or cannot resist), but all changes
|
||||
will go through me to the master source code. This is done to ensure quality
|
||||
and consistent style for instance. Also, parts of Racer (the QLib/D3
|
||||
libraries) are used in other projects, and changing the source code of this
|
||||
would be counterproductive for the other products that use these libraries.
|
||||
Therefore, the decision has been made not to OpenSource the source code.
|
||||
Realise that the copyrights will stay at Dolphinity, so for many people this
|
||||
will mean that they won't contribute to the source. This is ok to me, the
|
||||
product seems not large enough to need the whole world to aid in developing
|
||||
(except for the contents; cars & tracks). To add to the Racer project and
|
||||
maintain control, it is advised to create separate executables, which may
|
||||
use parts of the source code, but are not completely separately usable
|
||||
products. This means you can create a Replay Analyzer which uses track code
|
||||
from the Racer source code, but that you may NOT create a complete racing
|
||||
game based on a specific era for example, and distribute this commercially
|
||||
as a separate product.
|
||||
|
||||
If you have any questions on the usage of the materials presented in the
|
||||
Racer site, please contact me.
|
||||
|
||||
ADDITIONAL COPYRIGHTS (PRODUCTS MENTIONED IN PARTS OF THE SITE)
|
||||
|
||||
Sports Car GT Copyright Electronic Arts 1999
|
||||
F1 2000 Copyright Electronic Arts 2000
|
||||
Microsoft Windows is a registered trademark of Microsoft
|
||||
Grand Prix Legends is a registered trademark of Papyrus
|
||||
|
||||
All other trademarks are property of their respective companies.
|
||||
|
||||
No SCGT tracks can and will be found on this website. You are (probably) not
|
||||
allowed to post directly converted tracks onto your website, but you can
|
||||
upload Racer-specific files (but not the images and directly converted DOF
|
||||
models).
|
||||
|
||||
Ruud van Gaal
|
||||
last updated August 11, 2002
|
|
@ -1,299 +0,0 @@
|
|||
On the Rain-Slick Precipice of Darkness, Episode One
|
||||
|
||||
|
||||
End User License Agreement (EULA)
|
||||
|
||||
YOU SHOULD CAREFULLY READ THE FOLLOWING END USER LICENSE AGREEMENT
|
||||
BEFORE USING THIS SOFTWARE PROGRAM. BY USING THIS SOFTWARE PROGRAM, YOU
|
||||
AGREE TO BE BOUND BY THE TERMS OF THIS AGREEMENT. *IF YOU DO NOT AGREE
|
||||
TO THE TERMS OF THIS AGREEMENT, CLICK "QUIT" AND CEASE ALL USE OF THIS
|
||||
SOFTWARE.*
|
||||
|
||||
This software program, including any electronic documentation
|
||||
(collectively, the "Program"), any printed materials, and any and all
|
||||
copies of such Program and materials are the copyrighted work of Hothead
|
||||
Games, Inc. ("Hothead") and/or its affiliates or subsidiaries, and/or
|
||||
its suppliers or licensors. All rights are reserved, except as expressly
|
||||
stated below. Your use of the Program is governed by the terms of this
|
||||
End User License Agreement (the "License Agreement"). The Program is
|
||||
solely for use by end users according to the terms of the License
|
||||
Agreement. Any use, reproduction or redistribution of the Program not in
|
||||
accordance with the terms of the License Agreement is expressly
|
||||
prohibited.
|
||||
|
||||
1. *Thank You.* /We, Hothead, would first like to thank you for
|
||||
licensing the Program. We know you probably don't care much for
|
||||
reading through EULAs, but our lawyers want to make sure we keep
|
||||
control and ownership of the stuff we and our licensors have spent
|
||||
so much time, effort and energy developing. In order to keep
|
||||
developing cool stuff that we hope provides you hours and hours of
|
||||
entertainment and fun, we have to make sure you understand and agree
|
||||
that you are just buying the right to use the Program and that there
|
||||
are certain limits to your rights to use the Program. What follows
|
||||
is what you need to agree to before you can use the Program./
|
||||
|
||||
2. *Limited Use License.* /Like we mentioned above, you are buying the
|
||||
right to use the Program, not the rights to the Program itself./
|
||||
Hothead hereby grants, and by using the Program you thereby accept,
|
||||
a limited, non-exclusive license and right to install and/or use the
|
||||
Program on your personal computers belonging or primarily used by
|
||||
you (for example, on your home computer(s) and a laptop) with the
|
||||
express understanding that the Program is licensed, not sold, and
|
||||
that your license confers no title or ownership of the Program. If
|
||||
you wish to use the Program on more computers than the program
|
||||
automatically allows, Hothead's customer support may (in its sole
|
||||
discretion) increase the number of computers on which the Program
|
||||
may be used on a case by case basis. /If you need to increase any
|
||||
limits the game places on the number of installs you can use, simply
|
||||
contact us and we'll be happy to adjust the settings on your license
|
||||
code to make this happen./ This license is not a sale of the
|
||||
original software program (which means that the fee you paid gives
|
||||
you the right only to use the Program). To avoid any
|
||||
misunderstandings, the license granted hereunder is for one
|
||||
individual person and the Program will be deemed in "use" on a
|
||||
computer when it is loaded onto temporary memory (i.e., RAM) or
|
||||
installed into the permanent memory (e.g., hard disk, CD-ROM or
|
||||
other storage device) of a computer. Installation of the Program on
|
||||
a network server is strictly prohibited. Nothing in this Agreement
|
||||
shall be construed as granting any right to use the Program on a
|
||||
computer that is not owned or primarily used by you.
|
||||
|
||||
3. *Intellectual Property Ownership.* /In order to keep making cool
|
||||
games in the future, we need to make sure that you understand who
|
||||
owns the intellectual property rights to the Program./ All title,
|
||||
ownership rights and intellectual property rights in and to the
|
||||
Program and any and all copies thereof (including but not limited to
|
||||
all copyrights, trademarks, trade secrets, trade names, proprietary
|
||||
rights, patents, titles, computer code, themes, objects, characters,
|
||||
character names, stories, dialog, catch phrases, locations,
|
||||
concepts, artwork, animations, sounds, musical compositions,
|
||||
audio-visual effects, methods of operation, moral rights, any
|
||||
related documentation, and "applets" incorporated into the Program)
|
||||
are owned by Hothead or its licensors. The Program is protected by
|
||||
the copyright laws of Canada, the United States, international
|
||||
copyright treaties and conventions and other laws. All rights are
|
||||
reserved. The Program contains certain licensed materials and
|
||||
Hothead's licensors may protect their rights in the event of any
|
||||
violation of this Agreement. The Program may not be copied or
|
||||
reproduced in any manner or medium, in whole or in part, without
|
||||
prior written consent from Hothead.
|
||||
|
||||
4. *Responsibilities of End User.* /We've mentioned this before, but it
|
||||
probably won't hurt to be a bit more detailed about what you're
|
||||
agreeing to by licensing the Program. We want you to be able to
|
||||
enjoy the games we make to the maximum extent possible, but our
|
||||
lawyers tell us we have to set some rules about what you can and
|
||||
can't do to keep from getting us in trouble (and to allow us to stay
|
||||
in business and keep making cool new games). So by licensing the
|
||||
Program you agree to the following:/
|
||||
1. Subject to the license grant above, you may not, in whole or in
|
||||
part, copy, photocopy, reproduce, translate, reverse engineer,
|
||||
derive source code, modify, disassemble, decompile, modify or
|
||||
create derivative works based on the Program or any part
|
||||
thereof, or remove any proprietary notices or labels on the
|
||||
Program without the prior written consent of Hothead. You may
|
||||
not work around any technical limitations in the Program.
|
||||
|
||||
2. The Program is licensed to you as a single product. Its
|
||||
component parts may not be separated for use on more than one
|
||||
computer.
|
||||
|
||||
3. You are entitled to use the Program for your personal use, but
|
||||
you are not entitled to sell, grant a security interest in or
|
||||
transfer reproductions of the Program or otherwise distribute
|
||||
copies of the Program to other parties in any way, nor to rent,
|
||||
lease or license the Program to others without the prior written
|
||||
consent of Hothead.
|
||||
|
||||
4. You are expressly prohibited from selling or otherwise profiting
|
||||
from any levels, add-on packs, sequels or other items based upon
|
||||
or related to the Program or created by use of any part of the
|
||||
Program. If you create levels, add-on packs, sequels or other
|
||||
items to the Program, including the construction of new levels
|
||||
(collectively, the "Modifications"), you are subject to the
|
||||
following restrictions:
|
||||
1. Modifications are considered separate from the Program in
|
||||
the sense that they are not guaranteed or supported by
|
||||
Hothead. However, by creating a Modification you shall be
|
||||
deemed to have assigned in favour of Hothead all copyrights
|
||||
and intellectual property rights to the Modifications;
|
||||
|
||||
2. your Modifications must require a full, licensed copy of the
|
||||
Program to run;
|
||||
|
||||
3. your Modifications must not contain any libellous,
|
||||
defamatory or other illegal material, material that is
|
||||
scandalous or invades the rights of privacy or publicity of
|
||||
any third party, or contain any trademarks,
|
||||
copyright-protected work or other property of third parties;
|
||||
|
||||
4. your Modifications must be distributed solely for free.
|
||||
Neither you nor any other person or party may sell them to
|
||||
anyone, commercially exploit them in any way, or charge
|
||||
anyone for using them without a license from Hothead.
|
||||
|
||||
5. The prohibitions and restrictions in this Section apply to
|
||||
anyone in possession of the Program or any of your
|
||||
Modifications. For greater certainty, notwithstanding anything
|
||||
to the contrary in this Agreement, you are not permitted to
|
||||
reverse engineer, decompile or disassemble the Program in any
|
||||
way. Any copying of the Program not specifically allowed in this
|
||||
Agreement is a violation of this Agreement.
|
||||
|
||||
5. *Compliance with Ratings.* /To keep the politicians from carrying
|
||||
through on their threats to decide what video games you should and
|
||||
shouldn't be able to play (and what developers can and can't
|
||||
create), we need to make sure you understand the rating given to the
|
||||
Program is important and that you agree to use the Program in
|
||||
accordance with its rating./ The Program may consist of a video game
|
||||
that has been rated by one or more ratings boards (a "Rating
|
||||
Board"). By using the Program you expressly represent, warrant and
|
||||
agree that:
|
||||
|
||||
1. you are aware of the rating (the "Rating") issued to the Program
|
||||
by the applicable Rating Board in the jurisdiction in which you
|
||||
reside or will otherwise be using the Program;
|
||||
|
||||
2. you are of an appropriate age to use the Program in accordance
|
||||
with the Rating issued in such jurisdiction;
|
||||
|
||||
3. you will not permit use of the Program by those under the age
|
||||
set out in the Rating in the jurisdiction in which you reside or
|
||||
will otherwise be using or permitting use of the Program.
|
||||
|
||||
YOU AGREE TO INDEMNIFY AND HOLD HARMLESS HOTHEAD FROM AND AGAINST
|
||||
ANY CAUSE OF ACTION, ACTION, SUIT, PROCEEDING AGAINST OR DAMAGES OR
|
||||
OTHER LIABILITY SUFFERED BY HOTHEAD IN CONNECTION WITH YOUR BREACH
|
||||
OF THIS SECTION 5.
|
||||
|
||||
6. *No Transfer.* /What is this "transfer", you ask? It means that once
|
||||
you accept, you can't sell or give the game to someone else./ You
|
||||
may not transfer or assign this Agreement or any of your rights or
|
||||
obligations under this Agreement.
|
||||
|
||||
7. *Termination.* /We hope this section never has to come into play (or
|
||||
section 12 for that matter), as that means you are doing something
|
||||
you shouldn't be under the terms of this Agreement (which would suck
|
||||
for both of us, but more for you as it means we have to get our
|
||||
lawyers involved)./ This Agreement is effective until the earlier of
|
||||
(i) termination of this License Agreement by you or Hothead or (ii)
|
||||
termination of this Agreement in the event you fail to comply with
|
||||
any term contained herein, in which event this Agreement shall be
|
||||
deemed to terminate automatically. You may terminate this Agreement
|
||||
at any time by destroying all copies of the Program in your
|
||||
possession. Hothead may, at its discretion, terminate this License
|
||||
at any time upon notifying you of such termination (including by way
|
||||
of public notice to all licensees of the Program). In such event
|
||||
/(or if you are bad and are not complying with the terms of this
|
||||
agreement)/, you must immediately destroy all copies of the Program
|
||||
in your possession. Any license agreement to which you may have
|
||||
previously agreed that governs your use of prior versions of the
|
||||
Program is hereby terminated and is replaced by this agreement. The
|
||||
provisions of Sections 3, 7, and 10-13 will survive any termination
|
||||
of this Agreement.
|
||||
|
||||
8. *Updates; New Versions.* /We can't support all versions forever but
|
||||
we will do our best to support the latest version that we have made
|
||||
available./ Hothead may, in its sole discretion, provide updates or
|
||||
new versions of the Program in the future. Hothead may provide such
|
||||
updates or future versions subject to a separate license, which may
|
||||
by its terms terminate this license pursuant to Section 7. Hothead
|
||||
shall have no obligation to provide support or updates for the
|
||||
Program.
|
||||
|
||||
9. *Export Controls.* /Don't be a criminal . . . I mean, what else can
|
||||
we say here?/ You agree to comply with all applicable laws,
|
||||
regulations, rulings and executive orders of any governmental
|
||||
authority relating to the exportation or importation of the Program,
|
||||
including but not limited to the export and destination control
|
||||
regulations for Canadian goods.
|
||||
|
||||
10. *No Warranties.* /We have no idea what you have already on your
|
||||
computer and what state or health your computer is in. The entire
|
||||
risk arising out of use or performance of the Program remains with
|
||||
you./ THE PROGRAM IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND,
|
||||
EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
PURPOSE, OR NONINFRINGEMENT. ANY WARRANTY AGAINST INFRINGEMENT THAT
|
||||
MAY BE PROVIDED IN SECTION 2-312(3) OF THE UNIFORM COMMERCIAL CODE
|
||||
IN THE UNITED STATES AND/OR IN ANY OTHER COMPARABLE STATE,
|
||||
PROVINCIAL OR FEDERAL STATUTE IS EXPRESSLY DISCLAIMED. Some
|
||||
jurisdictions do not allow the exclusion or limitation of implied
|
||||
warranties, so the above limitations may not apply to you to that
|
||||
extent.
|
||||
|
||||
11. *Limitation of Liability.* HOTHEAD SHALL NOT BE LIABLE TO YOU, OR TO
|
||||
ANY PERSON ACCESSING GAMEPLAY AS A RESULT OF THE LICENSE GRANTED TO
|
||||
YOU, IN ANY WAY FOR LOSS OR DAMAGE OF ANY KIND RESULTING FROM YOUR
|
||||
USE OF THE PROGRAM, INCLUDING, BUT NOT LIMITED TO, LOSS OF GOODWILL,
|
||||
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||
COMMERCIAL DAMAGES OR LOSSES ARISING OUT OF THE USE OF OR INABILITY
|
||||
TO USE THE PROGRAM, EVEN IF HOTHEAD HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES. FURTHER, HOTHEAD SHALL NOT BE LIABLE IN
|
||||
ANY WAY FOR THE LOSS OR DAMAGE TO ANY PLAYER CHARACTERS, ACCOUNTS,
|
||||
STATISTICS OR USER PROFILE INFORMATION. YOU UNDERSTAND AND
|
||||
ACKNOWLEDGE THAT HOTHEAD CANNOT AND WILL NOT BE RESPONSIBLE FOR ANY
|
||||
INTERRUPTIONS OF ONLINE GAMEPLAY, INCLUDING, BUT NOT LIMITED TO ISP
|
||||
DISRUPTIONS, SOFTWARE OR HARDWARE FAILURES OR ANY OTHER EVENT WHICH
|
||||
MAY RESULT IN A LOSS OF DATA OR DISRUPTION OF ONLINE GAMEPLAY. Some
|
||||
jurisdictions do not allow the exclusion or limitation of incidental
|
||||
or consequential damages, so the above limitations may not apply to
|
||||
that extent. In no event shall our total liability to you for any
|
||||
and all damages, losses and causes of action (whether in tort,
|
||||
contract or otherwise) exceed the amount paid by you for the
|
||||
Program.
|
||||
|
||||
12. *Equitable Remedies.* /We need to make sure we can put a quick stop
|
||||
to anyone doing something they shouldn't be under this agreement./
|
||||
You hereby agree that Hothead would be irreparably damaged if the
|
||||
terms of this Agreement were not specifically enforced, and
|
||||
therefore you agree that Hothead shall be entitled, without bond,
|
||||
other security, or proof of damages, to appropriate equitable
|
||||
remedies with respect to breaches of this Agreement, in addition to
|
||||
such other remedies as Hothead may otherwise have available to it
|
||||
under applicable laws. In the event any litigation is brought by
|
||||
either party in connection with this Agreement, the prevailing party
|
||||
in such litigation shall be entitled to recover from the other party
|
||||
all the costs, attorneys' fees and other expenses incurred by such
|
||||
prevailing party in the litigation.
|
||||
|
||||
13. *Miscellaneous*
|
||||
1. This Agreement shall be deemed to have been made and executed in
|
||||
the Province of British Columbia, Canada and any dispute arising
|
||||
hereunder shall be resolved in accordance with the law of
|
||||
British Columbia. You agree that any claim asserted in any legal
|
||||
proceeding by you against Hothead or its licensors shall be
|
||||
commenced and maintained in a court located in Vancouver,
|
||||
British Columbia having subject matter jurisdiction with respect
|
||||
to the dispute between the parties.
|
||||
|
||||
2. Hothead reserves the right, at its sole discretion, to change,
|
||||
modify, add to, supplement or delete any of the terms and
|
||||
conditions of this Agreement, effective upon prior notice as
|
||||
follows: Hothead will post notification of any such changes to
|
||||
this Agreement on the its website, and may provide such other
|
||||
notice as Hothead may elect in its sole discretion.
|
||||
|
||||
3. In the event that any provision of this Agreement shall be held
|
||||
by a court or other tribunal of competent jurisdiction to be
|
||||
unenforceable, such provision will be enforced to the maximum
|
||||
extent permissible and the remaining portions of this Agreement
|
||||
shall remain in full force and effect.
|
||||
|
||||
4. This Agreement constitutes and contains the entire agreement
|
||||
between the parties with respect to the subject matter hereof
|
||||
and supersedes any prior oral or written agreements.
|
||||
|
||||
You hereby acknowledge that you have read and understand the
|
||||
foregoing terms of this Agreement and agree that the act of using
|
||||
the Program is an acknowledgment of your agreement to be bound by
|
||||
the terms and conditions of this Agreement. You also acknowledge and
|
||||
agree that this Agreement is the complete and exclusive statement of
|
||||
the agreement between Hothead and you with regard to the subject
|
||||
matter hereof and that this Agreement supersedes any prior or
|
||||
contemporaneous agreement, either oral or written, and any other
|
||||
communications between Hothead and you regarding the subject matter
|
||||
hereof.
|
||||
|
||||
/That's it! Not so bad, right? Thanks for supporting us and reading all
|
||||
the way to the end./
|
|
@ -1,4 +1,3 @@
|
|||
DIST vlc-2.1.2.tar.xz 19609868 SHA256 219b812be1bc2eba40faa86419d0aa2c479a7380af8af216e8bfa22eb6fc8ec4 SHA512 24ea51befb30ec2e4f796866bf086d36e809cb97bf04203a4637518c91a3035fa38a8e778aaf6fb3481db49d19236ae88bcbf31e1e4f7ae79b9d7bcc3cf037af WHIRLPOOL 7e4576370ea4a0d74d29b936f7c554c4fa22ca6b5d9260ce76d0e2bddf50826a2472c77746de61c81bd4601bead49f85c5c76a2f7ca309601c7a684c7091d09a
|
||||
DIST vlc-2.1.5.tar.xz 19574208 SHA256 6f6566ab6cd90d381395b7f0e401060b044cd3843e50ceb252b558a88e5d1f72 SHA512 37c6b82b4e89f4a14ed391cc677d9325a032e04bcc51a3e0d7d2ccf9e17a7a0deb90d9129e9dc3baf05a1ea9dae9c05e3177ab17a31098aafa6a2cb23388fa32 WHIRLPOOL c13098f922c7b24f3c718e88807a7dcb656af21bcf2be63d2ec7401583680658bd371e3935ba22537857861e0b1b0c4f0e693c87ed20999c679b4a04cddf7008
|
||||
DIST vlc-2.2.0.tar.xz 20861760 SHA256 5e0a27e248c47da723a696420aca3a4dd15cc3ed8cc81618d3f1dc8661b25517 SHA512 41162ff2dcc35edb47721c5a0f5d1346a0bcf3099c641e317ca1ce50baadeec3eef38f10355396a82e029474f6decd1e4355bbf218cadb795ccad3ff81a585bb WHIRLPOOL 83777143ef84177fffb1e034e47012bfe4ac2355883f64d3932dcf0c3edf237d858016523a886d00934da441ae2e7b635dc4111b0fb368083d4b71c43d00f695
|
||||
DIST vlc-2.2.1.tar.xz 20940288 SHA256 543d9d7e378ec0fa1ee2e7f7f5acf8c456c7d0ecc32037171523197ef3cf1fcb SHA512 91cd33ac61ebe376c24b3cc0d1dc52d7765fdccbd17e75abbbbf38f52b400e0269dc48f34ed558bff7ec1dd52c4f27098012709a3eb9fe7e8aad1069516de5de WHIRLPOOL 5c889fc5c0137f022b0b3408a5252668a1a946ed45677bb97bbbf0ec14c9411c24e8d1587e987391596774aaf7f1e4592c55b0c0f76742e84296bbfffb08e885
|
||||
|
|
|
@ -1,443 +0,0 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.1.2.ebuild,v 1.24 2015/04/19 04:59:23 yngwin Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
SCM=""
|
||||
if [ "${PV%9999}" != "${PV}" ] ; then
|
||||
SCM="git-r3"
|
||||
|
||||
if [ "${PV%.9999}" != "${PV}" ] ; then
|
||||
EGIT_REPO_URI="git://git.videolan.org/vlc/vlc-${PV%.9999}.git"
|
||||
else
|
||||
EGIT_REPO_URI="git://git.videolan.org/vlc.git"
|
||||
fi
|
||||
fi
|
||||
|
||||
inherit eutils multilib autotools toolchain-funcs flag-o-matic virtualx ${SCM}
|
||||
|
||||
MY_PV="${PV/_/-}"
|
||||
MY_PV="${MY_PV/-beta/-test}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
|
||||
DESCRIPTION="VLC media player - Video player and streamer"
|
||||
HOMEPAGE="http://www.videolan.org/vlc/"
|
||||
if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
|
||||
SRC_URI=""
|
||||
elif [[ "${MY_P}" == "${P}" ]]; then
|
||||
SRC_URI="http://download.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.xz"
|
||||
else
|
||||
SRC_URI="http://download.videolan.org/pub/videolan/testing/${MY_P}/${MY_P}.tar.xz"
|
||||
fi
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-2"
|
||||
SLOT="0/5-7" # vlc - vlccore
|
||||
|
||||
if [ "${PV%9999}" = "${PV}" ] ; then
|
||||
KEYWORDS="alpha"
|
||||
else
|
||||
KEYWORDS=""
|
||||
fi
|
||||
|
||||
IUSE="a52 aalib alsa altivec atmo +audioqueue avahi +avcodec
|
||||
+avformat bidi bluray cdda cddb chromaprint dbus dc1394 debug dirac
|
||||
directfb directx dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode faad fdk
|
||||
fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls
|
||||
growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify
|
||||
libsamplerate libtiger linsys libtar lirc live lua +macosx
|
||||
+macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext
|
||||
+macosx-qtkit +macosx-vout matroska media-library cpu_flags_x86_mmx modplug mp3 mpeg
|
||||
mtp musepack ncurses neon ogg omxil opencv opengl optimisememory opus
|
||||
png +postproc projectm pulseaudio +qt4 rdp rtsp run-as-root samba
|
||||
schroedinger sdl sdl-image sftp shout sid skins speex cpu_flags_x86_sse svg +swscale
|
||||
taglib theora tremor truetype twolame udev upnp vaapi v4l vcdx vdpau
|
||||
vlm vorbis wma-fixed +X x264 +xcb xml xv zvbi"
|
||||
|
||||
RDEPEND="
|
||||
!<media-video/ffmpeg-1.2:0
|
||||
dev-libs/libgpg-error:0
|
||||
net-dns/libidn:0
|
||||
>=sys-libs/zlib-1.2.5.1-r2:0[minizip]
|
||||
virtual/libintl:0
|
||||
a52? ( >=media-libs/a52dec-0.7.4-r3:0 )
|
||||
aalib? ( media-libs/aalib:0 )
|
||||
alsa? ( >=media-libs/alsa-lib-1.0.24:0 )
|
||||
avahi? ( >=net-dns/avahi-0.6:0[dbus] )
|
||||
avcodec? ( virtual/ffmpeg:0 )
|
||||
avformat? ( virtual/ffmpeg:0 )
|
||||
bidi? ( >=dev-libs/fribidi-0.10.4:0 )
|
||||
bluray? ( >=media-libs/libbluray-0.2.1:0 )
|
||||
cddb? ( >=media-libs/libcddb-1.2.0:0 )
|
||||
chromaprint? ( >=media-libs/chromaprint-0.6:0 )
|
||||
dbus? ( >=sys-apps/dbus-1.0.2:0 )
|
||||
dc1394? ( >=sys-libs/libraw1394-2.0.1:0 >=media-libs/libdc1394-2.1.0:2 )
|
||||
dirac? ( >=media-video/dirac-0.10.0:0 )
|
||||
directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 )
|
||||
dts? ( media-libs/libdca:0 )
|
||||
dvbpsi? ( >=media-libs/libdvbpsi-0.2.1:0 )
|
||||
dvd? ( media-libs/libdvdread:0 >=media-libs/libdvdnav-0.1.9:0 )
|
||||
egl? ( virtual/opengl:0 )
|
||||
elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 )
|
||||
faad? ( >=media-libs/faad2-2.6.1:0 )
|
||||
fdk? ( media-libs/fdk-aac:0 )
|
||||
flac? ( media-libs/libogg:0 >=media-libs/flac-1.1.2:0 )
|
||||
fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 )
|
||||
fontconfig? ( media-libs/fontconfig:1.0 )
|
||||
gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= )
|
||||
gme? ( media-libs/game-music-emu:0 )
|
||||
gnome? ( gnome-base/gnome-vfs:2 dev-libs/glib:2 )
|
||||
gnutls? ( >=net-libs/gnutls-3.0.20:0 )
|
||||
ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 >=sys-libs/libavc1394-0.5.3:0 )
|
||||
ios-vout? ( virtual/opengl:0 )
|
||||
jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1:0 )
|
||||
kate? ( >=media-libs/libkate-0.3.0:0 )
|
||||
libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 )
|
||||
libcaca? ( >=media-libs/libcaca-0.99_beta14:0 )
|
||||
libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 dev-libs/glib:2 )
|
||||
libsamplerate? ( media-libs/libsamplerate:0 )
|
||||
libtar? ( >=dev-libs/libtar-1.2.11-r3:0 )
|
||||
libtiger? ( >=media-libs/libtiger-0.3.1:0 )
|
||||
linsys? ( >=media-libs/zvbi-0.2.28:0 )
|
||||
lirc? ( app-misc/lirc:0 )
|
||||
live? ( >=media-plugins/live-2011.12.23:0 )
|
||||
lua? ( >=dev-lang/lua-5.1:0 )
|
||||
macosx-vout? ( virtual/opengl:0 )
|
||||
matroska? ( >=dev-libs/libebml-1.0.0:0= >=media-libs/libmatroska-1.0.0:0= )
|
||||
modplug? ( >=media-libs/libmodplug-0.8.8.1:0 )
|
||||
mp3? ( media-libs/libmad:0 )
|
||||
mpeg? ( >=media-libs/libmpeg2-0.3.2:0 )
|
||||
mtp? ( >=media-libs/libmtp-1.0.0:0 )
|
||||
musepack? ( >=media-sound/musepack-tools-444:0 )
|
||||
ncurses? ( sys-libs/ncurses:5[unicode] )
|
||||
ogg? ( media-libs/libogg:0 )
|
||||
opencv? ( >media-libs/opencv-2.0:0 )
|
||||
opengl? ( virtual/opengl:0 >=x11-libs/libX11-1.3.99.901:0 )
|
||||
opus? ( >=media-libs/opus-1.0.3:0 )
|
||||
png? ( media-libs/libpng:0= sys-libs/zlib:0 )
|
||||
postproc? ( || ( media-libs/libpostproc:0 >=media-video/ffmpeg-1.2:0 ) )
|
||||
projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 )
|
||||
pulseaudio? ( >=media-sound/pulseaudio-0.9.22:0 )
|
||||
qt4? ( >=dev-qt/qtgui-4.6.0:4 >=dev-qt/qtcore-4.6.0:4 )
|
||||
rdp? ( <net-misc/freerdp-1.2:0= )
|
||||
samba? ( || ( >=net-fs/samba-3.4.6:0[smbclient] >=net-fs/samba-4.0.0:0[client] ) )
|
||||
schroedinger? ( >=media-libs/schroedinger-1.0.10:0 )
|
||||
sdl? ( >=media-libs/libsdl-1.2.10:0
|
||||
sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) )
|
||||
sftp? ( net-libs/libssh2:0 )
|
||||
shout? ( media-libs/libshout:0 )
|
||||
sid? ( media-libs/libsidplay:2 )
|
||||
skins? ( x11-libs/libXext:0 x11-libs/libXpm:0 x11-libs/libXinerama:0 )
|
||||
speex? ( media-libs/speex:0 )
|
||||
svg? ( >=gnome-base/librsvg-2.9.0:2 )
|
||||
swscale? ( virtual/ffmpeg:0 )
|
||||
taglib? ( >=media-libs/taglib-1.6.1:0 sys-libs/zlib:0 )
|
||||
theora? ( >=media-libs/libtheora-1.0_beta3:0 )
|
||||
tremor? ( media-libs/tremor:0 )
|
||||
truetype? ( media-libs/freetype:2 virtual/ttf-fonts:0
|
||||
!fontconfig? ( media-fonts/dejavu:0 ) )
|
||||
twolame? ( media-sound/twolame:0 )
|
||||
udev? ( >=virtual/udev-142:0 )
|
||||
upnp? ( net-libs/libupnp:0 )
|
||||
v4l? ( media-libs/libv4l:0 )
|
||||
vaapi? ( x11-libs/libva:0[X] virtual/ffmpeg[vaapi] )
|
||||
vcdx? ( >=dev-libs/libcdio-0.78.2:0 >=media-video/vcdimager-0.7.22:0 )
|
||||
vdpau? ( >=x11-libs/libvdpau-0.6:0 !<media-video/libav-10_beta1 )
|
||||
vorbis? ( media-libs/libvorbis:0 )
|
||||
X? ( x11-libs/libX11:0 )
|
||||
x264? ( >=media-libs/x264-0.0.20090923:0= )
|
||||
xcb? ( >=x11-libs/libxcb-1.6:0 >=x11-libs/xcb-util-0.3.4:0 >=x11-libs/xcb-util-keysyms-0.3.4:0 )
|
||||
xml? ( dev-libs/libxml2:2 )
|
||||
zvbi? ( >=media-libs/zvbi-0.2.25:0 )
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
kde? ( >=kde-base/kdelibs-4:4 )
|
||||
xcb? ( x11-proto/xproto:0 )
|
||||
app-arch/xz-utils:0
|
||||
>=sys-devel/gettext-0.18.3:*
|
||||
virtual/pkgconfig:*
|
||||
"
|
||||
|
||||
REQUIRED_USE="
|
||||
aalib? ( X )
|
||||
bidi? ( truetype )
|
||||
cddb? ( cdda )
|
||||
dvb? ( dvbpsi )
|
||||
dxva2? ( avcodec )
|
||||
egl? ( X )
|
||||
ffmpeg? ( avcodec avformat swscale postproc )
|
||||
fontconfig? ( truetype )
|
||||
gnutls? ( gcrypt )
|
||||
httpd? ( lua )
|
||||
libcaca? ( X )
|
||||
libtar? ( skins )
|
||||
libtiger? ( kate )
|
||||
qt4? ( X )
|
||||
sdl? ( X )
|
||||
skins? ( truetype X qt4 )
|
||||
vaapi? ( avcodec X )
|
||||
vlm? ( encode )
|
||||
xv? ( xcb )
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
pkg_setup() {
|
||||
if [[ "${MERGE_TYPE}" != "binary" && "$(tc-getCC)" == *"gcc"* ]] ; then
|
||||
if [[ $(gcc-major-version) < 4 || ( $(gcc-major-version) == 4 && $(gcc-minor-version) < 5 ) ]] ; then
|
||||
die "You need to have at least >=sys-devel/gcc-4.5 to build and/or have a working vlc, see bug #426754."
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
if [ "${PV%9999}" != "${PV}" ] ; then
|
||||
git-r3_src_unpack
|
||||
else
|
||||
unpack ${A}
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# Remove unnecessary warnings about unimplemented pragmas on gcc for now.
|
||||
# Need to recheck this with gcc 4.9 and every subsequent minor bump of gcc.
|
||||
#
|
||||
# config.h:792: warning: ignoring #pragma STDC FENV_ACCESS [-Wunknown-pragmas]
|
||||
# config.h:793: warning: ignoring #pragma STDC FP_CONTRACT [-Wunknown-pragmas]
|
||||
#
|
||||
# http://gcc.gnu.org/c99status.html
|
||||
if [[ "$(tc-getCC)" == *"gcc"* ]] ; then
|
||||
sed -i 's/ifndef __FAST_MATH__/if 0/g' configure.ac || die
|
||||
fi
|
||||
|
||||
# Bootstrap when we are on a git checkout.
|
||||
if [[ "${PV%9999}" != "${PV}" ]] ; then
|
||||
./bootstrap
|
||||
fi
|
||||
|
||||
# Make it build with libtool 1.5
|
||||
rm -f m4/lt* m4/libtool.m4 || die
|
||||
|
||||
# We are not in a real git checkout due to the absence of a .git directory.
|
||||
touch src/revision.txt || die
|
||||
|
||||
# Patch up incompatibilities and reconfigure autotools.
|
||||
epatch "${FILESDIR}"/${PN}-2.1.0-newer-rdp.patch
|
||||
epatch "${FILESDIR}"/${PN}-2.1.0-libva-1.2.1-compat.patch
|
||||
|
||||
# Fix up broken audio; first is a fixed reversed bisected commit, latter two are backported.
|
||||
epatch "${FILESDIR}"/${PN}-2.1.0-TomWij-bisected-PA-broken-underflow.patch
|
||||
|
||||
# Fix bug #541654
|
||||
epatch "${FILESDIR}"/${PN}-2.1-mem_undefined_functions.patch
|
||||
|
||||
# Disable avcodec checks when avcodec is not used.
|
||||
if ! use avcodec; then
|
||||
sed -i 's/^#if LIBAVCODEC_VERSION_CHECK(.*)$/#if 0/' modules/codec/avcodec/fourcc.c || die
|
||||
fi
|
||||
|
||||
# Don't use --started-from-file when not using dbus.
|
||||
if ! use dbus ; then
|
||||
sed -i 's/ --started-from-file//' share/vlc.desktop.in || die
|
||||
fi
|
||||
|
||||
epatch_user
|
||||
|
||||
eautoreconf
|
||||
|
||||
# Disable automatic running of tests.
|
||||
find . -name 'Makefile.in' -exec sed -i 's/\(..*\)check-TESTS/\1/' {} \; || die
|
||||
|
||||
# If qtchooser is installed, it may break the build, because moc,rcc and uic binaries for wrong qt version may be used.
|
||||
# Setting QT_SELECT environment variable will enforce correct binaries.
|
||||
if use qt4; then
|
||||
export QT_SELECT=qt4
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Compatibility fix for Samba 4.
|
||||
use samba && append-cppflags "-I/usr/include/samba-4.0"
|
||||
|
||||
# We need to disable -fstack-check if use >=gcc 4.8.0.
|
||||
# See bug #499996
|
||||
use x86 && append-cflags $(test-flags-CC -fno-stack-check)
|
||||
|
||||
# Needs libresid-builder from libsidplay:2 which is in another directory...
|
||||
# FIXME!
|
||||
append-ldflags "-L/usr/$(get_libdir)/sidplay/builders/"
|
||||
|
||||
if use truetype || use projectm ; then
|
||||
local dejavu="/usr/share/fonts/dejavu/"
|
||||
myconf="--with-default-font=${dejavu}/DejaVuSans.ttf \
|
||||
--with-default-font-family=Sans \
|
||||
--with-default-monospace-font=${dejavu}/DejaVuSansMono.ttf
|
||||
--with-default-monospace-font-family=Monospace"
|
||||
fi
|
||||
|
||||
econf \
|
||||
${myconf} \
|
||||
--enable-vlc \
|
||||
--docdir=/usr/share/doc/${PF} \
|
||||
--disable-dependency-tracking \
|
||||
--disable-optimizations \
|
||||
--disable-update-check \
|
||||
--enable-fast-install \
|
||||
--enable-screen \
|
||||
$(use_enable a52) \
|
||||
$(use_enable aalib aa) \
|
||||
$(use_enable alsa) \
|
||||
$(use_enable altivec) \
|
||||
$(use_enable atmo) \
|
||||
$(use_enable audioqueue) \
|
||||
$(use_enable avahi bonjour) \
|
||||
$(use_enable avcodec) \
|
||||
$(use_enable avformat) \
|
||||
$(use_enable bidi fribidi) \
|
||||
$(use_enable bluray) \
|
||||
$(use_enable cdda vcd) \
|
||||
$(use_enable cddb libcddb) \
|
||||
$(use_enable chromaprint) \
|
||||
$(use_enable dbus) \
|
||||
$(use_enable dirac) \
|
||||
$(use_enable directfb) \
|
||||
$(use_enable directx) \
|
||||
$(use_enable dc1394) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable dts dca) \
|
||||
$(use_enable dvbpsi) \
|
||||
$(use_enable dvd dvdread) $(use_enable dvd dvdnav) \
|
||||
$(use_enable dxva2) \
|
||||
$(use_enable egl) \
|
||||
$(use_enable encode sout) \
|
||||
$(use_enable faad) \
|
||||
$(use_enable fdk fdkaac) \
|
||||
$(use_enable flac) \
|
||||
$(use_enable fluidsynth) \
|
||||
$(use_enable fontconfig) \
|
||||
$(use_enable gcrypt libgcrypt) \
|
||||
$(use_enable gme) \
|
||||
$(use_enable gnome gnomevfs) \
|
||||
$(use_enable gnutls) \
|
||||
$(use_enable growl) \
|
||||
$(use_enable httpd) \
|
||||
$(use_enable ieee1394 dv1394) \
|
||||
$(use_enable ios-vout) \
|
||||
$(use_enable jack) \
|
||||
$(use_enable kate) \
|
||||
$(use_with kde kde-solid) \
|
||||
$(use_enable libass) \
|
||||
$(use_enable libcaca caca) \
|
||||
$(use_enable libnotify notify) \
|
||||
$(use_enable libsamplerate samplerate) \
|
||||
$(use_enable libtar) \
|
||||
$(use_enable libtiger tiger) \
|
||||
$(use_enable linsys) \
|
||||
$(use_enable lirc) \
|
||||
$(use_enable live live555) \
|
||||
$(use_enable lua) \
|
||||
$(use_enable macosx-audio) \
|
||||
$(use_enable macosx-dialog-provider) \
|
||||
$(use_enable macosx-eyetv) \
|
||||
$(use_enable macosx-qtkit) \
|
||||
$(use_enable macosx-quartztext) \
|
||||
$(use_enable macosx-vout) \
|
||||
$(use_enable matroska mkv) \
|
||||
$(use_enable cpu_flags_x86_mmx mmx) \
|
||||
$(use_enable modplug mod) \
|
||||
$(use_enable mp3 mad) \
|
||||
$(use_enable mpeg libmpeg2) \
|
||||
$(use_enable mtp) \
|
||||
$(use_enable musepack mpc) \
|
||||
$(use_enable ncurses) \
|
||||
$(use_enable neon) \
|
||||
$(use_enable ogg) $(use_enable ogg mux_ogg) \
|
||||
$(use_enable omxil) \
|
||||
$(use_enable opencv) \
|
||||
$(use_enable opengl glx) \
|
||||
$(use_enable opus) \
|
||||
$(use_enable optimisememory optimize-memory) \
|
||||
$(use_enable png) \
|
||||
$(use_enable postproc) \
|
||||
$(use_enable projectm) \
|
||||
$(use_enable pulseaudio pulse) \
|
||||
$(use_enable qt4 qt) \
|
||||
$(use_enable rdp libfreerdp) \
|
||||
$(use_enable rtsp realrtsp) \
|
||||
$(use_enable run-as-root) \
|
||||
$(use_enable samba smbclient) \
|
||||
$(use_enable schroedinger) \
|
||||
$(use_enable sdl) \
|
||||
$(use_enable sdl-image) \
|
||||
$(use_enable sid) \
|
||||
$(use_enable sftp) \
|
||||
$(use_enable shout) \
|
||||
$(use_enable skins skins2) \
|
||||
$(use_enable speex) \
|
||||
$(use_enable cpu_flags_x86_sse sse) \
|
||||
$(use_enable svg) \
|
||||
$(use_enable swscale) \
|
||||
$(use_enable taglib) \
|
||||
$(use_enable theora) \
|
||||
$(use_enable tremor) \
|
||||
$(use_enable truetype freetype) \
|
||||
$(use_enable twolame) \
|
||||
$(use_enable udev) \
|
||||
$(use_enable upnp) \
|
||||
$(use_enable v4l v4l2) \
|
||||
$(use_enable vaapi libva) \
|
||||
$(use_enable vcdx) \
|
||||
$(use_enable vdpau) \
|
||||
$(use_enable vlm) \
|
||||
$(use_enable vorbis) \
|
||||
$(use_enable wma-fixed) \
|
||||
$(use_with X x) \
|
||||
$(use_enable x264) \
|
||||
$(use_enable xcb) \
|
||||
$(use_enable xml libxml2) \
|
||||
$(use_enable xv xvideo) \
|
||||
$(use_enable zvbi) $(use_enable !zvbi telx) \
|
||||
--disable-crystalhd \
|
||||
--disable-decklink \
|
||||
--disable-goom \
|
||||
--disable-kai \
|
||||
--disable-kva \
|
||||
--disable-oss \
|
||||
--disable-quicksync \
|
||||
--disable-shine \
|
||||
--disable-sndio \
|
||||
--disable-vda \
|
||||
--disable-vsxu
|
||||
|
||||
# ^ We don't have these disables libraries in the Portage tree yet.
|
||||
|
||||
# _FORTIFY_SOURCE is set to 2 in config.h, which is also the default value on Gentoo.
|
||||
# Other values of _FORTIFY_SOURCE may break the build (bug 523144), so definition should not be removed from config.h.
|
||||
# To prevent redefinition warnings, we undefine _FORTIFY_SOURCE at the very start of config.h file
|
||||
sed -i '1i#undef _FORTIFY_SOURCE' "${S}"/config.h || die
|
||||
}
|
||||
|
||||
src_test() {
|
||||
Xemake check-TESTS
|
||||
}
|
||||
|
||||
DOCS="AUTHORS THANKS NEWS README doc/fortunes.txt doc/intf-vcd.txt"
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# Punt useless libtool's .la files
|
||||
find "${D}" -name '*.la' -delete
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [ "$ROOT" = "/" ] && [ -x "/usr/$(get_libdir)/vlc/vlc-cache-gen" ] ; then
|
||||
einfo "Running /usr/$(get_libdir)/vlc/vlc-cache-gen on /usr/$(get_libdir)/vlc/plugins/"
|
||||
"/usr/$(get_libdir)/vlc/vlc-cache-gen" -f "/usr/$(get_libdir)/vlc/plugins/"
|
||||
else
|
||||
ewarn "We cannot run vlc-cache-gen (most likely ROOT!=/)"
|
||||
ewarn "Please run /usr/$(get_libdir)/vlc/vlc-cache-gen manually"
|
||||
ewarn "If you do not do it, vlc will take a long time to load."
|
||||
fi
|
||||
}
|
|
@ -1 +1 @@
|
|||
Fri, 08 May 2015 06:36:49 +0000
|
||||
Fri, 08 May 2015 09:36:50 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
Fri, 08 May 2015 06:36:50 +0000
|
||||
Fri, 08 May 2015 09:36:50 +0000
|
||||
|
|
10
metadata/md5-cache/app-doc/abs-guide-10
Normal file
10
metadata/md5-cache/app-doc/abs-guide-10
Normal file
|
@ -0,0 +1,10 @@
|
|||
DEFINED_PHASES=install postinst unpack
|
||||
DESCRIPTION=An in-depth exploration of the art of shell scripting
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.tldp.org/LDP/abs/html
|
||||
IUSE=pdf
|
||||
KEYWORDS=alpha amd64 hppa ~mips ppc sparc x86
|
||||
LICENSE=public-domain
|
||||
SLOT=0
|
||||
SRC_URI=http://bash.deta.in/abs-guide-final.tar.bz2 pdf? ( http://bash.deta.in/abs-guide.pdf )
|
||||
_md5_=373e8e2e3e7bf55cbd66a5e84c030132
|
|
@ -11,4 +11,4 @@ REQUIRED_USE=plplot? ( badval )
|
|||
SLOT=0
|
||||
SRC_URI=mirror://cpan/authors/id/C/CH/CHM/PDL-2.4.11.tar.gz
|
||||
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module 7a1c6bac46bba968758a2f7666af645b toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 unpacker f300a7ca9131b1024a79762e8edd3c52
|
||||
_md5_=dfa0b7e9bf3674c287fb46369bf00ae1
|
||||
_md5_=797f318f747c8e90b00c96f9ffca0616
|
||||
|
|
|
@ -3,10 +3,10 @@ DEPEND=>=dev-php/pear-1.4 dev-lang/php >=dev-php/pear-1.8.1
|
|||
DESCRIPTION=A full featured command line options and arguments parser
|
||||
EAPI=4
|
||||
HOMEPAGE=http://pear.php.net/Console_CommandLine
|
||||
KEYWORDS=~amd64 ~x86
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=>=dev-php/pear-1.4 dev-lang/php >=dev-php/pear-1.8.1
|
||||
SLOT=0
|
||||
SRC_URI=http://pear.php.net/get/Console_CommandLine-1.2.0.tgz
|
||||
_eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 6199074ba0005674c2291a5a8d0274e2 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=988e33c7a2f86a1fba977d366163de2d
|
||||
_md5_=93eb72ec32f14e84e27165db55d590c1
|
||||
|
|
|
@ -3,10 +3,10 @@ DEPEND=dev-lang/php:* >=dev-php/pear-1.8.1
|
|||
DESCRIPTION=A class that facillitates the search of filesystems
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pear.php.net/File_Find
|
||||
KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ppc64 ~sparc ~x86
|
||||
KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86
|
||||
LICENSE=PHP-2.02
|
||||
RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1
|
||||
SLOT=0
|
||||
SRC_URI=http://pear.php.net/get/File_Find-1.3.2.tgz
|
||||
_eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 6199074ba0005674c2291a5a8d0274e2 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=af98175afd6e6abbfe1f75a8117c4382
|
||||
_md5_=3ad13f58a5166a652c4d0be751e1fa5c
|
||||
|
|
|
@ -3,10 +3,10 @@ DEPEND=dev-lang/php:* >=dev-php/pear-1.8.1
|
|||
DESCRIPTION=Check the syntax of IPv4 addresses
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pear.php.net/Net_CheckIP
|
||||
KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ppc64 ~sparc ~x86
|
||||
KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-lang/php:* >=dev-php/pear-1.8.1
|
||||
SLOT=0
|
||||
SRC_URI=http://pear.php.net/get/Net_CheckIP-1.2.2.tgz
|
||||
_eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 6199074ba0005674c2291a5a8d0274e2 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=20978e4e98f4d9074e6aadd808b0c994
|
||||
_md5_=fffdcb84ed02ee93fb8a27dfc96bce18
|
||||
|
|
|
@ -3,10 +3,10 @@ DEPEND=dev-lang/php:* >=dev-php/pear-1.8.1
|
|||
DESCRIPTION=DNSBL Checker
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pear.php.net/Net_DNSBL
|
||||
KEYWORDS=~alpha ~amd64 hppa ~ia64 ~sparc ~x86
|
||||
KEYWORDS=alpha amd64 hppa ia64 sparc x86
|
||||
LICENSE=PHP-3.01
|
||||
RDEPEND=>=dev-php/PEAR-Cache_Lite-1.5.2-r1 >=dev-php/PEAR-Net_CheckIP-1.1-r1 >=dev-php/PEAR-HTTP_Request2-2.0.0 >=dev-php/PEAR-Net_DNS-1.0.0 dev-lang/php:* >=dev-php/pear-1.8.1
|
||||
SLOT=0
|
||||
SRC_URI=http://pear.php.net/get/Net_DNSBL-1.3.7.tgz
|
||||
_eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 6199074ba0005674c2291a5a8d0274e2 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=7d259b9b875232dd29213c37a81b62e4
|
||||
_md5_=851f751487323a141f38b90128526bf1
|
||||
|
|
|
@ -3,10 +3,10 @@ DEPEND=dev-lang/php:* >=dev-php/pear-1.8.1
|
|||
DESCRIPTION=Package for generating Excel spreadsheets
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pear.php.net/Spreadsheet_Excel_Writer
|
||||
KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86
|
||||
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86
|
||||
LICENSE=LGPL-2.1
|
||||
RDEPEND=dev-lang/php[iconv] >=dev-php/PEAR-OLE-0.5-r1 dev-lang/php:* >=dev-php/pear-1.8.1
|
||||
SLOT=0
|
||||
SRC_URI=http://pear.php.net/get/Spreadsheet_Excel_Writer-0.9.3.tgz
|
||||
_eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 6199074ba0005674c2291a5a8d0274e2 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=90c60687958dc7d384d768976bd4b3df
|
||||
_md5_=3f0bdb20c5e8d8f07bd8ca6e1307d608
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] test? ( >=dev-python/unittest2-0.4.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] dev-python/nose-cover3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)]
|
||||
DESCRIPTION=Python multiprocessing fork
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pypi.python.org/pypi/billiard https://github.com/celery/billiard
|
||||
IUSE=doc test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/b/billiard/billiard-3.3.0.17.tar.gz
|
||||
_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=25a91d5b1b3c99abf5aeb7e0635ddd37
|
14
metadata/md5-cache/dev-python/billiard-3.3.0.20
Normal file
14
metadata/md5-cache/dev-python/billiard-3.3.0.20
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] test? ( >=dev-python/unittest2-0.4.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] >=dev-python/nose-1.3.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] dev-python/nose-cover3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)] python_targets_python2_7? ( dev-python/mock[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-)] ) python_targets_pypy? ( dev-python/mock[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-)] ) python_targets_pypy3? ( dev-python/mock[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-)] ) ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)]
|
||||
DESCRIPTION=Python multiprocessing fork
|
||||
EAPI=5
|
||||
HOMEPAGE=http://pypi.python.org/pypi/billiard https://github.com/celery/billiard
|
||||
IUSE=doc test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy python_targets_pypy3
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3:0= ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,python_targets_pypy3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-),-python_single_target_pypy3(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy python_targets_pypy3 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/b/billiard/billiard-3.3.0.20.tar.gz
|
||||
_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=9234c8ff253eb0958c3557c09d03d6aa
|
|
@ -1,14 +0,0 @@
|
|||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( <dev-python/kombu-3.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/kombu-3.0.23[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/billiard-3.3.0.18[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] <dev-python/billiard-3.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pytz[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/greenlet[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/gevent[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-1.0.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyopenssl[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/nose-cover3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/sqlalchemy[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/pymongo-2.6.2[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] redis? ( dev-python/redis-py[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-db/redis-2.8.0 ) >=dev-python/python-dateutil-2.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) doc? ( dev-python/docutils[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/jinja[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/sqlalchemy[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)]
|
||||
DESCRIPTION=Open source asynchronous task queue/job queue based on distributed message passing
|
||||
EAPI=5
|
||||
HOMEPAGE=http://celeryproject.org/ http://pypi.python.org/pypi/celery
|
||||
IUSE=doc examples redis test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=<dev-python/kombu-3.1[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/kombu-3.0.23[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/billiard-3.3.0.18[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] <dev-python/billiard-3.4[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/pytz[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] dev-python/greenlet[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/c/celery/celery-3.1.16.tar.gz
|
||||
_eclasses_=bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=7fec5c769a9be152afab7aae559f3252
|
14
metadata/md5-cache/dev-python/celery-3.1.18
Normal file
14
metadata/md5-cache/dev-python/celery-3.1.18
Normal file
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,7 @@ DEFINED_PHASES=compile install postinst postrm prepare test
|
|||
DEPEND=app-text/htmltidy app-arch/unzip doc? ( dev-python/epydoc ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) test? ( dev-python/twisted-core )
|
||||
DESCRIPTION=TidyLib Python wrapper
|
||||
EAPI=3
|
||||
HOMEPAGE=http://utidylib.berlios.de/
|
||||
HOMEPAGE=http://sourceforge.net/projects/utidylib/
|
||||
IUSE=doc test
|
||||
KEYWORDS=amd64 ppc ~ppc64 x86
|
||||
LICENSE=MIT
|
||||
|
@ -10,4 +10,4 @@ RDEPEND=app-text/htmltidy || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-
|
|||
SLOT=0
|
||||
SRC_URI=mirror://berlios/utidylib/uTidylib-0.2.zip
|
||||
_eclasses_=distutils 92e738ea29389cb3f34778d7a349ac71 eutils 9fb270e417e0e83d64ca52586c4a79de multilib 3bf24e6abb9b76d9f6c20600f0b716bf python 3a270b7b1d1e679847ff0faeac25c5a3 toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=d9c197bdc38ccfff306654c9d677303a
|
||||
_md5_=9daff56fc5fa436f3beb1513a3e92398
|
||||
|
|
|
@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test
|
|||
DEPEND=app-text/htmltidy app-arch/unzip doc? ( dev-python/epydoc[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) test? ( dev-python/twisted-core[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
DESCRIPTION=TidyLib Python wrapper
|
||||
EAPI=5
|
||||
HOMEPAGE=http://utidylib.berlios.de/
|
||||
HOMEPAGE=http://sourceforge.net/projects/utidylib/
|
||||
IUSE=doc test python_targets_python2_7
|
||||
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
|
||||
LICENSE=MIT
|
||||
|
@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 )
|
|||
SLOT=0
|
||||
SRC_URI=mirror://berlios/utidylib/uTidylib-0.2.zip
|
||||
_eclasses_=distutils-r1 c01d5c4af34f4a37a51fc9638299c222 eutils 9fb270e417e0e83d64ca52586c4a79de multibuild 6d4858dc00f8bc51caf3f957f8430eb0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 6d3a3cb5705b9fff1aeb7cfa4e3336fe python-utils-r1 096f8247eae93026af13ab88cf4305cd toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=06f2db527cebd72d82dd321c881c5b57
|
||||
_md5_=bba5cc9c135d69ccc2d52641fa98e757
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
DEFINED_PHASES=configure install postinst prepare setup test unpack
|
||||
DEPEND=!<media-video/ffmpeg-1.2:0 dev-libs/libgpg-error:0 net-dns/libidn:0 >=sys-libs/zlib-1.2.5.1-r2:0[minizip] virtual/libintl:0 a52? ( >=media-libs/a52dec-0.7.4-r3:0 ) aalib? ( media-libs/aalib:0 ) alsa? ( >=media-libs/alsa-lib-1.0.24:0 ) avahi? ( >=net-dns/avahi-0.6:0[dbus] ) avcodec? ( virtual/ffmpeg:0 ) avformat? ( virtual/ffmpeg:0 ) bidi? ( >=dev-libs/fribidi-0.10.4:0 ) bluray? ( >=media-libs/libbluray-0.2.1:0 ) cddb? ( >=media-libs/libcddb-1.2.0:0 ) chromaprint? ( >=media-libs/chromaprint-0.6:0 ) dbus? ( >=sys-apps/dbus-1.0.2:0 ) dc1394? ( >=sys-libs/libraw1394-2.0.1:0 >=media-libs/libdc1394-2.1.0:2 ) dirac? ( >=media-video/dirac-0.10.0:0 ) directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 ) dts? ( media-libs/libdca:0 ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1:0 ) dvd? ( media-libs/libdvdread:0 >=media-libs/libdvdnav-0.1.9:0 ) egl? ( virtual/opengl:0 ) elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 ) faad? ( >=media-libs/faad2-2.6.1:0 ) fdk? ( media-libs/fdk-aac:0 ) flac? ( media-libs/libogg:0 >=media-libs/flac-1.1.2:0 ) fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 ) fontconfig? ( media-libs/fontconfig:1.0 ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= ) gme? ( media-libs/game-music-emu:0 ) gnome? ( gnome-base/gnome-vfs:2 dev-libs/glib:2 ) gnutls? ( >=net-libs/gnutls-3.0.20:0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 >=sys-libs/libavc1394-0.5.3:0 ) ios-vout? ( virtual/opengl:0 ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1:0 ) kate? ( >=media-libs/libkate-0.3.0:0 ) libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 ) libcaca? ( >=media-libs/libcaca-0.99_beta14:0 ) libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 dev-libs/glib:2 ) libsamplerate? ( media-libs/libsamplerate:0 ) libtar? ( >=dev-libs/libtar-1.2.11-r3:0 ) libtiger? ( >=media-libs/libtiger-0.3.1:0 ) linsys? ( >=media-libs/zvbi-0.2.28:0 ) lirc? ( app-misc/lirc:0 ) live? ( >=media-plugins/live-2011.12.23:0 ) lua? ( >=dev-lang/lua-5.1:0 ) macosx-vout? ( virtual/opengl:0 ) matroska? ( >=dev-libs/libebml-1.0.0:0= >=media-libs/libmatroska-1.0.0:0= ) modplug? ( >=media-libs/libmodplug-0.8.8.1:0 ) mp3? ( media-libs/libmad:0 ) mpeg? ( >=media-libs/libmpeg2-0.3.2:0 ) mtp? ( >=media-libs/libmtp-1.0.0:0 ) musepack? ( >=media-sound/musepack-tools-444:0 ) ncurses? ( sys-libs/ncurses:5[unicode] ) ogg? ( media-libs/libogg:0 ) opencv? ( >media-libs/opencv-2.0:0 ) opengl? ( virtual/opengl:0 >=x11-libs/libX11-1.3.99.901:0 ) opus? ( >=media-libs/opus-1.0.3:0 ) png? ( media-libs/libpng:0= sys-libs/zlib:0 ) postproc? ( || ( media-libs/libpostproc:0 >=media-video/ffmpeg-1.2:0 ) ) projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22:0 ) qt4? ( >=dev-qt/qtgui-4.6.0:4 >=dev-qt/qtcore-4.6.0:4 ) rdp? ( <net-misc/freerdp-1.2:0= ) samba? ( || ( >=net-fs/samba-3.4.6:0[smbclient] >=net-fs/samba-4.0.0:0[client] ) ) schroedinger? ( >=media-libs/schroedinger-1.0.10:0 ) sdl? ( >=media-libs/libsdl-1.2.10:0 sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) ) sftp? ( net-libs/libssh2:0 ) shout? ( media-libs/libshout:0 ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext:0 x11-libs/libXpm:0 x11-libs/libXinerama:0 ) speex? ( media-libs/speex:0 ) svg? ( >=gnome-base/librsvg-2.9.0:2 ) swscale? ( virtual/ffmpeg:0 ) taglib? ( >=media-libs/taglib-1.6.1:0 sys-libs/zlib:0 ) theora? ( >=media-libs/libtheora-1.0_beta3:0 ) tremor? ( media-libs/tremor:0 ) truetype? ( media-libs/freetype:2 virtual/ttf-fonts:0 !fontconfig? ( media-fonts/dejavu:0 ) ) twolame? ( media-sound/twolame:0 ) udev? ( >=virtual/udev-142:0 ) upnp? ( net-libs/libupnp:0 ) v4l? ( media-libs/libv4l:0 ) vaapi? ( x11-libs/libva:0[X] virtual/ffmpeg[vaapi] ) vcdx? ( >=dev-libs/libcdio-0.78.2:0 >=media-video/vcdimager-0.7.22:0 ) vdpau? ( >=x11-libs/libvdpau-0.6:0 !<media-video/libav-10_beta1 ) vorbis? ( media-libs/libvorbis:0 ) X? ( x11-libs/libX11:0 ) x264? ( >=media-libs/x264-0.0.20090923:0= ) xcb? ( >=x11-libs/libxcb-1.6:0 >=x11-libs/xcb-util-0.3.4:0 >=x11-libs/xcb-util-keysyms-0.3.4:0 ) xml? ( dev-libs/libxml2:2 ) zvbi? ( >=media-libs/zvbi-0.2.25:0 ) kde? ( >=kde-base/kdelibs-4:4 ) xcb? ( x11-proto/xproto:0 ) app-arch/xz-utils:0 >=sys-devel/gettext-0.18.3:* virtual/pkgconfig:* !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
|
||||
DESCRIPTION=VLC media player - Video player and streamer
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.videolan.org/vlc/
|
||||
IUSE=a52 aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb chromaprint dbus dc1394 debug dirac directfb directx dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode faad fdk fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library cpu_flags_x86_mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opencv opengl optimisememory opus png +postproc projectm pulseaudio +qt4 rdp rtsp run-as-root samba schroedinger sdl sdl-image sftp shout sid skins speex cpu_flags_x86_sse svg +swscale taglib theora tremor truetype twolame udev upnp vaapi v4l vcdx vdpau vlm vorbis wma-fixed +X x264 +xcb xml xv zvbi test
|
||||
KEYWORDS=alpha
|
||||
LICENSE=LGPL-2.1 GPL-2
|
||||
RDEPEND=!<media-video/ffmpeg-1.2:0 dev-libs/libgpg-error:0 net-dns/libidn:0 >=sys-libs/zlib-1.2.5.1-r2:0[minizip] virtual/libintl:0 a52? ( >=media-libs/a52dec-0.7.4-r3:0 ) aalib? ( media-libs/aalib:0 ) alsa? ( >=media-libs/alsa-lib-1.0.24:0 ) avahi? ( >=net-dns/avahi-0.6:0[dbus] ) avcodec? ( virtual/ffmpeg:0 ) avformat? ( virtual/ffmpeg:0 ) bidi? ( >=dev-libs/fribidi-0.10.4:0 ) bluray? ( >=media-libs/libbluray-0.2.1:0 ) cddb? ( >=media-libs/libcddb-1.2.0:0 ) chromaprint? ( >=media-libs/chromaprint-0.6:0 ) dbus? ( >=sys-apps/dbus-1.0.2:0 ) dc1394? ( >=sys-libs/libraw1394-2.0.1:0 >=media-libs/libdc1394-2.1.0:2 ) dirac? ( >=media-video/dirac-0.10.0:0 ) directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 ) dts? ( media-libs/libdca:0 ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1:0 ) dvd? ( media-libs/libdvdread:0 >=media-libs/libdvdnav-0.1.9:0 ) egl? ( virtual/opengl:0 ) elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 ) faad? ( >=media-libs/faad2-2.6.1:0 ) fdk? ( media-libs/fdk-aac:0 ) flac? ( media-libs/libogg:0 >=media-libs/flac-1.1.2:0 ) fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 ) fontconfig? ( media-libs/fontconfig:1.0 ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= ) gme? ( media-libs/game-music-emu:0 ) gnome? ( gnome-base/gnome-vfs:2 dev-libs/glib:2 ) gnutls? ( >=net-libs/gnutls-3.0.20:0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 >=sys-libs/libavc1394-0.5.3:0 ) ios-vout? ( virtual/opengl:0 ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1:0 ) kate? ( >=media-libs/libkate-0.3.0:0 ) libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 ) libcaca? ( >=media-libs/libcaca-0.99_beta14:0 ) libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 dev-libs/glib:2 ) libsamplerate? ( media-libs/libsamplerate:0 ) libtar? ( >=dev-libs/libtar-1.2.11-r3:0 ) libtiger? ( >=media-libs/libtiger-0.3.1:0 ) linsys? ( >=media-libs/zvbi-0.2.28:0 ) lirc? ( app-misc/lirc:0 ) live? ( >=media-plugins/live-2011.12.23:0 ) lua? ( >=dev-lang/lua-5.1:0 ) macosx-vout? ( virtual/opengl:0 ) matroska? ( >=dev-libs/libebml-1.0.0:0= >=media-libs/libmatroska-1.0.0:0= ) modplug? ( >=media-libs/libmodplug-0.8.8.1:0 ) mp3? ( media-libs/libmad:0 ) mpeg? ( >=media-libs/libmpeg2-0.3.2:0 ) mtp? ( >=media-libs/libmtp-1.0.0:0 ) musepack? ( >=media-sound/musepack-tools-444:0 ) ncurses? ( sys-libs/ncurses:5[unicode] ) ogg? ( media-libs/libogg:0 ) opencv? ( >media-libs/opencv-2.0:0 ) opengl? ( virtual/opengl:0 >=x11-libs/libX11-1.3.99.901:0 ) opus? ( >=media-libs/opus-1.0.3:0 ) png? ( media-libs/libpng:0= sys-libs/zlib:0 ) postproc? ( || ( media-libs/libpostproc:0 >=media-video/ffmpeg-1.2:0 ) ) projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22:0 ) qt4? ( >=dev-qt/qtgui-4.6.0:4 >=dev-qt/qtcore-4.6.0:4 ) rdp? ( <net-misc/freerdp-1.2:0= ) samba? ( || ( >=net-fs/samba-3.4.6:0[smbclient] >=net-fs/samba-4.0.0:0[client] ) ) schroedinger? ( >=media-libs/schroedinger-1.0.10:0 ) sdl? ( >=media-libs/libsdl-1.2.10:0 sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) ) sftp? ( net-libs/libssh2:0 ) shout? ( media-libs/libshout:0 ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext:0 x11-libs/libXpm:0 x11-libs/libXinerama:0 ) speex? ( media-libs/speex:0 ) svg? ( >=gnome-base/librsvg-2.9.0:2 ) swscale? ( virtual/ffmpeg:0 ) taglib? ( >=media-libs/taglib-1.6.1:0 sys-libs/zlib:0 ) theora? ( >=media-libs/libtheora-1.0_beta3:0 ) tremor? ( media-libs/tremor:0 ) truetype? ( media-libs/freetype:2 virtual/ttf-fonts:0 !fontconfig? ( media-fonts/dejavu:0 ) ) twolame? ( media-sound/twolame:0 ) udev? ( >=virtual/udev-142:0 ) upnp? ( net-libs/libupnp:0 ) v4l? ( media-libs/libv4l:0 ) vaapi? ( x11-libs/libva:0[X] virtual/ffmpeg[vaapi] ) vcdx? ( >=dev-libs/libcdio-0.78.2:0 >=media-video/vcdimager-0.7.22:0 ) vdpau? ( >=x11-libs/libvdpau-0.6:0 !<media-video/libav-10_beta1 ) vorbis? ( media-libs/libvorbis:0 ) X? ( x11-libs/libX11:0 ) x264? ( >=media-libs/x264-0.0.20090923:0= ) xcb? ( >=x11-libs/libxcb-1.6:0 >=x11-libs/xcb-util-0.3.4:0 >=x11-libs/xcb-util-keysyms-0.3.4:0 ) xml? ( dev-libs/libxml2:2 ) zvbi? ( >=media-libs/zvbi-0.2.25:0 )
|
||||
REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva2? ( avcodec ) egl? ( X ) ffmpeg? ( avcodec avformat swscale postproc ) fontconfig? ( truetype ) gnutls? ( gcrypt ) httpd? ( lua ) libcaca? ( X ) libtar? ( skins ) libtiger? ( kate ) qt4? ( X ) sdl? ( X ) skins? ( truetype X qt4 ) vaapi? ( avcodec X ) vlm? ( encode ) xv? ( xcb )
|
||||
SLOT=0/5-7
|
||||
SRC_URI=http://download.videolan.org/pub/videolan/vlc/2.1.2/vlc-2.1.2.tar.xz
|
||||
_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 virtualx 73cfc129b4b9ba23aed1abb10c825d86
|
||||
_md5_=2878cef19c7e4ee26496be727c469eb6
|
13
metadata/md5-cache/net-misc/connman-1.29
Normal file
13
metadata/md5-cache/net-misc/connman-1.29
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install prepare unpack
|
||||
DEPEND=>=dev-libs/glib-2.16 >=sys-apps/dbus-1.2.24 >=net-firewall/iptables-1.4.8 bluetooth? ( net-wireless/bluez ) l2tp? ( net-dialup/xl2tpd ) ofono? ( net-misc/ofono ) openconnect? ( net-misc/openconnect ) openvpn? ( net-misc/openvpn ) policykit? ( sys-auth/polkit ) pptp? ( net-dialup/pptpclient ) vpnc? ( net-misc/vpnc ) wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] ) wispr? ( net-libs/gnutls ) >=sys-kernel/linux-headers-2.6.39 virtual/pkgconfig
|
||||
DESCRIPTION=Provides a daemon for managing internet connections
|
||||
EAPI=5
|
||||
HOMEPAGE=https://01.org/connman
|
||||
IUSE=bluetooth debug doc examples +ethernet l2tp ofono openvpn openconnect pptp policykit tools vpnc +wifi wispr
|
||||
KEYWORDS=~amd64 ~arm ~ppc64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=dev-libs/glib-2.16 >=sys-apps/dbus-1.2.24 >=net-firewall/iptables-1.4.8 bluetooth? ( net-wireless/bluez ) l2tp? ( net-dialup/xl2tpd ) ofono? ( net-misc/ofono ) openconnect? ( net-misc/openconnect ) openvpn? ( net-misc/openvpn ) policykit? ( sys-auth/polkit ) pptp? ( net-dialup/pptpclient ) vpnc? ( net-misc/vpnc ) wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] ) wispr? ( net-libs/gnutls )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://kernel/linux/network/connman/connman-1.29.tar.xz
|
||||
_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 9fb270e417e0e83d64ca52586c4a79de multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=aae8bbab5717deb493b2c76f0736206e
|
13
metadata/md5-cache/net-misc/megatools-1.9.95
Normal file
13
metadata/md5-cache/net-misc/megatools-1.9.95
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-libs/glib:2 dev-libs/openssl:0 net-misc/curl fuse? ( sys-fs/fuse ) virtual/pkgconfig app-text/asciidoc !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
|
||||
DESCRIPTION=Command line tools and C library for accessing Mega cloud storage
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/megous/megatools
|
||||
IUSE=fuse introspection static-libs
|
||||
KEYWORDS=~amd64 ~arm ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/glib:2 dev-libs/openssl:0 net-misc/curl fuse? ( sys-fs/fuse ) net-libs/glib-networking[ssl]
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/megous/megatools/archive/1.9.95.tar.gz -> megatools-1.9.95.tar.gz
|
||||
_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c autotools-utils 3727db64c7b960903d5033280f108080 eutils 9fb270e417e0e83d64ca52586c4a79de libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=a4d2b313ed7e6b42f8bee95cc8fb0f47
|
|
@ -1,5 +1,5 @@
|
|||
DEFINED_PHASES=configure install postinst postrm prepare
|
||||
DEPEND=>=sys-devel/m4-1.4.16 >=sys-devel/automake-1.14 sys-devel/flex examples? ( dev-lang/perl ) nls? ( sys-devel/gettext ) test? ( dev-lang/perl ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
|
||||
DEPEND=>=sys-devel/m4-1.4.16 sys-devel/flex examples? ( dev-lang/perl ) nls? ( sys-devel/gettext ) test? ( dev-lang/perl )
|
||||
DESCRIPTION=A general-purpose (yacc-compatible) parser generator
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.gnu.org/software/bison/
|
||||
|
@ -9,5 +9,5 @@ LICENSE=GPL-2
|
|||
RDEPEND=>=sys-devel/m4-1.4.16
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnu/bison/bison-3.0.4.tar.xz
|
||||
_eclasses_=autotools 999c8f6cf5d91495cb0779588f20716c eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=523490db204e539f72912f3c8ad85283
|
||||
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=25a76a72e9e421549bd6301132a1763e
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=nls? ( virtual/libintl ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
|
||||
DEPEND=nls? ( virtual/libintl sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
|
||||
DESCRIPTION=A simple CLI tool that display file system usage, with colors
|
||||
EAPI=5
|
||||
HOMEPAGE=http://projects.gw-computing.net/projects/dfc
|
||||
|
@ -10,4 +10,4 @@ RDEPEND=nls? ( virtual/libintl )
|
|||
SLOT=0
|
||||
SRC_URI=http://projects.gw-computing.net/attachments/download/467/dfc-3.0.5.tar.gz
|
||||
_eclasses_=cmake-utils 0430c386d85cec959d72640afd63ea91 eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92
|
||||
_md5_=2f214ce74fd0b6a000ed80f0a621c5f7
|
||||
_md5_=7799f889d87e805034bec181154d0fb0
|
14
metadata/md5-cache/sys-process/criu-1.5.2
Normal file
14
metadata/md5-cache/sys-process/criu-1.5.2
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=compile install prepare setup test
|
||||
DEPEND=dev-libs/protobuf-c setproctitle? ( dev-libs/libbsd ) app-text/asciidoc app-text/xmlto
|
||||
DESCRIPTION=utility to checkpoint/restore a process tree
|
||||
EAPI=5
|
||||
HOMEPAGE=http://criu.org/
|
||||
IUSE=setproctitle
|
||||
KEYWORDS=~amd64 ~arm ~arm64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/protobuf-c setproctitle? ( dev-libs/libbsd )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=http://download.openvz.org/criu/criu-1.5.2.tar.bz2
|
||||
_eclasses_=eutils 9fb270e417e0e83d64ca52586c4a79de flag-o-matic 5d5921a298e95441da2f85be419894c0 linux-info 2b8c53f6065bdee2d757472215a3088f multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs c961250d50160cd37d6b7fd9e8429c92 versionator cd0bcdb170807e4a1984115e9d53a26f
|
||||
_md5_=e09cda2d0f31ef5ef1707bf17a97e5f3
|
|
@ -1 +1 @@
|
|||
Fri, 08 May 2015 06:36:53 +0000
|
||||
Fri, 08 May 2015 09:36:54 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
Fri May 8 06:36:49 UTC 2015
|
||||
Fri May 8 09:36:50 UTC 2015
|
||||
|
|
|
@ -1 +1 @@
|
|||
Fri, 08 May 2015 07:00:01 +0000
|
||||
Fri, 08 May 2015 10:00:01 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
1431066901 Fri 08 May 2015 06:35:01 AM UTC
|
||||
1431077701 Fri 08 May 2015 09:35:01 AM UTC
|
||||
|
|
|
@ -4,3 +4,4 @@ DIST connman-1.25.tar.xz 638140 SHA256 c1d266d6be18d2f66231f3537a7ed17b57637ca43
|
|||
DIST connman-1.26.tar.xz 645540 SHA256 7184e4b6d954449ee00a30e188924b3e37a20ad2fd9a0b76a2bdd82c863dcf8a SHA512 17a1edf199976f7b32fcf2c5d5d5dcbc8fa8896575d241eeeb66e6183bc115bde3816a7ef0a43831746a603831ade0c5a12fa366e9fc1706068b41b5762c163b WHIRLPOOL e8af9740646cdf80b6c05326788e5e3710645ca775fbc9600fd47536fbf47a851bc9303716ba3490f5814d193febf0a8c47928726ec445d96931bad32e321289
|
||||
DIST connman-1.27.tar.xz 646520 SHA256 13997824c076af150c68d6d79e48277216e8192278a5c6615cfd4905d65600f5 SHA512 a904d280e16093574b955a23396395fd80640ff5ba767849f5ebae7cea3b10897fb13521376bcd8963cfed091bb0600134205e286d3935a292fcd81be1d2a886 WHIRLPOOL 257b7e38fc773353a905044d7f0540bd2d2b1f3a154daba90e22cd9f8339cf4624f8fa8f4eafbc92bc6e895afeb9b4129ca1a533387828e1746508573a6018e1
|
||||
DIST connman-1.28.tar.xz 643744 SHA256 b1d5e7dd2652725906e220a8b0206477e97080e835272971e3b2fd10943c5c94 SHA512 cd0e7da5bf20782c6a1798078ab4669d4bf0aeee2b7a66de5029082324745380bfdc835d52021c6eff30843d63911373d17273c5956b10c2586fe71c0bd37e06 WHIRLPOOL 927fd476e74ef410bf502dc1e7233192bc9c94958ca62200255eead825e2b74a4544ba173f0567d91f4cb0f10f82c8e71baa711f3d8fb4654b5ded309ec88d50
|
||||
DIST connman-1.29.tar.xz 653324 SHA256 2a5a69693566f7fd59b2e677fa89356ada6d709998aa665caef8707b1e7a8594 SHA512 19f623dd23c6312f29bbd570dcb22d31154ffcd16ee66ed2280df3d9d844301f18538418363222d99eabdc33da0021488ed66ba2e4f88df30646004b724538ee WHIRLPOOL 9439cadeb20b72c922b1426da213f8567fe7b0da45f9a4abf270c38687a9d9161a8ee14250623344864d612e130e6f28926918468aaf4346a9e5ff41e6ad22bb
|
||||
|
|
71
net-misc/connman/connman-1.29.ebuild
Normal file
71
net-misc/connman/connman-1.29.ebuild
Normal file
|
@ -0,0 +1,71 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.29.ebuild,v 1.1 2015/05/08 08:58:21 dlan Exp $
|
||||
|
||||
EAPI="5"
|
||||
inherit base systemd
|
||||
|
||||
DESCRIPTION="Provides a daemon for managing internet connections"
|
||||
HOMEPAGE="https://01.org/connman"
|
||||
SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
|
||||
IUSE="bluetooth debug doc examples +ethernet l2tp ofono openvpn openconnect pptp policykit tools vpnc +wifi wispr"
|
||||
|
||||
RDEPEND=">=dev-libs/glib-2.16
|
||||
>=sys-apps/dbus-1.2.24
|
||||
>=net-firewall/iptables-1.4.8
|
||||
bluetooth? ( net-wireless/bluez )
|
||||
l2tp? ( net-dialup/xl2tpd )
|
||||
ofono? ( net-misc/ofono )
|
||||
openconnect? ( net-misc/openconnect )
|
||||
openvpn? ( net-misc/openvpn )
|
||||
policykit? ( sys-auth/polkit )
|
||||
pptp? ( net-dialup/pptpclient )
|
||||
vpnc? ( net-misc/vpnc )
|
||||
wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )
|
||||
wispr? ( net-libs/gnutls )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
>=sys-kernel/linux-headers-2.6.39"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${PN}-1.16-execinfo-assumptions.patch" )
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--localstatedir=/var \
|
||||
--enable-client \
|
||||
--enable-datafiles \
|
||||
--enable-loopback=builtin \
|
||||
$(use_enable examples test) \
|
||||
$(use_enable ethernet ethernet builtin) \
|
||||
$(use_enable wifi wifi builtin) \
|
||||
$(use_enable bluetooth bluetooth builtin) \
|
||||
$(use_enable l2tp l2tp builtin) \
|
||||
$(use_enable ofono ofono builtin) \
|
||||
$(use_enable openconnect openconnect builtin) \
|
||||
$(use_enable openvpn openvpn builtin) \
|
||||
$(use_enable policykit polkit builtin) \
|
||||
$(use_enable pptp pptp builtin) \
|
||||
$(use_enable vpnc vpnc builtin) \
|
||||
$(use_enable wispr wispr builtin) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable tools) \
|
||||
--disable-iospm \
|
||||
--disable-hh2serial-gps
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dobin client/connmanctl || die "client installation failed"
|
||||
|
||||
if use doc; then
|
||||
dodoc doc/*.txt
|
||||
fi
|
||||
keepdir /var/lib/${PN}
|
||||
newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
|
||||
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
||||
systemd_dounit "${FILESDIR}"/connman.service
|
||||
}
|
|
@ -1,2 +1,3 @@
|
|||
DIST megatools-1.9.93.tar.gz 116391 SHA256 e744de3448fecb0d103a5462fa0f0ac4ea82dd780984180531425ebfc837f97f SHA512 71f5ba72e963e337da93cb3386aafeba4a6d58b75bbe848ef590940688e634c2b0175d6fae88515dd844fff6f789ba54618bc0cbba8f083432c0eac27d40df83 WHIRLPOOL 392ceb5d7ea62aaaccb203e884eee67bd203235370e6228466ac3a37714543613bfa07402d0eb92b261903850912e01ec29aa2aaf9f9f14de4e8aef16054f2e0
|
||||
DIST megatools-1.9.94.tar.gz 115526 SHA256 10d694cb1514484f9fd92760165870ed070014434b8e20d4a3a34befdadfcf12 SHA512 ff457563fc056425c4fed51021cd0d16578b628163a8cb96fe04fbdccddb0046c9172aa75a1f2df70bc0356b509f25ef29ba03a1430c2453d18edc4cc8e1012f WHIRLPOOL b3f060be9c3702a576c8019c733d889af905a72a9f22d62c5a1bd0b7c19f2cb3755ae8b70d743fae4625f6b294e19226f0d8b2e9bc0ad863048e46845591e42c
|
||||
DIST megatools-1.9.95.tar.gz 114825 SHA256 2e87b1ab12249f0168d7ed69a6f29213378dd0f77f516301f0de138d403e2423 SHA512 28ca49fdc4384f559f9f99b6cab78b03d4da1b2caa3637cf1420c037516496dd9cba4494211dd05e235bd1fc50e954a65813a6f2e0d6f5bbb532cd6897a37143 WHIRLPOOL 32901fa0f100661c79b48070ef1f8d7528d652d432a633911ad326cff967ef03ab3c935aa160bec5e8b9498d74c8385d51b731bf40bfdf27551fd2e4bc828e05
|
||||
|
|
44
net-misc/megatools/megatools-1.9.95.ebuild
Normal file
44
net-misc/megatools/megatools-1.9.95.ebuild
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/net-misc/megatools/megatools-1.9.95.ebuild,v 1.1 2015/05/08 08:01:41 dlan Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
AUTOTOOLS_IN_SOURCE_BUILD=1
|
||||
inherit autotools-utils
|
||||
|
||||
DESCRIPTION="Command line tools and C library for accessing Mega cloud storage"
|
||||
HOMEPAGE="https://github.com/megous/megatools"
|
||||
SRC_URI="https://github.com/megous/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE="fuse introspection static-libs"
|
||||
|
||||
COMMON_DEPEND="dev-libs/glib:2
|
||||
dev-libs/openssl:0
|
||||
net-misc/curl
|
||||
fuse? ( sys-fs/fuse )
|
||||
"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
net-libs/glib-networking[ssl]
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
virtual/pkgconfig
|
||||
app-text/asciidoc"
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--enable-shared
|
||||
--enable-docs-build
|
||||
--disable-maintainer-mode
|
||||
--disable-warnings
|
||||
--disable-glibtest
|
||||
$(use_enable static-libs static)
|
||||
$(use_enable introspection)
|
||||
$(use_with fuse)
|
||||
)
|
||||
autotools-utils_src_configure
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/profiles/license_groups,v 1.260 2015/04/22 20:23:58 ulm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/profiles/license_groups,v 1.262 2015/05/08 07:49:26 ulm Exp $
|
||||
|
||||
# Please report bugs or other requests at bugs.gentoo.org and assign to
|
||||
# licenses@gentoo.org
|
||||
|
@ -13,7 +13,7 @@
|
|||
# http://www.gnu.org/licenses/license-list.html
|
||||
# GPL or LGPL with various exceptions are also included here, because
|
||||
# they are more permissive than the licenses they are based on.
|
||||
GPL-COMPATIBLE AGPL-3 Apache-2.0 Artistic-2 Boost-1.0 BSD BSD-2 CC0-1.0 CeCILL-2 Clarified-Artistic Clear-BSD ECL-2.0 FTL gcc-runtime-library-exception-3.1 GPL-1 GPL-1+ GPL-2 GPL-2+ GPL-2-with-exceptions GPL-2-with-font-exception GPL-2-with-linking-exception GPL-2-with-MySQL-FLOSS-exception GPL-3 GPL-3+ GPL-3-with-font-exception ISC LGPL-2 LGPL-2+ LGPL-2-with-linking-exception LGPL-2.1 LGPL-2.1+ LGPL-2.1-with-linking-exception LGPL-3 LGPL-3+ LGPL-3-with-linking-exception libgcc libstdc++ metapackage MIT MPL-2.0 Nokia-Qt-LGPL-Exception OPENLDAP PSF-2 PSF-2.2 PSF-2.3 PSF-2.4 public-domain PYTHON qwt Ruby Ruby-BSD SGI-B-2.0 Sleepycat tanuki-community Transmission-OpenSSL-exception unicode Unlicense UoI-NCSA vim W3C WTFPL-2 ZLIB ZPL
|
||||
GPL-COMPATIBLE AGPL-3 Apache-2.0 Artistic-2 Boost-1.0 BSD BSD-2 CC0-1.0 CeCILL-2 Clarified-Artistic Clear-BSD ECL-2.0 FTL gcc-runtime-library-exception-3.1 GPL-1 GPL-1+ GPL-2 GPL-2+ GPL-2-with-exceptions GPL-2-with-font-exception GPL-2-with-linking-exception GPL-2-with-MySQL-FLOSS-exception GPL-3 GPL-3+ GPL-3-with-font-exception ISC LGPL-2 LGPL-2+ LGPL-2-with-linking-exception LGPL-2.1 LGPL-2.1+ LGPL-2.1-with-linking-exception LGPL-3 LGPL-3+ LGPL-3-with-linking-exception libgcc libstdc++ metapackage MIT MPL-2.0 Nokia-Qt-LGPL-Exception-1.1 OPENLDAP PSF-2 PSF-2.2 PSF-2.3 PSF-2.4 public-domain PYTHON qwt Ruby Ruby-BSD SGI-B-2.0 Sleepycat tanuki-community Transmission-OpenSSL-exception unicode Unlicense UoI-NCSA vim W3C WTFPL-2 ZLIB ZPL
|
||||
|
||||
FSF-APPROVED @GPL-COMPATIBLE AFL-2.1 AFL-3.0 Apache-1.1 APSL-2 BitTorrent BSD-4 CDDL CNRI CPAL-1.0 CPL-1.0 EPL-1.0 EUPL-1.1 gnuplot IBM LPPL-1.2 MPL-1.0 MPL-1.1 Ms-PL NPL-1.1 openssl OSL-1.1 OSL-2.0 OSL-2.1 PHP-3.01 QPL QPL-1.0
|
||||
|
||||
|
@ -31,7 +31,7 @@ OSI-APPROVED AFL-3.0 AGPL-3 Apache-1.1 Apache-2.0 APL-1.0 APSL-2 Artistic Artist
|
|||
# TODO: maybe add a category for BSD-alike MISC-FREE licenses for easy
|
||||
# separation?
|
||||
# BSD-4 alikes: dom4j FastCGI icu JDOM
|
||||
MISC-FREE ACE Allegro alternate bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 canfep CDDL-Schily CeCILL-C CFS CLX CMake CPL-0.5 CRACKLIB Crypt-IDEA cryptopp czyborra DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh File-MMagic Flashpix FLEX flexmock FLTK freemarker FVWM gd gsm HTML-Tidy htmlc iASL IBPP-1.1 icu IDPL IJG imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LambdaMOO LIBGLOSS libmng libodialog libpng libtiff LLGPL-2.1 LPPL-1.3 LPPL-1.3b lsof Mail-Sendmail mapm-4.9.5 matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 nap NCSA-HDF netcat NEWLIB ngrep noweb Old-MIT openafs-krb5-a Openwall otter PCRE perforce photopc PHP-2.02 PIZZA-WARE pngcrush pngnq Princeton psutils qmail-nelson rc regexp-UofT RSA rwpng scanlogd Sendmail Sendmail-Open-Source shrimp SMAIL Snd SNIA SSLeay Subversion SVFL tablelist tcltk tcp_wrappers_license TermReadKey TeX TeX-other-free Time-Format Time-modules tm-align totd URT VTK w3m wxWinLL-3 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX zpaq ZSH
|
||||
MISC-FREE ACE Allegro alternate bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 canfep CDDL-Schily CeCILL-C CLX CMake CPL-0.5 CRACKLIB Crypt-IDEA cryptopp czyborra DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh File-MMagic Flashpix FLEX flexmock FLTK freemarker FVWM gd gsm HTML-Tidy htmlc iASL IBPP-1.1 icu IDPL IJG imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LambdaMOO LIBGLOSS libmng libodialog libpng libtiff LLGPL-2.1 LPPL-1.3 LPPL-1.3b lsof Mail-Sendmail mapm-4.9.5 matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 nap NCSA-HDF netcat NEWLIB ngrep noweb Old-MIT openafs-krb5-a Openwall otter PCRE perforce photopc PHP-2.02 PIZZA-WARE pngcrush pngnq Princeton psutils qmail-nelson rc regexp-UofT RSA rwpng scanlogd Sendmail Sendmail-Open-Source shrimp SMAIL Snd SNIA SSLeay Subversion SVFL tablelist tcltk tcp_wrappers_license TermReadKey TeX TeX-other-free Time-Format Time-modules tm-align totd URT VTK w3m wxWinLL-3 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX zpaq ZSH
|
||||
# The following are NOT valid in @MISC-FREE:
|
||||
# arj - usage restrictions
|
||||
# freedist - Doesn't grant the right to do modifications.
|
||||
|
@ -60,7 +60,7 @@ FREE-DOCUMENTS @FSF-APPROVED-OTHER @MISC-FREE-DOCS
|
|||
# and share modifications
|
||||
FREE @FREE-SOFTWARE @FREE-DOCUMENTS
|
||||
|
||||
EULA Adaptec-EULA AdobeFlash-11.x ArxFatalis-EULA-JoWooD baudline BCS bf1942-lnxded CAPYBARA-EULA cadsoft Coherent-Graphics CYANA DOOM3 ETQW FAH-EULA-2009 FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA GIMPS GOG-EULA google-chrome googleearth Google-TOS IBM-J1.6 Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA MARBLEBLAST Mendeley-terms MSjdbcEULA40 MTA-0.5 NVIDIA-CUDA Nero-AAC-EULA Nero-EULA-US Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge PUEL Q3AEULA Q3AEULA-20000111 QUAKE4 Rain-Slick RTCW RTCW-ETEULA SCM-MICRO SJ-Labs skype-4.0.0.7-copyright spin-commercial spin-educational sun-bcla-java-vm TeamViewer THINKTANKS UPEK-SDK-EULA ut2003 ut2003-demo Vivaldi
|
||||
EULA Adaptec-EULA AdobeFlash-11.x ArxFatalis-EULA-JoWooD baudline BCS bf1942-lnxded CAPYBARA-EULA cadsoft Coherent-Graphics CYANA DOOM3 ETQW FAH-EULA-2009 FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA GIMPS GOG-EULA google-chrome googleearth Google-TOS IBM-J1.6 Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA MARBLEBLAST Mendeley-terms MSjdbcEULA40 MTA-0.5 NVIDIA-CUDA Nero-AAC-EULA Nero-EULA-US Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge PUEL Q3AEULA Q3AEULA-20000111 QUAKE4 RTCW RTCW-ETEULA SCM-MICRO SJ-Labs skype-4.0.0.7-copyright spin-commercial spin-educational sun-bcla-java-vm TeamViewer THINKTANKS UPEK-SDK-EULA ut2003 ut2003-demo Vivaldi
|
||||
|
||||
# As proposed: http://archives.gentoo.org/gentoo-dev/msg_6c950b46c50fe72ebc5e650bbf70f77c.xml
|
||||
# Excerpt of the rules for this license group:
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-3.0.4-r1.ebuild,v 1.2 2015/04/11 08:59:45 hwoarang Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-3.0.4-r1.ebuild,v 1.3 2015/05/08 08:33:38 vapier Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit flag-o-matic eutils autotools
|
||||
inherit flag-o-matic eutils
|
||||
|
||||
DESCRIPTION="A general-purpose (yacc-compatible) parser generator"
|
||||
HOMEPAGE="http://www.gnu.org/software/bison/"
|
||||
|
@ -17,7 +17,6 @@ IUSE="examples nls static test"
|
|||
|
||||
RDEPEND=">=sys-devel/m4-1.4.16"
|
||||
DEPEND="${RDEPEND}
|
||||
>=sys-devel/automake-1.14
|
||||
sys-devel/flex
|
||||
examples? ( dev-lang/perl )
|
||||
nls? ( sys-devel/gettext )
|
||||
|
@ -27,7 +26,7 @@ DOCS=( AUTHORS ChangeLog-2012 NEWS README THANKS TODO ) # ChangeLog-1998 PACKAGI
|
|||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-optional-perl.patch #538300
|
||||
eautoreconf
|
||||
touch doc/bison.1 #548778
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
@ -19,8 +19,8 @@ Add an --enable-examples flag.
|
|||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index b6135cb..50ea0a0 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
#--- a/Makefile.am
|
||||
#+++ b/Makefile.am
|
||||
@@ -59,7 +59,9 @@ include data/local.mk
|
||||
include djgpp/local.mk
|
||||
include doc/local.mk
|
||||
|
@ -33,8 +33,8 @@ index b6135cb..50ea0a0 100644
|
|||
include tests/local.mk
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 6f20040..e67249b 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
#--- a/configure.ac
|
||||
#+++ b/configure.ac
|
||||
@@ -179,12 +179,31 @@ AC_DEFINE_UNQUOTED([M4_GNU_OPTION], ["$M4_GNU"], [Define to "-g" if GNU M4
|
||||
supports -g, otherwise to "".])
|
||||
AC_PATH_PROG([PERL], [perl])
|
||||
|
@ -68,5 +68,433 @@ index 6f20040..e67249b 100644
|
|||
# Checks for header files.
|
||||
AC_CHECK_HEADERS_ONCE([locale.h])
|
||||
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -248,13 +248,29 @@
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
-check_PROGRAMS = $(am__EXEEXT_1) examples/mfcalc/mfcalc$(EXEEXT) \
|
||||
- examples/rpcalc/rpcalc$(EXEEXT)
|
||||
+check_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2)
|
||||
@CROSS_COMPILING_FALSE@am__append_1 = $(top_srcdir)/doc/bison.help
|
||||
-@FLEX_CXX_WORKS_TRUE@am__append_2 = examples/calc++/calc++
|
||||
-@FLEX_CXX_WORKS_TRUE@am__append_3 = examples/calc++/calc++.test
|
||||
-@FLEX_CXX_WORKS_FALSE@am__append_4 = examples/calc++/calc++.test
|
||||
-@LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE@am__append_5 = lib/uniwidth/width.c
|
||||
+@ENABLE_EXAMPLES_TRUE@am__append_2 = $(extracted) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/extracted.stamp \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(calcxx_sources_generated) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-parser.output \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-parser.stamp \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-scanner.cc \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/mfcalc/mfcalc.[ch] \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/mfcalc/mfcalc.output \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/rpcalc/rpcalc.[ch] \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/rpcalc/rpcalc.output
|
||||
+@ENABLE_EXAMPLES_TRUE@am__append_3 = .yy .stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@am__append_4 = examples/calc++/calc++
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@am__append_5 = examples/calc++/calc++.test
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_FALSE@am__append_6 = examples/calc++/calc++.test
|
||||
+@ENABLE_EXAMPLES_TRUE@am__append_7 = $(mfcalc_sources) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(rpcalc_sources)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__append_8 = examples/mfcalc/mfcalc \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/rpcalc/rpcalc
|
||||
+@ENABLE_EXAMPLES_TRUE@am__append_9 = examples/mfcalc/mfcalc.test \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/rpcalc/rpcalc.test
|
||||
+@LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE@am__append_10 = lib/uniwidth/width.c
|
||||
bin_PROGRAMS = src/bison$(EXEEXT)
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
@@ -356,7 +372,7 @@
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
||||
- $(am__configure_deps) $(dist_noinst_SCRIPTS) \
|
||||
+ $(am__configure_deps) $(am__dist_noinst_SCRIPTS_DIST) \
|
||||
$(srcdir)/doc/version.texi $(srcdir)/doc/stamp-vti \
|
||||
$(dist_doc_DATA) $(dist_m4sugar_DATA) $(dist_pkgdata_DATA) \
|
||||
$(dist_xslt_DATA) $(am__DIST_COMMON)
|
||||
@@ -473,15 +489,18 @@
|
||||
@ENABLE_YACC_TRUE@am_lib_liby_a_OBJECTS = lib/main.$(OBJEXT) \
|
||||
@ENABLE_YACC_TRUE@ lib/yyerror.$(OBJEXT)
|
||||
lib_liby_a_OBJECTS = $(am_lib_liby_a_OBJECTS)
|
||||
-@FLEX_CXX_WORKS_TRUE@am__EXEEXT_1 = examples/calc++/calc++$(EXEEXT)
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@am__EXEEXT_1 = examples/calc++/calc++$(EXEEXT)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__EXEEXT_2 = examples/mfcalc/mfcalc$(EXEEXT) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/rpcalc/rpcalc$(EXEEXT)
|
||||
PROGRAMS = $(bin_PROGRAMS)
|
||||
-am__objects_2 = examples/calc++/examples_calc___calc__-calc++-driver.$(OBJEXT) \
|
||||
- examples/calc++/examples_calc___calc__-calc++-scanner.$(OBJEXT) \
|
||||
- examples/calc++/examples_calc___calc__-calc++.$(OBJEXT)
|
||||
-am__objects_3 = examples/calc++/examples_calc___calc__-calc++-parser.$(OBJEXT)
|
||||
-am__objects_4 = $(am__objects_2) $(am__objects_3)
|
||||
-@FLEX_CXX_WORKS_TRUE@nodist_examples_calc___calc___OBJECTS = \
|
||||
-@FLEX_CXX_WORKS_TRUE@ $(am__objects_4)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_2 = examples/calc++/examples_calc___calc__-calc++-driver.$(OBJEXT) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/examples_calc___calc__-calc++-scanner.$(OBJEXT) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/examples_calc___calc__-calc++.$(OBJEXT)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_3 = examples/calc++/examples_calc___calc__-calc++-parser.$(OBJEXT)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_4 = $(am__objects_2) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(am__objects_3)
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@nodist_examples_calc___calc___OBJECTS = \
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@ $(am__objects_4)
|
||||
examples_calc___calc___OBJECTS = \
|
||||
$(nodist_examples_calc___calc___OBJECTS)
|
||||
examples_calc___calc___LDADD = $(LDADD)
|
||||
@@ -490,17 +509,17 @@
|
||||
examples_calc___calc___LINK = $(CXXLD) \
|
||||
$(examples_calc___calc___CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
-am__objects_5 = \
|
||||
- examples/mfcalc/examples_mfcalc_mfcalc-mfcalc.$(OBJEXT)
|
||||
-am__objects_6 = $(am__objects_5)
|
||||
-nodist_examples_mfcalc_mfcalc_OBJECTS = $(am__objects_6)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_5 = examples/mfcalc/examples_mfcalc_mfcalc-mfcalc.$(OBJEXT)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_6 = $(am__objects_5)
|
||||
+@ENABLE_EXAMPLES_TRUE@nodist_examples_mfcalc_mfcalc_OBJECTS = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(am__objects_6)
|
||||
examples_mfcalc_mfcalc_OBJECTS = \
|
||||
$(nodist_examples_mfcalc_mfcalc_OBJECTS)
|
||||
examples_mfcalc_mfcalc_DEPENDENCIES =
|
||||
-am__objects_7 = \
|
||||
- examples/rpcalc/examples_rpcalc_rpcalc-rpcalc.$(OBJEXT)
|
||||
-am__objects_8 = $(am__objects_7)
|
||||
-nodist_examples_rpcalc_rpcalc_OBJECTS = $(am__objects_8)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_7 = examples/rpcalc/examples_rpcalc_rpcalc-rpcalc.$(OBJEXT)
|
||||
+@ENABLE_EXAMPLES_TRUE@am__objects_8 = $(am__objects_7)
|
||||
+@ENABLE_EXAMPLES_TRUE@nodist_examples_rpcalc_rpcalc_OBJECTS = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(am__objects_8)
|
||||
examples_rpcalc_rpcalc_OBJECTS = \
|
||||
$(nodist_examples_rpcalc_rpcalc_OBJECTS)
|
||||
examples_rpcalc_rpcalc_DEPENDENCIES =
|
||||
@@ -528,6 +547,7 @@
|
||||
src_bison_DEPENDENCIES = lib/libbison.a $(am__DEPENDENCIES_1)
|
||||
src_bison_LINK = $(CCLD) $(src_bison_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
+am__dist_noinst_SCRIPTS_DIST = examples/extexi examples/test
|
||||
SCRIPTS = $(bin_SCRIPTS) $(dist_noinst_SCRIPTS) \
|
||||
$(nodist_noinst_SCRIPTS)
|
||||
AM_V_P = $(am__v_P_@AM_V@)
|
||||
@@ -2145,7 +2165,7 @@
|
||||
djgpp/subpipe.h djgpp/testsuite.sed doc/refcard.tex \
|
||||
$(top_srcdir)/doc/bison.help $(dist_man_MANS:.1=.x) $(FIGS_GV) \
|
||||
$(FIGS_GV:.gv=.txt) $(FIGS_GV:.gv=.eps) $(FIGS_GV:.gv=.pdf) \
|
||||
- $(FIGS_GV:.gv=.png) doc/Doxyfile.in $(am__append_4) \
|
||||
+ $(FIGS_GV:.gv=.png) doc/Doxyfile.in $(am__append_6) \
|
||||
lib/alignof.h lib/alloca.in.h \
|
||||
$(top_srcdir)/build-aux/announce-gen lib/argmatch.h \
|
||||
lib/c-strcaseeq.h lib/calloc.c lib/cloexec.h lib/close.c \
|
||||
@@ -2249,27 +2269,20 @@
|
||||
# a developer might naively reference .version in a test case while the bison
|
||||
# executable still compiles with VERSION, and so the test case might fail or
|
||||
# pass incorrectly.
|
||||
-BUILT_SOURCES = $(mfcalc_sources) $(rpcalc_sources) $(ALLOCA_H) \
|
||||
- lib/configmake.h $(ERRNO_H) lib/fcntl.h $(FLOAT_H) $(GETOPT_H) \
|
||||
- lib/inttypes.h lib/math.h $(SCHED_H) lib/signal.h \
|
||||
- lib/arg-nonnull.h lib/c++defs.h lib/warn-on-use.h lib/spawn.h \
|
||||
- $(STDBOOL_H) $(STDDEF_H) $(STDINT_H) lib/stdio.h lib/stdlib.h \
|
||||
- lib/string.h lib/sys/stat.h lib/sys/time.h lib/sys/types.h \
|
||||
- lib/sys/wait.h lib/time.h lib/unistd.h \
|
||||
- $(LIBUNISTRING_UNITYPES_H) $(LIBUNISTRING_UNIWIDTH_H) \
|
||||
- lib/wchar.h lib/wctype.h src/parse-gram.c src/parse-gram.h \
|
||||
- src/scan-code.c src/scan-gram.c src/scan-skel.c \
|
||||
- $(top_srcdir)/.version
|
||||
+BUILT_SOURCES = $(am__append_7) $(ALLOCA_H) lib/configmake.h \
|
||||
+ $(ERRNO_H) lib/fcntl.h $(FLOAT_H) $(GETOPT_H) lib/inttypes.h \
|
||||
+ lib/math.h $(SCHED_H) lib/signal.h lib/arg-nonnull.h \
|
||||
+ lib/c++defs.h lib/warn-on-use.h lib/spawn.h $(STDBOOL_H) \
|
||||
+ $(STDDEF_H) $(STDINT_H) lib/stdio.h lib/stdlib.h lib/string.h \
|
||||
+ lib/sys/stat.h lib/sys/time.h lib/sys/types.h lib/sys/wait.h \
|
||||
+ lib/time.h lib/unistd.h $(LIBUNISTRING_UNITYPES_H) \
|
||||
+ $(LIBUNISTRING_UNIWIDTH_H) lib/wchar.h lib/wctype.h \
|
||||
+ src/parse-gram.c src/parse-gram.h src/scan-code.c \
|
||||
+ src/scan-gram.c src/scan-skel.c $(top_srcdir)/.version
|
||||
CLEANFILES = doc/refcard.pdf $(FIGS_GV:.gv=.eps) $(FIGS_GV:.gv=.pdf) \
|
||||
- $(FIGS_GV:.gv=.png) doc/Doxyfile $(extracted) \
|
||||
- examples/extracted.stamp $(calcxx_sources_generated) \
|
||||
- examples/calc++/calc++-parser.output \
|
||||
- examples/calc++/calc++-parser.stamp \
|
||||
- examples/calc++/calc++-scanner.cc examples/mfcalc/mfcalc.[ch] \
|
||||
- examples/mfcalc/mfcalc.output examples/rpcalc/rpcalc.[ch] \
|
||||
- examples/rpcalc/rpcalc.output lib/configmake.h \
|
||||
- lib/configmake.h-t lib/charset.alias lib/ref-add.sed \
|
||||
- lib/ref-del.sed
|
||||
+ $(FIGS_GV:.gv=.png) doc/Doxyfile $(am__append_2) \
|
||||
+ lib/configmake.h lib/configmake.h-t lib/charset.alias \
|
||||
+ lib/ref-add.sed lib/ref-del.sed
|
||||
DISTCLEANFILES = tests/atconfig $(check_SCRIPTS)
|
||||
MOSTLYCLEANDIRS = lib/sys lib/sys
|
||||
MOSTLYCLEANFILES = $(top_srcdir)/doc/*.t lib/core lib/*.stackdump \
|
||||
@@ -2289,10 +2302,9 @@
|
||||
lib/unistd.h-t lib/unitypes.h lib/unitypes.h-t lib/uniwidth.h \
|
||||
lib/uniwidth.h-t lib/wchar.h lib/wchar.h-t lib/wctype.h \
|
||||
lib/wctype.h-t src/yacc
|
||||
-SUFFIXES = .gv .eps .pdf .png .yy .stamp
|
||||
+SUFFIXES = .gv .eps .pdf .png $(am__append_3)
|
||||
TESTS = $(dist_TESTS)
|
||||
-dist_TESTS = $(am__append_3) examples/mfcalc/mfcalc.test \
|
||||
- examples/rpcalc/rpcalc.test
|
||||
+dist_TESTS = $(am__append_5) $(am__append_9)
|
||||
noinst_LIBRARIES = lib/libbison.a
|
||||
dist_pkgdata_DATA = \
|
||||
data/README \
|
||||
@@ -2364,59 +2376,59 @@
|
||||
-e 's,@top_srcdir\@,$(top_srcdir),g'
|
||||
|
||||
nodist_noinst_SCRIPTS = etc/bench.pl
|
||||
-dist_noinst_SCRIPTS = examples/extexi examples/test
|
||||
-TEST_LOG_COMPILER = $(top_srcdir)/examples/test
|
||||
-AM_CXXFLAGS = \
|
||||
- $(WARN_CXXFLAGS) $(WARN_CXXFLAGS_TEST) $(WERROR_CXXFLAGS)
|
||||
-
|
||||
-doc = $(top_srcdir)/doc/bison.texi
|
||||
-extexi = $(top_srcdir)/examples/extexi
|
||||
-@ENABLE_GCC_WARNINGS_TRUE@extexiFLAGS = --synclines
|
||||
-extract = VERSION="$(VERSION)" $(PERL) $(extexi) $(extexiFLAGS) $(doc) --
|
||||
-extracted = $(calcxx_extracted) $(mfcalc_extracted) \
|
||||
- $(rpcalc_extracted)
|
||||
-calcxx_sources_extracted = \
|
||||
- examples/calc++/calc++-driver.cc \
|
||||
- examples/calc++/calc++-driver.hh \
|
||||
- examples/calc++/calc++-scanner.ll \
|
||||
- examples/calc++/calc++.cc
|
||||
-
|
||||
-calcxx_extracted = \
|
||||
- $(calcxx_sources_extracted) \
|
||||
- examples/calc++/calc++-parser.yy
|
||||
-
|
||||
-calcxx_sources_generated = \
|
||||
- examples/calc++/calc++-parser.cc \
|
||||
- examples/calc++/calc++-parser.hh \
|
||||
- examples/calc++/location.hh \
|
||||
- examples/calc++/position.hh \
|
||||
- examples/calc++/stack.hh
|
||||
-
|
||||
-calcxx_sources = \
|
||||
- $(calcxx_sources_extracted) \
|
||||
- $(calcxx_sources_generated)
|
||||
-
|
||||
-@FLEX_CXX_WORKS_TRUE@nodist_examples_calc___calc___SOURCES = \
|
||||
-@FLEX_CXX_WORKS_TRUE@ $(calcxx_sources)
|
||||
-
|
||||
-@FLEX_CXX_WORKS_TRUE@examples_calc___calc___CPPFLAGS = -I$(top_builddir)/examples/calc++
|
||||
-@FLEX_CXX_WORKS_TRUE@examples_calc___calc___CXXFLAGS = $(AM_CXXFLAGS) $(FLEX_SCANNER_CXXFLAGS)
|
||||
-calcxxdir = $(docdir)/examples/calc++
|
||||
-calcxx_DATA = $(calcxx_extracted)
|
||||
-mfcalc_extracted = examples/mfcalc/calc.h examples/mfcalc/mfcalc.y
|
||||
-mfcalc_sources = $(mfcalc_extracted)
|
||||
-examples_mfcalc_mfcalc_LDADD = -lm
|
||||
-nodist_examples_mfcalc_mfcalc_SOURCES = $(mfcalc_sources)
|
||||
-examples_mfcalc_mfcalc_CPPFLAGS = -I$(top_builddir)/examples/mfcalc
|
||||
-mfcalcdir = $(docdir)/examples/mfcalc
|
||||
-mfcalc_DATA = $(mfcalc_extracted)
|
||||
-rpcalc_extracted = examples/rpcalc/rpcalc.y
|
||||
-rpcalc_sources = $(rpcalc_extracted)
|
||||
-examples_rpcalc_rpcalc_LDADD = -lm
|
||||
-nodist_examples_rpcalc_rpcalc_SOURCES = $(rpcalc_sources)
|
||||
-examples_rpcalc_rpcalc_CPPFLAGS = -I$(top_builddir)/examples/rpcalc
|
||||
-rpcalcdir = $(docdir)/examples/rpcalc
|
||||
-rpcalc_DATA = $(rpcalc_extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@dist_noinst_SCRIPTS = examples/extexi examples/test
|
||||
+@ENABLE_EXAMPLES_TRUE@TEST_LOG_COMPILER = $(top_srcdir)/examples/test
|
||||
+@ENABLE_EXAMPLES_TRUE@AM_CXXFLAGS = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(WARN_CXXFLAGS) $(WARN_CXXFLAGS_TEST) $(WERROR_CXXFLAGS)
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@doc = $(top_srcdir)/doc/bison.texi
|
||||
+@ENABLE_EXAMPLES_TRUE@extexi = $(top_srcdir)/examples/extexi
|
||||
+@ENABLE_EXAMPLES_TRUE@@ENABLE_GCC_WARNINGS_TRUE@extexiFLAGS = --synclines
|
||||
+@ENABLE_EXAMPLES_TRUE@extract = VERSION="$(VERSION)" $(PERL) $(extexi) $(extexiFLAGS) $(doc) --
|
||||
+@ENABLE_EXAMPLES_TRUE@extracted = $(calcxx_extracted) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(mfcalc_extracted) $(rpcalc_extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@calcxx_sources_extracted = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-driver.cc \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-driver.hh \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-scanner.ll \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++.cc
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@calcxx_extracted = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(calcxx_sources_extracted) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-parser.yy
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@calcxx_sources_generated = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-parser.cc \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/calc++-parser.hh \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/location.hh \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/position.hh \
|
||||
+@ENABLE_EXAMPLES_TRUE@ examples/calc++/stack.hh
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@calcxx_sources = \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(calcxx_sources_extracted) \
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(calcxx_sources_generated)
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@nodist_examples_calc___calc___SOURCES = \
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@ $(calcxx_sources)
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@examples_calc___calc___CPPFLAGS = -I$(top_builddir)/examples/calc++
|
||||
+@ENABLE_EXAMPLES_TRUE@@FLEX_CXX_WORKS_TRUE@examples_calc___calc___CXXFLAGS = $(AM_CXXFLAGS) $(FLEX_SCANNER_CXXFLAGS)
|
||||
+@ENABLE_EXAMPLES_TRUE@calcxxdir = $(docdir)/examples/calc++
|
||||
+@ENABLE_EXAMPLES_TRUE@calcxx_DATA = $(calcxx_extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@mfcalc_extracted = examples/mfcalc/calc.h examples/mfcalc/mfcalc.y
|
||||
+@ENABLE_EXAMPLES_TRUE@mfcalc_sources = $(mfcalc_extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@examples_mfcalc_mfcalc_LDADD = -lm
|
||||
+@ENABLE_EXAMPLES_TRUE@nodist_examples_mfcalc_mfcalc_SOURCES = $(mfcalc_sources)
|
||||
+@ENABLE_EXAMPLES_TRUE@examples_mfcalc_mfcalc_CPPFLAGS = -I$(top_builddir)/examples/mfcalc
|
||||
+@ENABLE_EXAMPLES_TRUE@mfcalcdir = $(docdir)/examples/mfcalc
|
||||
+@ENABLE_EXAMPLES_TRUE@mfcalc_DATA = $(mfcalc_extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@rpcalc_extracted = examples/rpcalc/rpcalc.y
|
||||
+@ENABLE_EXAMPLES_TRUE@rpcalc_sources = $(rpcalc_extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@examples_rpcalc_rpcalc_LDADD = -lm
|
||||
+@ENABLE_EXAMPLES_TRUE@nodist_examples_rpcalc_rpcalc_SOURCES = $(rpcalc_sources)
|
||||
+@ENABLE_EXAMPLES_TRUE@examples_rpcalc_rpcalc_CPPFLAGS = -I$(top_builddir)/examples/rpcalc
|
||||
+@ENABLE_EXAMPLES_TRUE@rpcalcdir = $(docdir)/examples/rpcalc
|
||||
+@ENABLE_EXAMPLES_TRUE@rpcalc_DATA = $(rpcalc_extracted)
|
||||
|
||||
# Implementation of bitsets.
|
||||
|
||||
@@ -2441,7 +2453,7 @@
|
||||
lib/progname.c lib/quotearg.c lib/sig-handler.c lib/size_max.h \
|
||||
lib/spawn-pipe.h lib/spawn-pipe.c lib/w32spawn.h \
|
||||
lib/glthread/threadlib.c lib/unistd.c lib/dup-safer.c \
|
||||
- lib/fd-safer.c lib/pipe-safer.c $(am__append_5) \
|
||||
+ lib/fd-safer.c lib/pipe-safer.c $(am__append_10) \
|
||||
lib/wait-process.h lib/wait-process.c lib/wctype-h.c \
|
||||
lib/xmalloc.c lib/xalloc-die.c lib/xconcat-filename.c \
|
||||
lib/xsize.h lib/xsize.c lib/xstrndup.h lib/xstrndup.c \
|
||||
@@ -5328,31 +5340,31 @@
|
||||
# configure, because the former is way faster than the latter.
|
||||
doc/Doxyfile: $(top_srcdir)/doc/Doxyfile.in
|
||||
$(AM_V_GEN) $(edit) $(top_srcdir)/doc/Doxyfile.in >doc/Doxyfile
|
||||
-examples/extracted.stamp: $(doc) $(extexi)
|
||||
- $(AM_V_GEN)rm -f $@ $@.tmp
|
||||
- $(AM_V_at)touch $@.tmp
|
||||
- $(AM_V_at)$(extract) $(extracted)
|
||||
- $(AM_V_at)mv $@.tmp $@
|
||||
-
|
||||
-$(extracted): examples/extracted.stamp
|
||||
- @test -f $@ || rm -f examples/extracted.stamp
|
||||
- @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) examples/extracted.stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@examples/extracted.stamp: $(doc) $(extexi)
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_GEN)rm -f $@ $@.tmp
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_at)touch $@.tmp
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_at)$(extract) $(extracted)
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_at)mv $@.tmp $@
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@$(extracted): examples/extracted.stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@ @test -f $@ || rm -f examples/extracted.stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@ @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) examples/extracted.stamp
|
||||
|
||||
# Don't depend on $(BISON) otherwise we would rebuild these files
|
||||
# in srcdir, including during distcheck, which is forbidden.
|
||||
-examples/calc++/calc++-parser.stamp: $(BISON_IN)
|
||||
-.yy.stamp:
|
||||
- $(AM_V_YACC)rm -f $@
|
||||
- $(AM_V_at)touch $@.tmp
|
||||
- $(AM_V_at)$(YACCCOMPILE) -o $*.cc $<
|
||||
- $(AM_V_at)mv -f $@.tmp $@
|
||||
-
|
||||
-$(calcxx_sources_generated): examples/calc++/calc++-parser.stamp
|
||||
- @test -f $@ || rm -f examples/calc++/calc++-parser.stamp
|
||||
- @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) examples/calc++/calc++-parser.stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@examples/calc++/calc++-parser.stamp: $(BISON_IN)
|
||||
+@ENABLE_EXAMPLES_TRUE@.yy.stamp:
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_YACC)rm -f $@
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_at)touch $@.tmp
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_at)$(YACCCOMPILE) -o $*.cc $<
|
||||
+@ENABLE_EXAMPLES_TRUE@ $(AM_V_at)mv -f $@.tmp $@
|
||||
+
|
||||
+@ENABLE_EXAMPLES_TRUE@$(calcxx_sources_generated): examples/calc++/calc++-parser.stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@ @test -f $@ || rm -f examples/calc++/calc++-parser.stamp
|
||||
+@ENABLE_EXAMPLES_TRUE@ @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) examples/calc++/calc++-parser.stamp
|
||||
|
||||
# Avoid using BUILT_SOURCES which is too global.
|
||||
-$(examples_calc___calc___OBJECTS): $(calcxx_sources_generated)
|
||||
+@ENABLE_EXAMPLES_TRUE@$(examples_calc___calc___OBJECTS): $(calcxx_sources_generated)
|
||||
|
||||
# We need the following in order to create <alloca.h> when the system
|
||||
# doesn't have one that works with the given compiler.
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -1693,6 +1693,8 @@
|
||||
ALLOCA
|
||||
GL_COND_LIBTOOL_FALSE
|
||||
GL_COND_LIBTOOL_TRUE
|
||||
+ENABLE_EXAMPLES_FALSE
|
||||
+ENABLE_EXAMPLES_TRUE
|
||||
XSLTPROC
|
||||
HELP2MAN
|
||||
PERL
|
||||
@@ -1837,6 +1839,7 @@
|
||||
enable_threads
|
||||
enable_gcc_warnings
|
||||
enable_yacc
|
||||
+enable_examples
|
||||
enable_assert
|
||||
with_gnu_ld
|
||||
enable_rpath
|
||||
@@ -2493,6 +2496,7 @@
|
||||
Also, issue synclines from the examples/ to
|
||||
the corresponding source in the Texinfo doc.
|
||||
--disable-yacc do not build a yacc command or an -ly library
|
||||
+ --disable-examples do not build and install examples
|
||||
--disable-assert turn off assertions
|
||||
--disable-rpath do not hardcode runtime library paths
|
||||
--disable-nls do not use Native Language Support
|
||||
@@ -8935,7 +8939,8 @@
|
||||
|
||||
|
||||
if test -z "$PERL"; then
|
||||
- as_fn_error $? "perl not found" "$LINENO" 5
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: perl required for the testsuites" >&5
|
||||
+$as_echo "$as_me: WARNING: perl required for the testsuites" >&2;}
|
||||
fi
|
||||
|
||||
HELP2MAN=${HELP2MAN-"${am_missing_run}help2man"}
|
||||
@@ -8982,6 +8987,34 @@
|
||||
|
||||
|
||||
|
||||
+# Check whether --enable-examples was given.
|
||||
+if test "${enable_examples+set}" = set; then :
|
||||
+ enableval=$enable_examples;
|
||||
+fi
|
||||
+
|
||||
+# Enable the examles by default if perl is available.
|
||||
+case $enable_examples in
|
||||
+no) ;;
|
||||
+yes)
|
||||
+ if test -z "$PERL"; then
|
||||
+ as_fn_error $? "perl required for the examples" "$LINENO" 5
|
||||
+ fi
|
||||
+ ;;
|
||||
+*)
|
||||
+ if test -n "$PERL"; then
|
||||
+ enable_examples=yes
|
||||
+ fi
|
||||
+ ;;
|
||||
+esac
|
||||
+ if test "xenable_examples" = xyes; then
|
||||
+ ENABLE_EXAMPLES_TRUE=
|
||||
+ ENABLE_EXAMPLES_FALSE='#'
|
||||
+else
|
||||
+ ENABLE_EXAMPLES_TRUE='#'
|
||||
+ ENABLE_EXAMPLES_FALSE=
|
||||
+fi
|
||||
+
|
||||
+
|
||||
# Checks for header files.
|
||||
|
||||
|
||||
@@ -38129,6 +38162,10 @@
|
||||
as_fn_error $? "conditional \"FLEX_CXX_WORKS\" was never defined.
|
||||
Usually this means the macro was only invoked conditionally." "$LINENO" 5
|
||||
fi
|
||||
+if test -z "${ENABLE_EXAMPLES_TRUE}" && test -z "${ENABLE_EXAMPLES_FALSE}"; then
|
||||
+ as_fn_error $? "conditional \"ENABLE_EXAMPLES\" was never defined.
|
||||
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
|
||||
+fi
|
||||
if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then
|
||||
as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined.
|
||||
Usually this means the macro was only invoked conditionally." "$LINENO" 5
|
||||
--
|
||||
2.3.4
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/dfc-3.0.5.ebuild,v 1.1 2015/04/23 01:42:18 dlan Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dfc/dfc-3.0.5-r1.ebuild,v 1.1 2015/05/08 07:22:40 dlan Exp $
|
||||
|
||||
EAPI=5
|
||||
inherit cmake-utils
|
||||
|
@ -14,8 +14,11 @@ SLOT="0"
|
|||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE="nls"
|
||||
|
||||
DEPEND="nls? ( virtual/libintl )"
|
||||
RDEPEND="${DEPEND}"
|
||||
DEPEND="nls? (
|
||||
virtual/libintl
|
||||
sys-devel/gettext
|
||||
)"
|
||||
RDEPEND="nls? ( virtual/libintl )"
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
|
@ -1,2 +1,3 @@
|
|||
DIST criu-1.4.tar.bz2 432735 SHA256 757347b3bfe824f93b9a5c98e60dfac5a73da978eb7ebd29d721dea496eaf789 SHA512 af7aae488bff97d6079cab9d01a64df7adc21c146e56a7c2429d7654aa86a0a1d306bbb828210c0d6badf82177b3eb37541472e59ce2b40783dde9a11df76403 WHIRLPOOL 02c5fa23ca250d3a9d15d3c16a54c0f2c082d5103934c3eb03d61988013bbf4f6b8fe69524b07438e4761b4c829d6f9666c09bd367b3569014e1f0c7e6875a5a
|
||||
DIST criu-1.5.1.tar.bz2 457316 SHA256 0bf47f02e32ac7d81bb953ba6ecd0b8dd748728042afed36f31852a59042a8d2 SHA512 a91323d062725286870bb22dcdbcc0ec3c132a12ec029dcc17bcb03e87b17c5011af7705fd315f2aff5904b96403ad8375a5dd6fc271d2b86a97f213d8659bdd WHIRLPOOL 1ea22cc018964d902e13d85ac4de287c426c58e57add6d605c298fad6657db8f8bd95d9da4505b2ec0f415aa1b1bc9839d4173f9b1d4a13ee72619b1ce749eaa
|
||||
DIST criu-1.5.2.tar.bz2 457573 SHA256 e8226018ac6c4094d61a1c002543e2b2253b4041a8edb24d4c1eaa41ce5ab345 SHA512 c7916fde1f63cb66a89e71867c204a251dfa2b9de703ac467bc460c6f0d895947996fd466c17cb529d2502aba7b75b8b30162baf3944fefebb71625fb88e5458 WHIRLPOOL c951692e684bd1b032bde1b534a4f4bd4b769a1e73afc56c74711ac943da907f638489205e8be2c68bbc345c1da8b641a7175dccd34aad907ca3251c3f2156a0
|
||||
|
|
50
sys-process/criu/criu-1.5.2.ebuild
Normal file
50
sys-process/criu/criu-1.5.2.ebuild
Normal file
|
@ -0,0 +1,50 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-process/criu/criu-1.5.2.ebuild,v 1.1 2015/05/08 08:04:37 dlan Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils toolchain-funcs linux-info flag-o-matic
|
||||
|
||||
DESCRIPTION="utility to checkpoint/restore a process tree"
|
||||
HOMEPAGE="http://criu.org/"
|
||||
SRC_URI="http://download.openvz.org/criu/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64"
|
||||
IUSE="setproctitle"
|
||||
|
||||
RDEPEND="dev-libs/protobuf-c
|
||||
setproctitle? ( dev-libs/libbsd )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-text/asciidoc
|
||||
app-text/xmlto"
|
||||
|
||||
CONFIG_CHECK="~CHECKPOINT_RESTORE ~NAMESPACES ~PID_NS ~FHANDLE ~EVENTFD ~EPOLL ~INOTIFY_USER
|
||||
~IA32_EMULATION ~UNIX_DIAG ~INET_DIAG ~INET_UDP_DIAG ~PACKET_DIAG ~NETLINK_DIAG"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${PN}-1.3.1-flags.patch
|
||||
epatch "${FILESDIR}"/${PN}-1.3.1-makefile.patch
|
||||
epatch "${FILESDIR}"/${PN}-1.5-automagic-libbsd.patch
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
unset ARCH
|
||||
emake CC="$(tc-getCC)" LD="$(tc-getLD)" V=1 SETPROCTITLE=$(usex setproctitle) WERROR=0 all docs
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# root privileges are required to dump all necessary info
|
||||
if [[ ${EUID} -eq 0 ]] ; then
|
||||
emake -j1 CC="$(tc-getCC)" V=1 WERROR=0 test
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake SYSCONFDIR="${EPREFIX}"/etc PREFIX="${EPREFIX}"/usr DESTDIR="${D}" install
|
||||
dodoc CREDITS README
|
||||
}
|
Loading…
Add table
Reference in a new issue