Sync with portage [Mon Nov 28 11:29:26 MSK 2011].

mhiretskiy
root 13 years ago
parent f67f0ad955
commit 5b25531dde

@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>java</herd>
<maintainer>
<email>lxnay@gentoo.org</email>
</maintainer>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>java</herd>
<maintainer>
<email>lxnay@gentoo.org</email>
</maintainer>
</pkgmetadata>

@ -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/app-antivirus/clamav/clamav-0.97.3.ebuild,v 1.7 2011/11/27 03:37:41 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.97.3.ebuild,v 1.8 2011/11/28 05:26:07 radhermit Exp $
EAPI=4
@ -31,7 +31,7 @@ RESTRICT="test"
DOCS=( AUTHORS BUGS ChangeLog FAQ INSTALL NEWS README UPGRADE )
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=( "${FILESDIR}"/${PN}-0.97-nls.patch )
pkg_setup() {
enewgroup clamav
@ -39,26 +39,27 @@ pkg_setup() {
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.97-nls.patch
use ppc64 && append-flags -mminimal-toc
autotools-utils_src_prepare
}
src_configure() {
econf \
--disable-experimental \
--enable-id-check \
--with-dbdir=/var/lib/clamav \
--with-system-tommath \
$(use_enable bzip2) \
$(use_enable clamdtop) \
$(use_enable ipv6) \
$(use_enable milter) \
$(use_enable static-libs static) \
local myeconfargs=(
--disable-experimental
--enable-id-check
--with-dbdir=/var/lib/clamav
--with-system-tommath
$(use_enable bzip2)
$(use_enable clamdtop)
$(use_enable ipv6)
$(use_enable milter)
$(use_with iconv)
)
autotools-utils_src_configure
}
src_install() {
default
autotools-utils_src_install
rm -rf "${ED}"/var/lib/clamav
newinitd "${FILESDIR}"/clamd.rc clamd
@ -75,8 +76,6 @@ src_install() {
insinto /etc/logrotate.d
newins "${FILESDIR}"/clamav.logrotate clamav
remove_libtool_files
# Modify /etc/{clamd,freshclam}.conf to be usable out of the box
sed -i -e "s:^\(Example\):\# \1:" \
-e "s:.*\(PidFile\) .*:\1 /var/run/clamav/clamd.pid:" \

@ -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/app-crypt/p11-kit/p11-kit-0.8.ebuild,v 1.2 2011/11/26 01:01:46 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/p11-kit-0.8.ebuild,v 1.3 2011/11/28 02:26:56 radhermit Exp $
EAPI=4
@ -15,9 +15,9 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~x86"
IUSE="debug"
AUTOTOOLS_IN_SOURCE_BUILD=1
src_configure() {
econf \
local myeconfargs=(
$(use_enable debug)
)
autotools-utils_src_configure
}

@ -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/app-crypt/p11-kit/p11-kit-0.9.ebuild,v 1.2 2011/11/26 01:01:44 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/p11-kit-0.9.ebuild,v 1.3 2011/11/28 02:26:55 radhermit Exp $
EAPI=4
@ -15,9 +15,9 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~x86"
IUSE="debug"
AUTOTOOLS_IN_SOURCE_BUILD=1
src_configure() {
econf \
local myeconfargs=(
$(use_enable debug)
)
autotools-utils_src_configure
}

@ -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/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.6 2011/11/26 10:43:27 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.7 2011/11/28 05:41:56 radhermit Exp $
EAPI="4"
PYTHON_DEPEND="python? 2"
@ -25,7 +25,10 @@ RDEPEND="dev-libs/expat
s3? ( net-misc/curl )"
DEPEND="${RDEPEND}"
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=(
"${FILESDIR}"/${P}-python-module.patch
"${FILESDIR}"/${P}-pyaff-header.patch
)
pkg_setup() {
if use python ; then
@ -35,11 +38,10 @@ pkg_setup() {
}
src_prepare() {
epatch "${FILESDIR}"/${P}-python-module.patch
sed -i -e "/FLAGS/s: -g::" configure.ac || die
sed -i -e "/-static/d" tools/Makefile.am || die
autotools-utils_src_prepare
eautoreconf
}
@ -48,16 +50,12 @@ src_configure() {
use ncurses || export ac_cv_lib_ncurses_initscr=no
use readline || export ac_cv_lib_readline_readline=no
econf \
$(use_enable fuse) \
$(use_enable python) \
$(use_enable qemu) \
$(use_enable s3) \
$(use_enable static-libs static) \
local myeconfargs=(
$(use_enable fuse)
$(use_enable python)
$(use_enable qemu)
$(use_enable s3)
$(use_enable threads threading)
}
src_install() {
default
remove_libtool_files all
)
autotools-utils_src_configure
}

@ -0,0 +1,13 @@
Fix include location based on the include directories passed via CFLAGS.
--- afflib-3.6.12/pyaff/pyaff.c.orig
+++ afflib-3.6.12/pyaff/pyaff.c
@@ -21,7 +21,7 @@
****************************************************/
#include "Python.h"
-#include "lib/afflib.h"
+#include "afflib.h"
#include <string.h>
#include <stdlib.h>

@ -1,3 +1,5 @@
Only build the shared python library.
--- afflib-3.6.12/pyaff/Makefile.am.orig
+++ afflib-3.6.12/pyaff/Makefile.am
@@ -7,7 +7,8 @@
@ -8,6 +10,6 @@
+pyaff_la_LIBADD = @top_builddir@/lib/libafflib.la
pyaff_la_CPPFLAGS = $(PYTHON_CPPFLAGS)
-pyaff_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS)
+pyaff_la_CFLAGS = -shared
+pyaff_la_CFLAGS = $(AM_CFLAGS) -shared
+pyaff_la_LDFLAGS = -module -avoid-version -shared $(PYTHON_LDFLAGS)
endif

@ -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-lang/nacl-toolchain-newlib/nacl-toolchain-newlib-0_p6869-r1.ebuild,v 1.4 2011/11/18 15:51:42 chainsaw Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/nacl-toolchain-newlib/nacl-toolchain-newlib-0_p6869-r1.ebuild,v 1.5 2011/11/27 18:59:45 phajdan.jr Exp $
EAPI="4"
@ -32,7 +32,8 @@ KEYWORDS="amd64 ~x86"
IUSE=""
# Stripping with a non-NaCl strip breaks the toolchain, bug #386931.
RESTRICT="strip"
# Tests are broken, bug #391761.
RESTRICT="strip test"
# Executable section checks do not make sense for newlib, bug #390383.
QA_EXECSTACK="usr/lib*/nacl-toolchain-newlib/*/lib*/*"

@ -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/cgilib/cgilib-0.7.ebuild,v 1.1 2011/07/06 14:48:45 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cgilib/cgilib-0.7.ebuild,v 1.2 2011/11/28 03:33:44 radhermit Exp $
EAPI="4"
@ -15,16 +15,9 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="static-libs"
DOCS=( AUTHORS ChangeLog README cookies.txt )
src_prepare() {
autotools-utils_src_prepare
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
dodoc AUTHORS ChangeLog README cookies.txt
use static-libs || remove_libtool_files
}

@ -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/d0_blind_id/d0_blind_id-0.3.ebuild,v 1.5 2011/11/27 04:43:17 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.3.ebuild,v 1.6 2011/11/27 17:40:33 mr_bones_ Exp $
EAPI=4
inherit autotools-utils
@ -23,11 +23,13 @@ DOCS=( d0_blind_id.txt )
AUTOTOOLS_IN_SOURCE_BUILD=1
src_configure() {
econf \
--enable-rijndael \
--without-openssl \
--without-tommath \
local myeconfargs=(
--enable-rijndael
--without-openssl
--without-tommath
$(use_enable static-libs static)
)
autotools-utils_src_configure
}
src_install() {

@ -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/dbus-glib/dbus-glib-0.98.ebuild,v 1.5 2011/10/29 19:16:39 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.98.ebuild,v 1.6 2011/11/27 19:05:33 armin76 Exp $
EAPI=4
inherit bash-completion-r1
@ -11,7 +11,7 @@ SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
LICENSE="|| ( GPL-2 AFL-2.1 )"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="debug doc static-libs test"
RDEPEND=">=sys-apps/dbus-1.4.1

@ -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/fribidi/fribidi-0.19.2-r1.ebuild,v 1.7 2011/11/05 15:13:04 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/fribidi/fribidi-0.19.2-r1.ebuild,v 1.8 2011/11/27 18:55:49 armin76 Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://fribidi.org/download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="static-libs"
RDEPEND=">=dev-libs/glib-2.4:2"

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8.ebuild,v 1.8 2011/11/27 04:40:49 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.4.8.ebuild,v 1.9 2011/11/27 22:33:48 jer Exp $
EAPI=4
inherit autotools autotools-utils
inherit autotools
MY_P=${P/geoip/GeoIP}
@ -28,8 +28,6 @@ RDEPEND="
)
"
AUTOTOOLS_IN_SOURCE_BUILD=1
S=${WORKDIR}/${MY_P}
src_prepare() {
@ -49,7 +47,9 @@ src_install() {
use perl-geoipupdate && dobin apps/geoipupdate-pureperl.pl
dodoc AUTHORS ChangeLog README TODO conf/GeoIP.conf.default
rm "${ED}/etc/GeoIP.conf.default"
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/lib*.la
fi
if use ipv6; then
insinto /usr/share/GeoIP

@ -1,21 +1,21 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ilbc-rfc3951/ilbc-rfc3951-0-r1.ebuild,v 1.10 2009/12/17 16:33:17 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ilbc-rfc3951/ilbc-rfc3951-0-r1.ebuild,v 1.11 2011/11/27 22:21:38 ulm Exp $
inherit eutils autotools
DESCRIPTION="iLBC (internet Low Bitrate Codec) is a speech codec suitable for robust voice communication over IP."
HOMEPAGE="http://www.ilbcfreeware.org/"
SRC_URI="http://simon.morlat.free.fr/download/1.1.x/source/ilbc-rfc3951.tar.gz"
# http://www.ilbcfreeware.org/documentation/gips_iLBClicense.pdf
LICENSE="gips_iLBClicense.pdf"
# relicensed under 3-clause BSD license, bug 390797
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
RESTRICT="bindist"
IUSE=""
S="${WORKDIR}/${PN}"
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"

@ -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/libcdio/libcdio-0.83.ebuild,v 1.2 2011/11/26 01:07:23 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.83.ebuild,v 1.3 2011/11/28 02:21:05 radhermit Exp $
EAPI=4
@ -26,22 +26,23 @@ AUTOTOOLS_IN_SOURCE_BUILD=1
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
src_configure() {
econf \
$(use_enable cddb) \
$(use_enable static-libs static) \
$(use_with !minimal cd-drive) \
$(use_with !minimal cd-info) \
$(use_with !minimal cd-paranoia) \
$(use_with !minimal cdda-player) \
$(use_with !minimal cd-read) \
$(use_with !minimal iso-info) \
$(use_with !minimal iso-read) \
$(use_enable cxx) \
--disable-example-progs \
--disable-cpp-progs \
--with-cd-paranoia-name=libcdio-paranoia \
--disable-vcd-info \
local myeconfargs=(
$(use_enable cddb)
$(use_enable cxx)
$(use_with !minimal cd-drive)
$(use_with !minimal cd-info)
$(use_with !minimal cd-paranoia)
$(use_with !minimal cdda-player)
$(use_with !minimal cd-read)
$(use_with !minimal iso-info)
$(use_with !minimal iso-read)
--disable-example-progs
--disable-cpp-progs
--with-cd-paranoia-name=libcdio-paranoia
--disable-vcd-info
--disable-maintainer-mode
)
autotools-utils_src_configure
}
pkg_postinst() {

@ -1,11 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.7.ebuild,v 1.8 2011/11/06 17:26:11 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.7.ebuild,v 1.9 2011/11/28 00:22:12 jer Exp $
EAPI="2"
inherit autotools-utils
DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
SRC_URI="http://www.hyperrealm.com/libconfig/${P}.tar.gz"
@ -33,7 +31,9 @@ src_test() {
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/lib*.la
fi
if use examples; then
local dir
for dir in examples/c examples/c++; do

@ -1,11 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.8.ebuild,v 1.1 2011/08/16 20:48:26 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.8.ebuild,v 1.2 2011/11/28 00:22:12 jer Exp $
EAPI="4"
inherit autotools-utils
DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
SRC_URI="http://www.hyperrealm.com/libconfig/${P}.tar.gz"
@ -31,7 +29,9 @@ src_test() {
src_install() {
default
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/lib*.la
fi
if use examples; then
local dir
for dir in examples/c examples/c++; do

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdebian-installer/libdebian-installer-0.78.ebuild,v 1.4 2011/05/28 11:14:59 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdebian-installer/libdebian-installer-0.78.ebuild,v 1.5 2011/11/27 23:02:24 jer Exp $
EAPI=2
inherit autotools-utils eutils multilib
inherit eutils multilib
DESCRIPTION="Library of common debian-installer functions"
HOMEPAGE="http://packages.qa.debian.org/libd/libdebian-installer.html"
@ -48,5 +48,7 @@ src_install() {
dodoc HACKING debian/changelog
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/lib*.la
fi
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdebian-installer/libdebian-installer-0.79.ebuild,v 1.1 2011/08/22 09:34:38 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdebian-installer/libdebian-installer-0.79.ebuild,v 1.2 2011/11/27 23:02:24 jer Exp $
EAPI=2
inherit autotools-utils eutils multilib
inherit eutils multilib
DESCRIPTION="Library of common debian-installer functions"
HOMEPAGE="http://packages.qa.debian.org/libd/libdebian-installer.html"
@ -48,5 +48,7 @@ src_install() {
dodoc HACKING debian/changelog
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/lib*.la
fi
}

@ -1,7 +1,6 @@
DIST libevent-1.4.13-stable.tar.gz 499603 RMD160 b363aee80f73f27a68516d57c00592fe923aa40a SHA1 b0c4e9801b74f8bed1502353674288a5e4f1ca16 SHA256 d6fff1d7e7b79e6e083b482b0b55190f71ba597b55c3541d64c0572ddf0747a3
DIST libevent-1.4.14b-stable.tar.gz 474874 RMD160 5eb739f0ae812e81ca2e196fbed849529cfbc689 SHA1 4a834364c28ad652ddeb00b5f83872506eede7d4 SHA256 afa61b476a222ba43fc7cca2d24849ab0bbd940124400cb699915d3c60e46301
DIST libevent-2.0.12-stable.tar.gz 822416 RMD160 c630fcc739e14b526c2ac37aec004f19c9bf9efc SHA1 fa2e1643101a8f8eba8e6fcffdce97cb9309c1d2 SHA256 ac0283f72e0f881e93ac3ae9497a20c78bd075c6c12506ad10e821aa1c29e5ab
DIST libevent-2.0.13-stable.tar.gz 830805 RMD160 261298e8ef7d725c20e6d6a021fe26891930f296 SHA1 3c467f7eac2d38986a378311815b980e325a97d5 SHA256 e2cc3b9f03e68ff878919b1cd031a210ba9ff376283d895161afcbc25aca00a9
DIST libevent-2.0.14-stable.tar.gz 833520 RMD160 fc6379bb14c3aa48e7535f6f3cc461d29ad18839 SHA1 b52b466f5a418744faf5f12b0fe3877cb7fb0b6e SHA256 3c97a72cddd5bff63450efe7c646e15ad08dec32d5223b69cb10c2dc305812da
DIST libevent-2.0.15-stable.tar.gz 835090 RMD160 bc145bcecdc19016b799f662b913030c09248c4d SHA1 8e4f662f3bed28f82f89a5d0afaecac75adfa925 SHA256 ab535bae9af788c8711a8d138c4cae0722f22a1a4ac4d8084abc7b0e0468bc5c
DIST libevent-2.0.16-stable.tar.gz 837650 RMD160 8497386efb9dea0b1cf29ddfded5277a1e1e86f4 SHA1 9eb9fe3c0ec607525ed2dee6827687efcd0696ac SHA256 a578c7bcaf3bab1cc7924bd4d219f2ea621ab8c51dfc4f886e234b6ef4d38295

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.12.ebuild,v 1.7 2011/10/24 10:15:13 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.12.ebuild,v 1.8 2011/11/27 22:14:57 jer Exp $
EAPI="2"
inherit autotools-utils libtool
inherit libtool
MY_P="${P}-stable"
@ -41,5 +41,7 @@ src_test() {
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README ChangeLog
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/libevent*.la
fi
}

@ -1,45 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.13.ebuild,v 1.7 2011/10/24 10:15:13 jer Exp $
EAPI="2"
inherit autotools-utils libtool
MY_P="${P}-stable"
DESCRIPTION="A library to execute a function when a specific event occurs on a file descriptor"
HOMEPAGE="http://monkey.org/~provos/libevent/"
SRC_URI="mirror://sourceforge/levent/files/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="static-libs test"
RDEPEND="!<=dev-libs/9libs-1.0"
S=${WORKDIR}/${MY_P}
src_prepare() {
# don't waste time building tests/samples
sed -i \
-e 's|^\(SUBDIRS =.*\)sample test\(.*\)$|\1\2|' \
Makefile.in || die "sed Makefile.in failed"
elibtoolize
}
src_configure() {
econf $(use_enable static-libs static) || die "econf"
}
src_test() {
emake -C test check | tee "${T}"/tests
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README ChangeLog
use static-libs || remove_libtool_files
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.14.ebuild,v 1.6 2011/10/24 10:15:13 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.14.ebuild,v 1.7 2011/11/27 22:14:57 jer Exp $
EAPI="2"
inherit autotools-utils libtool
inherit libtool
MY_P="${P}-stable"
@ -41,5 +41,7 @@ src_test() {
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README ChangeLog
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/libevent*.la
fi
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.15.ebuild,v 1.3 2011/10/24 10:15:13 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.15.ebuild,v 1.4 2011/11/27 22:14:57 jer Exp $
EAPI="2"
inherit autotools-utils libtool
inherit libtool
MY_P="${P}-stable"
@ -45,5 +45,7 @@ src_test() {
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README ChangeLog
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/libevent*.la
fi
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.16.ebuild,v 1.1 2011/11/19 17:42:09 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libevent/libevent-2.0.16.ebuild,v 1.2 2011/11/27 22:14:57 jer Exp $
EAPI="2"
inherit autotools-utils libtool
inherit libtool
MY_P="${P}-stable"
@ -39,11 +39,13 @@ src_configure() {
}
src_test() {
emake -C test check
emake -C test check | tee "${T}"/tests
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README ChangeLog
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/libevent*.la
fi
}

@ -1,5 +1,5 @@
--- libexplain-0.45.D001.orig/etc/configure.ac
+++ libexplain-0.45.D001/etc/configure.ac
--- libexplain-0.45.D001.orig/configure.ac
+++ libexplain-0.45.D001/configure.ac
@@ -26,6 +26,10 @@
AC_PROG_RANLIB
AC_PROG_YACC

@ -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/libexplain/libexplain-0.45.ebuild,v 1.1 2011/08/24 04:36:04 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.45.ebuild,v 1.2 2011/11/27 17:01:06 jlec Exp $
EAPI=4
inherit autotools eutils
@ -31,8 +31,8 @@ src_prepare() {
-e '/t0363a/d' \
-i Makefile.in || die
epatch "${FILESDIR}"/${P}-configure.patch
cp "${S}"/etc/configure.ac "${S}"
epatch "${FILESDIR}"/${P}-configure.patch
eautoreconf
}

@ -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/libexplain/libexplain-0.46.ebuild,v 1.1 2011/08/31 02:39:34 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.46.ebuild,v 1.2 2011/11/27 17:01:06 jlec Exp $
EAPI=4
inherit autotools eutils
@ -31,8 +31,8 @@ src_prepare() {
-e '/t0363a/d' \
-i Makefile.in || die
epatch "${FILESDIR}"/${PN}-0.45-configure.patch
cp "${S}"/etc/configure.ac "${S}"
epatch "${FILESDIR}"/${PN}-0.45-configure.patch
eautoreconf
}

@ -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/libexplain/libexplain-0.47.ebuild,v 1.1 2011/09/28 23:14:26 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.47.ebuild,v 1.2 2011/11/27 17:01:06 jlec Exp $
EAPI=4
inherit autotools eutils
@ -32,10 +32,10 @@ src_prepare() {
-e '/t0363a/d' \
-i Makefile.in || die
cp "${S}"/etc/configure.ac "${S}"
epatch "${FILESDIR}"/${PN}-0.45-configure.patch \
"${WORKDIR}"/${P}-parallel-make.patch
cp "${S}"/etc/configure.ac "${S}"
eautoreconf
}

@ -1,9 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.49.ebuild,v 1.2 2011/11/27 03:52:25 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.49.ebuild,v 1.4 2011/11/28 01:53:50 radhermit Exp $
EAPI=4
inherit autotools-utils eutils
inherit autotools-utils
MY_P="${P}.D001"
@ -22,12 +22,16 @@ DEPEND="
>=sys-libs/glibc-2.11"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${MY_P}
S=${WORKDIR}/${MY_P}
DOCS=( README )
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=(
"${FILESDIR}"/${PN}-0.45-configure.patch
)
src_prepare() {
# Portage incompatible test
sed \
@ -35,13 +39,8 @@ src_prepare() {
-e '/t0363a/d' \
-i Makefile.in || die
epatch "${FILESDIR}"/${PN}-0.45-configure.patch
cp "${S}"/etc/configure.ac "${S}"
eautoreconf
}
src_configure() {
econf \
$(use_enable static-libs static)
autotools-utils_src_prepare
eautoreconf
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.3.ebuild,v 1.4 2011/11/27 03:26:58 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.3.ebuild,v 1.5 2011/11/27 22:41:37 jer Exp $
EAPI="4"
inherit eutils multilib autotools-utils
inherit eutils multilib
DESCRIPTION="A library for applications dealing with netlink socket"
HOMEPAGE="http://www.infradead.org/~tgr/libnl/"
@ -28,7 +28,9 @@ src_configure() {
src_install() {
default
use static-libs || remove_libtool_files
if ! use static-libs; then
rm -f "${D}"/usr/lib*/lib*.la
fi
dodoc ChangeLog
}

@ -1,12 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpqxx/libpqxx-3.1-r2.ebuild,v 1.4 2011/10/19 00:20:18 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpqxx/libpqxx-3.1-r2.ebuild,v 1.5 2011/11/27 15:27:29 armin76 Exp $
EAPI="4"
inherit eutils
KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
DESCRIPTION="C++ client API for PostgreSQL. The standard front-end for writing C++ programs that use PostgreSQL."
SRC_URI="http://pqxx.org/download/software/${PN}/${P}.tar.gz"

@ -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/libtasn1/libtasn1-2.10.ebuild,v 1.2 2011/11/27 03:54:49 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-2.10.ebuild,v 1.3 2011/11/28 03:30:13 radhermit Exp $
EAPI=4
@ -20,20 +20,14 @@ DEPEND=">=dev-lang/perl-5.6
DOCS=( AUTHORS ChangeLog NEWS README THANKS )
AUTOTOOLS_IN_SOURCE_BUILD=1
src_configure(){
local myconf
[[ "${VALGRIND_TESTS}" == "0" ]] && myconf+=" --disable-valgrind-tests"
econf \
$(use_enable static-libs static) \
${myconf}
local myeconfargs
[[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=" --disable-valgrind-tests"
autotools-utils_src_configure
}
src_install() {
default
remove_libtool_files
autotools-utils_src_install
if use doc ; then
dodoc doc/libtasn1.pdf

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.2 2011/11/27 03:58:24 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtommath/libtommath-0.42.0-r1.ebuild,v 1.3 2011/11/27 23:08:27 jer Exp $
EAPI=4
inherit autotools-utils eutils multilib toolchain-funcs
inherit eutils multilib toolchain-funcs
DESCRIPTION="highly optimized and portable routines for integer based number theoretic applications"
HOMEPAGE="http://www.libtom.org/"
@ -17,8 +17,6 @@ IUSE="doc examples static-libs"
DEPEND="sys-devel/libtool"
AUTOTOOLS_IN_SOURCE_BUILD=1
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
@ -46,5 +44,5 @@ src_install() {
dodoc demo/*.c
fi
use static-libs || remove_libtool_files
use static-libs || find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete
}

@ -1,2 +1,3 @@
DIST newt-0.52.12.tar.gz 178027 RMD160 0d34b278e72c1b1305fc110e491e3bc96b42a374 SHA1 6952115806c7b1dbc36858eb4ca0596b235cf6f4 SHA256 2ba88dc3d118daf509c58e3707c43ad57dd3415d8164054e93fe76439f348529
DIST newt-0.52.13.tar.gz 183466 RMD160 c43d9b3acd800ba3590c85e9854ad7b7c8e9b34b SHA1 0891ad749560ea6071edd734a080c9d172d0da0e SHA256 01c254b00a3d27e22f13240b6db74df04e721ccec4d1d4fc7b45fee009efc05f
DIST newt-0.52.14.tar.gz 183621 RMD160 9654081ab6fad1b209e79e6a2d9f2440ecfd37c4 SHA1 1acb13d949e9438019d4c718c620472c1c3fbfed SHA256 f70f4f58baa60388ddf2e39249ffb00898fb40f2b2767e42e2ab51fe4b40978e

@ -0,0 +1,78 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/newt/newt-0.52.14.ebuild,v 1.1 2011/11/28 02:13:40 naota Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit eutils multilib python autotools
DESCRIPTION="Redhat's Newt windowing toolkit development files"
HOMEPAGE="https://fedorahosted.org/newt/"
SRC_URI="https://fedorahosted.org/releases/n/e/newt/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="gpm tcl nls"
RDEPEND="=sys-libs/slang-2*
>=dev-libs/popt-1.6
elibc_uclibc? ( sys-libs/ncurses )
gpm? ( sys-libs/gpm )
tcl? ( =dev-lang/tcl-8.5* )
"
DEPEND="${RDEPEND}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
# bug 73850
if use elibc_uclibc; then
sed -i -e 's:-lslang:-lslang -lncurses:g' Makefile.in || die
fi
sed -i Makefile.in \
-e 's|-ltcl8.4|-ltcl8.5|g' \
-e 's|$(SHCFLAGS) -o|$(LDFLAGS) &|g' \
-e 's|-g -o|$(CFLAGS) $(LDFLAGS) -o|g' \
-e 's|-shared -o|$(CFLAGS) $(LDFLAGS) &|g' \
-e 's|instroot|DESTDIR|g' \
-e 's| make | $(MAKE) |g' \
|| die "sed Makefile.in"
epatch "${FILESDIR}"/${PN}-0.52.13-gold.patch
eautoreconf
}
src_configure() {
econf \
$(use_with gpm gpm-support) \
$(use_with tcl) \
$(use_enable nls)
}
src_compile() {
emake PYTHONVERS="$(PYTHON)" || die "emake failed"
}
src_install () {
emake \
DESTDIR="${D}" \
PYTHONVERS="$(PYTHON)" \
install || die "make install failed"
dodoc peanuts.py popcorn.py tutorial.sgml
doman whiptail.1
}
pkg_postinst() {
python_mod_optimize snack.py
}
pkg_postrm() {
python_mod_cleanup snack.py
}

@ -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-python/dbus-python/dbus-python-0.84.0.ebuild,v 1.7 2011/10/31 19:44:42 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/dbus-python-0.84.0.ebuild,v 1.8 2011/11/27 19:07:37 armin76 Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -17,7 +17,7 @@ SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="doc examples test"
RDEPEND=">=dev-libs/dbus-glib-0.88

@ -0,0 +1 @@
DIST Frozen-Flask-0.7.tar.gz 72109 RMD160 c2fc3a1a9ba874a09599c898005b51814bfd99c8 SHA1 f0c17e2621c09954890b0ddff6a4df00e4a9e8ad SHA256 71f65b79f4a68b07fa142e5c6203bfa0aaf2fe16cafa5d8f0582809761c6a4f7

@ -0,0 +1,31 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/frozen-flask/frozen-flask-0.7.ebuild,v 1.2 2011/11/27 22:49:56 rafaelmartins Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
MY_PN="Frozen-Flask"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Freezes a Flask application into a set of static files."
HOMEPAGE="https://github.com/SimonSapin/Frozen-Flask http://pypi.python.org/pypi/Frozen-Flask"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-python/flask-0.7"
DEPEND="${RDEPEND}
dev-python/setuptools"
S="${WORKDIR}/${MY_P}"
PYTHON_MODNAME="flask_frozen"

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

@ -1,11 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pivy/pivy-0.5_alpha20110303.ebuild,v 1.2 2011/03/05 15:05:03 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pivy/pivy-0.5_alpha20110303.ebuild,v 1.3 2011/11/27 15:32:09 dilfridge Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
@ -18,9 +19,10 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="media-libs/coin
>=media-libs/SoQt-1.4.2_alpha"
RDEPEND="
media-libs/coin
>=media-libs/SoQt-1.4.2_alpha
"
DEPEND="${RDEPEND}
=dev-lang/swig-1.3*"
RESTRICT_PYTHON_ABIS="3.*"
|| ( =dev-lang/swig-1.3* >=dev-lang/swig-2.0.4-r1 )
"

@ -1 +1,2 @@
DIST notify-0.2.1.gem 5120 RMD160 5385129882ad000904fb61328e2bc36b34da1f37 SHA1 451445ec2bfad97f889e395a6046bab9e7871061 SHA256 401dfdf358e7eb46a235f481950c7e7c84edbe2eca75df60d545bb3a210a4e3f
DIST notify-0.3.0.gem 5632 RMD160 db913f41738d10a08a5131f5a6ff04eee8f63461 SHA1 6c81e3968929aef69f4d0832475bf5655f39f9cf SHA256 5ec9dbefdcf451dffecd075d3f066eaeaf25a64101d46885e8244a863a923424

@ -0,0 +1,24 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/notify/notify-0.3.0.ebuild,v 1.1 2011/11/28 02:17:53 naota Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18 jruby"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_EXTRADOC="README.md"
inherit ruby-fakegem
DESCRIPTION="A function to notify on cross platform"
HOMEPAGE="http://github.com/jugyo/notify"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="x11-libs/libnotify"

@ -1,12 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/racc/racc-1.4.7.ebuild,v 1.1 2011/10/20 06:09:22 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/racc/racc-1.4.7.ebuild,v 1.2 2011/11/27 19:24:55 graaff Exp $
EAPI=4
USE_RUBY="ree18 ruby18 ruby19 jruby"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_EXTRADOC="README.rdoc README.ja.rdoc TODO ChangeLog"
inherit multilib ruby-fakegem
@ -20,14 +20,16 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE=""
ruby_add_bdepend "dev-ruby/rake"
ruby_add_bdepend "dev-ruby/rake
doc? ( dev-ruby/hoe )"
all_ruby_prepare() {
# for Ruby 1.9.2 compatibility
sed -i -e '1i $: << "."' Rakefile || die
sed -i -e '/tasks\/email/s:^:#:' Rakefile || die "rakefile fix failed"
sed -i -e 's|/tmp/out|${TMPDIR:-/tmp}/out|' test/helper.rb || die "tests fix failed"
# Avoid depending on rake-compiler since we don't use it to compile
# the extension.
sed -i -e '/rake-compiler/ s:^:#:' -e '/extensiontask/ s:^:#:' Rakefile
sed -i -e '/ExtensionTask/,/^ end/ s:^:#:' Rakefile
}
each_ruby_prepare() {

@ -1,2 +1,3 @@
DIST drwright-0.17.tar.bz2 261762 RMD160 e94d4ac0fdca80831766bc242502e9d693e2509f SHA1 dbf75a2adc97fe1ae615a2889420d20ffe4ec2ff SHA256 931529384d58a3493f172cae8416367e01a840cdd624b089901f7e7232582e58
DIST drwright-3.2.1.tar.xz 1433164 RMD160 660d42f03b2ab77bf484ac366b29d0ce12edb2f4 SHA1 598917be26479722443027f5a22244a7e2ef9395 SHA256 2fed965a895d2377b975fe7e5abd14b9d443e0adf801586c516a99e005619b3c
DIST drwright-3.2.2.tar.xz 1449476 RMD160 23255a876f05371145e08d8d6fdb953d99c83a69 SHA1 4a63549b5f10b8df2057f4f42fd13069ea6022a0 SHA256 a4869eb3d4798f1c23d4f93572c999f98d2e8a9edf55ffba17a378de216299a7

@ -0,0 +1,39 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/drwright/drwright-3.2.2.ebuild,v 1.1 2011/11/27 19:13:45 eva Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="A GNOME 3 tool that forces you to take regular breaks to prevent RSI"
HOMEPAGE="http://git.gnome.org/browse/drwright"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-libs/glib-2.26.0:2
>=x11-libs/gtk+-3.0.0:3
>=gnome-base/gnome-settings-daemon-2.91.8
>=gnome-base/gnome-control-center-3.2
>=x11-libs/libnotify-0.7
media-libs/libcanberra[gtk3]
x11-libs/libX11
x11-libs/libXext
x11-libs/libXScrnSaver
"
DEPEND="${RDEPEND}
x11-proto/scrnsaverproto
sys-devel/gettext
>=dev-util/intltool-0.35.0
>=dev-util/pkgconfig-0.12.0
"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS"
G2CONF="${G2CONF} --disable-static"
}

@ -0,0 +1 @@
DIST gnome-shell-frippery-0.3.4.tgz 49051 RMD160 f277d02dfcdf568286be0142bb6314393244e61c SHA1 8953ba9c651286dda9b4fe12cccc0c9d8cb6b617 SHA256 9cdc84acec817306755a751f10dd3f0f79b4a76690c3cf65e944b535b324ff08

@ -0,0 +1,37 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-0.3.4.ebuild,v 1.1 2011/11/28 05:57:05 tetromino Exp $
EAPI="4"
DESCRIPTION="Unofficial extension pack providing GNOME 2-like features for GNOME 3"
HOMEPAGE="http://intgat.tigress.co.uk/rmy/extensions/index.html"
SRC_URI="http://intgat.tigress.co.uk/rmy/extensions/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="app-admin/eselect-gnome-shell-extensions
>=dev-libs/gjs-1.29
dev-libs/gobject-introspection
gnome-base/gnome-menus:3[introspection]
>=gnome-base/gnome-shell-3.2
media-libs/clutter:1.0[introspection]
x11-libs/pango[introspection]"
DEPEND=""
S="${WORKDIR}/.local/share/gnome-shell"
src_install() {
insinto /usr/share/gnome-shell/extensions
doins -r extensions/*@*
dodoc gnome-shell-frippery/{CHANGELOG,README}
}
pkg_postinst() {
ebegin "Updating list of installed extensions"
eselect gnome-shell-extensions update
eend $?
}

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

@ -1,3 +1,2 @@
DIST gnustep-base-1.20.1.tar.gz 2612827 RMD160 3f210ac74bf633bf1b5571ee3458e6db4f6d57b1 SHA1 5aff36405aa712473d51877ab77156d231297744 SHA256 fd495d7d800078f7fea7528472d5683899fb93f0270fe7e70f92cf310cd43610
DIST gnustep-base-1.22.0.tar.gz 2880760 RMD160 046d163b55e9da6da07f366afd6b871264b3c1d1 SHA1 bfff2b816c3076116b7d9d3a76347b5aa4c8502a SHA256 ebb86cdcf194891194079506b2e08bd09df7d5be5413cbbfa521d4ea76a77b3a
DIST gnustep-base-1.22.1.tar.gz 2887529 RMD160 822e800247ae50308d6bca766ace4eab276ea18a SHA1 61d61ca127a1beb580b9dfce3d907cfa6c98e881 SHA256 246819d15aa2b836a5e36405a52f73340cded8ff0039dd584288ba52bbe9d880

@ -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/gnustep-base/gnustep-base/gnustep-base-1.20.1.ebuild,v 1.6 2010/08/13 17:29:16 josejx Exp $
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.20.1.ebuild,v 1.7 2011/11/27 19:41:02 voyageur Exp $
EAPI="3"
@ -14,14 +14,14 @@ KEYWORDS="~alpha amd64 ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~s
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE="+libffi gnutls zeroconf"
IUSE="+libffi ssl zeroconf"
RDEPEND="${GNUSTEP_CORE_DEPEND}
>=gnustep-base/gnustep-make-2.0.8
!libffi? ( dev-libs/ffcall
gnustep-base/gnustep-make[-native-exceptions] )
libffi? ( virtual/libffi )
gnutls? ( net-libs/gnutls )
ssl? ( net-libs/gnutls )
>=dev-libs/libxml2-2.6
>=dev-libs/libxslt-1.1
>=dev-libs/gmp-4.1
@ -44,7 +44,7 @@ src_configure() {
myconf="--disable-libffi --enable-ffcall"
fi
myconf="$myconf $(use_enable gnutls tls)"
myconf="$myconf $(use_enable ssl tls)"
myconf="$myconf $(use_enable zeroconf)"
myconf="$myconf --with-xml-prefix=${EPREFIX}/usr"
myconf="$myconf --with-gmp-include=${EPREFIX}/usr/include --with-gmp-library=${EPREFIX}/usr/lib"

@ -1,78 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.22.0.ebuild,v 1.2 2011/04/26 08:06:35 voyageur Exp $
EAPI="3"
inherit gnustep-base
DESCRIPTION="A library of general-purpose, non-graphical Objective C objects."
HOMEPAGE="http://www.gnustep.org"
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE="gnutls +icu +libffi zeroconf"
RDEPEND="${GNUSTEP_CORE_DEPEND}
>=gnustep-base/gnustep-make-2.6.0
gnutls? ( net-libs/gnutls )
icu? ( >=dev-libs/icu-4.0 )
!libffi? ( dev-libs/ffcall
gnustep-base/gnustep-make[-native-exceptions] )
libffi? ( virtual/libffi )
>=dev-libs/libxml2-2.6
>=dev-libs/libxslt-1.1
>=dev-libs/gmp-4.1
>=dev-libs/openssl-0.9.7
>=sys-libs/zlib-1.2
zeroconf? ( || (
net-dns/avahi[mdnsresponder-compat]
net-misc/mDNSResponder ) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
egnustep_env
local myconf
if use libffi;
then
myconf="--enable-libffi --disable-ffcall --with-ffi-include=$(pkg-config --variable=includedir libffi)"
else
myconf="--disable-libffi --enable-ffcall"
fi
myconf="$myconf $(use_enable icu)"
myconf="$myconf $(use_enable gnutls tls)"
myconf="$myconf $(use_enable zeroconf)"
myconf="$myconf --with-xml-prefix=${EPREFIX}/usr"
myconf="$myconf --with-gmp-include=${EPREFIX}/usr/include --with-gmp-library=${EPREFIX}/usr/lib"
myconf="$myconf --with-default-config=${EPREFIX}/etc/GNUstep/GNUstep.conf"
econf $myconf || die "configure failed"
}
src_install() {
# We need to set LD_LIBRARY_PATH because the doc generation program
# uses the gnustep-base libraries. Since egnustep_env "cleans the
# environment" including our LD_LIBRARY_PATH, we're left no choice
# but doing it like this.
egnustep_env
egnustep_install
if use doc ; then
export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}"
egnustep_doc
fi
egnustep_install_config
}
pkg_postinst() {
ewarn "The shared library version has changed in this release."
ewarn "You will need to recompile all Applications/Tools/etc in order"
ewarn "to use this library. Please run revdep-rebuild to do so"
}

@ -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/gnustep-base/gnustep-base/gnustep-base-1.22.1.ebuild,v 1.1 2011/09/29 22:05:28 voyageur Exp $
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.22.1.ebuild,v 1.2 2011/11/27 19:41:02 voyageur Exp $
EAPI="3"
@ -14,15 +14,15 @@ KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linu
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE="gnutls +icu +libffi zeroconf"
IUSE="+icu +libffi ssl zeroconf"
RDEPEND="${GNUSTEP_CORE_DEPEND}
>=gnustep-base/gnustep-make-2.6.0
gnutls? ( net-libs/gnutls )
icu? ( >=dev-libs/icu-4.0 )
!libffi? ( dev-libs/ffcall
gnustep-base/gnustep-make[-native-exceptions] )
libffi? ( virtual/libffi )
ssl? ( net-libs/gnutls )
>=dev-libs/libxml2-2.6
>=dev-libs/libxslt-1.1
>=dev-libs/gmp-4.1
@ -46,7 +46,7 @@ src_configure() {
fi
myconf="$myconf $(use_enable icu)"
myconf="$myconf $(use_enable gnutls tls)"
myconf="$myconf $(use_enable ssl tls)"
myconf="$myconf $(use_enable zeroconf)"
myconf="$myconf --with-xml-prefix=${EPREFIX}/usr"
myconf="$myconf --with-gmp-include=${EPREFIX}/usr/include --with-gmp-library=${EPREFIX}/usr/lib"

Binary file not shown.

@ -0,0 +1,13 @@
Index: sql/bayes_mysql.sql
===================================================================
--- sql/bayes_mysql.sql (revision 1139005)
+++ sql/bayes_mysql.sql (working copy)
@@ -22,7 +22,7 @@
CREATE TABLE bayes_token (
id int(11) NOT NULL default '0',
- token char(5) NOT NULL default '',
+ token binary(5) NOT NULL default '',
spam_count int(11) NOT NULL default '0',
ham_count int(11) NOT NULL default '0',
atime int(11) NOT NULL default '0',

@ -0,0 +1,114 @@
Index: sql/README.bayes
===================================================================
--- sql/README.bayes (revision 1139008)
+++ sql/README.bayes (working copy)
@@ -17,27 +17,37 @@
bayes_store_module Mail::SpamAssassin::BayesStore::SQL
This directive is used by the Bayes module to determine which storage
-module should be used. If not set it will default to:
+module should be used. If not set it will default to:
Mail::SpamAssassin::BayesStore::DBM
+The storage module Mail::SpamAssassin::BayesStore::SQL is an older generic
+SQL module which can be also be used with versions of MySQL which did not
+have support for an InnoDB engine and transactions. If choosing this module
+consider replacing the InnoDB engine with MyISAM (explicitly or defaulted)
+in the schema (files bayes_mysql.sql and awl_mysql.sql). Note that old
+versions of MySQL expect syntax TYPE=MyISAM instead of ENGINE=MyISAM,
+while newer versions throw a syntax error on TYPE and only allow ENGINE.
+In short: replace ENGINE=InnoDB with TYPE=MyISAM (or just leave it out)
+in the bayes_mysql.sql and awl_mysql.sql schemas if ENGINE=InnoDB is not
+accepted.
+
+There is also a MySQL specific storage driver available to provides a
+small boost in performance. It requires version 4.1 or above of the
+MySQL database software to work properly. In addition, it provides
+rollback on error functionality if you create your bayes database table
+using the InnoDB storage engine. WARNING: Using this module with a version
+of MySQL < 4.1 could have unexpected results. To use the MySQL 4.1+
+specific module set your bayes_store_module directive accordingly:
+ bayes_store_module Mail::SpamAssassin::BayesStore::MySQL
+
PostgreSQL users will want to use the PostgreSQL specific storage
module:
-bayes_store_module Mail::SpamAssassin::BayesStore::PgSQL
+ bayes_store_module Mail::SpamAssassin::BayesStore::PgSQL
This module provides a slightly different interface to makes better
use of the resources that PostgreSQL offers. In addition, please make
sure that you follow the instructions below for loading the proper
procedural language and installing the tables and stored procedure.
-There is also a MySQL specific storage driver available to provides a
-small boost in performance. It requires version 4.1 or above of the
-MySQL database software to work properly. In addition, it provides
-rollback on error functionality if you create your bayes database
-table using the InnoDB storage engine (ie s/MyISAM/InnoDB/ on the
-bayes_mysql.sql file). WARNING: Using this module with a version of
-MySQL < 4.1 could have unexpected results. To use the MySQL 4.1+
-specific module set your bayes_store_module directive accordingly:
-bayes_store_module Mail::SpamAssassin::BayesStore::MySQL
-
Additional configuration directives provided by BayesSQL:
bayes_sql_dsn DBI:driver:database:hostname[:port]
Index: sql/awl_mysql.sql
===================================================================
--- sql/awl_mysql.sql (revision 1139008)
+++ sql/awl_mysql.sql (working copy)
@@ -1,9 +1,9 @@
CREATE TABLE awl (
username varchar(100) NOT NULL default '',
- email varchar(255) NOT NULL default '',
+ email varbinary(255) NOT NULL default '',
ip varchar(40) NOT NULL default '',
count int(11) NOT NULL default '0',
totscore float NOT NULL default '0',
signedby varchar(255) NOT NULL default '',
PRIMARY KEY (username,email,signedby,ip)
-) TYPE=MyISAM;
+) ENGINE=InnoDB;
Index: sql/bayes_mysql.sql
===================================================================
--- sql/bayes_mysql.sql (revision 1139008)
+++ sql/bayes_mysql.sql (working copy)
@@ -3,13 +3,13 @@
id int(11) NOT NULL default '0',
runtime int(11) NOT NULL default '0',
KEY bayes_expire_idx1 (id)
-) TYPE=MyISAM;
+) ENGINE=InnoDB;
CREATE TABLE bayes_global_vars (
variable varchar(30) NOT NULL default '',
value varchar(200) NOT NULL default '',
PRIMARY KEY (variable)
-) TYPE=MyISAM;
+) ENGINE=InnoDB;
INSERT INTO bayes_global_vars VALUES ('VERSION','3');
@@ -18,7 +18,7 @@
msgid varchar(200) binary NOT NULL default '',
flag char(1) NOT NULL default '',
PRIMARY KEY (id,msgid)
-) TYPE=MyISAM;
+) ENGINE=InnoDB;
CREATE TABLE bayes_token (
id int(11) NOT NULL default '0',
@@ -28,7 +28,7 @@
atime int(11) NOT NULL default '0',
PRIMARY KEY (id, token),
INDEX bayes_token_idx1 (id, atime)
-) TYPE=MyISAM;
+) ENGINE=InnoDB;
CREATE TABLE bayes_vars (
id int(11) NOT NULL AUTO_INCREMENT,
@@ -43,4 +43,4 @@
newest_token_age int(11) NOT NULL default '0',
PRIMARY KEY (id),
UNIQUE bayes_vars_idx1 (username)
-) TYPE=MyISAM;
+) ENGINE=InnoDB;

@ -0,0 +1,88 @@
--- lib/Mail/SpamAssassin/BayesStore/MySQL.pm (revision 1138970)
+++ lib/Mail/SpamAssassin/BayesStore/MySQL.pm (working copy)
@@ -840,14 +840,28 @@
return 0;
}
+ # With ON DUPLICATE KEY UPDATE, the affected-rows value per row is 1 if
+ # the row is inserted as a new row and 2 if an existing row is updated.
+ #
+ # Due to a MySQL server bug a value of 3 can be seen.
+ # See: http://bugs.mysql.com/bug.php?id=46675
+ # When executing the INSERT ... ON DUPLICATE KEY UPDATE statement
+ # and checking the rows return count:
+ # mysql_client_found_rows = 0: The second INSERT returns a row count
+ # of 2 in all MySQL versions.
+ # mysql_client_found_rows = 1: The second INSERT returns this row count:
+ # Before MySQL 5.1.20: 2
+ # MySQL 5.1.20: undef on Mac OS X, 139775481 on Linux (garbage?)
+ # MySQL 5.1.21 and up: 3
+ #
my $num_rows = $rc;
$sth->finish();
- if ($num_rows == 1 || $num_rows == 2) {
+ if ($num_rows == 1 || $num_rows == 2 || $num_rows == 3) {
my $token_count_update = '';
- $token_count_update = "token_count = token_count + 1," if ($num_rows == 1);
+ $token_count_update = "token_count = token_count + 1," if $num_rows == 1;
$sql = "UPDATE bayes_vars SET
$token_count_update
newest_token_age = GREATEST(newest_token_age, ?),
@@ -872,7 +886,11 @@
}
else {
# $num_rows was not what we expected
- dbg("bayes: _put_token: Updated an unexpected number of rows.");
+ my $token_displ = $token;
+ $token_displ =~ s/(.)/sprintf('%02x',ord($1))/egs;
+ dbg("bayes: _put_token: Updated an unexpected number of rows: %s, ".
+ "id: %s, token (hex): %s",
+ $num_rows, $self->{_userid}, $token_displ);
$self->{_dbh}->rollback();
return 0;
}
@@ -987,8 +1005,24 @@
else {
my $num_rows = $rc;
- $need_atime_update_p = 1 if ($num_rows == 1 || $num_rows == 2);
- $new_tokens++ if ($num_rows == 1);
+ # With ON DUPLICATE KEY UPDATE, the affected-rows value per row is 1 if
+ # the row is inserted as a new row and 2 if an existing row is updated.
+ # But see MySQL bug (as above): http://bugs.mysql.com/bug.php?id=46675
+
+ if ($num_rows == 1) {
+ $new_tokens++;
+ $need_atime_update_p = 1;
+ } elsif ($num_rows == 2 || $num_rows == 3) {
+ $need_atime_update_p = 1;
+ } else {
+ # $num_rows was not what we expected
+ my $token_displ = $token;
+ $token_displ =~ s/(.)/sprintf('%02x',ord($1))/egs;
+ dbg("bayes: _put_tokens: Updated an unexpected number of rows: %s, ".
+ "id: %s, token (hex): %s",
+ $num_rows, $self->{_userid}, $token_displ);
+ $error_p = 1;
+ }
}
}
@@ -1026,10 +1060,10 @@
}
}
else {
- # $num_rows was not what we expected
- dbg("bayes: _put_tokens: Updated an unexpected number of rows.");
- $self->{_dbh}->rollback();
- return 0;
+ info("bayes: _put_tokens: no atime updates needed? Num of tokens: %d",
+ scalar keys %{$tokens});
+# $self->{_dbh}->rollback();
+# return 0;
}
}

@ -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/mail-filter/spamassassin/spamassassin-3.3.2.ebuild,v 1.1 2011/06/25 13:30:11 tove Exp $
# $Header: /var/cvsroot/gentoo-x86/mail-filter/spamassassin/spamassassin-3.3.2-r1.ebuild,v 1.1 2011/11/27 19:44:24 idl0r Exp $
EAPI=4
@ -8,7 +8,7 @@ inherit perl-module toolchain-funcs eutils
MY_P=Mail-SpamAssassin-${PV//_/-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="SpamAssassin is an extensible email filter which is used to identify spam."
DESCRIPTION="SpamAssassin is an extensible email filter which is used to identify spam"
HOMEPAGE="http://spamassassin.apache.org/"
SRC_URI="mirror://apache/spamassassin/source/${MY_P}.tar.bz2"
@ -61,6 +61,19 @@ RDEPEND="${DEPEND}"
SRC_TEST="do"
src_prepare() {
# http://old.nabble.com/Migrating-bayes-to-mysql-fails-with-parsing-errors-td31889789i20.html
# https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6624
epatch "${FILESDIR}/${P}-mysql_count_rows.patch"
#https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6625
epatch "${FILESDIR}/${P}-binary_token.patch"
# https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6626
epatch "${FILESDIR}/${P}-innodb.patch"
}
src_configure() {
# - Set SYSCONFDIR explicitly so we can't get bitten by bug 48205 again
# (just to be sure, nobody knows how it could happen in the first place).
@ -129,13 +142,21 @@ src_install () {
newinitd "${FILESDIR}"/3.3.1-spamd.init spamd
newconfd "${FILESDIR}"/3.0.0-spamd.conf spamd
use postgres && \
sed -i -e 's:@USEPOSTGRES@::' "${D}/etc/init.d/spamd" || \
if use postgres; then
sed -i -e 's:@USEPOSTGRES@::' "${D}/etc/init.d/spamd"
dodoc sql/*_pg.sql
else
sed -i -e '/@USEPOSTGRES@/d' "${D}/etc/init.d/spamd"
fi
if use mysql; then
sed -i -e 's:@USEMYSQL@::' "${D}/etc/init.d/spamd"
use mysql && \
sed -i -e 's:@USEMYSQL@::' "${D}/etc/init.d/spamd" || \
dodoc sql/*_mysql.sql
else
sed -i -e '/@USEMYSQL@/d' "${D}/etc/init.d/spamd"
fi
dodoc NOTICE TRADEMARK CREDITS INSTALL.VMS UPGRADE USAGE \
sql/README.bayes sql/README.awl procmailrc.example sample-nonspam.txt \

@ -1,2 +1,3 @@
DIST msmtp-1.4.24.tar.bz2 299358 RMD160 5d342818bbbeee303c071a403fd86d40404ed5c2 SHA1 4c9783a888bdd7da6f39ee6fd2d52585c3aee6c0 SHA256 f19f3fcc67da448420b3adbd5add09f8fe110664dd64f3c2cd693ef0cb736887
DIST msmtp-1.4.25.tar.bz2 302039 RMD160 4c74b9e939424015c4a474268273a264e9f3c1bd SHA1 ee3be4e250cbd6fef2fb14af4eadfc0ce58ef424 SHA256 65796adf60e1ebb4341f8415bd3cfa6647226bdba5fbaa5af7bc369808ab4e63
DIST msmtp-1.4.26.tar.bz2 301686 RMD160 9e552483193129589510f589f3d11ed4ed0c0abb SHA1 0ce5352447b01dc21970b7a00cf13b8a3e7172c9 SHA256 53a3bbea4fa9dbc2b353deeec6ffa9b681ea228cae67f19d3e1197845c62cde2

@ -0,0 +1,120 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/msmtp/msmtp-1.4.26.ebuild,v 1.1 2011/11/28 02:55:43 radhermit Exp $
EAPI=4
inherit multilib python
DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
HOMEPAGE="http://msmtp.sourceforge.net/"
SRC_URI="mirror://sourceforge/msmtp/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc gnome-keyring gnutls idn +mta nls sasl ssl vim-syntax"
CDEPEND="
gnome-keyring? (
dev-python/gnome-keyring-python
gnome-base/libgnome-keyring
)
idn? ( net-dns/libidn )
nls? ( virtual/libintl )
sasl? ( virtual/gsasl )
ssl? (
gnutls? ( net-libs/gnutls )
!gnutls? ( dev-libs/openssl )
)"
RDEPEND="${CDEPEND}
net-mail/mailbase
mta? ( !mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/nbsmtp
!mail-mta/netqmail
!mail-mta/nullmailer
!mail-mta/postfix
!mail-mta/qmail-ldap
!mail-mta/sendmail
!<mail-mta/ssmtp-2.64-r2
!>=mail-mta/ssmtp-2.64-r2[mta] )"
DEPEND="${CDEPEND}
doc? ( virtual/texi2dvi )
nls? ( sys-devel/gettext )
dev-util/pkgconfig"
REQUIRED_USE="gnutls? ( ssl )"
src_prepare() {
# Use default Gentoo location for mail aliases
sed -i -e 's:/etc/aliases:/etc/mail/aliases:' scripts/find_alias/find_alias_for_msmtp.sh
python_convert_shebangs 2 scripts/msmtp-gnome-tool/msmtp-gnome-tool.py
}
src_configure() {
econf \
$(use_with gnome-keyring ) \
$(use_with idn libidn) \
$(use_enable nls) \
$(use_with sasl libgsasl) \
$(use_with ssl ssl $(use gnutls && echo "gnutls" || echo "openssl"))
}
src_compile() {
default
if use doc ; then
cd doc || die
emake html pdf
fi
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS ChangeLog NEWS README THANKS doc/{Mutt+msmtp.txt,msmtprc*}
if use doc ; then
dohtml doc/msmtp.html
dodoc doc/msmtp.pdf
fi
if use gnome-keyring ; then
src_install_contrib msmtp-gnome-tool msmtp-gnome-tool.py README
fi
if use mta ; then
dodir /usr/sbin
dosym /usr/bin/msmtp /usr/sbin/sendmail
dosym /usr/bin/msmtp /usr/$(get_libdir)/sendmail
fi
if use vim-syntax ; then
insinto /usr/share/vim/vimfiles/syntax
doins scripts/vim/msmtp.vim
fi
src_install_contrib find_alias find_alias_for_msmtp.sh
src_install_contrib msmtpqueue "*.sh" "README ChangeLog"
src_install_contrib msmtpq "msmtpq msmtp-queue" README.msmtpq
src_install_contrib set_sendmail set_sendmail.sh set_sendmail.conf
}
src_install_contrib() {
subdir="$1"
bins="$2"
docs="$3"
local dir=/usr/share/${PN}/$subdir
insinto ${dir}
exeinto ${dir}
for i in $bins ; do
doexe scripts/$subdir/$i
done
for i in $docs ; do
newdoc scripts/$subdir/$i $subdir.$i
done
}

@ -1,2 +1,3 @@
DIST eog-2.32.1.tar.bz2 2804681 RMD160 3e3a3a4ac51b97a13f278a11ec0bfa90f25b6af2 SHA1 40fe8ec6bc6cbc118e9ce538e40f8c86b5709a51 SHA256 543672fb8e8e300bf2cf4c7eef43b5b1624e2e48e6aa0801a083ae7beb2d7078
DIST eog-3.2.1.tar.xz 3206844 RMD160 2cc79c4b918b32e1bd5d7494e6decf88de31d0f1 SHA1 b719b01b5863c5089825baa6788d22493264e006 SHA256 ae20715790796061e51132804f5925c5a61a1e615527c7c746cd8b76a8f97c89
DIST eog-3.2.2.tar.xz 3212240 RMD160 4b68dd26ce60f6e3784be29a73a8b16248d61cea SHA1 d882243c806893cdf634b9c3db41a05fae08562a SHA256 315625babf04293341bd0b3ae26337d11c8696422d5dc4442ad551b25db42530

@ -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/media-gfx/eog/eog-2.32.1.ebuild,v 1.8 2011/10/19 21:28:27 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/eog-2.32.1.ebuild,v 1.9 2011/11/27 18:09:26 eva Exp $
EAPI="3"
GCONF_DEBUG="yes"
@ -17,9 +17,7 @@ KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="dbus doc exif jpeg lcms python svg tiff xmp"
RDEPEND=">=x11-libs/gtk+-2.18:2
|| (
x11-libs/gtk+:2[jpeg?,tiff?]
x11-libs/gdk-pixbuf:2[jpeg?,tiff?] )
x11-libs/gdk-pixbuf:2[jpeg?,tiff?]
>=dev-libs/glib-2.25.9:2
>=dev-libs/libxml2-2
>=gnome-base/gconf-2.31.1

@ -0,0 +1,58 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/eog-3.2.2.ebuild,v 1.1 2011/11/27 18:06:54 eva Exp $
EAPI="4"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="The Eye of GNOME image viewer"
HOMEPAGE="http://www.gnome.org/projects/eog/"
LICENSE="GPL-2"
SLOT="1"
IUSE="doc +exif +introspection +jpeg lcms +svg tiff xmp"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
RDEPEND=">=x11-libs/gtk+-3.0.2:3[introspection]
>=dev-libs/glib-2.29.4:2
>=dev-libs/libxml2-2:2
>=dev-libs/libpeas-0.7.4[gtk]
>=gnome-base/gnome-desktop-2.91.2:3
>=gnome-base/gsettings-desktop-schemas-2.91.92
>=x11-themes/gnome-icon-theme-2.19.1
>=x11-misc/shared-mime-info-0.20
x11-libs/gdk-pixbuf:2[jpeg?,tiff?]
x11-libs/libX11
exif? (
>=media-libs/libexif-0.6.14
virtual/jpeg:0 )
introspection? ( >=dev-libs/gobject-introspection-0.9.3 )
jpeg? ( virtual/jpeg:0 )
lcms? ( media-libs/lcms:2 )
svg? ( >=gnome-base/librsvg-2.26:2 )
xmp? ( media-libs/exempi:2 )"
DEPEND="${RDEPEND}
app-text/gnome-doc-utils
sys-devel/gettext
>=dev-util/intltool-0.40
>=dev-util/pkgconfig-0.17
doc? ( >=dev-util/gtk-doc-1.10 )"
pkg_setup() {
G2CONF="${G2CONF}
$(use_enable introspection)
$(use_with jpeg libjpeg)
$(use_with exif libexif)
$(use_with lcms cms)
$(use_with xmp)
$(use_with svg librsvg)
--disable-scrollkeeper
--disable-schemas-compile"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
}

@ -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/media-gfx/potrace/potrace-1.10-r1.ebuild,v 1.5 2011/11/27 04:03:24 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/potrace/potrace-1.10-r1.ebuild,v 1.6 2011/11/28 02:16:13 radhermit Exp $
EAPI="4"
@ -15,19 +15,18 @@ SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
IUSE="metric static-libs"
DOCS=( AUTHORS ChangeLog NEWS README )
RDEPEND="sys-libs/zlib"
DEPEND="${RDEPEND}"
AUTOTOOLS_IN_SOURCE_BUILD=1
DOCS=( AUTHORS ChangeLog NEWS README )
src_configure() {
econf \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--enable-zlib \
--with-libpotrace \
$(use_enable metric a4) \
$(use_enable metric) \
$(use_enable static-libs static)
local myeconfargs=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}
--enable-zlib
--with-libpotrace
$(use_enable metric a4)
$(use_enable metric)
)
autotools-utils_src_configure
}

@ -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/media-gfx/xsane/xsane-0.998.ebuild,v 1.5 2011/09/24 16:40:26 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.998.ebuild,v 1.6 2011/11/27 18:43:43 nixnut Exp $
EAPI="4"
@ -13,7 +13,7 @@ SRC_URI="http://www.xsane.org/download/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~ppc ~ppc64 sparc x86"
KEYWORDS="alpha amd64 ppc ~ppc64 sparc x86"
IUSE="nls jpeg png tiff gimp lcms ocr"
RDEPEND="media-gfx/sane-backends

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild,v 1.29 2011/11/27 04:05:21 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild,v 1.30 2011/11/28 03:26:54 radhermit Exp $
EAPI=4
inherit eutils autotools-utils
inherit autotools-utils
PATCHLEVEL="2"
DESCRIPTION="MPEG-1 and MPEG-4 video encoding library"
@ -17,23 +17,21 @@ SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86"
IUSE="mmx static-libs"
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=( "${FILESDIR}"/${P}-gcc43.patch )
DOCS=( AUTHORS BUGS CHANGES README TODO )
src_prepare() {
EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/${PV}
# Do not add -march=i586, bug #41770.
sed -i -e 's:-march=i[345]86 ::g' configure
epatch "${FILESDIR}/${P}-gcc43.patch"
autotools-utils_src_prepare
}
src_configure() {
econf \
$(use_enable mmx) \
$(use_enable static-libs static)
}
src_install() {
default
remove_libtool_files
local myeconfargs=(
$(use_enable mmx)
)
autotools-utils_src_configure
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmediainfo/libmediainfo-0.7.51.ebuild,v 1.2 2011/11/27 04:14:12 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmediainfo/libmediainfo-0.7.51.ebuild,v 1.3 2011/11/28 03:20:05 radhermit Exp $
EAPI="4"
inherit autotools-utils multilib flag-o-matic eutils
inherit autotools multilib flag-o-matic eutils
MY_PN="MediaInfo"
DESCRIPTION="MediaInfo libraries"
@ -27,8 +27,6 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MY_PN}Lib/Project/GNU/Library"
AUTOTOOLS_IN_SOURCE_BUILD=1
src_prepare() {
pushd "${WORKDIR}"/${MY_PN}Lib > /dev/null
epatch "${FILESDIR}"/${PN}-0.7.48-system-tinyxml.patch
@ -79,5 +77,5 @@ src_install() {
dohtml -r "${WORKDIR}"/${MY_PN}Lib/Doc/*
fi
remove_libtool_files all
find "${ED}" -name '*.la' -exec rm -f {} +
}

@ -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/media-libs/libquvi/libquvi-0.4.0.ebuild,v 1.3 2011/11/27 04:08:04 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild,v 1.4 2011/11/28 03:13:59 radhermit Exp $
EAPI=4
@ -23,21 +23,20 @@ DEPEND="${RDEPEND}
app-arch/xz-utils
dev-util/pkgconfig"
AUTOTOOLS_IN_SOURCE_BUILD=1
DOCS=( AUTHORS ChangeLog NEWS README )
src_configure() {
econf \
--with-manual \
$(use_enable static-libs static)
local myeconfargs=(
--with-manual
)
autotools-utils_src_configure
}
src_install() {
default
autotools-utils_src_install
if use examples ; then
docinto examples
dodoc examples/*.{c,h}
fi
remove_libtool_files all
}

@ -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/media-libs/libsmf/libsmf-1.3.ebuild,v 1.2 2011/11/27 04:14:40 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsmf/libsmf-1.3.ebuild,v 1.3 2011/11/28 03:09:50 radhermit Exp $
EAPI=4
@ -21,16 +21,17 @@ DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
dev-util/pkgconfig"
AUTOTOOLS_IN_SOURCE_BUILD=1
DOCS=( NEWS TODO )
src_configure() {
econf \
$(use_with readline) \
$(use_enable static-libs static)
local myeconfargs=(
$(use_with readline)
)
autotools-utils_src_configure
}
src_compile() {
default
autotools-utils_src_compile
if use doc ; then
doxygen doxygen.cfg || die
@ -38,7 +39,6 @@ src_compile() {
}
src_install() {
default
remove_libtool_files all
autotools-utils_src_install
use doc && dohtml -r api
}

@ -1,10 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/libzen-0.4.23.ebuild,v 1.2 2011/11/27 04:07:20 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/libzen-0.4.23.ebuild,v 1.4 2011/11/28 03:05:25 radhermit Exp $
EAPI="4"
inherit autotools-utils multilib eutils
inherit autotools-utils multilib
MY_PN="ZenLib"
DESCRIPTION="Shared library for libmediainfo and mediainfo"
@ -22,35 +22,37 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MY_PN}/Project/GNU/Library"
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=(
"${FILESDIR}"/${PN}-0.4.21-no-tinyxml.patch
)
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.4.21-no-tinyxml.patch
autotools-utils_src_prepare
sed -i -e "s:-O2::" configure.ac
eautoreconf
}
src_configure() {
econf \
--enable-unicode \
--enable-shared \
$(use_enable static-libs static)
local myeconfargs=(
--enable-unicode
)
autotools-utils_src_configure
}
src_compile() {
default
autotools-utils_src_compile
if use doc; then
if use doc ; then
cd "${WORKDIR}"/${MY_PN}/Source/Doc
doxygen Doxyfile || die
fi
}
src_install() {
default
autotools-utils_src_install
insinto /usr/$(get_libdir)/pkgconfig
doins "${S}"/${PN}.pc
doins "${AUTOTOOLS_BUILD_DIR}"/${PN}.pc
for x in ./ Base64 Format/Html Format/Http HTTP_Client ; do
insinto /usr/include/${MY_PN}/${x}
@ -58,9 +60,7 @@ src_install() {
done
dodoc "${WORKDIR}"/${MY_PN}/History.txt
if use doc; then
if use doc ; then
dohtml "${WORKDIR}"/${MY_PN}/Doc/*
fi
remove_libtool_files all
}

@ -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/media-sound/bristol/bristol-0.60.9.ebuild,v 1.3 2011/11/27 06:05:02 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild,v 1.5 2011/11/28 02:14:21 radhermit Exp $
EAPI="4"
@ -27,18 +27,19 @@ DEPEND="${RDEPEND}
DOCS=( AUTHORS ChangeLog HOWTO NEWS README )
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=( "${FILESDIR}"/${P}-cflags.patch )
src_prepare() {
epatch "${FILESDIR}"/${P}-cflags.patch
autotools-utils_src_prepare
eautoreconf
}
src_configure() {
econf \
--disable-version-check \
$(use_enable alsa) \
$(use_enable oss) \
$(use_enable static-libs static)
# $(use_enable osc liblo)
local myeconfargs=(
--disable-version-check
$(use_enable alsa)
$(use_enable oss)
#$(use_enable osc liblo)
)
autotools-utils_src_configure
}

@ -0,0 +1 @@
DIST v4l2loopback-0.4.0.tar.gz 195762 RMD160 2f3e305a13f93fc8e86d5716de6e948bac2ef7f2 SHA1 788c4602afc077563ee0f10135d2f485ccdfdad6 SHA256 cb2c2255f9cee4eab04e34f0ff90de83643088e6d6fccbf72d4dca2de7664b0f

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

@ -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-video/v4l2loopback/v4l2loopback-0.4.0.ebuild,v 1.1 2011/11/28 05:19:56 naota Exp $
EAPI=4
inherit linux-mod
DESCRIPTION="v4l2 loopback device which output is it's own input"
HOMEPAGE="https://github.com/umlaeute/v4l2loopback"
SRC_URI="https://github.com/umlaeute/v4l2loopback/tarball/v${PV} -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
CONFIG_CHECK="VIDEO_DEV"
MODULE_NAMES="v4l2loopback(video:)"
BUILD_TARGETS="all"
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"/umlaeute-v4l2loopback-26fbb08

@ -1,8 +1,8 @@
# 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/media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r1.ebuild,v 1.1 2010/09/24 13:16:57 hd_brummy Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r1.ebuild,v 1.2 2011/11/27 18:44:27 hd_brummy Exp $
EAPI="2"
EAPI="4"
inherit eutils
@ -14,7 +14,7 @@ SRC_URI="http://www.muempf.de/down/${SCRIPT}-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""

@ -2,7 +2,7 @@
>=dev-libs/gmp-5.0.2 >=dev-libs/mpfr-3.0.1 >=sys-libs/glibc-2.8 >=sys-libs/zlib-1.1.4
0
mirror://gnu/binutils/binutils-2.20.1.tar.bz2 ftp://sources.redhat.com/pub/newlib/newlib-1.18.0.tar.gz mirror://gnu/gcc/gcc-4.4.3/gcc-4.4.3.tar.bz2 http://gsdview.appspot.com/nativeclient-archive2/x86_toolchain/r6869/nacltoolchain-buildscripts-r6869.tar.gz http://gsdview.appspot.com/nativeclient-archive2/x86_toolchain/r6869/naclbinutils-2.20.1-r6869.patch.bz2 http://gsdview.appspot.com/nativeclient-archive2/x86_toolchain/r6869/naclnewlib-1.18.0-r6869.patch.bz2 http://gsdview.appspot.com/nativeclient-archive2/x86_toolchain/r6869/naclgcc-4.4.3-r6869.patch.bz2
strip
strip test
http://code.google.com/chrome/nativeclient/
BSD || ( GPL-3 LGPL-3 ) NEWLIB LIBGLOSS GPL-2 GPL-3 LGPL-3 || ( GPL-3 libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.2
Native Client newlib-based toolchain (only for compiling IRT)

@ -6,7 +6,7 @@ http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.98.tar.gz
http://dbus.freedesktop.org/
|| ( GPL-2 AFL-2.1 )
D-Bus bindings for glib
~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd
alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd
bash-completion-r1
debug doc static-libs test

@ -6,7 +6,7 @@ http://fribidi.org/download/fribidi-0.19.2.tar.gz
http://fribidi.org/
LGPL-2.1
A free implementation of the unicode bidirectional algorithm
~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris
alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris
autotools eutils libtool multilib portability toolchain-funcs user
static-libs

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
perl-geoipupdate? ( dev-perl/PerlIO-gzip dev-perl/libwww-perl )
0
http://www.maxmind.com/download/geoip/api/c/GeoIP-1.4.8.tar.gz ipv6? ( http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz )
@ -7,14 +7,14 @@ http://www.maxmind.com/geoip/api/c.shtml
LGPL-2.1 GPL-2 MaxMind2
easily lookup countries by IP addresses, even when Reverse DNS entries don't exist
alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
autotools eutils libtool multilib portability toolchain-funcs user
ipv6 perl-geoipupdate static-libs
4
compile configure install prepare test unpack
configure install prepare

@ -2,9 +2,9 @@
0
http://simon.morlat.free.fr/download/1.1.x/source/ilbc-rfc3951.tar.gz
bindist
http://www.ilbcfreeware.org/
gips_iLBClicense.pdf
BSD
iLBC (internet Low Bitrate Codec) is a speech codec suitable for robust voice communication over IP.
~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86
autotools eutils libtool multilib portability toolchain-funcs user

@ -1,4 +1,4 @@
sys-devel/libtool sys-devel/bison || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
sys-devel/libtool sys-devel/bison
0
http://www.hyperrealm.com/libconfig/libconfig-1.4.7.tar.gz
@ -7,14 +7,14 @@ http://www.hyperrealm.com/libconfig/libconfig.html
GPL-2
Libconfig is a simple library for manipulating structured configuration files
amd64 ~mips ppc ppc64 sparc x86 ~x86-linux
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
examples static-libs
2
compile configure install prepare test unpack
configure install test

@ -1,4 +1,4 @@
sys-devel/libtool sys-devel/bison || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
sys-devel/libtool sys-devel/bison
0
http://www.hyperrealm.com/libconfig/libconfig-1.4.8.tar.gz
@ -7,14 +7,14 @@ http://www.hyperrealm.com/libconfig/libconfig.html
GPL-2
Libconfig is a simple library for manipulating structured configuration files
~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
examples static-libs
4
compile configure install prepare test unpack
configure install test

@ -1,4 +1,4 @@
doc? ( app-doc/doxygen ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
doc? ( app-doc/doxygen )
0
mirror://debian/pool/main/libd/libdebian-installer/libdebian-installer_0.78.tar.gz
@ -7,14 +7,14 @@ http://packages.qa.debian.org/libd/libdebian-installer.html
GPL-2
Library of common debian-installer functions
amd64 x86
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
eutils multilib portability toolchain-funcs user
doc static-libs
2
compile configure install prepare test unpack
compile configure install prepare

@ -1,4 +1,4 @@
doc? ( app-doc/doxygen ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
doc? ( app-doc/doxygen )
0
mirror://debian/pool/main/libd/libdebian-installer/libdebian-installer_0.79.tar.gz
@ -7,14 +7,14 @@ http://packages.qa.debian.org/libd/libdebian-installer.html
GPL-2
Library of common debian-installer functions
~amd64 ~x86
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
eutils multilib portability toolchain-funcs user
doc static-libs
2
compile configure install prepare test unpack
compile configure install prepare

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
!<=dev-libs/9libs-1.0
0
mirror://sourceforge/levent/files/libevent-2.0.12-stable.tar.gz
@ -7,14 +7,14 @@ http://monkey.org/~provos/libevent/
BSD
A library to execute a function when a specific event occurs on a file descriptor
alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
libtool multilib toolchain-funcs
static-libs test
2
compile configure install prepare test unpack
configure install prepare test

@ -1,22 +0,0 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
!<=dev-libs/9libs-1.0
0
mirror://sourceforge/levent/files/libevent-2.0.13-stable.tar.gz
http://monkey.org/~provos/libevent/
BSD
A library to execute a function when a specific event occurs on a file descriptor
alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
static-libs test
2
compile configure install prepare test unpack

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
!<=dev-libs/9libs-1.0
0
mirror://sourceforge/levent/files/libevent-2.0.14-stable.tar.gz
@ -7,14 +7,14 @@ http://monkey.org/~provos/libevent/
BSD
A library to execute a function when a specific event occurs on a file descriptor
alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
libtool multilib toolchain-funcs
static-libs test
2
compile configure install prepare test unpack
configure install prepare test

@ -1,4 +1,4 @@
ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
ssl? ( dev-libs/openssl )
ssl? ( dev-libs/openssl ) !<=dev-libs/9libs-1.0
0
mirror://sourceforge/levent/files/libevent-2.0.15-stable.tar.gz
@ -7,14 +7,14 @@ http://monkey.org/~provos/libevent/
BSD
A library to execute a function when a specific event occurs on a file descriptor
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
libtool multilib toolchain-funcs
+ssl static-libs test
2
compile configure install prepare test unpack
configure install prepare test

@ -1,4 +1,4 @@
ssl? ( dev-libs/openssl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
ssl? ( dev-libs/openssl )
ssl? ( dev-libs/openssl ) !<=dev-libs/9libs-1.0
0
mirror://sourceforge/levent/files/libevent-2.0.16-stable.tar.gz
@ -7,14 +7,14 @@ http://monkey.org/~provos/libevent/
BSD
A library to execute a function when a specific event occurs on a file descriptor
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
libtool multilib toolchain-funcs
+ssl static-libs test
2
compile configure install prepare test unpack
configure install prepare test

@ -1,4 +1,4 @@
|| ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
3
http://www.infradead.org/~tgr/libnl/files/libnl-3.2.3.tar.gz
@ -7,14 +7,14 @@ http://www.infradead.org/~tgr/libnl/
LGPL-2.1
A library for applications dealing with netlink socket
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
eutils multilib portability toolchain-funcs user
static-libs utils
4
compile configure install prepare test unpack
configure install prepare

@ -1,4 +1,4 @@
sys-devel/libtool || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
sys-devel/libtool
0
http://www.libtom.org/files/ltm-0.42.0.tar.bz2
@ -7,14 +7,14 @@ http://www.libtom.org/
WTFPL-2
highly optimized and portable routines for integer based number theoretic applications
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos
autotools autotools-utils base eutils libtool multilib portability toolchain-funcs user
eutils multilib portability toolchain-funcs user
doc examples static-libs
4
compile configure install prepare test unpack
compile install prepare

@ -0,0 +1,22 @@
=sys-libs/slang-2* >=dev-libs/popt-1.6 elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( =dev-lang/tcl-8.5* ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.61 sys-devel/libtool
=sys-libs/slang-2* >=dev-libs/popt-1.6 elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( =dev-lang/tcl-8.5* ) >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
https://fedorahosted.org/releases/n/e/newt/newt-0.52.14.tar.gz
https://fedorahosted.org/newt/
LGPL-2
Redhat's Newt windowing toolkit development files
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
autotools eutils libtool multilib portability python toolchain-funcs user
gpm tcl nls
3
compile configure install postinst postrm prepare setup

@ -6,7 +6,7 @@ http://dbus.freedesktop.org/releases/dbus-python/dbus-python-0.84.0.tar.gz
http://www.freedesktop.org/wiki/Software/DBusBindings http://dbus.freedesktop.org/doc/dbus-python/
MIT
Python bindings for the D-Bus messagebus
~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux
alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux
eutils multilib portability python toolchain-funcs user
doc examples test

@ -0,0 +1,22 @@
>=dev-python/flask-0.7 dev-python/setuptools >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) test? ( dev-python/nose )
>=dev-python/flask-0.7 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
0
mirror://pypi/F/Frozen-Flask/Frozen-Flask-0.7.tar.gz
https://github.com/SimonSapin/Frozen-Flask http://pypi.python.org/pypi/Frozen-Flask
BSD
Freezes a Flask application into a set of static files.
~amd64 ~x86
distutils multilib python toolchain-funcs
test
3
compile install postinst postrm prepare test

@ -1,4 +1,4 @@
media-libs/coin >=media-libs/SoQt-1.4.2_alpha =dev-lang/swig-1.3* >=app-admin/eselect-python-20091230 =dev-lang/python-2*
media-libs/coin >=media-libs/SoQt-1.4.2_alpha || ( =dev-lang/swig-1.3* >=dev-lang/swig-2.0.4-r1 ) >=app-admin/eselect-python-20091230 =dev-lang/python-2*
media-libs/coin >=media-libs/SoQt-1.4.2_alpha >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
http://dev.gentoo.org/~dilfridge/distfiles/pivy-0.5_alpha20110303.tar.xz

@ -0,0 +1,22 @@
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
x11-libs/libnotify ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
0
mirror://rubygems/notify-0.3.0.gem
http://github.com/jugyo/notify
MIT
A function to notify on cross platform
~amd64 ~x86
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 test
2
compile configure install prepare setup test unpack

@ -1,4 +1,4 @@
ruby_targets_ree18? ( dev-ruby/rake[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-ruby/rake[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/rake[ruby_targets_ruby19] ) ruby_targets_jruby? ( dev-ruby/rake[ruby_targets_jruby] ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) 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? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) 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? ( dev-ruby/rake[ruby_targets_ree18] doc? ( dev-ruby/hoe[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-ruby/rake[ruby_targets_ruby18] doc? ( dev-ruby/hoe[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( dev-ruby/rake[ruby_targets_ruby19] doc? ( dev-ruby/hoe[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( dev-ruby/rake[ruby_targets_jruby] doc? ( dev-ruby/hoe[ruby_targets_jruby] ) ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) 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? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) 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? ( dev-lang/ruby-enterprise:1.8 ) 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? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
0
mirror://rubygems/racc-1.4.7.gem
@ -8,7 +8,7 @@ LGPL-2.1
A LALR(1) parser generator for Ruby
~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
eutils java-utils-2 multilib portability ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ree18 ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby test test
elibc_FreeBSD ruby_targets_ree18 ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby doc test test
|| ( ruby_targets_ree18 ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby )

@ -0,0 +1,22 @@
>=dev-libs/glib-2.26.0:2 >=x11-libs/gtk+-3.0.0:3 >=gnome-base/gnome-settings-daemon-2.91.8 >=gnome-base/gnome-control-center-3.2 >=x11-libs/libnotify-0.7 media-libs/libcanberra[gtk3] x11-libs/libX11 x11-libs/libXext x11-libs/libXScrnSaver x11-proto/scrnsaverproto sys-devel/gettext >=dev-util/intltool-0.35.0 >=dev-util/pkgconfig-0.12.0 app-arch/xz-utils >=sys-apps/sed-4
>=dev-libs/glib-2.26.0:2 >=x11-libs/gtk+-3.0.0:3 >=gnome-base/gnome-settings-daemon-2.91.8 >=gnome-base/gnome-control-center-3.2 >=x11-libs/libnotify-0.7 media-libs/libcanberra[gtk3] x11-libs/libX11 x11-libs/libXext x11-libs/libXScrnSaver
0
mirror://gnome/sources/drwright/3.2/drwright-3.2.2.tar.xz
http://git.gnome.org/browse/drwright
GPL-2
A GNOME 3 tool that forces you to take regular breaks to prevent RSI
~amd64 ~x86
eutils fdo-mime gnome.org gnome2 gnome2-utils libtool multilib portability toolchain-funcs user versionator
4
compile configure install postinst postrm preinst prepare setup unpack

@ -0,0 +1,22 @@
app-admin/eselect-gnome-shell-extensions >=dev-libs/gjs-1.29 dev-libs/gobject-introspection gnome-base/gnome-menus:3[introspection] >=gnome-base/gnome-shell-3.2 media-libs/clutter:1.0[introspection] x11-libs/pango[introspection]
0
http://intgat.tigress.co.uk/rmy/extensions/gnome-shell-frippery-0.3.4.tgz
http://intgat.tigress.co.uk/rmy/extensions/index.html
GPL-2
Unofficial extension pack providing GNOME 2-like features for GNOME 3
~amd64
4
install postinst

@ -1,5 +1,5 @@
doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=gnustep-base/gnustep-make-2.0.8 !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) libffi? ( virtual/libffi ) gnutls? ( net-libs/gnutls ) >=dev-libs/libxml2-2.6 >=dev-libs/libxslt-1.1 >=dev-libs/gmp-4.1 >=dev-libs/openssl-0.9.7 >=sys-libs/zlib-1.2 zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) ) dev-util/pkgconfig
doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=gnustep-base/gnustep-make-2.0.8 !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) libffi? ( virtual/libffi ) gnutls? ( net-libs/gnutls ) >=dev-libs/libxml2-2.6 >=dev-libs/libxslt-1.1 >=dev-libs/gmp-4.1 >=dev-libs/openssl-0.9.7 >=sys-libs/zlib-1.2 zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) )
doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=gnustep-base/gnustep-make-2.0.8 !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) libffi? ( virtual/libffi ) ssl? ( net-libs/gnutls ) >=dev-libs/libxml2-2.6 >=dev-libs/libxslt-1.1 >=dev-libs/gmp-4.1 >=dev-libs/openssl-0.9.7 >=sys-libs/zlib-1.2 zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) ) dev-util/pkgconfig
doc? ( virtual/texi2dvi dev-tex/latex2html app-text/texi2html ) >=gnustep-base/gnustep-make-2.0.8 !libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) libffi? ( virtual/libffi ) ssl? ( net-libs/gnutls ) >=dev-libs/libxml2-2.6 >=dev-libs/libxslt-1.1 >=dev-libs/gmp-4.1 >=dev-libs/openssl-0.9.7 >=sys-libs/zlib-1.2 zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) )
0
ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-base-1.20.1.tar.gz
@ -8,7 +8,7 @@ GPL-2 LGPL-2.1
A library of general-purpose, non-graphical Objective C objects.
~alpha amd64 ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris
eutils flag-o-matic gnustep-base multilib portability toolchain-funcs user
+libffi gnutls zeroconf debug doc
+libffi ssl zeroconf debug doc

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

Loading…
Cancel
Save