Sync with portage [Mon Dec 5 20:25:30 MSK 2011].
This commit is contained in:
parent
34331654be
commit
baf6d7c59f
144 changed files with 1827 additions and 511 deletions
|
@ -2,4 +2,5 @@ DIST afflib-3.3.4.tar.gz 1894802 RMD160 ee64a8e312269348a90ece7edf517b0209a2d0c9
|
|||
DIST afflib-3.5.2.tar.gz 10773038 RMD160 5b903ab74975bb0c2128cbd252a4bf0a46728c87 SHA1 c188af3d0b80c2810435127858e14724d8de588d SHA256 918c34493b63ca208b4855e883c0e0b2ae589cbd7ec6e29fb7d5d775b4b67c9c
|
||||
DIST afflib-3.5.8.tar.gz 10789347 RMD160 7b5df1c1bfd9374299746345b18fb2d1982ad1e6 SHA1 18584d2360d47eb3d4a1e2ea54fab54362df67e9 SHA256 4337cbe567e6479dccb4e326006c72ac86027ae5c01829c26f79c7e11b858d88
|
||||
DIST afflib-3.6.12.tar.gz 767740 RMD160 aebb740513992d6ef24cf6a54a965ff3c1a5d9cb SHA1 1bd156a7e970253c3e2df5b55046142073b311fe SHA256 07e89cb01116663a631dcd24fa07f1ab44f5f3f60b0f5244084d6d2a71b623d0
|
||||
DIST afflib-3.6.15.tar.gz 779265 RMD160 4a9c3968e5f23b75e877c4057512caea1115bc52 SHA1 71bb9b28acd1f6f4668bb491cea410294b267b81 SHA256 cb1813fa6ff6d65f585ef1e3c71cbcd731461bf726e59fc4a12ba0f1040eafde
|
||||
DIST afflib-3.6.8.tar.gz 778037 RMD160 e424f1f9cb781e7e0b7cb194c23b3c31652677c2 SHA1 320bc87bfcea95959fbfb049a8599ea58ce75f30 SHA256 719ed65cc5410916b3ca02dceb83d08fd0364ffdbd3e08a7e6118557ee36b246
|
||||
|
|
61
app-forensics/afflib/afflib-3.6.15.ebuild
Normal file
61
app-forensics/afflib/afflib-3.6.15.ebuild
Normal file
|
@ -0,0 +1,61 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.15.ebuild,v 1.1 2011/12/05 10:31:39 radhermit Exp $
|
||||
|
||||
EAPI="4"
|
||||
PYTHON_DEPEND="python? 2"
|
||||
|
||||
inherit autotools-utils python
|
||||
|
||||
DESCRIPTION="Library that implements the AFF image standard"
|
||||
HOMEPAGE="http://afflib.org/"
|
||||
SRC_URI="http://afflib.org/downloads/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD-4"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
|
||||
IUSE="fuse ncurses python qemu readline s3 static-libs threads"
|
||||
|
||||
RDEPEND="dev-libs/expat
|
||||
dev-libs/openssl
|
||||
sys-libs/zlib
|
||||
fuse? ( sys-fs/fuse )
|
||||
ncurses? ( sys-libs/ncurses )
|
||||
readline? ( sys-libs/readline )
|
||||
s3? ( net-misc/curl )"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-3.6.12-python-module.patch
|
||||
"${FILESDIR}"/${PN}-3.6.12-pyaff-header.patch
|
||||
)
|
||||
|
||||
pkg_setup() {
|
||||
if use python ; then
|
||||
python_set_active_version 2
|
||||
python_pkg_setup
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e "/FLAGS/s: -g::" configure.ac || die
|
||||
sed -i -e "/-static/d" tools/Makefile.am || die
|
||||
|
||||
autotools-utils_src_prepare
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Hacks for automagic dependencies
|
||||
use ncurses || export ac_cv_lib_ncurses_initscr=no
|
||||
use readline || export ac_cv_lib_readline_readline=no
|
||||
|
||||
local myeconfargs=(
|
||||
$(use_enable fuse)
|
||||
$(use_enable python)
|
||||
$(use_enable qemu)
|
||||
$(use_enable s3)
|
||||
$(use_enable threads threading)
|
||||
)
|
||||
autotools-utils_src_configure
|
||||
}
|
1
app-misc/datovka/Manifest
Normal file
1
app-misc/datovka/Manifest
Normal file
|
@ -0,0 +1 @@
|
|||
DIST datovka-1.7.tar.gz 883670 RMD160 a46d8b052b9e87216888ca9cd13c00e2e5d5ef34 SHA1 108ff6c9b85af3b06a96ce2a3917b0dbb78b5e24 SHA256 23ad782f42c80958b423d0ea3e39320338a85a66d2d326ae3ed2752135389ef9
|
|
@ -1,15 +1,15 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-misc/dsgui/dsgui-1.6.3.ebuild,v 1.1 2011/10/05 20:22:21 scarabeus Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-misc/datovka/datovka-1.7.ebuild,v 1.1 2011/12/05 14:02:03 scarabeus Exp $
|
||||
|
||||
EAPI=3
|
||||
EAPI=4
|
||||
|
||||
PYTHON_DEPEND="2"
|
||||
|
||||
inherit distutils
|
||||
|
||||
DESCRIPTION="GUI to access Czech eGov \"Datove schranky\""
|
||||
HOMEPAGE="http://labs.nic.cz/page/740/dsgui/"
|
||||
HOMEPAGE="http://labs.nic.cz/page/969/datovka/"
|
||||
SRC_URI="http://labs.nic.cz/files/labs/datove_schranky/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
@ -23,12 +23,13 @@ DEPEND="
|
|||
dev-python/reportlab
|
||||
dev-python/sqlalchemy
|
||||
media-fonts/dejavu
|
||||
>=net-libs/dslib-1.6
|
||||
>=net-libs/dslib-1.7
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
pkg_setup() {
|
||||
python_set_active_version 2
|
||||
python_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
|
@ -37,6 +38,6 @@ src_prepare() {
|
|||
|
||||
src_install() {
|
||||
distutils_src_install
|
||||
rm -rf "${ED}"/usr/share/dsgui/fonts/*
|
||||
dosym /usr/share/fonts/dejavu/DejaVuSans.ttf /usr/share/dsgui/fonts/DejaVuSans.ttf
|
||||
rm -rf "${ED}"/usr/share/${PN}/fonts/*
|
||||
dosym /usr/share/fonts/${PN}/DejaVuSans.ttf /usr/share/dsgui/fonts/DejaVuSans.ttf
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
DIST dsgui-1.6.3.tar.gz 874396 RMD160 f289ded3c415cc96d52363e51fc3622739287668 SHA1 4cff610bcaceabda969a879a2effdd5037e4cd97 SHA256 07929b02e162a965d6a1756066e39fc2bec8fcabb3ffb8498deef1302ab1f517
|
|
@ -1,26 +0,0 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-text/libwpg/libwpg-0.1.3.ebuild,v 1.1 2011/08/04 16:25:30 scarabeus Exp $
|
||||
|
||||
inherit base eutils
|
||||
|
||||
DESCRIPTION="C++ library to read and parse graphics in WPG"
|
||||
HOMEPAGE="http://libwpg.sourceforge.net/libwpg.htm"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0.1"
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND=">=app-text/libwpd-0.8.0"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig
|
||||
doc? ( app-doc/doxygen )"
|
||||
|
||||
src_compile() {
|
||||
econf \
|
||||
--disable-dependency-tracking \
|
||||
$(use_with doc docs)
|
||||
emake || die "emake failed"
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.25.ebuild,v 1.1 2011/11/30 15:49:28 eras Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.25.ebuild,v 1.2 2011/12/05 10:39:46 eras Exp $
|
||||
|
||||
EAPI=4
|
||||
inherit eutils flag-o-matic multilib autotools pam java-pkg-opt-2 db-use
|
||||
|
@ -185,6 +185,10 @@ src_install() {
|
|||
use static-libs || find "${D}"/usr/lib*/sasl2 -name 'lib*.la' -delete
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
preserve_old_lib /usr/$(get_libdir)/libsasl2.so.2.0.23
|
||||
}
|
||||
|
||||
pkg_postinst () {
|
||||
# Generate an empty sasldb2 with correct permissions.
|
||||
if ( use berkdb || use gdbm ) && [[ ! -f "${ROOT}/etc/sasl2/sasldb2" ]] ; then
|
||||
|
@ -205,4 +209,6 @@ pkg_postinst () {
|
|||
elog " gpasswd -a postfix mail"
|
||||
elog "to add the 'postfix' user to the 'mail' group."
|
||||
fi
|
||||
|
||||
preserve_old_lib_notify /usr/$(get_libdir)/libsasl2.so.2.0.23
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Calendar-Simple/Calendar-Simple-1.210.0.ebuild,v 1.1 2011/09/01 11:37:17 tove Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Calendar-Simple/Calendar-Simple-1.210.0.ebuild,v 1.2 2011/12/05 12:11:49 jer Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
|
@ -11,7 +11,7 @@ inherit perl-module
|
|||
DESCRIPTION="Perl extension to create simple calendars"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
||||
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=""
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/fakefs-0.2.1-r1.ebuild,v 1.4 2010/12/28 08:17:33 grobian Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/fakefs-0.2.1-r1.ebuild,v 1.5 2011/12/05 13:04:28 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -20,7 +20,7 @@ HOMEPAGE="http://github.com/defunkt/fakefs"
|
|||
|
||||
LICENSE="as-is" # truly
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
all_ruby_prepare() {
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
DIST gettext_i18n_rails-0.2.20.gem 16384 RMD160 e6393d830b69e8e01e890585ba9de1c5424d5bc3 SHA1 eed6bc404025ca42fa5ee584cc9ecbe65fbf6e35 SHA256 379c248692bd6ce2cfe0366f7f838b3ffb847f96e37e586de4e894e4d4443e8d
|
||||
DIST gettext_i18n_rails-0.3.0.gem 16384 RMD160 1a6c8f62ef312cdd494ec9a82946cc37a9592660 SHA1 be381b37756f7878c88bf473ad3dff0f577739c0 SHA256 9e774e57b098be064ecb86d322514462aaaa97c64f9e075cbf32ab2275d7b239
|
||||
DIST gettext_i18n_rails-0.3.2.gem 16896 RMD160 8b0dfd7ee21f732fa2ed89f70927454c8e124041 SHA1 c018223e0c72b1a05f72ce0a309ef514fda4b96f SHA256 0df411f8af93968b753c7573b506bb2c3b840012de55ff6db5c513d558cef256
|
||||
|
|
32
dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.3.2.ebuild
Normal file
32
dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.3.2.ebuild
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.3.2.ebuild,v 1.1 2011/12/05 06:59:14 graaff Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
# jruby support requires sqlite3 support for jruby.
|
||||
USE_RUBY="ruby18 ree18"
|
||||
|
||||
RUBY_FAKEGEM_TASK_DOC=""
|
||||
RUBY_FAKEGEM_EXTRADOC="Readme.md"
|
||||
|
||||
RUBY_FAKEGEM_TASK_TEST="spec"
|
||||
|
||||
RUBY_FAKEGEM_EXTRAINSTALL="init.rb VERSION"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="FastGettext / Rails integration."
|
||||
HOMEPAGE="https://github.com/grosser/gettext_i18n_rails"
|
||||
|
||||
LICENSE="public-domain"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
ruby_add_bdepend "test? ( dev-ruby/rspec:2 dev-ruby/activerecord )"
|
||||
ruby_add_rdepend "dev-ruby/fast_gettext dev-ruby/ruby_parser"
|
||||
|
||||
all_ruby_prepare() {
|
||||
rm Gemfile Gemfile.lock || die
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.2.ebuild,v 1.1 2011/09/11 06:10:03 graaff Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.2.ebuild,v 1.2 2011/12/05 14:04:24 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -20,7 +20,7 @@ HOMEPAGE="http://libxml.rubyforge.org"
|
|||
|
||||
LICENSE="as-is"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="${RDEPEND} dev-libs/libxml2"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/memcache-client/memcache-client-1.8.5.ebuild,v 1.8 2011/09/09 07:55:46 grobian Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/memcache-client/memcache-client-1.8.5.ebuild,v 1.9 2011/12/05 13:56:31 naota Exp $
|
||||
|
||||
EAPI="2"
|
||||
USE_RUBY="ruby18 ree18 jruby"
|
||||
|
@ -16,7 +16,7 @@ DESCRIPTION="A ruby library for accessing memcached."
|
|||
HOMEPAGE="http://github.com/mperham/memcache-client"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
ruby_add_bdepend "test? ( dev-ruby/flexmock )"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/polyglot/polyglot-0.3.3.ebuild,v 1.1 2011/11/02 06:31:12 graaff Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/polyglot/polyglot-0.3.3.ebuild,v 1.2 2011/12/05 13:37:55 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
USE_RUBY="ruby18 ruby19 jruby ree18 rbx"
|
||||
|
@ -16,7 +16,7 @@ DESCRIPTION="Polyglot provides support for fully-custom DSLs."
|
|||
HOMEPAGE="http://polyglot.rubyforge.org/"
|
||||
LICENSE="MIT"
|
||||
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~sparc-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~sparc-solaris ~x86-solaris"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/rack-1.1.2.ebuild,v 1.1 2011/03/14 19:25:15 graaff Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/rack-1.1.2.ebuild,v 1.2 2011/12/05 13:30:55 naota Exp $
|
||||
|
||||
EAPI="2"
|
||||
USE_RUBY="ruby18 ree18 ruby19 jruby"
|
||||
|
@ -17,7 +17,7 @@ SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
|
|||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
# The gem has automagic dependencies over mongrel, ruby-openid,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/right_http_connection/right_http_connection-1.2.4-r1.ebuild,v 1.6 2011/08/07 14:57:35 armin76 Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/right_http_connection/right_http_connection-1.2.4-r1.ebuild,v 1.7 2011/12/05 14:22:42 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -19,7 +19,7 @@ HOMEPAGE="http://rightscale.rubyforge.org/"
|
|||
|
||||
LICENSE="as-is" # truly
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
all_ruby_prepare() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/samuel-0.3.2.ebuild,v 1.9 2011/08/07 17:58:23 armin76 Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/samuel-0.3.2.ebuild,v 1.10 2011/12/05 14:29:11 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -15,7 +15,7 @@ HOMEPAGE="http://github.com/chrisk/samuel"
|
|||
|
||||
LICENSE="as-is" # truly
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
ruby_add_bdepend "
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/session/session-3.1.0-r1.ebuild,v 1.2 2011/07/24 18:05:54 armin76 Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/session/session-3.1.0-r1.ebuild,v 1.3 2011/12/05 13:48:36 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -21,12 +21,12 @@ HOMEPAGE="http://codeforpeople.com/lib/ruby/session/"
|
|||
# by author.
|
||||
LICENSE="Ruby"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE="test"
|
||||
|
||||
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
|
||||
|
||||
DEPEND="${DEPEND} test? ( sys-apps/coreutils )"
|
||||
DEPEND="${DEPEND} test? ( || ( sys-apps/coreutils sys-freebsd/freebsd-bin ) )"
|
||||
RDEPEND="${RDEPEND}"
|
||||
|
||||
all_ruby_prepare() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda/shoulda-2.11.3.ebuild,v 1.2 2011/08/07 14:53:10 armin76 Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda/shoulda-2.11.3.ebuild,v 1.3 2011/12/05 14:16:30 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -18,7 +18,7 @@ S="${WORKDIR}/thoughtbot-${PN}-*"
|
|||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
# tests seem to be quite broken :( They require working version of
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/syntax/syntax-1.0.0-r3.ebuild,v 1.1 2011/02/24 06:49:59 graaff Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/syntax/syntax-1.0.0-r3.ebuild,v 1.2 2011/12/05 13:00:37 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
|
@ -19,7 +19,7 @@ HOMEPAGE="http://syntax.rubyforge.org"
|
|||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE="test"
|
||||
|
||||
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.4.0.ebuild,v 1.2 2011/10/12 17:45:41 graaff Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.4.0.ebuild,v 1.3 2011/12/05 13:26:00 naota Exp $
|
||||
|
||||
EAPI=2
|
||||
USE_RUBY="ruby18 ruby19 ree18 jruby"
|
||||
|
@ -28,7 +28,7 @@ HOMEPAGE="http://test-unit.rubyforge.org/"
|
|||
|
||||
LICENSE="Ruby"
|
||||
SLOT="2"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
all_ruby_compile() {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
DIST mercurial-1.7.tar.gz 2468587 RMD160 1103d8033309a69ed76a29d40823f45877dee5b9 SHA1 54f5f58365c79dd897e0e490043a5b52aa50aae1 SHA256 19125eb6497c3aeb90a7ad9d5ed7ac2499935c1df796611b017646512f38ba5a
|
||||
DIST mercurial-1.9.2.tar.gz 2972849 RMD160 fa5824a16481dd612aafc59ca99903375470b994 SHA1 3eabcaa265d2497fa0fdd6751a73061fcaeb4200 SHA256 481309264d8528a871aab013068c48fa3a6072b016a4095a22230cfdfb8bb9aa
|
||||
DIST mercurial-1.9.3.tar.gz 2977205 RMD160 badc314f0a364c3e64131247665ebbc63d1533a9 SHA1 6be1b85d7cfd67283f4c76ed64570110b99a3fe1 SHA256 53d8390379b81371f60729decd15f0961777b52ed7514d29c66c1873b918d685
|
||||
DIST mercurial-2.0.1.tar.gz 3128233 RMD160 1c2e84fb5ac1eef3dbdd64f16e76e99fdf34fc98 SHA1 7983f564c06aef598fcfd7f8c1c33f4669362760 SHA256 6b9e6870e21e7161bb2e44c09e078e622ad7dd46bf5a122d3155319919dc1b38
|
||||
DIST mercurial-2.0.tar.gz 3090977 RMD160 f0c5f143eabff4a6c06d512cecd718bf594d06b1 SHA1 5ede1b3f54d3be2af0657901e7013dde7c19b7c5 SHA256 affab78a4d5074c71f97c07fe211de958263444eb8d86b3ad6fb6d648eb6c594
|
||||
|
|
|
@ -1,139 +0,0 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-1.9.2.ebuild,v 1.2 2011/09/09 16:50:10 mgorny Exp $
|
||||
|
||||
EAPI=3
|
||||
PYTHON_DEPEND="2"
|
||||
PYTHON_USE_WITH="threads"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="3.* *-jython"
|
||||
|
||||
inherit bash-completion-r1 elisp-common eutils distutils
|
||||
|
||||
DESCRIPTION="Scalable distributed SCM"
|
||||
HOMEPAGE="http://mercurial.selenic.com/"
|
||||
SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="bugzilla emacs gpg test tk zsh-completion"
|
||||
|
||||
RDEPEND="bugzilla? ( dev-python/mysql-python )
|
||||
gpg? ( app-crypt/gnupg )
|
||||
tk? ( dev-lang/tk )
|
||||
zsh-completion? ( app-shells/zsh )"
|
||||
DEPEND="emacs? ( virtual/emacs )
|
||||
test? ( app-arch/unzip
|
||||
dev-python/pygments )"
|
||||
|
||||
PYTHON_CFLAGS=(
|
||||
"2.* + -fno-strict-aliasing"
|
||||
"* - -ftracer -ftree-vectorize"
|
||||
)
|
||||
|
||||
PYTHON_MODNAME="${PN} hgext"
|
||||
SITEFILE="70${PN}-gentoo.el"
|
||||
|
||||
src_prepare() {
|
||||
distutils_src_prepare
|
||||
|
||||
# fix up logic that won't work in Gentoo Prefix (also won't outside in
|
||||
# certain cases), bug #362891
|
||||
sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
distutils_src_compile
|
||||
|
||||
if use emacs; then
|
||||
cd "${S}"/contrib
|
||||
elisp-compile mercurial.el || die "elisp-compile failed!"
|
||||
fi
|
||||
|
||||
rm -rf contrib/{win32,macosx}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils_src_install
|
||||
|
||||
newbashcomp contrib/bash_completion ${PN} || die
|
||||
|
||||
if use zsh-completion ; then
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins contrib/zsh_completion _hg
|
||||
fi
|
||||
|
||||
rm -f doc/*.?.txt
|
||||
dodoc CONTRIBUTORS PKG-INFO README doc/*.txt
|
||||
cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/
|
||||
|
||||
dobin hgeditor
|
||||
dobin contrib/hgk
|
||||
dobin contrib/hg-ssh
|
||||
|
||||
rm -f contrib/hgk contrib/hg-ssh
|
||||
|
||||
rm -f contrib/bash_completion
|
||||
cp -r contrib "${ED}"/usr/share/doc/${PF}/
|
||||
doman doc/*.?
|
||||
|
||||
cat > "${T}/80mercurial" <<-EOF
|
||||
HG="${EPREFIX}/usr/bin/hg"
|
||||
EOF
|
||||
doenvd "${T}/80mercurial"
|
||||
|
||||
if use emacs; then
|
||||
elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!"
|
||||
elisp-site-file-install "${FILESDIR}"/${SITEFILE}
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cd "${S}/tests/"
|
||||
rm -rf *svn* # Subversion tests fail with 1.5
|
||||
rm -f test-archive # Fails due to verbose tar output changes
|
||||
rm -f test-convert-baz* # GNU Arch baz
|
||||
rm -f test-convert-cvs* # CVS
|
||||
rm -f test-convert-darcs* # Darcs
|
||||
rm -f test-convert-git* # git
|
||||
rm -f test-convert-mtn* # monotone
|
||||
rm -f test-convert-tla* # GNU Arch tla
|
||||
rm -f test-doctest* # doctest always fails with python 2.5.x
|
||||
if [[ ${EUID} -eq 0 ]]; then
|
||||
einfo "Removing tests which require user privileges to succeed"
|
||||
rm -f test-command-template # Test is broken when run as root
|
||||
rm -f test-convert # Test is broken when run as root
|
||||
rm -f test-lock-badness # Test is broken when run as root
|
||||
rm -f test-permissions # Test is broken when run as root
|
||||
rm -f test-pull-permission # Test is broken when run as root
|
||||
rm -f test-clone-failure
|
||||
rm -f test-journal-exists
|
||||
rm -f test-repair-strip
|
||||
fi
|
||||
|
||||
testing() {
|
||||
local testdir="${T}/tests-${PYTHON_ABI}"
|
||||
rm -rf "${testdir}"
|
||||
"$(PYTHON)" run-tests.py --tmpdir="${testdir}"
|
||||
}
|
||||
python_execute_function testing
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
distutils_pkg_postinst
|
||||
use emacs && elisp-site-regen
|
||||
|
||||
elog "If you want to convert repositories from other tools using convert"
|
||||
elog "extension please install correct tool:"
|
||||
elog " dev-vcs/cvs"
|
||||
elog " dev-vcs/darcs"
|
||||
elog " dev-vcs/git"
|
||||
elog " dev-vcs/monotone"
|
||||
elog " dev-vcs/subversion"
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
distutils_pkg_postrm
|
||||
use emacs && elisp-site-regen
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-1.9.3.ebuild,v 1.1 2011/10/11 14:50:01 djc Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.0.1.ebuild,v 1.1 2011/12/05 11:45:11 djc Exp $
|
||||
|
||||
EAPI=3
|
||||
PYTHON_DEPEND="2"
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/java-vm-2.eclass,v 1.41 2011/12/04 06:52:39 ferringb Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/java-vm-2.eclass,v 1.42 2011/12/05 07:07:44 floppym Exp $
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# @eclass-begin
|
||||
|
@ -252,7 +252,7 @@ java-vm_sandbox-predict() {
|
|||
local path path_arr=("$@")
|
||||
# subshell this to prevent IFS bleeding out dependant on bash version.
|
||||
# could use local, which *should* work, but that requires a lot of testing.
|
||||
path=$(IFS=":" echo "${path_arr[*]}")
|
||||
path=$(IFS=":"; echo "${path_arr[*]}")
|
||||
dodir /etc/sandbox.d
|
||||
echo "SANDBOX_PREDICT=\"${path}\"" > "${ED}/etc/sandbox.d/20${VMHANDLE}" \
|
||||
|| die "Failed to write sandbox control file"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.31 2011/10/21 06:32:29 graaff Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.32 2011/12/05 12:24:33 graaff Exp $
|
||||
|
||||
# @ECLASS: ruby-fakegem.eclass
|
||||
# @MAINTAINER:
|
||||
|
@ -61,6 +61,13 @@ inherit ruby-ng
|
|||
# Filename of .gemspec file to install instead of generating a generic one.
|
||||
# RUBY_FAKEGEM_GEMSPEC=""
|
||||
|
||||
# @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRAINSTALL
|
||||
# @DESCRIPTION:
|
||||
# List of files and directories relative to the top directory that also
|
||||
# get installed. Some gems provide extra files such as version information,
|
||||
# Rails generators, or data that needs to be installed as well.
|
||||
# RUBY_FAKEGEM_EXTRAINSTALL=""
|
||||
|
||||
RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}"
|
||||
RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}"
|
||||
RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}"
|
||||
|
@ -209,7 +216,7 @@ ruby_fakegem_genspec() {
|
|||
# so better taking this into consideration.
|
||||
local quoted_description=${DESCRIPTION//\"/\\\"}
|
||||
cat - > $1 <<EOF
|
||||
# generated by ruby-fakegem.eclass $Revision: 1.31 $
|
||||
# generated by ruby-fakegem.eclass $Revision: 1.32 $
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "${RUBY_FAKEGEM_NAME}"
|
||||
s.version = "${RUBY_FAKEGEM_VERSION}"
|
||||
|
@ -259,7 +266,7 @@ ruby_fakegem_binwrapper() {
|
|||
#!${rubycmd}
|
||||
# This is a simplified version of the RubyGems wrapper
|
||||
#
|
||||
# Generated by ruby-fakegem.eclass $Revision: 1.31 $
|
||||
# Generated by ruby-fakegem.eclass $Revision: 1.32 $
|
||||
|
||||
require 'rubygems'
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/geki2-KXL/geki2-KXL-2.0.3-r2.ebuild,v 1.3 2009/06/03 13:20:58 nyhm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/geki2-KXL/geki2-KXL-2.0.3-r2.ebuild,v 1.4 2011/12/05 08:46:26 mr_bones_ Exp $
|
||||
|
||||
inherit autotools eutils games
|
||||
|
||||
DESCRIPTION="2D length scroll shooting game"
|
||||
HOMEPAGE="http://kxl.hn.org/"
|
||||
SRC_URI="http://kxl.hn.org/download/${P}.tar.gz
|
||||
HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html"
|
||||
SRC_URI="mirror://gentoo/${P}.tar.gz
|
||||
mirror://gentoo/${PN}.png"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild,v 1.3 2009/06/03 13:20:31 nyhm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild,v 1.4 2011/12/05 08:46:26 mr_bones_ Exp $
|
||||
|
||||
inherit autotools eutils games
|
||||
|
||||
DESCRIPTION="2D length scroll shooting game"
|
||||
HOMEPAGE="http://kxl.hn.org/"
|
||||
SRC_URI="http://kxl.hn.org/download/${P}.tar.gz
|
||||
HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html"
|
||||
SRC_URI="mirror://gentoo/${P}.tar.gz
|
||||
mirror://gentoo/${PN}.png"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/spacearyarya-kxl/spacearyarya-kxl-1.0.2-r1.ebuild,v 1.6 2009/06/03 13:21:33 nyhm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/spacearyarya-kxl/spacearyarya-kxl-1.0.2-r1.ebuild,v 1.7 2011/12/05 08:46:26 mr_bones_ Exp $
|
||||
|
||||
inherit autotools eutils games
|
||||
|
||||
MY_P=SpaceAryarya-KXL-${PV}
|
||||
DESCRIPTION="A 2D/3D shooting game"
|
||||
HOMEPAGE="http://kxl.orz.hm/"
|
||||
HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html"
|
||||
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-arcade/grande-KXL/grande-KXL-0.6.ebuild,v 1.10 2009/06/03 13:20:10 nyhm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-arcade/grande-KXL/grande-KXL-0.6.ebuild,v 1.11 2011/12/05 09:08:05 mr_bones_ Exp $
|
||||
|
||||
inherit autotools eutils games
|
||||
|
||||
DESCRIPTION="ZANAC type game"
|
||||
HOMEPAGE="http://kxl.orz.hm/"
|
||||
HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html"
|
||||
SRC_URI="mirror://gentoo/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
DIST xye-0.10.0.tar.gz 1870191 RMD160 fd2dc44b86998ed7cc8cddee400ad4fa940ab0f2 SHA1 f438060da179ef578e25b654289b440633d23957 SHA256 1085cacbe25f6c15a9f28bdb66e5141be55d2cea2d475f8db935f9091be5dfe8
|
||||
DIST xye-0.11.2.tar.gz 3182248 RMD160 f1ec598fb82c9a187cb541f8a81e82b0fac98e22 SHA1 c68e1e8ae8a89ab39273441cf9c4814a91bb28a8 SHA256 9bdc9427659708a2646993f1d01e434530208ba49f9b8854d599b2f91e8c5b2c
|
||||
DIST xye-0.12.0.tar.gz 3074536 RMD160 2445358bd93ba815b70eb9be259a5be1fb4bda15 SHA1 23c9017733ca7ed7d1f446c7dad1ccce689363c6 SHA256 0116afe64c64684feee3a3f9ea8e2308059afe3d3d30edc8c3731d573eb96a92
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/xye-0.11.2.ebuild,v 1.1 2011/10/29 23:57:16 mr_bones_ Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/xye-0.12.0.ebuild,v 1.1 2011/12/05 06:39:56 mr_bones_ Exp $
|
||||
|
||||
EAPI=2
|
||||
inherit autotools eutils games
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-strategy/hedgewars/hedgewars-0.9.16.ebuild,v 1.4 2011/11/11 09:17:43 phajdan.jr Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-strategy/hedgewars/hedgewars-0.9.16.ebuild,v 1.5 2011/12/05 14:34:55 tomka Exp $
|
||||
|
||||
EAPI=2
|
||||
CMAKE_BUILD_TYPE=Release
|
||||
|
@ -13,7 +13,7 @@ SRC_URI="http://download.gna.org/hedgewars/${MY_P}.tar.bz2"
|
|||
|
||||
LICENSE="GPL-2 Apache-2.0 FDL-1.3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 x86"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
QA_DT_HASH=${GAMES_BINDIR}/hwengine # pascal sucks
|
||||
|
||||
|
|
|
@ -1,75 +0,0 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-utils/gnome-utils-2.32.0-r1.ebuild,v 1.8 2011/03/23 08:14:44 nirbheek Exp $
|
||||
|
||||
EAPI="3"
|
||||
GCONF_DEBUG="yes"
|
||||
|
||||
inherit gnome2
|
||||
|
||||
DESCRIPTION="Utilities for the Gnome2 desktop"
|
||||
HOMEPAGE="http://www.gnome.org/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
|
||||
IUSE="bonobo doc ipv6 test"
|
||||
|
||||
RDEPEND=">=dev-libs/glib-2.20:2
|
||||
>=x11-libs/gtk+-2.20:2
|
||||
>=gnome-base/libgtop-2.12
|
||||
>=gnome-base/gconf-2:2
|
||||
>=media-libs/libcanberra-0.4[gtk]
|
||||
x11-libs/libXext
|
||||
x11-libs/libX11
|
||||
bonobo? ( || ( gnome-base/gnome-panel[bonobo] <gnome-base/gnome-panel-2.32 ) )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
x11-proto/xextproto
|
||||
app-text/gnome-doc-utils
|
||||
app-text/scrollkeeper
|
||||
>=dev-util/intltool-0.40
|
||||
>=dev-util/pkgconfig-0.9
|
||||
doc? ( >=dev-util/gtk-doc-1.10 )"
|
||||
|
||||
pkg_setup() {
|
||||
if ! use debug; then
|
||||
G2CONF="${G2CONF} --enable-debug=minimum"
|
||||
fi
|
||||
|
||||
G2CONF="${G2CONF}
|
||||
$(use_enable ipv6)
|
||||
$(use_enable bonobo gdict-applet)
|
||||
--disable-maintainer-flags
|
||||
--enable-zlib
|
||||
--disable-static
|
||||
--disable-schemas-install
|
||||
--disable-scrollkeeper"
|
||||
DOCS="AUTHORS ChangeLog NEWS README THANKS"
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
gnome2_src_prepare
|
||||
|
||||
# Remove idiotic -D.*DISABLE_DEPRECATED cflags
|
||||
# This method is kinda prone to breakage. Recheck carefully with next bump.
|
||||
# bug 339074
|
||||
find . -iname 'Makefile.am' -exec \
|
||||
sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed"
|
||||
# Do Makefile.in after Makefile.am to avoid automake maintainer-mode
|
||||
find . -iname 'Makefile.in' -exec \
|
||||
sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed"
|
||||
|
||||
if ! use test ; then
|
||||
sed -e 's/ tests//' -i logview/Makefile.{am,in} || die "sed 2 failed"
|
||||
fi
|
||||
|
||||
# Fix intltoolize broken file, see upstream #577133
|
||||
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
|
||||
|| die "sed failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
gnome2_src_install
|
||||
find "${ED}" -name "*.la" -delete || die "remove of la files failed"
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-utils/gnome-utils-3.2.1.ebuild,v 1.1 2011/11/06 04:23:12 tetromino Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-utils/gnome-utils-3.2.1.ebuild,v 1.2 2011/12/05 11:29:40 pacho Exp $
|
||||
|
||||
EAPI="4"
|
||||
GCONF_DEBUG="yes"
|
||||
|
@ -8,7 +8,7 @@ GNOME2_LA_PUNT="yes"
|
|||
|
||||
inherit gnome2
|
||||
|
||||
DESCRIPTION="Utilities for the Gnome2 desktop"
|
||||
DESCRIPTION="Utilities for the Gnome desktop"
|
||||
HOMEPAGE="http://www.gnome.org/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
DIST maildrop-2.5.4.tar.bz2 2082167 RMD160 a71c08fc2951dd122740870186693ac112e59ebd SHA1 6d9514bb1df207a2036779e14e4f0ea350f5d1ee SHA256 7621b4aede007d478dbd8bf88216e0289c18beddd36bbf429e85e3e66ca9e002
|
||||
DIST maildrop-2.5.5.tar.bz2 2158846 RMD160 a614d3761c8b35cee0ea838d6ab5239bde4e08dd SHA1 57b307972b884b4f8fea840c56d2ff37f95139a3 SHA256 7484382852075f452850a082454c8c47a65d52f00fe64e0b1a63ed7ccf25288c
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
- AC_CHECK_LIB(db, db_open, [ LIBDB=-ldb ; LIBS="-ldb $LIBS"],
|
||||
- AC_CHECK_LIB(db, db_env_create, [ LIBDB=-ldb; LIBS="-ldb $LIBS"])
|
||||
- ))
|
||||
+for dbname in db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db4.2 db42 db-4.1 db4.1 db41 db-4.0 db4.0 db-4 db40 db4 db
|
||||
+for dbname in db-5.2 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db4.2 db42 db-4.1 db4.1 db41 db-4.0 db4.0 db-4 db40 db4 db
|
||||
+ do
|
||||
+ AC_CHECK_LIB($dbname, db_create_4002, [ LIBDB=-l$dbname ; LIBS="-l$dbname $LIBS"; break ],
|
||||
+ AC_CHECK_LIB($dbname, db_create_4001, [ LIBDB=-l$dbname ; LIBS="-l$dbname $LIBS"; break ],
|
||||
|
|
138
mail-filter/maildrop/maildrop-2.5.5.ebuild
Normal file
138
mail-filter/maildrop/maildrop-2.5.5.ebuild
Normal file
|
@ -0,0 +1,138 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/mail-filter/maildrop/maildrop-2.5.5.ebuild,v 1.1 2011/12/05 13:36:53 eras Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils flag-o-matic autotools
|
||||
|
||||
DESCRIPTION="Mail delivery agent/filter"
|
||||
[[ -z ${PV/?.?/} ]] && SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
|
||||
[[ -z ${PV/?.?.?/} ]] && SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
|
||||
[[ -z ${SRC_URI} ]] && SRC_URI="http://www.courier-mta.org/beta/${PN}/${P%%_pre}.tar.bz2"
|
||||
HOMEPAGE="http://www.courier-mta.org/maildrop/"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
||||
IUSE="berkdb debug fam gdbm ldap mysql postgres static-libs authlib +tools"
|
||||
|
||||
CDEPEND="!mail-mta/courier
|
||||
net-mail/mailbase
|
||||
dev-libs/libpcre
|
||||
net-dns/libidn
|
||||
gdbm? ( >=sys-libs/gdbm-1.8.0 )
|
||||
mysql? ( net-libs/courier-authlib )
|
||||
postgres? ( net-libs/courier-authlib )
|
||||
ldap? ( net-libs/courier-authlib )
|
||||
authlib? ( net-libs/courier-authlib )
|
||||
fam? ( virtual/fam )
|
||||
!gdbm? (
|
||||
berkdb? ( >=sys-libs/db-3 )
|
||||
)
|
||||
tools? (
|
||||
!mail-mta/netqmail
|
||||
!net-mail/courier-imap
|
||||
!mail-mta/mini-qmail
|
||||
)"
|
||||
DEPEND="${CDEPEND}
|
||||
dev-util/pkgconfig"
|
||||
RDEPEND="${CDEPEND}
|
||||
dev-lang/perl"
|
||||
REQUIRED_USE="mysql? ( authlib )
|
||||
postgres? ( authlib )
|
||||
ldap? ( authlib )"
|
||||
|
||||
S=${WORKDIR}/${P%%_pre}
|
||||
|
||||
src_prepare() {
|
||||
# Prefer gdbm over berkdb
|
||||
if use gdbm ; then
|
||||
use berkdb && elog "Both gdbm and berkdb selected. Using gdbm."
|
||||
elif use berkdb ; then
|
||||
epatch "${FILESDIR}"/${PN}-2.5.1-db.patch
|
||||
fi
|
||||
|
||||
if ! use fam ; then
|
||||
epatch "${FILESDIR}"/${PN}-1.8.1-disable-fam.patch
|
||||
fi
|
||||
|
||||
# no need to error out if no default - it will be given to econf anyway
|
||||
sed -i -e \
|
||||
's~AC_MSG_ERROR(Cannot determine default mailbox)~SPOOLDIR="./.maildir"~' \
|
||||
"${S}"/maildrop/configure.in || die "sed failed"
|
||||
epatch "${FILESDIR}"/${PN}-testsuite.patch
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf
|
||||
local mytrustedusers="apache dspam root mail fetchmail"
|
||||
mytrustedusers+=" daemon postmaster qmaild mmdf vmail alias"
|
||||
|
||||
# These flags make maildrop cry
|
||||
replace-flags -Os -O2
|
||||
filter-flags -fomit-frame-pointer
|
||||
|
||||
if use gdbm ; then
|
||||
myconf="${myconf} --with-db=gdbm"
|
||||
elif use berkdb ; then
|
||||
myconf="${myconf} --with-db=db"
|
||||
else
|
||||
myconf="${myconf} --without-db"
|
||||
fi
|
||||
|
||||
if ! use mysql && ! use postgres && ! use ldap && ! use authlib ; then
|
||||
myconf="${myconf} --disable-authlib"
|
||||
fi
|
||||
|
||||
# Default mailbox is $HOME/.maildir for Gentoo
|
||||
maildrop_cv_SYS_INSTALL_MBOXDIR="./.maildir" econf \
|
||||
$(use_enable fam) \
|
||||
--disable-dependency-tracker \
|
||||
--with-devel \
|
||||
--disable-tempdir \
|
||||
--enable-syslog=1 \
|
||||
--enable-use-flock=1 \
|
||||
--enable-use-dotlock=1 \
|
||||
--enable-restrict-trusted=1 \
|
||||
--enable-trusted-users="${mytrustedusers}" \
|
||||
--enable-maildrop-uid=root \
|
||||
--enable-maildrop-gid=mail \
|
||||
--enable-sendmail=/usr/sbin/sendmail \
|
||||
--cache-file="${S}"/configuring.cache \
|
||||
$(use_enable static-libs static) \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
|
||||
fperms 4755 /usr/bin/maildrop
|
||||
|
||||
dodoc AUTHORS ChangeLog INSTALL NEWS README \
|
||||
README.postfix UPGRADE maildroptips.txt
|
||||
docinto unicode
|
||||
dodoc unicode/README
|
||||
docinto maildir
|
||||
dodoc maildir/AUTHORS maildir/INSTALL maildir/README*.txt
|
||||
|
||||
# bugs #61116 #374009
|
||||
if ! use tools ; then
|
||||
for tool in "maildirmake" "deliverquota"; do
|
||||
rm "${D}/usr/bin/${tool}"
|
||||
rm "${D}/usr/share/man/man"[0-9]"/${tool}."[0-9]
|
||||
rm "${D}/usr/share/maildrop/html/${tool}.html"
|
||||
done
|
||||
rm "${D}/usr/share/man/man5/maildir.5"
|
||||
fi
|
||||
|
||||
dodir "/usr/share/doc/${PF}"
|
||||
mv "${D}/usr/share/maildrop/html" "${D}/usr/share/doc/${PF}/" || die
|
||||
rm -rf "${D}"/usr/share/maildrop
|
||||
|
||||
dohtml *.html maildir/*.html
|
||||
|
||||
insinto /etc
|
||||
doins "${FILESDIR}"/maildroprc
|
||||
}
|
65
media-gfx/mypaint/mypaint-1.0.0-r1.ebuild
Normal file
65
media-gfx/mypaint/mypaint-1.0.0-r1.ebuild
Normal file
|
@ -0,0 +1,65 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-gfx/mypaint/mypaint-1.0.0-r1.ebuild,v 1.2 2011/12/05 10:14:04 maksbotan Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
PYTHON_DEPEND="2:2.4"
|
||||
|
||||
inherit eutils fdo-mime gnome2-utils multilib scons-utils toolchain-funcs python
|
||||
|
||||
DESCRIPTION="fast and easy graphics application for digital painters"
|
||||
HOMEPAGE="http://mypaint.intilinux.com/"
|
||||
SRC_URI="http://download.gna.org/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-python/pygtk
|
||||
dev-python/numpy
|
||||
>=dev-python/pycairo-1.4
|
||||
dev-libs/protobuf[python]"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-lang/swig
|
||||
dev-util/pkgconfig"
|
||||
|
||||
pkg_setup(){
|
||||
python_pkg_setup
|
||||
python_set_active_version 2
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# multilib support
|
||||
sed -i -e "s:lib\/${PN}:$(get_libdir)\/${PN}:" "${S}"/SConstruct || die
|
||||
# respect CXXFLAGS,CXX,LDFLAGS
|
||||
epatch "${FILESDIR}"/${PN}-0.9.1-gentoo.patch
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
#workaround scons bug with locales. Bug #352700
|
||||
export LANG="en_US.UTF-8"
|
||||
tc-export CXX
|
||||
escons || die "scons failed"
|
||||
}
|
||||
|
||||
src_install () {
|
||||
escons prefix="${D}/usr" install || die "scons install failed"
|
||||
newicon pixmaps/${PN}_logo.png ${PN}.png
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fdo-mime_desktop_database_update
|
||||
gnome2_icon_cache_update
|
||||
python_mod_optimize /usr/share/${PN}
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
fdo-mime_desktop_database_update
|
||||
python_mod_cleanup /usr/share/${PN}
|
||||
}
|
|
@ -1 +1,2 @@
|
|||
DIST ffmpegsource-2.16.2.1_pre587.tar.xz 334092 RMD160 36f1ee1ff9b377caa488e3f1f12cfc1a506840b0 SHA1 b1d5360cdc227710d171450f12fc8547b06581b0 SHA256 0664164838fe3642eddfdf4d0b34de6ddc0d61771084aca2943a64a64d036d77
|
||||
DIST ffms-2.16-src.tar.bz2 391101 RMD160 6aa08b3500f7145e88873006ba2bc083b36b1022 SHA1 0446375a2ec0cddee85de3b7b1c83eb5938ce8f1 SHA256 0a79d3937b901dbf3bff808e97340048a3e9c4841d893d47daab82be1bf3f7c1
|
||||
|
|
42
media-libs/ffmpegsource/ffmpegsource-2.16.2.1_pre587.ebuild
Normal file
42
media-libs/ffmpegsource/ffmpegsource-2.16.2.1_pre587.ebuild
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/ffmpegsource/ffmpegsource-2.16.2.1_pre587.ebuild,v 1.1 2011/12/05 09:47:00 maksbotan Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="An FFmpeg based source library for easy frame accurate access"
|
||||
HOMEPAGE="https://code.google.com/p/ffmpegsource/"
|
||||
SRC_URI="http://rion-overlay.googlecode.com/files/${P}.tar.xz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="postproc static-libs"
|
||||
|
||||
RDEPEND="
|
||||
sys-libs/zlib
|
||||
virtual/ffmpeg
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}/html" \
|
||||
$(use_enable postproc) \
|
||||
$(use_enable static-libs static) \
|
||||
--enable-shared
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
use static-libs || find "${D}" -name '*.la' -delete
|
||||
}
|
|
@ -1,2 +1,3 @@
|
|||
DIST libquvi-scripts-0.4.0.tar.xz 91116 RMD160 adfc03311a88b7e1be444a91e4c2b8f3bcd7077a SHA1 f2705fbcd13e989af83235d5e99b5a73c1e78a71 SHA256 2d072fce46853bc7e122d141921e386e9eff5a48baaed93de3db67088834df1c
|
||||
DIST libquvi-scripts-0.4.1.tar.xz 92200 RMD160 a98f1857ad11fe929f22b6e5e37c19bfc18b1b98 SHA1 a9d1426e847518a4f5efd65004f8712e23a7f46a SHA256 55a8c7920b149d17574ceaf61816c1203b6ca0adb6d5a32bed2e019517ff6383
|
||||
DIST libquvi-scripts-0.4.2.tar.xz 93568 RMD160 1e72fefcde19754f3d7e700934c4cf8910b5c495 SHA1 ce8a6448e049ff34fc114145908d492c51385214 SHA256 44eaf1c1a1613914b26d4ffc09b84d4df0ee952286c607784fb19dd2352d583d
|
||||
|
|
26
media-libs/libquvi-scripts/libquvi-scripts-0.4.2.ebuild
Normal file
26
media-libs/libquvi-scripts/libquvi-scripts-0.4.2.ebuild
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi-scripts/libquvi-scripts-0.4.2.ebuild,v 1.1 2011/12/05 10:39:44 radhermit Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
DESCRIPTION="Embedded lua scripts for libquvi"
|
||||
HOMEPAGE="http://quvi.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/quvi/${PV:0:3}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="offensive"
|
||||
|
||||
DEPEND="app-arch/xz-utils"
|
||||
|
||||
# tests fetch data from live websites, so it's rather normal that they
|
||||
# will fail
|
||||
RESTRICT="test"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-manual \
|
||||
$(use_with offensive nsfw)
|
||||
}
|
|
@ -1,2 +1,3 @@
|
|||
DIST quvi-0.2.19.tar.xz 363120 RMD160 1b0b7530e7ce0951220c90d1038b6e3833290b8c SHA1 24e6bb117c30e1ce5edaa24822a0d276dec4cbe9 SHA256 48bcdf2d58a7df8acd8c0562d3f485b2892902eb982a9d8eb279b273e722daeb
|
||||
DIST quvi-0.4.0.tar.xz 110296 RMD160 9c48a382efa5ec499e7650074693830c9a00d34b SHA1 e0daf38bd40cddd5b918d024674abd40c9e81793 SHA256 6979614bf96a50d8fac27b5f35e98f8f8c59f7f4212bcc3aec7d4cccb27e0f4e
|
||||
DIST quvi-0.4.1.tar.xz 117680 RMD160 c0c2114e1728e631eb832eba9696110e9aefa287 SHA1 6e16bc61d91607a01af6945d4bb22bf44a84f89a SHA256 4809d5d5f1ab217d7318f5f4a663d3dc0bbb7d7b94d5cbeb0ffaea6f2d6d6df7
|
||||
|
|
25
media-libs/quvi/quvi-0.4.1.ebuild
Normal file
25
media-libs/quvi/quvi-0.4.1.ebuild
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/quvi/quvi-0.4.1.ebuild,v 1.1 2011/12/05 10:42:46 radhermit Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
DESCRIPTION="A command line tool for parsing video download links"
|
||||
HOMEPAGE="http://quvi.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${PV:0:3}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=net-misc/curl-7.18.2
|
||||
>=media-libs/libquvi-0.4.0"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/xz-utils
|
||||
dev-util/pkgconfig"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-manual
|
||||
}
|
|
@ -2,5 +2,4 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
<use>
|
||||
<flag name="orc">Use <pkg>dev-lang/orc</pkg> for runtime
|
||||
optimisations</flag>
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
DIST cclive-0.7.2.tar.gz 62265 RMD160 c9c31172f7105a01309517c124519c4e55f0f7df SHA1 cd0613a5c658ffdfbe787fd78da691a25ec72bad SHA256 69156f416f3253147965153e815ff3bd7c2cf6de539963d9a3f3c674d486180e
|
||||
DIST cclive-0.7.6.tar.xz 271384 RMD160 bb2021f1ef516fae149a5dad0f946041b8a2463d SHA1 dcaa6845dd600c287e84491eaecfea673197be4f SHA256 feff6c4807357f75c8cd3a0a4c1057a2adae957b66257ce5c870010afbf29311
|
||||
DIST cclive-0.7.7.tar.xz 272004 RMD160 db65de9fbe8db3832ceefe0521e3a36d2bbf4c7a SHA1 8620398e0568b090e1885f65aa561dcfaf95a201 SHA256 cd96ab0721aaf3f9380ee1e93f85f499b5f7c7e4e08c77b3bb9203561bab992a
|
||||
DIST cclive-0.7.8.tar.xz 273356 RMD160 8f0b5c85a5155eff116279fff30ea2abe3f36477 SHA1 ac28f098392b95670bfaa1e09472426d69c270db SHA256 d7d4ece05d311edd0088416a4f2bd912b5524345be9a7321476dddd8469cbbc7
|
||||
|
|
22
media-video/cclive/cclive-0.7.8.ebuild
Normal file
22
media-video/cclive/cclive-0.7.8.ebuild
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-video/cclive/cclive-0.7.8.ebuild,v 1.1 2011/12/05 10:57:02 radhermit Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
DESCRIPTION="Command line tool for extracting videos from various websites"
|
||||
HOMEPAGE="http://cclive.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${PV:0:3}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libquvi-0.4.0
|
||||
>=dev-libs/boost-1.42
|
||||
>=net-misc/curl-7.20
|
||||
>=dev-libs/libpcre-8.02[cxx]"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/xz-utils
|
||||
dev-util/pkgconfig"
|
22
metadata/cache/app-forensics/afflib-3.6.15
vendored
Normal file
22
metadata/cache/app-forensics/afflib-3.6.15
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
dev-libs/expat dev-libs/openssl sys-libs/zlib fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) readline? ( sys-libs/readline ) s3? ( net-misc/curl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool >=app-admin/eselect-python-20091230 python? ( =dev-lang/python-2* )
|
||||
dev-libs/expat dev-libs/openssl sys-libs/zlib fuse? ( sys-fs/fuse ) ncurses? ( sys-libs/ncurses ) readline? ( sys-libs/readline ) s3? ( net-misc/curl ) >=app-admin/eselect-python-20091230 python? ( =dev-lang/python-2* )
|
||||
0
|
||||
http://afflib.org/downloads/afflib-3.6.15.tar.gz
|
||||
|
||||
http://afflib.org/
|
||||
BSD-4
|
||||
Library that implements the AFF image standard
|
||||
~amd64 ~hppa ~ppc ~x86
|
||||
autotools autotools-utils base eutils libtool multilib portability python toolchain-funcs user
|
||||
fuse ncurses python qemu readline s3 static-libs threads
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile configure install prepare setup test unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
dev-python/pygtk:2 dev-python/pyopenssl dev-python/reportlab dev-python/sqlalchemy media-fonts/dejavu >=net-libs/dslib-1.6 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
|
||||
dev-python/pygtk:2 dev-python/pyopenssl dev-python/reportlab dev-python/sqlalchemy media-fonts/dejavu >=net-libs/dslib-1.6 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
|
||||
dev-python/pygtk:2 dev-python/pyopenssl dev-python/reportlab dev-python/sqlalchemy media-fonts/dejavu >=net-libs/dslib-1.7 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
|
||||
dev-python/pygtk:2 dev-python/pyopenssl dev-python/reportlab dev-python/sqlalchemy media-fonts/dejavu >=net-libs/dslib-1.7 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
|
||||
0
|
||||
http://labs.nic.cz/files/labs/datove_schranky/dsgui-1.6.3.tar.gz
|
||||
http://labs.nic.cz/files/labs/datove_schranky/datovka-1.7.tar.gz
|
||||
|
||||
http://labs.nic.cz/page/740/dsgui/
|
||||
http://labs.nic.cz/page/969/datovka/
|
||||
GPL-2
|
||||
GUI to access Czech eGov "Datove schranky"
|
||||
~amd64 ~x86
|
||||
|
@ -12,7 +12,7 @@ distutils multilib python toolchain-funcs
|
|||
|
||||
|
||||
|
||||
3
|
||||
4
|
||||
|
||||
compile install postinst postrm prepare setup
|
||||
|
22
metadata/cache/app-text/libwpg-0.1.3
vendored
22
metadata/cache/app-text/libwpg-0.1.3
vendored
|
@ -1,22 +0,0 @@
|
|||
>=app-text/libwpd-0.8.0 dev-util/pkgconfig doc? ( app-doc/doxygen )
|
||||
>=app-text/libwpd-0.8.0
|
||||
0.1
|
||||
mirror://sourceforge/libwpg/libwpg-0.1.3.tar.bz2
|
||||
|
||||
http://libwpg.sourceforge.net/libwpg.htm
|
||||
GPL-2
|
||||
C++ library to read and parse graphics in WPG
|
||||
alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
base eutils multilib portability toolchain-funcs user
|
||||
doc
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
compile install unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -6,7 +6,7 @@ mirror://cpan/authors/id/D/DA/DAVECROSS/Calendar-Simple-1.21.tar.gz
|
|||
http://search.cpan.org/dist/Calendar-Simple/
|
||||
|| ( Artistic GPL-1 GPL-2 GPL-3 )
|
||||
Perl extension to create simple calendars
|
||||
~amd64 ~ppc ~sparc ~x86
|
||||
~amd64 ~hppa ~ppc ~sparc ~x86
|
||||
base eutils multilib perl-module portability toolchain-funcs user
|
||||
test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/fakefs-0.2.1-r1
vendored
2
metadata/cache/dev-ruby/fakefs-0.2.1-r1
vendored
|
@ -6,7 +6,7 @@ mirror://rubygems/fakefs-0.2.1.gem
|
|||
http://github.com/defunkt/fakefs
|
||||
as-is
|
||||
A fake filesystem. Use it in your tests.
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 test test
|
||||
|
||||
|
|
22
metadata/cache/dev-ruby/gettext_i18n_rails-0.3.2
vendored
Normal file
22
metadata/cache/dev-ruby/gettext_i18n_rails-0.3.2
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
ruby_targets_ruby18? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby18] dev-ruby/activerecord[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rspec:2[ruby_targets_ree18] dev-ruby/activerecord[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( dev-ruby/fast_gettext[ruby_targets_ruby18] dev-ruby/ruby_parser[ruby_targets_ruby18] ) ruby_targets_ree18? ( dev-ruby/fast_gettext[ruby_targets_ree18] dev-ruby/ruby_parser[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
ruby_targets_ruby18? ( dev-ruby/fast_gettext[ruby_targets_ruby18] dev-ruby/ruby_parser[ruby_targets_ruby18] ) ruby_targets_ree18? ( dev-ruby/fast_gettext[ruby_targets_ree18] dev-ruby/ruby_parser[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
|
||||
0
|
||||
mirror://rubygems/gettext_i18n_rails-0.3.2.gem
|
||||
|
||||
https://github.com/grosser/gettext_i18n_rails
|
||||
public-domain
|
||||
FastGettext / Rails integration.
|
||||
~amd64 ~x86
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test
|
||||
|| ( ruby_targets_ruby18 ruby_targets_ree18 )
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile configure install prepare setup test unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
2
metadata/cache/dev-ruby/libxml-2.2.2
vendored
2
metadata/cache/dev-ruby/libxml-2.2.2
vendored
|
@ -6,7 +6,7 @@ mirror://rubygems/libxml-ruby-2.2.2.gem
|
|||
http://libxml.rubyforge.org
|
||||
as-is
|
||||
Ruby libxml with a user friendly API, akin to REXML, but feature complete and significantly faster.
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 doc doc test test
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ mirror://rubygems/memcache-client-1.8.5.gem
|
|||
http://github.com/mperham/memcache-client
|
||||
MIT
|
||||
A ruby library for accessing memcached.
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_jruby doc doc test test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/polyglot-0.3.3
vendored
2
metadata/cache/dev-ruby/polyglot-0.3.3
vendored
|
@ -6,7 +6,7 @@ mirror://rubygems/polyglot-0.3.3.gem
|
|||
http://polyglot.rubyforge.org/
|
||||
MIT
|
||||
Polyglot provides support for fully-custom DSLs.
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~sparc-solaris ~x86-solaris
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~sparc-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby ruby_targets_ree18 ruby_targets_rbx test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/rack-1.1.2
vendored
2
metadata/cache/dev-ruby/rack-1.1.2
vendored
|
@ -6,7 +6,7 @@ mirror://rubyforge/rack/rack-1.1.2.tar.gz
|
|||
http://rubyforge.org/projects/rack
|
||||
MIT
|
||||
A modular Ruby webserver interface
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x64-solaris ~x86-solaris
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc doc test test
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ mirror://rubygems/right_http_connection-1.2.4.gem
|
|||
http://rightscale.rubyforge.org/
|
||||
as-is
|
||||
RightScale's robust HTTP/S connection module
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc doc test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/samuel-0.3.2
vendored
2
metadata/cache/dev-ruby/samuel-0.3.2
vendored
|
@ -6,7 +6,7 @@ mirror://rubygems/samuel-0.3.2.gem
|
|||
http://github.com/chrisk/samuel
|
||||
as-is
|
||||
An automatic logger for HTTP requests in Ruby.
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby test test
|
||||
|
||||
|
|
4
metadata/cache/dev-ruby/session-3.1.0-r1
vendored
4
metadata/cache/dev-ruby/session-3.1.0-r1
vendored
|
@ -1,4 +1,4 @@
|
|||
ruby_targets_ruby18? ( test? ( virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( virtual/ruby-test-unit[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( virtual/ruby-test-unit[ruby_targets_jruby] ) ) ruby_targets_ree18? ( test? ( virtual/ruby-test-unit[ruby_targets_ree18] ) ) test? ( sys-apps/coreutils ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
ruby_targets_ruby18? ( test? ( virtual/ruby-test-unit[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( virtual/ruby-test-unit[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( virtual/ruby-test-unit[ruby_targets_jruby] ) ) ruby_targets_ree18? ( test? ( virtual/ruby-test-unit[ruby_targets_ree18] ) ) test? ( || ( sys-apps/coreutils sys-freebsd/freebsd-bin ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
|
||||
0
|
||||
mirror://rubygems/session-3.1.0.gem
|
||||
|
@ -6,7 +6,7 @@ mirror://rubygems/session-3.1.0.gem
|
|||
http://codeforpeople.com/lib/ruby/session/
|
||||
Ruby
|
||||
A set of classes to drive external programs via pipe
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby ruby_targets_ree18 test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/shoulda-2.11.3
vendored
2
metadata/cache/dev-ruby/shoulda-2.11.3
vendored
|
@ -6,7 +6,7 @@ test
|
|||
http://thoughtbot.com/projects/shoulda
|
||||
MIT
|
||||
Making tests easy on the fingers and eyes
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc doc test test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/syntax-1.0.0-r3
vendored
2
metadata/cache/dev-ruby/syntax-1.0.0-r3
vendored
|
@ -6,7 +6,7 @@ test
|
|||
http://syntax.rubyforge.org
|
||||
BSD
|
||||
Syntax highlighting for sourcecode and HTML
|
||||
~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby test
|
||||
|
||||
|
|
2
metadata/cache/dev-ruby/test-unit-2.4.0
vendored
2
metadata/cache/dev-ruby/test-unit-2.4.0
vendored
|
@ -6,7 +6,7 @@ mirror://rubygems/test-unit-2.4.0.gem
|
|||
http://test-unit.rubyforge.org/
|
||||
Ruby
|
||||
An improved version of the Test::Unit framework from Ruby 1.8
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
|
||||
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby doc test test
|
||||
|
||||
|
|
22
metadata/cache/dev-vcs/mercurial-1.9.3
vendored
22
metadata/cache/dev-vcs/mercurial-1.9.3
vendored
|
@ -1,22 +0,0 @@
|
|||
emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads]
|
||||
bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads]
|
||||
0
|
||||
http://mercurial.selenic.com/release/mercurial-1.9.3.tar.gz
|
||||
|
||||
http://mercurial.selenic.com/
|
||||
GPL-2
|
||||
Scalable distributed SCM
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
bash-completion-r1 distutils elisp-common eutils multilib portability python toolchain-funcs user
|
||||
bugzilla emacs gpg test tk zsh-completion
|
||||
|
||||
|
||||
|
||||
3
|
||||
|
||||
compile install postinst postrm prepare setup test
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads]
|
||||
bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads]
|
||||
0
|
||||
http://mercurial.selenic.com/release/mercurial-1.9.2.tar.gz
|
||||
http://mercurial.selenic.com/release/mercurial-2.0.1.tar.gz
|
||||
|
||||
http://mercurial.selenic.com/
|
||||
GPL-2
|
|
@ -1,9 +1,9 @@
|
|||
dev-games/KXL || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
dev-games/KXL media-fonts/font-adobe-100dpi
|
||||
0
|
||||
http://kxl.hn.org/download/geki2-KXL-2.0.3.tar.gz mirror://gentoo/geki2-KXL.png
|
||||
mirror://gentoo/geki2-KXL-2.0.3.tar.gz mirror://gentoo/geki2-KXL.png
|
||||
|
||||
http://kxl.hn.org/
|
||||
http://triring.net/ps2linux/games/kxl/kxlgames.html
|
||||
GPL-2
|
||||
2D length scroll shooting game
|
||||
amd64 x86
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
dev-games/KXL || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
dev-games/KXL media-fonts/font-adobe-100dpi
|
||||
0
|
||||
http://kxl.hn.org/download/geki3-KXL-1.0.3.tar.gz mirror://gentoo/geki3-KXL.png
|
||||
mirror://gentoo/geki3-KXL-1.0.3.tar.gz mirror://gentoo/geki3-KXL.png
|
||||
|
||||
http://kxl.hn.org/
|
||||
http://triring.net/ps2linux/games/kxl/kxlgames.html
|
||||
GPL-2
|
||||
2D length scroll shooting game
|
||||
amd64 x86
|
||||
|
|
|
@ -3,7 +3,7 @@ dev-games/KXL media-fonts/font-adobe-100dpi media-fonts/font-bitstream-100dpi
|
|||
0
|
||||
mirror://gentoo/SpaceAryarya-KXL-1.0.2.tar.gz
|
||||
|
||||
http://kxl.orz.hm/
|
||||
http://triring.net/ps2linux/games/kxl/kxlgames.html
|
||||
GPL-2
|
||||
A 2D/3D shooting game
|
||||
~amd64 ppc x86
|
||||
|
|
2
metadata/cache/games-arcade/grande-KXL-0.6
vendored
2
metadata/cache/games-arcade/grande-KXL-0.6
vendored
|
@ -3,7 +3,7 @@ dev-games/KXL media-fonts/font-adobe-100dpi
|
|||
0
|
||||
mirror://gentoo/grande-KXL-0.6.tar.gz
|
||||
|
||||
http://kxl.orz.hm/
|
||||
http://triring.net/ps2linux/games/kxl/kxlgames.html
|
||||
GPL-2
|
||||
ZANAC type game
|
||||
amd64 ~ppc x86
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
media-libs/libsdl[video] media-libs/sdl-ttf media-libs/sdl-image[png] media-fonts/dejavu || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
media-libs/libsdl[video] media-libs/sdl-ttf media-libs/sdl-image[png] media-fonts/dejavu
|
||||
0
|
||||
mirror://sourceforge/xye/xye-0.11.2.tar.gz
|
||||
mirror://sourceforge/xye/xye-0.12.0.tar.gz
|
||||
|
||||
http://xye.sourceforge.net/
|
||||
ZLIB
|
|
@ -6,7 +6,7 @@ http://download.gna.org/hedgewars/hedgewars-src-0.9.16.tar.bz2
|
|||
http://hedgewars.org/
|
||||
GPL-2 Apache-2.0 FDL-1.3
|
||||
Free Worms-like turn based strategy game
|
||||
~amd64 x86
|
||||
amd64 x86
|
||||
base cmake-utils eutils flag-o-matic games multilib portability toolchain-funcs user
|
||||
|
||||
|
||||
|
|
22
metadata/cache/gnome-extra/gnome-utils-2.32.0-r1
vendored
22
metadata/cache/gnome-extra/gnome-utils-2.32.0-r1
vendored
|
@ -1,22 +0,0 @@
|
|||
>=dev-libs/glib-2.20:2 >=x11-libs/gtk+-2.20:2 >=gnome-base/libgtop-2.12 >=gnome-base/gconf-2:2 >=media-libs/libcanberra-0.4[gtk] x11-libs/libXext x11-libs/libX11 bonobo? ( || ( gnome-base/gnome-panel[bonobo] <gnome-base/gnome-panel-2.32 ) ) x11-proto/xextproto app-text/gnome-doc-utils app-text/scrollkeeper >=dev-util/intltool-0.40 >=dev-util/pkgconfig-0.9 doc? ( >=dev-util/gtk-doc-1.10 ) >=sys-apps/sed-4
|
||||
>=dev-libs/glib-2.20:2 >=x11-libs/gtk+-2.20:2 >=gnome-base/libgtop-2.12 >=gnome-base/gconf-2:2 >=media-libs/libcanberra-0.4[gtk] x11-libs/libXext x11-libs/libX11 bonobo? ( || ( gnome-base/gnome-panel[bonobo] <gnome-base/gnome-panel-2.32 ) )
|
||||
0
|
||||
mirror://gnome/sources/gnome-utils/2.32/gnome-utils-2.32.0.tar.bz2
|
||||
|
||||
http://www.gnome.org/
|
||||
GPL-2
|
||||
Utilities for the Gnome2 desktop
|
||||
alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
|
||||
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
|
||||
bonobo doc ipv6 test debug
|
||||
|
||||
|
||||
|
||||
3
|
||||
|
||||
compile configure install postinst postrm preinst prepare setup unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
2
metadata/cache/gnome-extra/gnome-utils-3.2.1
vendored
2
metadata/cache/gnome-extra/gnome-utils-3.2.1
vendored
|
@ -5,7 +5,7 @@ mirror://gnome/sources/gnome-utils/3.2/gnome-utils-3.2.1.tar.xz
|
|||
|
||||
http://www.gnome.org/
|
||||
GPL-2
|
||||
Utilities for the Gnome2 desktop
|
||||
Utilities for the Gnome desktop
|
||||
~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
|
||||
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
|
||||
doc ipv6 test debug
|
||||
|
|
22
metadata/cache/mail-filter/maildrop-2.5.5
vendored
Normal file
22
metadata/cache/mail-filter/maildrop-2.5.5
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
!mail-mta/courier net-mail/mailbase dev-libs/libpcre net-dns/libidn gdbm? ( >=sys-libs/gdbm-1.8.0 ) mysql? ( net-libs/courier-authlib ) postgres? ( net-libs/courier-authlib ) ldap? ( net-libs/courier-authlib ) authlib? ( net-libs/courier-authlib ) fam? ( virtual/fam ) !gdbm? ( berkdb? ( >=sys-libs/db-3 ) ) tools? ( !mail-mta/netqmail !net-mail/courier-imap !mail-mta/mini-qmail ) dev-util/pkgconfig || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
!mail-mta/courier net-mail/mailbase dev-libs/libpcre net-dns/libidn gdbm? ( >=sys-libs/gdbm-1.8.0 ) mysql? ( net-libs/courier-authlib ) postgres? ( net-libs/courier-authlib ) ldap? ( net-libs/courier-authlib ) authlib? ( net-libs/courier-authlib ) fam? ( virtual/fam ) !gdbm? ( berkdb? ( >=sys-libs/db-3 ) ) tools? ( !mail-mta/netqmail !net-mail/courier-imap !mail-mta/mini-qmail ) dev-lang/perl
|
||||
0
|
||||
mirror://sourceforge/courier/maildrop-2.5.5.tar.bz2
|
||||
|
||||
http://www.courier-mta.org/maildrop/
|
||||
GPL-3
|
||||
Mail delivery agent/filter
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
|
||||
autotools eutils flag-o-matic libtool multilib portability toolchain-funcs user
|
||||
berkdb debug fam gdbm ldap mysql postgres static-libs authlib +tools
|
||||
mysql? ( authlib ) postgres? ( authlib ) ldap? ( authlib )
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure install prepare
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/media-gfx/mypaint-1.0.0-r1
vendored
Normal file
22
metadata/cache/media-gfx/mypaint-1.0.0-r1
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
dev-python/pygtk dev-python/numpy >=dev-python/pycairo-1.4 dev-libs/protobuf[python] dev-lang/swig dev-util/pkgconfig >=sys-apps/sed-4 dev-util/scons >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
|
||||
dev-python/pygtk dev-python/numpy >=dev-python/pycairo-1.4 dev-libs/protobuf[python] >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* =dev-lang/python-2.4* )
|
||||
0
|
||||
http://download.gna.org/mypaint/mypaint-1.0.0.tar.bz2
|
||||
|
||||
http://mypaint.intilinux.com/
|
||||
GPL-2
|
||||
fast and easy graphics application for digital painters
|
||||
~amd64 ~x86
|
||||
eutils fdo-mime gnome2-utils multilib portability python scons-utils toolchain-funcs user
|
||||
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile install postinst postrm preinst prepare setup
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/media-libs/ffmpegsource-2.16.2.1_pre587
vendored
Normal file
22
metadata/cache/media-libs/ffmpegsource-2.16.2.1_pre587
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
sys-libs/zlib virtual/ffmpeg dev-util/pkgconfig || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
sys-libs/zlib virtual/ffmpeg
|
||||
0
|
||||
http://rion-overlay.googlecode.com/files/ffmpegsource-2.16.2.1_pre587.tar.xz
|
||||
|
||||
https://code.google.com/p/ffmpegsource/
|
||||
MIT
|
||||
An FFmpeg based source library for easy frame accurate access
|
||||
~amd64 ~x86
|
||||
autotools eutils libtool multilib portability toolchain-funcs user
|
||||
postproc static-libs
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure install prepare
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/media-libs/libquvi-scripts-0.4.2
vendored
Normal file
22
metadata/cache/media-libs/libquvi-scripts-0.4.2
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
app-arch/xz-utils
|
||||
|
||||
0
|
||||
mirror://sourceforge/quvi/0.4/libquvi-scripts-0.4.2.tar.xz
|
||||
test
|
||||
http://quvi.sourceforge.net/
|
||||
GPL-3
|
||||
Embedded lua scripts for libquvi
|
||||
~amd64 ~x86
|
||||
|
||||
offensive
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/media-libs/quvi-0.4.1
vendored
Normal file
22
metadata/cache/media-libs/quvi-0.4.1
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
>=net-misc/curl-7.18.2 >=media-libs/libquvi-0.4.0 app-arch/xz-utils dev-util/pkgconfig
|
||||
>=net-misc/curl-7.18.2 >=media-libs/libquvi-0.4.0
|
||||
0
|
||||
mirror://sourceforge/quvi/0.4/quvi-0.4.1.tar.xz
|
||||
|
||||
http://quvi.sourceforge.net/
|
||||
GPL-3
|
||||
A command line tool for parsing video download links
|
||||
~amd64 ~x86
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/media-video/cclive-0.7.8
vendored
Normal file
22
metadata/cache/media-video/cclive-0.7.8
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
>=media-libs/libquvi-0.4.0 >=dev-libs/boost-1.42 >=net-misc/curl-7.20 >=dev-libs/libpcre-8.02[cxx] app-arch/xz-utils dev-util/pkgconfig
|
||||
>=media-libs/libquvi-0.4.0 >=dev-libs/boost-1.42 >=net-misc/curl-7.20 >=dev-libs/libpcre-8.02[cxx]
|
||||
0
|
||||
mirror://sourceforge/cclive/0.7/cclive-0.7.8.tar.xz
|
||||
|
||||
http://cclive.sourceforge.net/
|
||||
GPL-3
|
||||
Command line tool for extracting videos from various websites
|
||||
~amd64 ~x86
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
-
|
||||
|
||||
|
||||
|
||||
|
||||
|
2
metadata/cache/net-analyzer/mtr-0.81
vendored
2
metadata/cache/net-analyzer/mtr-0.81
vendored
|
@ -6,7 +6,7 @@ ftp://ftp.bitwizard.nl/mtr/mtr-0.81.tar.gz mirror://gentoo/gtk-2.0-for-mtr.m4.bz
|
|||
http://www.bitwizard.nl/mtr/
|
||||
GPL-2
|
||||
My TraceRoute, an Excellent network diagnostic tool
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
|
||||
~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
|
||||
autotools eutils flag-o-matic libtool multilib portability toolchain-funcs user
|
||||
gtk ipv6 suid
|
||||
|
||||
|
|
22
metadata/cache/net-analyzer/mtr-0.82
vendored
Normal file
22
metadata/cache/net-analyzer/mtr-0.82
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
sys-libs/ncurses gtk? ( x11-libs/gtk+:2 ) gtk? ( dev-util/pkgconfig ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
sys-libs/ncurses gtk? ( x11-libs/gtk+:2 )
|
||||
0
|
||||
ftp://ftp.bitwizard.nl/mtr/mtr-0.82.tar.gz mirror://gentoo/gtk-2.0-for-mtr.m4.bz2
|
||||
|
||||
http://www.bitwizard.nl/mtr/
|
||||
GPL-2
|
||||
My TraceRoute, an Excellent network diagnostic tool
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
|
||||
autotools eutils flag-o-matic libtool multilib portability toolchain-funcs user
|
||||
gtk ipv6 suid
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure install prepare
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/net-analyzer/tcpflow-1.0.6
vendored
Normal file
22
metadata/cache/net-analyzer/tcpflow-1.0.6
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
net-libs/libpcap test? ( sys-apps/coreutils )
|
||||
net-libs/libpcap
|
||||
0
|
||||
http://afflib.org/downloads/tcpflow-1.0.6.tar.gz
|
||||
|
||||
http://afflib.org/
|
||||
GPL-2
|
||||
A tool for monitoring, capturing and storing TCP connections flows
|
||||
~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos
|
||||
|
||||
test
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
prepare
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
dev-python/pyasn1 dev-python/pyopenssl dev-python/suds >=app-admin/eselect-python-20091230 dev-lang/python
|
||||
dev-python/pyasn1 dev-python/pyopenssl dev-python/suds >=app-admin/eselect-python-20091230 dev-lang/python
|
||||
0
|
||||
http://labs.nic.cz/files/labs/datove_schranky/dslib-1.6.tar.gz
|
||||
http://labs.nic.cz/files/labs/datove_schranky/dslib-1.7.tar.gz
|
||||
|
||||
http://labs.nic.cz/page/740/dsgui/
|
||||
http://labs.nic.cz/page/969/datovka/
|
||||
GPL-2
|
||||
Library to access Czech eGov system "Datove schranky"
|
||||
~amd64 ~x86
|
||||
|
@ -12,7 +12,7 @@ distutils multilib python toolchain-funcs
|
|||
|
||||
|
||||
|
||||
3
|
||||
4
|
||||
|
||||
compile install postinst postrm prepare setup
|
||||
|
8
metadata/cache/net-mail/dovecot-2.1_rc1
vendored
8
metadata/cache/net-mail/dovecot-2.1_rc1
vendored
|
@ -1,13 +1,13 @@
|
|||
caps? ( sys-libs/libcap ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) lucene? ( >=dev-cpp/clucene-2.3 ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite ) ssl? ( dev-libs/openssl ) vpopmail? ( net-mail/vpopmail ) virtual/libiconv ssl? ( dev-libs/openssl )
|
||||
caps? ( sys-libs/libcap ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) lucene? ( >=dev-cpp/clucene-2.3 ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite ) ssl? ( dev-libs/openssl ) vpopmail? ( net-mail/vpopmail ) virtual/libiconv ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
caps? ( sys-libs/libcap ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) lucene? ( >=dev-cpp/clucene-2.3 ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite ) ssl? ( dev-libs/openssl ) vpopmail? ( net-mail/vpopmail ) virtual/libiconv >=net-mail/mailbase-0.00-r8
|
||||
0
|
||||
http://www.dovecot.org/releases/2.1/rc/dovecot-2.1.rc1.tar.gz sieve? ( http://www.rename-it.nl/dovecot/2.1/dovecot-2.1-pigeonhole-b3bff60a18da.tar.bz2 ) managesieve? ( http://www.rename-it.nl/dovecot/2.1/dovecot-2.1-pigeonhole-b3bff60a18da.tar.bz2 )
|
||||
http://www.dovecot.org/releases/2.1/rc/dovecot-2.1.rc1.tar.gz sieve? ( http://hg.rename-it.nl/dovecot-2.1-pigeonhole/archive/{sieve_snapshot}.tar.bz2 -> dovecot-2.1-pigeonhole-b3bff60a18da.tar.bz2 ) managesieve? ( http://hg.rename-it.nl/dovecot-2.1-pigeonhole/archive/{sieve_snapshot}.tar.bz2 -> dovecot-2.1-pigeonhole-b3bff60a18da.tar.bz2 )
|
||||
|
||||
http://www.dovecot.org/
|
||||
LGPL-2.1 MIT
|
||||
An IMAP and POP3 server written with security primarily in mind
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd
|
||||
eutils multilib portability ssl-cert toolchain-funcs user versionator
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~s390 ~sparc ~x86 ~x86-fbsd
|
||||
autotools eutils libtool multilib portability ssl-cert toolchain-funcs user versionator
|
||||
bzip2 caps cydir sdbox doc ipv6 imapc kerberos ldap lucene +maildir managesieve mbox mdbox mysql pam postgres sieve sqlite +ssl static-libs suid vpopmail zlib ssl
|
||||
|
||||
|
||||
|
|
22
metadata/cache/net-mail/maildirtree-0.6
vendored
22
metadata/cache/net-mail/maildirtree-0.6
vendored
|
@ -1,22 +0,0 @@
|
|||
|
||||
|
||||
0
|
||||
http://triplehelix.org/~joshk/maildirtree/maildirtree-0.6.tar.gz
|
||||
|
||||
http://triplehelix.org/~joshk/maildirtree
|
||||
GPL-2
|
||||
A utility that prints trees of Courier-style Maildirs.
|
||||
amd64 x86
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
install
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
doc? ( dev-python/docutils ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads,ssl?]
|
||||
>=app-admin/eselect-python-20091230 =dev-lang/python-2* =dev-lang/python-2*[threads,ssl?]
|
||||
0
|
||||
https://github.com/nicolas33/offlineimap/tarball/v6.3.4 -> offlineimap-6.4.0.tar.gz
|
||||
http://offlineimap.org/downloads/offlineimap-v6.4.2.tar.gz -> offlineimap-6.4.2.tar.gz
|
||||
|
||||
http://offlineimap.org
|
||||
GPL-2
|
22
metadata/cache/net-misc/asterisk-10.0.0_rc2-r1
vendored
Normal file
22
metadata/cache/net-misc/asterisk-10.0.0_rc2-r1
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
dev-db/sqlite:3 dev-libs/popt dev-libs/libxml2 dev-libs/openssl ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( dev-db/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) srtp? ( net-libs/libsrtp ) usb? ( dev-libs/libusb media-libs/alsa-lib ) vorbis? ( media-libs/libvorbis ) !net-libs/openh323 || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|
||||
dev-db/sqlite:3 dev-libs/popt dev-libs/libxml2 dev-libs/openssl ais? ( sys-cluster/openais ) alsa? ( media-libs/alsa-lib ) bluetooth? ( net-wireless/bluez ) calendar? ( net-libs/neon dev-libs/libical dev-libs/iksemel ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) dahdi? ( >=net-libs/libpri-1.4.12_beta2 net-misc/dahdi-tools ) freetds? ( dev-db/freetds ) gtalk? ( dev-libs/iksemel ) http? ( dev-libs/gmime:2.4 ) iconv? ( virtual/libiconv ) jabber? ( dev-libs/iksemel ) jingle? ( dev-libs/iksemel ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua ) mysql? ( dev-db/mysql ) newt? ( dev-libs/newt ) odbc? ( dev-db/unixODBC ) osplookup? ( net-libs/osptoolkit ) portaudio? ( media-libs/portaudio ) postgres? ( dev-db/postgresql-base ) radius? ( net-dialup/radiusclient-ng ) snmp? ( net-analyzer/net-snmp ) span? ( media-libs/spandsp ) speex? ( media-libs/speex ) srtp? ( net-libs/libsrtp ) usb? ( dev-libs/libusb media-libs/alsa-lib ) vorbis? ( media-libs/libvorbis ) syslog? ( virtual/logger )
|
||||
0
|
||||
http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-10.0.0-rc2.tar.gz mirror://gentoo/gentoo-asterisk-patchset-2.1.tar.bz2
|
||||
|
||||
http://www.asterisk.org/
|
||||
GPL-2
|
||||
Asterisk: A Modular Open Source PBX System
|
||||
~amd64 ~x86
|
||||
autotools base eutils libtool linux-info multilib portability toolchain-funcs user versionator
|
||||
ais alsa bluetooth calendar +caps curl dahdi debug doc freetds gtalk http iconv jabber jingle ldap lua mysql newt +samples odbc osplookup oss portaudio postgres radius snmp span speex srtp static syslog usb vorbis
|
||||
|
||||
net-misc/asterisk-core-sounds net-misc/asterisk-extra-sounds net-misc/asterisk-moh-opsound
|
||||
|
||||
4
|
||||
|
||||
compile config configure install postinst prepare setup unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/net-misc/whois-5.0.13
vendored
Normal file
22
metadata/cache/net-misc/whois-5.0.13
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
idn? ( net-dns/libidn ) >=dev-lang/perl-5
|
||||
idn? ( net-dns/libidn )
|
||||
0
|
||||
mirror://debian/pool/main/w/whois/whois_5.0.13.tar.gz
|
||||
test
|
||||
http://www.linux.it/~md/software/
|
||||
GPL-2
|
||||
improved Whois Client
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
|
||||
eutils multilib portability toolchain-funcs user
|
||||
iconv idn nls
|
||||
|
||||
|
||||
|
||||
3
|
||||
|
||||
compile configure install prepare
|
||||
|
||||
|
||||
|
||||
|
||||
|
2
metadata/cache/sci-libs/hdf5-1.8.8
vendored
2
metadata/cache/sci-libs/hdf5-1.8.8
vendored
|
@ -9,7 +9,7 @@ General purpose library and file format for storing scientific data
|
|||
~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
|
||||
autotools eutils fortran-2 libtool multilib portability toolchain-funcs user
|
||||
cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib
|
||||
fortran2003? ( fortran )
|
||||
cxx? ( !mpi ) mpi? ( !cxx ) threads? ( !cxx !mpi !fortran )
|
||||
|
||||
|
||||
4
|
||||
|
|
22
metadata/cache/sys-apps/debianutils-4.1
vendored
Normal file
22
metadata/cache/sys-apps/debianutils-4.1
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
|
||||
0
|
||||
mirror://debian/pool/main/d/debianutils/debianutils_4.1.tar.gz
|
||||
|
||||
http://packages.qa.debian.org/d/debianutils.html
|
||||
BSD GPL-2 SMAIL
|
||||
A selection of tools from Debian
|
||||
~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd
|
||||
eutils flag-o-matic multilib portability toolchain-funcs user
|
||||
kernel_linux static
|
||||
|
||||
|| ( >=sys-apps/coreutils-6.10-r1 sys-freebsd/freebsd-ubin )
|
||||
|
||||
4
|
||||
|
||||
configure install prepare
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
metadata/cache/sys-apps/fakeroot-1.18.2
vendored
Normal file
22
metadata/cache/sys-apps/fakeroot-1.18.2
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
test? ( app-arch/sharutils )
|
||||
|
||||
0
|
||||
mirror://debian/pool/main/f/fakeroot/fakeroot_1.18.2.orig.tar.bz2
|
||||
|
||||
http://packages.qa.debian.org/f/fakeroot.html
|
||||
GPL-2
|
||||
Run commands in an environment faking root privileges
|
||||
~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux
|
||||
|
||||
static-libs test
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure install
|
||||
|
||||
|
||||
|
||||
|
||||
|
2
metadata/cache/sys-devel/binutils-2.21.1-r1
vendored
2
metadata/cache/sys-devel/binutils-2.21.1-r1
vendored
|
@ -1,7 +1,7 @@
|
|||
sys-devel/gnuconfig >=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) test? ( dev-util/dejagnu ) nls? ( sys-devel/gettext ) sys-devel/flex virtual/yacc
|
||||
>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib )
|
||||
0
|
||||
mirror://gnu/binutils/binutils-2.21.1.tar.bz2 mirror://gentoo/binutils-2.21.1-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.21.1-patches-1.3.tar.bz2
|
||||
mirror://gnu/binutils/binutils-2.21.1.tar.bz2 mirror://gentoo/binutils-2.21.1-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.21.1-patches-1.4.tar.bz2
|
||||
|
||||
http://sources.redhat.com/binutils/
|
||||
|| ( GPL-3 LGPL-3 )
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue