Sync with portage [Mon Mar 12 14:13:12 MSK 2012].

mhiretskiy
root 12 years ago
parent 2f702af45b
commit ee3f7f7b3e

@ -0,0 +1,92 @@
From 6ad900d99bbbe1fd5987c380835b907e51d41eda Mon Sep 17 00:00:00 2001
From: Gilles Dartiguelongue <gilles.dartiguelongue@esiee.org>
Date: Sat, 10 Mar 2012 15:59:51 +0100
Subject: [PATCH 1/3] Use libtool intermediate library instead of static
archive
---
configure.in | 4 ++--
src/common/Makefile.am | 4 ++--
src/time/Makefile.am | 4 ++--
src/time/e-map/Makefile.am | 6 +++---
4 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/configure.in b/configure.in
index c266d02..2d60648 100644
--- a/configure.in
+++ b/configure.in
@@ -237,12 +237,12 @@ GST_DEPRECATED_FLAGS=""
GST_LIBS="$GST_DEPENDS_LIBS $POLKIT_GTK_LIBS"
GST_CFLAGS="$GST_DEPENDS_CFLAGS $POLKIT_GTK_CFLAGS $GST_DEPRECATED_FLAGS"
-GST_TOOL_LIBS="\$(top_builddir)/src/common/libsetuptool.a $GST_LIBS"
+GST_TOOL_LIBS="\$(top_builddir)/src/common/libsetuptool.la $GST_LIBS"
GST_TOOL_CFLAGS="-I\$(top_srcdir)/src/common $GST_CFLAGS"
GST_TOOL_CLEANFILES="\$(desktop) \$(desktop).in"
GST_TOOL_EXTRA_DIST="\$(toolpixmaps) \$(desktop).in.in"
-GST_TOOL_DEPENDENCIES="\$(top_builddir)/src/common/libsetuptool.a"
+GST_TOOL_DEPENDENCIES="\$(top_builddir)/src/common/libsetuptool.la"
AC_SUBST(GST_LIBS)
AC_SUBST(GST_CFLAGS)
diff --git a/src/common/Makefile.am b/src/common/Makefile.am
index 6698b4d..c39c286 100644
--- a/src/common/Makefile.am
+++ b/src/common/Makefile.am
@@ -1,6 +1,6 @@
include $(top_srcdir)/DirsMakefile
-noinst_LIBRARIES = libsetuptool.a
+noinst_LTLIBRARIES = libsetuptool.la
INCLUDES += \
$(GST_CFLAGS) \
@@ -10,7 +10,7 @@ INCLUDES += \
-DPREFIX=\""$(prefix)"\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\"
-libsetuptool_a_SOURCES = \
+libsetuptool_la_SOURCES = \
gst-dialog.c gst-dialog.h \
gst-tool.c gst-tool.h \
gst-platform-dialog.c gst-platform-dialog.h \
diff --git a/src/time/Makefile.am b/src/time/Makefile.am
index e9adaf4..6ff332f 100644
--- a/src/time/Makefile.am
+++ b/src/time/Makefile.am
@@ -15,8 +15,8 @@ INCLUDES += $(GST_TOOL_CFLAGS) $(DBUS_CFLAGS)
CLEANFILES = $(GST_TOOL_CLEANFILES)
EXTRA_DIST = $(GST_TOOL_EXTRA_DIST)
-time_admin_LDADD = $(GST_TOOL_LIBS) $(DBUS_LIBS) ./e-map/libemap.a
-time_admin_DEPENDENCIES = $(GST_TOOL_DEPENDENCIES) ./e-map/libemap.a
+time_admin_LDADD = $(GST_TOOL_LIBS) $(DBUS_LIBS) ./e-map/libemap.la
+time_admin_DEPENDENCIES = $(GST_TOOL_DEPENDENCIES) ./e-map/libemap.la
time_admin_SOURCES = \
time-tool.c time-tool.h \
tz.c tz.h \
diff --git a/src/time/e-map/Makefile.am b/src/time/e-map/Makefile.am
index 5828690..9d04963 100644
--- a/src/time/e-map/Makefile.am
+++ b/src/time/e-map/Makefile.am
@@ -20,13 +20,13 @@ e-map-marshal.c: e-map-marshal.list e-map-marshal.h
$(e_map_la_OBJECTS): e-map-marshal.h
-noinst_LIBRARIES = libemap.a
+noinst_LTLIBRARIES = libemap.la
-#libemap_a_CFLAGS =
+#libemap_la_CFLAGS =
BUILT_SOURCES= e-map-marshal.c e-map-marshal.h
-libemap_a_SOURCES = \
+libemap_la_SOURCES = \
e-map.c e-map.h \
$(BUILT_SOURCES)
--
1.7.8.5

@ -0,0 +1,24 @@
From c0ca954710f83a9204ea01c2d6db717b728d0313 Mon Sep 17 00:00:00 2001
From: Gilles Dartiguelongue <gilles.dartiguelongue@esiee.org>
Date: Sat, 10 Mar 2012 16:00:12 +0100
Subject: [PATCH 2/3] Add missing dependency for e-map intermediate library
---
configure.in | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/configure.in b/configure.in
index 2d60648..3a7d1a6 100644
--- a/configure.in
+++ b/configure.in
@@ -79,6 +79,7 @@ dnl =====================================================
PKG_CHECK_MODULES(GST_DEPENDS,[
gtk+-2.0 >= $GTK_REQUIRED
+ atk
gmodule-export-2.0
gio-2.0 >= $GLIB_REQUIRED
pango
--
1.7.8.5

@ -0,0 +1,28 @@
From d6cc84d452e4a7a194578eceb24eaf6e183e01d4 Mon Sep 17 00:00:00 2001
From: Gilles Dartiguelongue <gilles.dartiguelongue@esiee.org>
Date: Sun, 11 Mar 2012 14:52:40 +0100
Subject: [PATCH 3/3] Add missing link to libm
This used to cause problems for gold linker while libemap was a static
library. Now libtool is smart enough to pick libm from the intermediate
library but it is still better to be explicit.
---
src/time/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/time/Makefile.am b/src/time/Makefile.am
index 6ff332f..02c12db 100644
--- a/src/time/Makefile.am
+++ b/src/time/Makefile.am
@@ -15,7 +15,7 @@ INCLUDES += $(GST_TOOL_CFLAGS) $(DBUS_CFLAGS)
CLEANFILES = $(GST_TOOL_CLEANFILES)
EXTRA_DIST = $(GST_TOOL_EXTRA_DIST)
-time_admin_LDADD = $(GST_TOOL_LIBS) $(DBUS_LIBS) ./e-map/libemap.la
+time_admin_LDADD = -lm $(GST_TOOL_LIBS) $(DBUS_LIBS) ./e-map/libemap.la
time_admin_DEPENDENCIES = $(GST_TOOL_DEPENDENCIES) ./e-map/libemap.la
time_admin_SOURCES = \
time-tool.c time-tool.h \
--
1.7.8.5

@ -0,0 +1,59 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gnome-system-tools/gnome-system-tools-2.32.0-r3.ebuild,v 1.1 2012/03/11 14:16:54 eva Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
GNOME_TARBALL_SUFFIX="bz2"
inherit autotools eutils gnome2
DESCRIPTION="Tools aimed to make easy the administration of UNIX systems"
HOMEPAGE="http://www.gnome.org/projects/gst/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="nfs policykit samba"
RDEPEND="
>=app-admin/system-tools-backends-2.10.1
>=dev-libs/liboobs-2.31.91
>=x11-libs/gtk+-2.19.7:2
>=dev-libs/glib-2.25.3:2
dev-libs/dbus-glib
>=gnome-base/nautilus-2.9.90
sys-libs/cracklib
nfs? ( net-fs/nfs-utils )
samba? ( >=net-fs/samba-3 )
policykit? (
>=sys-auth/polkit-0.92
|| ( gnome-extra/polkit-gnome:obsolete <gnome-extra/polkit-gnome-0.102 )
)"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
dev-util/pkgconfig
>=dev-util/intltool-0.35.0"
pkg_setup() {
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
G2CONF="${G2CONF}
--disable-static
$(use_enable policykit polkit-gtk)"
if ! use nfs && ! use samba; then
G2CONF="${G2CONF} --disable-shares"
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-libtool-intermediate-libs.patch \
"${FILESDIR}"/${P}-missing-atk.patch \
"${FILESDIR}"/${P}-missing-m.patch
eautoreconf
gnome2_src_prepare
}

@ -1,2 +1,3 @@
DIST sysrqd-12.tar.gz 4555 RMD160 8632333866642fa11681b97e36e2fdd2ab2f1827 SHA1 6be8278224e7e76f637ddf16c5f6810bba45a45d SHA256 216ae638280d4357ddc3e397d6191f2ca3343419a5754931a0109a0b3e35aa40
DIST sysrqd-14.tar.gz 4759 RMD160 10135f460eb04ede4b147517692d0d3330d8e78d SHA1 49de3043304aab5ca80abed01681073176ef6855 SHA256 aa938dc663b73fb28d165c8145f51b6c2412ccb202e641548452c9583d593428
DIST sysrqd-9.tar.gz 4188 RMD160 efad126dd4a3e64df077bedb9dedac0189a983af SHA1 55b1067e856ee4dd058ee721bc85907e740ff9eb SHA256 836723b6001a33e3b5684dca20ba7734732c337d21ba3b6a481a0304642e81e4

@ -0,0 +1,13 @@
--- sysrqd.c.orig 2009-11-05 14:58:21.644471772 +0100
+++ sysrqd.c 2009-11-05 14:58:43.276472005 +0100
@@ -40,8 +40,8 @@
#define BIND_MAX_LEN 16
#define PROMPT "sysrq> "
#define SYSRQ_TRIGGER_PATH "/proc/sysrq-trigger"
-#define AUTH_FILE "/etc/sysrqd.secret"
-#define BINDIP_FILE "/etc/sysrqd.bind"
+#define AUTH_FILE "/etc/sysrqd/sysrqd.secret"
+#define BINDIP_FILE "/etc/sysrqd/sysrqd.bind"
#define PID_FILE "/var/run/sysrqd.pid"
#define SYSRQD_PRIO -19
#define SYSRQD_LISTEN_PORT 4094

@ -0,0 +1,56 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysrqd/sysrqd-14.ebuild,v 1.1 2012/03/11 12:02:27 wschlich Exp $
inherit eutils toolchain-funcs
IUSE=""
DESCRIPTION="daemon providing access to the kernel sysrq functions via network"
HOMEPAGE="http://julien.danjou.info/sysrqd.html"
#SRC_URI="http://julien.danjou.info/${PN}/${P}.tar.gz"
SRC_URI="http://dev.gentoo.org/~wschlich/src/${CATEGORY}/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-config.patch"
}
src_compile() {
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o sysrqd sysrqd.c
}
src_install() {
dosbin sysrqd
newinitd "${FILESDIR}/sysrqd.init" sysrqd
local bindip='127.0.0.1' secret
declare -i secret
let secret=${RANDOM}*${RANDOM}*${RANDOM}*${RANDOM}
echo ${bindip} > sysrqd.bind
echo ${secret} > sysrqd.secret
diropts -m 0700 -o root -g root
dodir /etc/sysrqd
insinto /etc/sysrqd
insopts -m 0600 -o root -g root
doins sysrqd.bind
doins sysrqd.secret
dodoc README ChangeLog
}
pkg_postinst() {
elog
elog "Be sure to change the initial secret in /etc/sysrqd/sysrqd.secret !"
elog "As a security precaution, sysrqd is configured to only listen on"
elog "127.0.0.1 by default. Change the content of /etc/sysrqd/sysrqd.bind"
elog "to an IPv4 address you want it to listen on or remove the file"
elog "to make it listen on any IP address (0.0.0.0)."
elog
}

@ -1,3 +1,2 @@
DIST testdisk-6.12.tar.bz2 554633 RMD160 f33a4aeb15124cd34e3d81b17e9b2c81561272f8 SHA1 ccb0e36dc338bb28e00491a6a7dab5ae2d3ac937 SHA256 bdfbe679146518a1321d64f512d6ec8980ac3a9f2296ef27a46c7743d0f9ea16
DIST testdisk-6.13.tar.bz2 560696 RMD160 9ff09fdcc53a02240b4e22365193eac14a7d5e13 SHA1 b08ace0257e3e437b6fc140360d75807ca4d46ae SHA256 48275ccddfc9445b6c3e6e181728dae9e49bd25b824a6b5670d58f1f88cdf220
DIST testdisk-6.5.tar.bz2 628884 RMD160 df1778147b8b19719b90240b74674c3f438a9cac SHA1 b0c9db078588695879ca2dea55d24fec2d6d12b2 SHA256 dc898056087de5f453fadcba9770af76a1b0f0acff87b13adbb7c2d71b21c2ef

@ -1,53 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-6.5.ebuild,v 1.7 2011/07/08 10:16:50 ssuominen Exp $
DESCRIPTION="Checks and undeletes partitions + PhotoRec, signature based recovery tool"
HOMEPAGE="http://www.cgsecurity.org/wiki/TestDisk"
SRC_URI="http://www.cgsecurity.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE="static reiserfs ntfs jpeg"
# WARNING: reiserfs support does NOT work with reiserfsprogs
# you MUST use progsreiserfs-0.3.1_rc8 (the last version ever released).
DEPEND=">=sys-libs/ncurses-5.2
jpeg? ( virtual/jpeg )
ntfs? ( >=sys-fs/ntfsprogs-1.9.4 )
reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8 )
>=sys-fs/e2fsprogs-1.35"
RDEPEND="!static? ( ${DEPEND} )"
src_compile() {
local myconf
# --with-foo are broken, any use of --with/--without disable the
# functionality.
# The following variation must be used.
use reiserfs || myconf="${myconf} --without-reiserfs"
use ntfs || myconf="${myconf} --without-ntfs"
use jpeg || myconf="${myconf} --without-jpeg"
econf ${myconf} || die
# perform safety checks for NTFS and REISERFS
if use ntfs && egrep -q 'undef HAVE_LIBNTFS\>' "${S}"/config.h ; then
die "Failed to find NTFS library."
fi
if use reiserfs && egrep -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then
die "Failed to find reiserfs library."
fi
if use jpeg && egrep -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then
die "Failed to find jpeg library."
fi
# this is static method is the same used by upstream for their 'static' make
# target, but better, as it doesn't break.
use static && append-ldflags -static
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
[ "$PF" != "$P" ] && mv "${D}"/usr/share/doc/${P} "${D}"/usr/share/doc/${PF}
}

@ -1,2 +1,2 @@
DIST afio-2.4.7.tgz 91224 RMD160 3626d9ed7c560a9d0c7891cfa9a94296562e2249 SHA1 92e473f025cbc69893ccc46c4f91ffb52da2fef3 SHA256 a00a5c26c2f323ca87cb82278915391537ac25327d27510bbca3b8b482e36899
DIST afio-2.5.1.tgz 191765 RMD160 923981a9e6766781705ceedecd3d86afa5b9abae SHA1 bff6b9a147dc5b0e6bd7f1a76f0b84e4dd9a7dc9 SHA256 363457a5d6ee422d9b704ef56d26369ca5ee671d7209cfe799cab6e30bf2b99a
DIST afio-2.5.tgz 179184 RMD160 991bdb794ee8b4b7e6a737afa85009aae925699d SHA1 051765f209fded60f94944da8a76ae37c3423a23 SHA256 e7801a0f0a8dcbae41f4156dee5dae2a34a558d6c3ceac517efad4fed610ff2e

@ -1,38 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/afio/afio-2.4.7.ebuild,v 1.22 2009/10/12 16:30:48 halcy0n Exp $
inherit eutils
DESCRIPTION="makes cpio-format archives and deals somewhat gracefully with input data corruption."
SRC_URI="http://www.ibiblio.org/pub/linux/system/backup/${P}.tgz"
HOMEPAGE="http://freshmeat.net/projects/afio/"
SLOT="0"
LICENSE="Artistic LGPL-2"
KEYWORDS="x86 ppc sparc"
IUSE=""
DEPEND="app-arch/gzip"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/Makefile.patch
}
src_compile() {
emake CFLAGS1="${CFLAGS}" || die "emake failed"
}
src_install() {
local i
dobin afio || die "dobin failed"
dodoc README SCRIPTS HISTORY INSTALLATION || die "dodoc failed"
for i in 1 2 3 4 5 ; do
insinto /usr/share/doc/${P}/script$i
doins script$i/* || die "doins failed (${i})"
done
doman afio.1 || die "doman failed"
}

@ -0,0 +1,30 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/afio/afio-2.5.1.ebuild,v 1.1 2012/03/11 13:43:30 wschlich Exp $
EAPI=4
inherit eutils
DESCRIPTION="makes cpio-format archives and deals somewhat gracefully with input data corruption."
HOMEPAGE="http://members.chello.nl/k.holtman/afio.html"
SRC_URI="http://members.chello.nl/k.holtman/${P}.tgz"
LICENSE="Artistic LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE=""
src_prepare() {
epatch "${FILESDIR}"/Makefile-r1.patch
}
src_install() {
local i
dobin afio
dodoc ANNOUNCE-* HISTORY README SCRIPTS
for i in 1 2 3 4; do
docinto script$i
dodoc script$i/*
done
doman afio.1
}

@ -0,0 +1,23 @@
diff -urN afio-2.5.1.orig/Makefile afio-2.5.1/Makefile
--- afio-2.5.1.orig/Makefile 2012-02-05 14:52:24.000000000 +0100
+++ afio-2.5.1/Makefile 2012-03-11 14:02:16.267636685 +0100
@@ -71,15 +71,12 @@
MW=
#MW=-Wtraditional -Wcast-qual -Wcast-align -Wconversion -pedantic -Wlong-long -Wimplicit -Wuninitialized -W -Wshadow -Wsign-compare -Wstrict-prototypes -Wmissing-declarations
-CFLAGS1 = -Wall -Wstrict-prototypes -s -O2 -fomit-frame-pointer ${LARGEFILEFLAGS} ${MW}
-
-CC=gcc
-
-CFLAGS = ${CFLAGS1} $1 $2 $3 $4 $5 $6 $7 $8 $9 $a $b $c $d $e ${e2} $f $g $I
-LDFLAGS =
+CC?=gcc
+CFLAGS+=-Wall -Wstrict-prototypes -s ${LARGEFILEFLAGS} ${2} ${3} ${6} ${8} ${c} ${d} ${e2} ${f} ${g}
+LDFLAGS+=
afio : afio.o compfile.o exten.o match.o $M
- ${CC} ${LDFLAGS} afio.o compfile.o exten.o match.o $M -o afio
+ ${CC} ${CFLAGS} ${LDFLAGS} afio.o compfile.o exten.o match.o $M -o afio
clean:
rm -f *.o afio

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.9.1.2.ebuild,v 1.6 2012/03/06 21:55:53 sochotnicky Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.9.1.2.ebuild,v 1.7 2012/03/11 14:45:59 ago Exp $
EAPI=4
@ -14,7 +14,7 @@ SRC_URI="http://rpm.org/releases/rpm-4.9.x/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~mips ppc ppc64 ~x86"
KEYWORDS="amd64 ~arm ~hppa ~mips ppc ppc64 ~x86"
IUSE="nls python doc caps lua acl"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v 1.3 2011/02/27 10:34:25 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/unshield/unshield-0.6.ebuild,v 1.4 2012/03/11 15:41:53 ago Exp $
EAPI=2
@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
KEYWORDS="amd64 ~hppa ~ppc ~x86"
IUSE="static-libs"
RDEPEND=">=sys-libs/zlib-1.1.4"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/bashburn-3.1.0.ebuild,v 1.1 2011/12/08 20:14:44 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/bashburn-3.1.0.ebuild,v 1.2 2012/03/11 14:46:54 ago Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://bashburn.dose.se/index.php?s=file_download&id=25 -> ${MY_P}.tar.
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND="app-shells/bash"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/libguess/libguess-1.0.ebuild,v 1.14 2012/03/10 16:59:13 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/libguess/libguess-1.0.ebuild,v 1.15 2012/03/11 13:50:55 ranger Exp $
EAPI=2
@ -10,7 +10,7 @@ SRC_URI="http://distfiles.atheme.org/${P}.tbz2"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="examples"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/libplist-1.8.ebuild,v 1.2 2012/03/01 11:44:10 pesa Exp $
# $Header: /var/cvsroot/gentoo-x86/app-pda/libplist/libplist-1.8.ebuild,v 1.3 2012/03/11 15:40:54 ago Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
KEYWORDS="amd64 ~ppc64 ~x86"
IUSE="cython python"
RDEPEND="dev-libs/libxml2

@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.22-r1.ebuild,v 1.9 2011/11/13 10:54:12 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.22-r1.ebuild,v 1.10 2012/03/11 16:14:54 ssuominen Exp $
EAPI="2"
EAPI=2
inherit fdo-mime autotools flag-o-matic
MY_P="${PN}libre-${PV#*_p}"

@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.23.ebuild,v 1.10 2011/11/13 10:54:12 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.23.ebuild,v 1.11 2012/03/11 16:14:54 ssuominen Exp $
EAPI="2"
EAPI=2
inherit fdo-mime autotools flag-o-matic
MY_P="${PN}libre-${PV#*_p}"

@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.24.ebuild,v 1.8 2011/11/13 10:54:12 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/djvu/djvu-3.5.24.ebuild,v 1.9 2012/03/11 16:14:54 ssuominen Exp $
EAPI="4"
EAPI=4
inherit eutils fdo-mime autotools flag-o-matic
MY_P="${PN}libre-${PV#*_p}"

@ -1,6 +1,22 @@
=== modified file 'libdjvu/GSmartPointer.h'
--- libdjvu/GSmartPointer.h 2011-04-30 19:29:11 +0000
+++ libdjvu/GSmartPointer.h 2011-04-30 19:34:21 +0000
http://bugs.gentoo.org/361057 for GSmartPointer.h change
Then include stddef.h in the installed headers to fix building of reverse
dependencies, such as app-text/zathura-djvu
These are all in upstream GIT
--- libdjvu/ddjvuapi.h
+++ libdjvu/ddjvuapi.h
@@ -64,6 +64,7 @@
}
#endif
+#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
--- libdjvu/GSmartPointer.h
+++ libdjvu/GSmartPointer.h
@@ -62,6 +62,8 @@
# pragma interface
#endif
@ -10,4 +26,15 @@
/** @name GSmartPointer.h
Files #"GSmartPointer.h"# and #"GSmartPointer.cpp"# define a smart-pointer
--- libdjvu/miniexp.h
+++ libdjvu/miniexp.h
@@ -38,7 +38,8 @@
#ifndef MINILISPAPI
# define MINILISPAPI /**/
#endif
-
+
+#include <stddef.h>
/* -------------------------------------------------- */
/* LISP EXPRESSIONS */

@ -1,19 +1,17 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/libspectre-0.2.6.ebuild,v 1.11 2011/08/27 20:06:21 dilfridge Exp $
EAPI=3
# $Header: /var/cvsroot/gentoo-x86/app-text/libspectre/libspectre-0.2.6.ebuild,v 1.13 2012/03/11 15:29:32 ssuominen Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="Library to render Postscript documents."
HOMEPAGE="http://libspectre.freedesktop.org/wiki/"
DESCRIPTION="A library for rendering Postscript documents"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/libspectre"
SRC_URI="http://libspectre.freedesktop.org/releases/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
IUSE="debug doc static-libs"
RDEPEND=">=app-text/ghostscript-gpl-8.62"
@ -24,6 +22,8 @@ DEPEND="${RDEPEND}
# does not actually test anything, see bug 362557
RESTRICT="test"
DOCS="NEWS README TODO"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.2.0-interix.patch
eautoreconf # need new libtool for interix
@ -31,7 +31,6 @@ src_prepare() {
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable debug asserts) \
$(use_enable debug checks) \
$(use_enable static-libs static) \
@ -39,20 +38,14 @@ src_configure() {
}
src_compile() {
emake || die "emake failed"
emake
if use doc; then
doxygen || die "doxygen failed"
doxygen || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc NEWS README TODO || die "installing docs failed"
if use doc; then
dohtml -r "${S}"/doc/html/* || die "dohtml failed"
fi
find "${D}" -name "*.la" -exec rm -v {} + || die
default
use doc && dohtml -r doc/html/*
find "${ED}" -name '*.la' -exec rm -f {} +
}

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

@ -0,0 +1,33 @@
diff -urN utrac-0.3.0.orig/Makefile utrac-0.3.0/Makefile
--- utrac-0.3.0.orig/Makefile 2005-02-25 18:07:49.000000000 +0100
+++ utrac-0.3.0/Makefile 2012-03-11 15:16:32.072358827 +0100
@@ -19,17 +19,17 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-CC = gcc
+CC ?= gcc
#release :
-CFLAGS = -Wall -O2 -DUT_DEBUG=1
+CFLAGS += -Wall -DUT_DEBUG=1
# debug
#CFLAGS = -Wall -g -DUT_DEBUG=1
LIBS = -lm
-PREFIX_PATH = /usr/local
+PREFIX_PATH = ${DESTTREE}
LIB_PATH = ${PREFIX_PATH}/lib
INC_PATH = ${PREFIX_PATH}/include
BIN_PATH = ${PREFIX_PATH}/bin
@@ -102,7 +102,7 @@
###### COMMAND #####
utrac: utrac_cmd.o libutrac.a
- $(CC) $^ $(LIBS) -o $@
+ $(CC) $^ $(LDFLAGS) $(LIBS) -o $@
##### LIB #######

@ -0,0 +1,28 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/utrac/utrac-0.3.0-r1.ebuild,v 1.1 2012/03/11 14:19:53 wschlich Exp $
EAPI="4"
inherit eutils
IUSE=""
DESCRIPTION="Universal Text Recognizer and Converter"
HOMEPAGE="http://utrac.sourceforge.net/"
SRC_URI="http://utrac.sourceforge.net/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_prepare() {
epatch "${FILESDIR}"/Makefile.patch
}
src_install() {
dobin utrac
doman utrac.1
dodoc README CHANGES CREDITS
dodir ${DESTTREE}/share/utrac
dolib.a libutrac.a
insinto ${DESTTREE}/share/utrac
doins charsets.dat
}

@ -0,0 +1 @@
DIST zathura-djvu-0.1.0.tar.gz 8248 RMD160 7342aa5894fa26bcb02d3f5c1fd0ca08d17eee76 SHA1 a808cddd4fffead3d9c6958de4a1258fbbe40f7e SHA256 cf445ba6f3b439e611e7e52ef22e5362a01f0826e192ad9f55a4b2ea7ddb84cf

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>wired@gentoo.org</email>
<name>Alex Alexander</name>
</maintainer>
<maintainer>
<email>ssuominen@gentoo.org</email>
<name>Samuli Suominen</name>
</maintainer>
</pkgmetadata>

@ -0,0 +1,41 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-djvu/zathura-djvu-0.1.0.ebuild,v 1.1 2012/03/11 16:10:23 ssuominen Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="DjVu plug-in for zathura"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="app-text/djvu
>=app-text/zathura-0.1.1
dev-libs/girara:2
>=dev-libs/glib-2
x11-libs/cairo"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
myzathuraconf=(
CC="$(tc-getCC)"
LD="$(tc-getLD)"
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${myzathuraconf[@]}"
}
src_install() {
emake "${myzathuraconf[@]}" install
dodoc AUTHORS
}

@ -1 +1 @@
DIST zathura-pdf-poppler-0.1.0.tar.gz 7438 RMD160 390cd1fbde0a959993f65be7aa7bd0d33c9d2fe9 SHA1 3631b4f608f2fc5a856953326e1f48f61f51c173 SHA256 16aed3ad43fad2c8da8e2c1173b92d37de8a1875e41ab713134909880d195da6
DIST zathura-pdf-poppler-0.1.1.tar.gz 7584 RMD160 e310946e29faa05bb827527232c55bd34288c802 SHA1 6a644127f272c0bbb1582334935a0206ead8e4b9 SHA256 bec5fee721fcaee9f4b53d3882908b19efa82815393aa8c3619ff948b909d4a7

@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.1.0.ebuild,v 1.1 2012/03/08 09:19:45 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-pdf-poppler/zathura-pdf-poppler-0.1.1.ebuild,v 1.1 2012/03/11 14:45:15 ssuominen Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="PDF plug-in for zathura"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/zathura/download/${P}.tar.gz"
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="app-text/poppler[cairo]
>=app-text/zathura-0.1.0
>=app-text/zathura-0.1.1
dev-libs/girara:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"

@ -0,0 +1 @@
DIST zathura-ps-0.1.0.tar.gz 4995 RMD160 3f1445ef6e7611c08dcb3277f712e3196687e8d3 SHA1 c6b6a2c3fbd9a37081461a361c859af0910f5bc3 SHA256 1669fd11e436636cdedb2cde206b562f4f9c666cea9773f6f2014e765fd62789

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>wired@gentoo.org</email>
<name>Alex Alexander</name>
</maintainer>
<maintainer>
<email>ssuominen@gentoo.org</email>
<name>Samuli Suominen</name>
</maintainer>
</pkgmetadata>

@ -0,0 +1,41 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura-ps/zathura-ps-0.1.0.ebuild,v 1.1 2012/03/11 15:37:19 ssuominen Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="PostScript plug-in for zathura"
HOMEPAGE="http://pwmt.org/projects/zathura/"
SRC_URI="http://pwmt.org/projects/zathura/plugins/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=app-text/libspectre-0.2.6
>=app-text/zathura-0.1.1
dev-libs/girara:2
>=dev-libs/glib-2
x11-libs/cairo"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
myzathuraconf=(
CC="$(tc-getCC)"
LD="$(tc-getLD)"
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${myzathuraconf[@]}"
}
src_install() {
emake "${myzathuraconf[@]}" install
dodoc AUTHORS
}

@ -1,3 +1,2 @@
DIST zathura-0.0.8.4.tar.gz 37542 RMD160 1d4161a0cc5668a18dee515204d6152ce87259f7 SHA1 5c0f02181baa555ff2e7ed0f4c68ca2a2a2a5893 SHA256 168b13b95c6689dcc3b0cc0f1758bf3877c7a81b4b8985e8c033bfbb8e35380e
DIST zathura-0.0.8.5.tar.gz 38092 RMD160 5d8de1357124e067cf8cd37c74b21591ba8a9007 SHA1 8d65b964fc80f380cfee5ebe1a7fcbebf38cfbf7 SHA256 84751b09e00d95d7899573238666df0414cab72b3d20bd3e5e36db05e485f0b9
DIST zathura-0.1.0.tar.gz 46979 RMD160 2469e764368f009a9a5b88a1107871ff012e2501 SHA1 d3a6c3233833adb6c678f70e4758a589a4cde4d9 SHA256 572e020a350ecfc8353dd5645b0f24fbe27d9145cb07acab4f7738c575cbfcde
DIST zathura-0.1.1.tar.gz 54764 RMD160 9b08e5f4e5296ee3458e1ed8a5df28d80f08e2a8 SHA1 a39044d410e6c9208a795f8eebe9f72b433a54c5 SHA256 355abe33ca3e36247fe0f422f292ebf9eb045c2155393450d5f3ff78c9d41e58

@ -1,41 +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/zathura/zathura-0.0.8.4.ebuild,v 1.2 2011/10/18 17:33:20 ssuominen Exp $
EAPI=4
inherit savedconfig toolchain-funcs eutils
DESCRIPTION="A highly customizable and functional PDF viewer based on poppler and GTK+"
HOMEPAGE="http://zathura.pwmt.org/"
SRC_URI="http://pwmt.org/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE=""
RDEPEND=">=x11-libs/cairo-1.8.8
>=dev-libs/glib-2.22.4:2
>=x11-libs/gtk+-2.18.6:2
>=app-text/poppler-0.12.3[cairo]"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
DOCS=( README )
src_prepare() {
restore_config config.def.h
}
src_compile() {
tc-export CC
emake SFLAGS=""
}
src_install() {
default
save_config config.def.h
doman zathura.1
domenu zathura.desktop
}

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/zathura-0.1.0.ebuild,v 1.4 2012/03/09 11:26:30 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/zathura-0.1.1.ebuild,v 1.1 2012/03/11 14:38:09 ssuominen Exp $
EAPI=4
inherit multilib toolchain-funcs
inherit eutils multilib toolchain-funcs
DESCRIPTION="A highly customizable and functional document viewer"
HOMEPAGE="http://pwmt.org/projects/zathura/"
@ -12,9 +12,10 @@ SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
IUSE="sqlite"
RDEPEND="dev-libs/girara:2"
RDEPEND="dev-libs/girara:2
sqlite? ( dev-db/sqlite:3 )"
DEPEND="${RDEPEND}
dev-python/docutils
dev-util/pkgconfig"
@ -22,7 +23,9 @@ DEPEND="${RDEPEND}
pkg_setup() {
myzathuraconf=(
ZATHURA_GTK_VERSION=2
PLUGINDIR='${PREFIX}'/$(get_libdir)/${PN}
WITH_SQLITE=$(usex sqlite 1 0)
LIBDIR='${PREFIX}'/$(get_libdir)
RSTTOMAN="$(type -P rst2man.py)"
CC="$(tc-getCC)"
SFLAGS=""
VERBOSE=1
@ -30,15 +33,6 @@ pkg_setup() {
)
}
src_prepare() {
# http://bt.pwmt.org/view.php?id=140
# http://bt.pwmt.org/view.php?id=141
sed -i \
-e "s:lib/pkg:$(get_libdir)/pkg:" \
-e 's:rst2man:&.py:' \
Makefile || die
}
src_compile() {
emake "${myzathuraconf[@]}"
}
@ -49,5 +43,5 @@ src_install() {
}
pkg_postinst() {
elog "You need to install app-text/zathura-pdf-poppler to get PDF support."
elog "You can install app-text/zathura-pdf-poppler for PDF support."
}

@ -1,2 +1,2 @@
DIST kyotocabinet-1.2.70.tar.gz 925694 RMD160 53f7383576db0553d393539a975b0df3f6bd0e96 SHA1 58dee8ff10dbff4d9508fdcfa8d5699ef1035f74 SHA256 6b6f111e99f04c5f79e8dafed0b1458e8b0fa296d6d81e4712b0dcaa17f02ebb
DIST kyotocabinet-1.2.72.tar.gz 925517 RMD160 20c2a11a80cad9fbd8aa951ea832a521b7c83515 SHA1 3ce2a2b2f8f8d36aa6dea840f62f88342fcd2a3a SHA256 bbdc18e06440e7ad909202410069f408b02449a30c265793190792f1a6ebb2c7
DIST kyotocabinet-1.2.73.tar.gz 930484 RMD160 e29638ab4d972402750f85eea2deb82e67dbe0bb SHA1 01b1f94b8e7af00ebf415fe1ed1cbfbff9d57fa4 SHA256 f275f20ff969c1caedbcf41f05a4aa9c48268dfd19f8dc54906a4f33d72cdc7b

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/kyotocabinet/kyotocabinet-1.2.70.ebuild,v 1.1 2011/10/22 18:04:30 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/kyotocabinet/kyotocabinet-1.2.73.ebuild,v 1.1 2012/03/12 06:06:42 patrick Exp $
EAPI="2"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/openocd/openocd-0.5.0.ebuild,v 1.4 2011/11/15 21:12:38 vapier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/openocd/openocd-0.5.0.ebuild,v 1.5 2012/03/11 16:08:35 swegener Exp $
EAPI="4"
@ -55,8 +55,8 @@ src_configure() {
use ftd2xx && LDFLAGS="${LDFLAGS} -L/opt/$(get_libdir)"
if use blaster; then
use ftdi && myconf="${myconf} --use_blaster_libftdi"
use ftd2xx && myconf="${myconf} --use_blaster_ftd2xx"
use ftdi && myconf="${myconf} --enable-usb_blaster_libftdi"
use ftd2xx && myconf="${myconf} --enable-usb_blaster_ftd2xx"
fi
econf \
$(use_enable dummy) \

@ -0,0 +1,54 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/urjtag/urjtag-9999.ebuild,v 1.1 2012/03/12 03:17:35 vapier Exp $
# TODO: figure out htf to make python.eclass work
EAPI="4"
inherit eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://urjtag.git.sourceforge.net/gitroot/urjtag/urjtag"
EGIT_SOURCEDIR=${WORKDIR}
inherit git-2 autotools
S=${WORKDIR}/${PN}
else
SRC_URI="mirror://sourceforge/urjtag/${P}.tar.bz2"
KEYWORDS="amd64 ppc sparc x86"
fi
DESCRIPTION="tool for communicating over JTAG with flash chips, CPUs, and many more (fork of openwince jtag)"
HOMEPAGE="http://urjtag.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
IUSE="ftdi readline static-libs usb"
DEPEND="ftdi? ( dev-embedded/libftdi )
readline? ( sys-libs/readline )
usb? ( virtual/libusb:1 )"
RDEPEND="${DEPEND}
!dev-embedded/jtag"
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
mkdir -p m4
eautopoint
eautoreconf
fi
}
src_configure() {
econf \
--disable-werror \
--disable-python \
$(use_with readline) \
$(use_with ftdi libftdi) \
$(use_enable static-libs static) \
$(use_with usb libusb 1.0)
}
src_install() {
default
use static-libs || find "${ED}" -name '*.la' -delete
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1.ebuild,v 1.3 2012/01/09 06:06:19 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.0.1.ebuild,v 1.4 2012/03/11 22:39:20 chainsaw Exp $
EAPI=3
@ -15,7 +15,7 @@ SRC_URI="http://www.openscenegraph.org/downloads/stable_releases/${MY_P}/source/
LICENSE="wxWinLL-3 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="curl debug doc examples ffmpeg fltk fox gdal gif glut gtk itk jpeg jpeg2k
openexr openinventor osgapps pdf png qt4 sdl static-libs svg tiff truetype vnc
wxwidgets xine xrandr zlib"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-2.4.0.ebuild,v 1.1 2011/10/16 02:25:33 reavertm Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-2.4.0.ebuild,v 1.2 2012/03/11 22:40:40 chainsaw Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="debug"
RESTRICT="test"

@ -1,2 +1,3 @@
DIST json-0.4.3.tar.gz 22575 RMD160 8edb6aefd6e521423751d2da035d51a0a05cd777 SHA1 a2a31c38fee9429f87ddc1b7a4e59498827c7880 SHA256 56192d1e922cc71ad1aaf31baea8ee7e1f1b862f95bc72f60548caee4a484a87
DIST json-0.4.4.tar.gz 22181 RMD160 f5a0037c2a48d1863b41aa9906e7da91dbcf9a5e SHA1 cea0532a7b80b80d41809931212666ff705ca5d2 SHA256 010157c267e156489771a3a9466f9de74393d9bc82053c1463af8a55caaf5880
DIST json-0.5.tar.gz 22724 RMD160 6291fb9b0d05be8710ef3c7c690d767ea9c1175a SHA1 4b267683daad20c2c60dc9e450aff5a0821733e6 SHA256 d419bf7d1dd07dcccdc9b40b98a077cdfb5248d1685f929ec1e59f4b01de4b8a

@ -0,0 +1,35 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/json/json-0.5.ebuild,v 1.1 2012/03/11 18:36:38 slyfox Exp $
# ebuild generated by hackport 0.2.13
EAPI="3"
CABAL_FEATURES="lib profile haddock hscolour hoogle"
inherit haskell-cabal
DESCRIPTION="Support for serialising Haskell to and from JSON"
HOMEPAGE="http://hackage.haskell.org/package/json"
SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="+generic +parsec +pretty"
RDEPEND="dev-haskell/mtl
>=dev-lang/ghc-6.10.4
generic? ( >=dev-haskell/syb-0.3.3 )
parsec? ( dev-haskell/parsec )
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.2.0"
src_configure() {
cabal_src_configure \
$(cabal_flag generic) \
$(cabal_flag parsec) \
$(cabal_flag pretty)
}

@ -3,3 +3,4 @@ DIST tomcat-native-1.1.16-src.tar.gz 240128 RMD160 3fa519c0d9916412612d881547c30
DIST tomcat-native-1.1.18-src.tar.gz 241951 RMD160 767e0acc9e31b0d5c77f3cf4bf55610ecc69df29 SHA1 6e6e6c52fb98cf779b9865e9541edbc9d1439266 SHA256 80b61b847b266b75fb5d59143f4505468c998a36d5ef3449d108acfe2607253e
DIST tomcat-native-1.1.20-src.tar.gz 241274 RMD160 df7cb9d6d536b713014d0cf5b83cff24b7e82400 SHA1 35a176f3eb6516d84a109514d6a8b7c0af91441a SHA256 847ea04b5e66f56c8db94c8675f6e9e70b8d04f8aa2dc646a4050f8cf4d0d47e
DIST tomcat-native-1.1.22-src.tar.gz 249259 RMD160 d9b1bbfb58202e218f5fa6b89ed5a3bc9aee79e7 SHA1 b1e1dc30992b95283a2eec4b8552a2103bedb766 SHA256 5e7beae371c2e5046f627a3ab3330a75f9457217ebc2587bf7fd3cbf2cd320a5
DIST tomcat-native-1.1.23-src.tar.gz 258558 RMD160 6e34a9fbaf15d427f39ef1c477311ce7b9b55dd2 SHA1 c2fe9b3b7f50e1952775b2e2b82ea5811a385322 SHA256 944352cbe70d6a9fafaa462ef32792dc15d11bfa2682f48abe6300af60661e92

@ -0,0 +1,47 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-native/tomcat-native-1.1.23.ebuild,v 1.1 2012/03/11 21:50:24 fordfrog Exp $
EAPI="2"
inherit base eutils java-pkg-2
DESCRIPTION="Native APR library for Tomcat"
SLOT="0"
SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
HOMEPAGE="http://tomcat.apache.org/"
KEYWORDS="~amd64 ~x86"
LICENSE="Apache-2.0"
IUSE=""
RDEPEND="=dev-libs/apr-1*
dev-libs/openssl
>=virtual/jre-1.5"
DEPEND=">=virtual/jdk-1.5
${RDEPEND}"
S=${WORKDIR}/${P}-src/jni/native
src_configure(){
econf --with-apr=/usr/bin/apr-1-config \
--with-ssl=/usr || die "Could not configure native sources"
}
src_compile() {
base_src_compile
}
src_install() {
emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so"
}
pkg_postinst() {
elog
elog " APR should be available with Tomcat, for more information"
elog " please see http://tomcat.apache.org/tomcat-6.0-doc/apr.html"
elog
elog " Please report any bugs to http://bugs.gentoo.org/"
elog
}

@ -28,3 +28,9 @@ DIST ghc-bin-7.0.4-ppc.tbz2 95836292 RMD160 d788b8fc4af89c0d6111f70acd8e6afcb95f
DIST ghc-bin-7.0.4-ppc64.tbz2 84686556 RMD160 e76f31bcefecf0ce5fcdea29221078d06871752c SHA1 2fb246df6ef25344ed2b1380c3af9d4e3348eb84 SHA256 91789cdb5bac716f04f63a60a52d2185e5b09aa09a345b6e9339fa922778ee93
DIST ghc-bin-7.0.4-sparc.tbz2 82859870 RMD160 39494fbf3dc6c4ec553219281f3a2b0338f5be96 SHA1 a7dc521ed68d69a07d3c5988a1fd4b9502a7deab SHA256 72e067091fa2108c9b5c42bce833e2ac853a9c3bb3406ae23d1d25b5c71168e2
DIST ghc-bin-7.0.4-x86.tbz2 81814964 RMD160 c901d8b58679d243fa0e77ac7b8d0b6c63fc4bbc SHA1 1a31ff2813bfa0ca8d2dda2d501f95d396974eed SHA256 45450fea47fb8b6cea50bcd7b6c78d121ba6444a5e70f8a53b81009cedcc5838
DIST ghc-bin-7.4.1-alpha.tbz2 120687236 RMD160 bccb501bd7c3dbe51abbf3b215a29300afe2b017 SHA1 cbde1356ff17136656d76dccee4a8e44899f4588 SHA256 0d0dca79efeed686d7eced85967613ecb905bf379f200c79897c4a1692e7de91
DIST ghc-bin-7.4.1-amd64.tbz2 91883701 RMD160 71147e69d61b0acec4cac2a07a60699d7191f406 SHA1 18ee0df7c28136aab102987ef988196373498037 SHA256 d8579f840068f204ef87959920b3ec797dfa64f7de421d9d0eb82b0b1a950f0d
DIST ghc-bin-7.4.1-ppc.tbz2 89826596 RMD160 b87b68c9ef29dcda32bfc001ad521b74e334d2a1 SHA1 9e574be25c50084661c0d562ddd1d0fa837a9927 SHA256 8641113d157c9462aec360a6e17841051eee83f231c2c557fa9222d223dea4cc
DIST ghc-bin-7.4.1-ppc64.tbz2 101724506 RMD160 90cbe2fc40b3373e9a113eadd3e0b2e5b8e83553 SHA1 a9ab49fdcccebc0f191e533133a0387791326dc4 SHA256 6aef001a91281cf9a45a6a00f8aeacefa1b04a67c05a77eaff245290ded6fb5b
DIST ghc-bin-7.4.1-sparc.tbz2 117317699 RMD160 380f218db33edf7728a091aaf5539c6135131291 SHA1 68d864c62969c1c0ffdff845d05168c2526cbc4e SHA256 c318674f5ffe5fae91becaf5747a1fb27f90fea50893766468bb729ce45ccf3f
DIST ghc-bin-7.4.1-x86.tbz2 91033605 RMD160 35b3d9a82a39a28c91129e72cea13f06059b846b SHA1 f5bca10026320f7bfb40d3d49fef743050c60f64 SHA256 e5ff322b0496519b8bb879c9c87a25cd2d89921c89850b8fd21247cfd281e942

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-7.4.1.ebuild,v 1.2 2012/03/04 14:32:50 gienah Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-7.4.1.ebuild,v 1.3 2012/03/11 18:43:38 slyfox Exp $
# Brief explanation of the bootstrap logic:
#
@ -39,14 +39,14 @@ HOMEPAGE="http://www.haskell.org/ghc/"
arch_binaries=""
# sorted!
#arch_binaries="$arch_binaries alpha? ( http://code.haskell.org/~slyfox/ghc-alpha/ghc-bin-${PV}-alpha.tbz2 )"
arch_binaries="$arch_binaries alpha? ( http://code.haskell.org/~slyfox/ghc-alpha/ghc-bin-${PV}-alpha.tbz2 )"
#arch_binaries="$arch_binaries arm? ( http://code.haskell.org/~slyfox/ghc-arm/ghc-bin-${PV}-arm.tbz2 )"
#arch_binaries="$arch_binaries amd64? ( http://code.haskell.org/~slyfox/ghc-amd64/ghc-bin-${PV}-amd64.tbz2 )"
arch_binaries="$arch_binaries amd64? ( http://code.haskell.org/~slyfox/ghc-amd64/ghc-bin-${PV}-amd64.tbz2 )"
#arch_binaries="$arch_binaries ia64? ( http://code.haskell.org/~slyfox/ghc-ia64/ghc-bin-${PV}-ia64-fixed-fiw.tbz2 )"
#arch_binaries="$arch_binaries ppc? ( mirror://gentoo/ghc-bin-${PV}-ppc.tbz2 )"
#arch_binaries="$arch_binaries ppc64? ( mirror://gentoo/ghc-bin-${PV}-ppc64.tbz2 )"
#arch_binaries="$arch_binaries sparc? ( http://code.haskell.org/~slyfox/ghc-sparc/ghc-bin-${PV}-sparc.tbz2 )"
#arch_binaries="$arch_binaries x86? ( http://code.haskell.org/~slyfox/ghc-x86/ghc-bin-${PV}-x86.tbz2 )"
arch_binaries="$arch_binaries ppc? ( http://code.haskell.org/~slyfox/ghc-ppc/ghc-bin-${PV}-ppc.tbz2 )"
arch_binaries="$arch_binaries ppc64? ( http://code.haskell.org/~slyfox/ghc-ppc64/ghc-bin-${PV}-ppc64.tbz2 )"
arch_binaries="$arch_binaries sparc? ( http://code.haskell.org/~slyfox/ghc-sparc/ghc-bin-${PV}-sparc.tbz2 )"
arch_binaries="$arch_binaries x86? ( http://code.haskell.org/~slyfox/ghc-x86/ghc-bin-${PV}-x86.tbz2 )"
# various ports:
#arch_binaries="$arch_binaries x86-fbsd? ( http://code.haskell.org/~slyfox/ghc-x86-fbsd/ghc-bin-${PV}-x86-fbsd.tbz2 )"
@ -54,25 +54,17 @@ arch_binaries=""
# 0 - yet
yet_binary() {
case "${ARCH}" in
#alpha)
# return 0
# ;;
alpha) return 0 ;;
#arm)
# ewarn "ARM binary is built on armv5tel-eabi toolchain. Use with caution."
# return 0
# ;;
#amd64)
# return 0
# ;;
##sparc)
# return 0
# ;;
#x86)
# return 0
# ;;
*)
return 1
;;
#;;
amd64) return 0 ;;
ppc) return 0 ;;
ppc64) return 0 ;;
sparc) return 0 ;;
x86) return 0 ;;
*) return 1 ;;
esac
}
@ -112,8 +104,6 @@ DEPEND="${RDEPEND}
PDEPEND="!ghcbootstrap? ( =app-admin/haskell-updater-1.2* )"
PDEPEND="
${PDEPEND}
dev-haskell/random
dev-haskell/syb
llvm? ( sys-devel/llvm )"
append-ghc-cflags() {
@ -279,9 +269,6 @@ src_unpack() {
}
src_prepare() {
[[ ${CHOST} != *-darwin* ]] && \
source "${FILESDIR}/ghc-apply-gmp-hack" "$(get_libdir)"
ghc_setup_cflags
if ! use ghcbootstrap; then

@ -1 +1 @@
DIST girara-0.1.0.tar.gz 61589 RMD160 31c1a38eaeb4928bf1ddda06145875afb3aebbfc SHA1 ebb8d46cf3339c95f5dd0f6fb7b03790f9ef5982 SHA256 8a77799f2490a8f110a695debe172850ef84513767dc0540533f09f20929d107
DIST girara-0.1.1.tar.gz 64403 RMD160 af4cd153e5a9c2b73378da4c3d94b5cc7b90dfcf SHA1 87f1f28f8eeeaec483fb6c5bb2645c3feba55a42 SHA256 2e561d4c723225f81f52f18b622d54826925d880db71486be62352c4dd0e2183

@ -1,39 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/girara-0.1.0-r300.ebuild,v 1.2 2012/03/08 09:08:32 ssuominen Exp $
EAPI=4
inherit multilib toolchain-funcs
DESCRIPTION="A library that implements a user interface that focuses on simplicity and minimalism"
HOMEPAGE="http://pwmt.org/projects/girara/"
SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="3"
KEYWORDS=""
IUSE=""
RDEPEND=">=x11-libs/gtk+-3.0.11:3"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
mygiraraconf=(
LIBDIR='${PREFIX}'/$(get_libdir)
GIRARA_GTK_VERSION=3
CC="$(tc-getCC)"
SFLAGS=""
VERBOSE=1
DESTDIR="${D}"
)
}
src_compile() {
emake "${mygiraraconf[@]}"
}
src_install() {
emake "${mygiraraconf[@]}" install
dodoc AUTHORS
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/girara-0.1.0-r200.ebuild,v 1.1 2012/03/08 09:08:32 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/girara-0.1.1.ebuild,v 1.1 2012/03/11 14:29:58 ssuominen Exp $
EAPI=4
inherit multilib toolchain-funcs

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libaio/libaio-0.3.109-r3.ebuild,v 1.1 2012/03/09 16:12:46 haubi Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libaio/libaio-0.3.109-r3.ebuild,v 1.3 2012/03/12 07:59:59 haubi Exp $
EAPI="3"
@ -13,21 +13,28 @@ SRC_URI="mirror://kernel/linux/libs/aio/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
IUSE="multilib static-libs"
EMULTILIB_PKG="true"
aio_get_install_abis() {
use multilib && get_install_abis || echo ${ABI:-default}
}
src_unpack() {
for ABI in $(get_install_abis)
local OABI=${ABI}
for ABI in $(aio_get_install_abis)
do
mkdir -p "${WORKDIR}"/${ABI} || die
cd "${WORKDIR}"/${ABI} || die
unpack ${A}
done
ABI=${OABI}
}
src_prepare() {
for ABI in $(get_install_abis)
local OABI=${ABI}
for ABI in $(aio_get_install_abis)
do
einfo "Preparing ${ABI} ABI ..."
cd "${WORKDIR}"/${ABI}/${P} || die
@ -44,6 +51,7 @@ src_prepare() {
-e '/:=.*strip.*shell.*git/s:=.*:=:' \
src/Makefile Makefile || die
done
ABI=${OABI}
}
emake_libaio() {
@ -56,16 +64,19 @@ emake_libaio() {
}
src_compile() {
for ABI in $(get_install_abis)
local OABI=${ABI}
for ABI in $(aio_get_install_abis)
do
einfo "Compiling ${ABI} ABI ..."
cd "${WORKDIR}"/${ABI}/${P} || die
emake_libaio || die
done
ABI=${OABI}
}
src_test() {
for ABI in $(get_install_abis)
local OABI=${ABI}
for ABI in $(aio_get_install_abis)
do
einfo "Testing ${ABI} ABI ..."
cd "${WORKDIR}"/${ABI}/${P}/harness || die
@ -73,10 +84,12 @@ src_test() {
# 'make check' breaks with sandbox, 'make partcheck' works
emake_libaio partcheck prefix="${S}/src" libdir="${S}/src" || die
done
ABI=${OABI}
}
src_install() {
for ABI in $(get_install_abis)
local OABI=${ABI}
for ABI in $(aio_get_install_abis)
do
einfo "Installing ${ABI} ABI ..."
cd "${WORKDIR}"/${ABI}/${P} || die
@ -96,6 +109,7 @@ src_install() {
# move crap to / for multipath-tools #325355
gen_usr_ldscript -a aio
done
ABI=${OABI}
if ! use static-libs ; then
rm "${ED}"usr/lib*/*.a || die

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/libmowgli-1.0.0.ebuild,v 1.3 2012/03/10 17:16:33 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmowgli/libmowgli-1.0.0.ebuild,v 1.5 2012/03/12 05:27:33 jdhore Exp $
EAPI=3
@ -11,7 +11,7 @@ IUSE=""
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"

@ -1,12 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpqxx/libpqxx-4.0-r1.ebuild,v 1.5 2012/03/06 21:26:31 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpqxx/libpqxx-4.0-r1.ebuild,v 1.6 2012/03/11 14:44:01 ago 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"

@ -3,3 +3,5 @@ DIST nss-3.13.1-add_cacert_ca_certs.patch 71117 RMD160 1d5a90f1afe3b645ac75c3854
DIST nss-3.13.1.with.ckbi.1.88.tar.gz 6065634 RMD160 20bf77259d92cb054a4e4c40fbd931da335fc58c SHA1 ebc0258c8d1a3c2fe80941bd991b766552464fc6 SHA256 456fd2ad036976660ae7e4e24edddc49f2f47e7ca490c1c5372771bbb5207879
DIST nss-3.13.2-add_cacert_ca_certs-ported.patch 70938 RMD160 75e402553dd80382af2aa5676bf62dda62b733a2 SHA1 c2d342a9bc4690609b0cfe5924bde52e25d6b73c SHA256 bd3e14436695c903279c2cf8982c8df0f20ab34cbe1a7f955aaf861f19a3bf25
DIST nss-3.13.2.tar.gz 6082528 RMD160 06efef91bbcff0425000d945dda73234ec12aadb SHA1 ad80109b135ebe8467ca2b2c2b9cc4b0bf885505 SHA256 92eafdbb62e3071afe71beeaca94c9f33b0b8d11654cbf1797c84aa9f7c1c8e5
DIST nss-3.13.3-add_spi+cacerts_ca_certs.patch 69983 RMD160 be90a26851b8b431ddfcb42718917bebadaad21f SHA1 02d33b60aecc2e2cc85db1737eb17981bf50eb21 SHA256 aa3e4ac057865b6c90718d1c815686867ff96540bb500b9191a632c029d2ad9e
DIST nss-3.13.3.tar.gz 6083507 RMD160 844958f0cad39d0283d046104fd41349ff4dda4c SHA1 6b8b92d3de893ae67dc04ce9a14ab5c9495dd4a6 SHA256 efa10f2c70da4bddabf1a6081964969bb23359b93d6eadbf4739274a77bc3587

@ -0,0 +1,245 @@
diff -urN a/mozilla/security/nss/config/Makefile b/mozilla/security/nss/config/Makefile
--- a/mozilla/security/nss/config/Makefile 1969-12-31 18:00:00.000000000 -0600
+++ b/mozilla/security/nss/config/Makefile 2009-09-14 21:45:45.619639265 -0500
@@ -0,0 +1,40 @@
+CORE_DEPTH = ../..
+DEPTH = ../..
+
+include $(CORE_DEPTH)/coreconf/config.mk
+
+NSS_MAJOR_VERSION = `grep "NSS_VMAJOR" ../lib/nss/nss.h | awk '{print $$3}'`
+NSS_MINOR_VERSION = `grep "NSS_VMINOR" ../lib/nss/nss.h | awk '{print $$3}'`
+NSS_PATCH_VERSION = `grep "NSS_VPATCH" ../lib/nss/nss.h | awk '{print $$3}'`
+PREFIX = /usr
+
+all: export libs
+
+export:
+ # Create the nss.pc file
+ mkdir -p $(DIST)/lib/pkgconfig
+ sed -e "s,@prefix@,$(PREFIX)," \
+ -e "s,@exec_prefix@,\$${prefix}," \
+ -e "s,@libdir@,\$${prefix}/gentoo/nss," \
+ -e "s,@includedir@,\$${prefix}/include/nss," \
+ -e "s,@NSS_MAJOR_VERSION@,$(NSS_MAJOR_VERSION),g" \
+ -e "s,@NSS_MINOR_VERSION@,$(NSS_MINOR_VERSION)," \
+ -e "s,@NSS_PATCH_VERSION@,$(NSS_PATCH_VERSION)," \
+ nss.pc.in > nss.pc
+ chmod 0644 nss.pc
+ ln -sf ../../../../../security/nss/config/nss.pc $(DIST)/lib/pkgconfig
+
+ # Create the nss-config script
+ mkdir -p $(DIST)/bin
+ sed -e "s,@prefix@,$(PREFIX)," \
+ -e "s,@NSS_MAJOR_VERSION@,$(NSS_MAJOR_VERSION)," \
+ -e "s,@NSS_MINOR_VERSION@,$(NSS_MINOR_VERSION)," \
+ -e "s,@NSS_PATCH_VERSION@,$(NSS_PATCH_VERSION)," \
+ nss-config.in > nss-config
+ chmod 0755 nss-config
+ ln -sf ../../../../security/nss/config/nss-config $(DIST)/bin
+
+libs:
+
+dummy: all export libs
+
diff -urN a/mozilla/security/nss/config/nss-config.in b/mozilla/security/nss/config/nss-config.in
--- a/mozilla/security/nss/config/nss-config.in 1969-12-31 18:00:00.000000000 -0600
+++ b/mozilla/security/nss/config/nss-config.in 2009-09-14 21:47:45.190638078 -0500
@@ -0,0 +1,145 @@
+#!/bin/sh
+
+prefix=@prefix@
+
+major_version=@NSS_MAJOR_VERSION@
+minor_version=@NSS_MINOR_VERSION@
+patch_version=@NSS_PATCH_VERSION@
+
+usage()
+{
+ cat <<EOF
+Usage: nss-config [OPTIONS] [LIBRARIES]
+Options:
+ [--prefix[=DIR]]
+ [--exec-prefix[=DIR]]
+ [--includedir[=DIR]]
+ [--libdir[=DIR]]
+ [--version]
+ [--libs]
+ [--cflags]
+Dynamic Libraries:
+ nss
+ ssl
+ smime
+ nssutil
+EOF
+ exit $1
+}
+
+if test $# -eq 0; then
+ usage 1 1>&2
+fi
+
+lib_ssl=yes
+lib_smime=yes
+lib_nss=yes
+lib_nssutil=yes
+
+while test $# -gt 0; do
+ case "$1" in
+ -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) optarg= ;;
+ esac
+
+ case $1 in
+ --prefix=*)
+ prefix=$optarg
+ ;;
+ --prefix)
+ echo_prefix=yes
+ ;;
+ --exec-prefix=*)
+ exec_prefix=$optarg
+ ;;
+ --exec-prefix)
+ echo_exec_prefix=yes
+ ;;
+ --includedir=*)
+ includedir=$optarg
+ ;;
+ --includedir)
+ echo_includedir=yes
+ ;;
+ --libdir=*)
+ libdir=$optarg
+ ;;
+ --libdir)
+ echo_libdir=yes
+ ;;
+ --version)
+ echo ${major_version}.${minor_version}.${patch_version}
+ ;;
+ --cflags)
+ echo_cflags=yes
+ ;;
+ --libs)
+ echo_libs=yes
+ ;;
+ ssl)
+ lib_ssl=yes
+ ;;
+ smime)
+ lib_smime=yes
+ ;;
+ nss)
+ lib_nss=yes
+ ;;
+ nssutil)
+ lib_nssutil=yes
+ ;;
+ *)
+ usage 1 1>&2
+ ;;
+ esac
+ shift
+done
+
+# Set variables that may be dependent upon other variables
+if test -z "$exec_prefix"; then
+ exec_prefix=`pkg-config --variable=exec_prefix nss`
+fi
+if test -z "$includedir"; then
+ includedir=`pkg-config --variable=includedir nss`
+fi
+if test -z "$libdir"; then
+ libdir=`pkg-config --variable=libdir nss`
+fi
+
+if test "$echo_prefix" = "yes"; then
+ echo $prefix
+fi
+
+if test "$echo_exec_prefix" = "yes"; then
+ echo $exec_prefix
+fi
+
+if test "$echo_includedir" = "yes"; then
+ echo $includedir
+fi
+
+if test "$echo_libdir" = "yes"; then
+ echo $libdir
+fi
+
+if test "$echo_cflags" = "yes"; then
+ echo -I$includedir
+fi
+
+if test "$echo_libs" = "yes"; then
+ libdirs="-Wl,-R$libdir -L$libdir"
+ if test -n "$lib_ssl"; then
+ libdirs="$libdirs -lssl${major_version}"
+ fi
+ if test -n "$lib_smime"; then
+ libdirs="$libdirs -lsmime${major_version}"
+ fi
+ if test -n "$lib_nss"; then
+ libdirs="$libdirs -lnss${major_version}"
+ fi
+ if test -n "$lib_nssutil"; then
+ libdirs="$libdirs -lnssutil${major_version}"
+ fi
+ echo $libdirs
+fi
+
diff -urN a/mozilla/security/nss/config/nss.pc.in b/mozilla/security/nss/config/nss.pc.in
--- a/mozilla/security/nss/config/nss.pc.in 1969-12-31 18:00:00.000000000 -0600
+++ b/mozilla/security/nss/config/nss.pc.in 2009-09-14 21:45:45.653637310 -0500
@@ -0,0 +1,12 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: NSS
+Description: Network Security Services
+Version: @NSS_MAJOR_VERSION@.@NSS_MINOR_VERSION@.@NSS_PATCH_VERSION@
+Requires: nspr >= 4.8
+Libs: -L${libdir} -lssl3 -lsmime3 -lnssutil3 -lnss3
+Cflags: -I${includedir}
+
diff -urN a/mozilla/security/nss/Makefile b/mozilla/security/nss/Makefile
--- a/mozilla/security/nss/Makefile 2008-12-02 17:24:39.000000000 -0600
+++ b/mozilla/security/nss/Makefile 2009-09-14 21:45:45.678657145 -0500
@@ -78,7 +78,7 @@
# (7) Execute "local" rules. (OPTIONAL). #
#######################################################################
-nss_build_all: build_coreconf build_nspr build_dbm all
+nss_build_all: build_coreconf build_dbm all
nss_clean_all: clobber_coreconf clobber_nspr clobber_dbm clobber
@@ -140,12 +140,6 @@
--with-dist-prefix='$(NSPR_PREFIX)' \
--with-dist-includedir='$(NSPR_PREFIX)/include'
-build_nspr: $(NSPR_CONFIG_STATUS)
- cd $(CORE_DEPTH)/../nsprpub/$(OBJDIR_NAME) ; $(MAKE)
-
-clobber_nspr: $(NSPR_CONFIG_STATUS)
- cd $(CORE_DEPTH)/../nsprpub/$(OBJDIR_NAME) ; $(MAKE) clobber
-
build_dbm:
ifndef NSS_DISABLE_DBM
cd $(CORE_DEPTH)/dbm ; $(MAKE) export libs
diff -urN a/mozilla/security/nss/manifest.mn b/mozilla/security/nss/manifest.mn
--- a/mozilla/security/nss/manifest.mn 2008-04-04 15:36:59.000000000 -0500
+++ b/mozilla/security/nss/manifest.mn 2009-09-14 21:45:45.703656167 -0500
@@ -42,6 +42,6 @@
RELEASE = nss
-DIRS = lib cmd
+DIRS = lib cmd config

@ -0,0 +1,206 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.13.3.ebuild,v 1.1 2012/03/11 23:53:05 anarchy Exp $
EAPI=3
inherit eutils flag-o-matic multilib toolchain-funcs
NSPR_VER="4.9"
RTM_NAME="NSS_${PV//./_}_RTM"
DESCRIPTION="Mozilla's Network Security Services library that implements PKI support"
HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/"
SRC_URI="ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz
http://dev.gentoo.org/~anarchy/patches/nss-3.13.3-add_spi+cacerts_ca_certs.patch"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="utils"
DEPEND="dev-util/pkgconfig"
RDEPEND=">=dev-libs/nspr-${NSPR_VER}
>=dev-db/sqlite-3.5
sys-libs/zlib"
src_setup() {
export LC_ALL="C"
}
src_prepare() {
# Custom changes for gentoo
epatch "${FILESDIR}/${PN}-3.13-gentoo-fixup.patch"
epatch "${FILESDIR}/${PN}-3.12.6-gentoo-fixup-warnings.patch"
epatch "${DISTDIR}/nss-3.13.3-add_spi+cacerts_ca_certs.patch"
cd "${S}"/mozilla/security/coreconf || die
# hack nspr paths
echo 'INCLUDES += -I'"${EPREFIX}"'/usr/include/nspr -I$(DIST)/include/dbm' \
>> headers.mk || die "failed to append include"
# modify install path
sed -e 's:SOURCE_PREFIX = $(CORE_DEPTH)/\.\./dist:SOURCE_PREFIX = $(CORE_DEPTH)/dist:' \
-i source.mk || die
# Respect LDFLAGS
sed -i -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/g' rules.mk || die
# Ensure we stay multilib aware
sed -i -e "s:gentoo\/nss:$(get_libdir):" "${S}"/mozilla/security/nss/config/Makefile || die "Failed to fix for multilib"
# Fix pkgconfig file for Prefix
sed -i -e "/^PREFIX =/s:= /usr:= ${EPREFIX}/usr:" \
"${S}"/mozilla/security/nss/config/Makefile || die
epatch "${FILESDIR}/nss-3.13.1-solaris-gcc.patch"
# dirty hack
cd "${S}"/mozilla/security/nss || die
sed -i -e "/CRYPTOLIB/s:\$(SOFTOKEN_LIB_DIR):../freebl/\$(OBJDIR):" \
lib/ssl/config.mk || die
sed -i -e "/CRYPTOLIB/s:\$(SOFTOKEN_LIB_DIR):../../lib/freebl/\$(OBJDIR):" \
cmd/platlibs.mk || die
}
src_compile() {
strip-flags
echo > "${T}"/test.c || die
$(tc-getCC) ${CFLAGS} -c "${T}"/test.c -o "${T}"/test.o || die
case $(file "${T}"/test.o) in
*64-bit*|*ppc64*|*x86_64*) export USE_64=1;;
*32-bit*|*ppc*|*i386*) ;;
*) die "Failed to detect whether your arch is 64bits or 32bits, disable distcc if you're using it, please";;
esac
export NSPR_INCLUDE_DIR=`nspr-config --includedir`
export NSPR_LIB_DIR=`nspr-config --libdir`
export BUILD_OPT=1
export NSS_USE_SYSTEM_SQLITE=1
export NSDISTMODE=copy
export NSS_ENABLE_ECC=1
export XCFLAGS="${CFLAGS}"
export FREEBL_NO_DEPEND=1
export ASFLAGS=""
cd "${S}"/mozilla/security/coreconf || die
emake -j1 CC="$(tc-getCC)" || die "coreconf make failed"
cd "${S}"/mozilla/security/dbm || die
emake -j1 CC="$(tc-getCC)" || die "dbm make failed"
cd "${S}"/mozilla/security/nss || die
emake -j1 CC="$(tc-getCC)" || die "nss make failed"
}
# Altering these 3 libraries breaks the CHK verification.
# All of the following cause it to break:
# - stripping
# - prelink
# - ELF signing
# http://www.mozilla.org/projects/security/pki/nss/tech-notes/tn6.html
# Either we have to NOT strip them, or we have to forcibly resign after
# stripping.
#local_libdir="$(get_libdir)"
#export STRIP_MASK="
# */${local_libdir}/libfreebl3.so*
# */${local_libdir}/libnssdbm3.so*
# */${local_libdir}/libsoftokn3.so*"
export NSS_CHK_SIGN_LIBS="freebl3 nssdbm3 softokn3"
generate_chk() {
local shlibsign="$1"
local libdir="$2"
einfo "Resigning core NSS libraries for FIPS validation"
shift 2
for i in ${NSS_CHK_SIGN_LIBS} ; do
local libname=lib${i}.so
local chkname=lib${i}.chk
"${shlibsign}" \
-i "${libdir}"/${libname} \
-o "${libdir}"/${chkname}.tmp \
&& mv -f \
"${libdir}"/${chkname}.tmp \
"${libdir}"/${chkname} \
|| die "Failed to sign ${libname}"
done
}
cleanup_chk() {
local libdir="$1"
shift 1
for i in ${NSS_CHK_SIGN_LIBS} ; do
local libfname="${libdir}/lib${i}.so"
# If the major version has changed, then we have old chk files.
[ ! -f "${libfname}" -a -f "${libfname}.chk" ] \
&& rm -f "${libfname}.chk"
done
}
src_install () {
MINOR_VERSION=12
cd "${S}"/mozilla/security/dist || die
dodir /usr/$(get_libdir) || die
cp -L */lib/*$(get_libname) "${ED}"/usr/$(get_libdir) || die "copying shared libs failed"
# We generate these after stripping the libraries, else they don't match.
#cp -L */lib/*.chk "${ED}"/usr/$(get_libdir) || die "copying chk files failed"
cp -L */lib/libcrmf.a "${ED}"/usr/$(get_libdir) || die "copying libs failed"
# Install nss-config and pkgconfig file
dodir /usr/bin || die
cp -L */bin/nss-config "${ED}"/usr/bin || die
dodir /usr/$(get_libdir)/pkgconfig || die
cp -L */lib/pkgconfig/nss.pc "${ED}"/usr/$(get_libdir)/pkgconfig || die
# all the include files
insinto /usr/include/nss
doins public/nss/*.h || die
cd "${ED}"/usr/$(get_libdir) || die
local n=
for file in *$(get_libname); do
n=${file%$(get_libname)}$(get_libname ${MINOR_VERSION})
mv ${file} ${n} || die
ln -s ${n} ${file} || die
if [[ ${CHOST} == *-darwin* ]]; then
install_name_tool -id "${EPREFIX}/usr/$(get_libdir)/${n}" ${n} || die
fi
done
local nssutils
# Always enabled because we need it for chk generation.
nssutils="shlibsign"
if use utils; then
# The tests we do not need to install.
#nssutils_test="bltest crmftest dbtest dertimetest
#fipstest remtest sdrtest"
nssutils="addbuiltin atob baddbdir btoa certcgi certutil checkcert
cmsutil conflict crlutil derdump digest makepqg mangle modutil multinit
nonspr10 ocspclnt oidcalc p7content p7env p7sign p7verify pk11mode
pk12util pp rsaperf selfserv shlibsign signtool signver ssltap strsclnt
symkeyutil tstclnt vfychain vfyserv"
fi
cd "${S}"/mozilla/security/dist/*/bin/ || die
for f in $nssutils; do
dobin ${f} || die
done
# Prelink breaks the CHK files. We don't have any reliable way to run
# shlibsign after prelink.
declare -a libs
for l in ${NSS_CHK_SIGN_LIBS} ; do
libs+=("${EPREFIX}/usr/$(get_libdir)/lib${l}.so")
done
OLD_IFS="${IFS}" IFS=":" ; liblist="${libs[*]}" ; IFS="${OLD_IFS}"
echo -e "PRELINK_PATH_MASK=${liblist}" >"${T}/90nss" || die
unset libs liblist
doenvd "${T}/90nss" || die
}
pkg_postinst() {
# We must re-sign the libraries AFTER they are stripped.
generate_chk "${EROOT}"/usr/bin/shlibsign "${EROOT}"/usr/$(get_libdir)
}
pkg_postrm() {
cleanup_chk "${EROOT}"/usr/$(get_libdir)
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.0.ebuild,v 1.2 2012/03/10 17:07:41 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.0.ebuild,v 1.4 2012/03/11 15:38:26 ago Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="The Perl DBD::Pg Module"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
RDEPEND="virtual/perl-version

@ -0,0 +1,42 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.19.1.ebuild,v 1.1 2012/03/11 13:42:42 tove Exp $
EAPI=4
MODULE_AUTHOR=TURNSTEP
MODULE_VERSION=2.19.1
inherit perl-module
DESCRIPTION="The Perl DBD::Pg Module"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
RDEPEND="virtual/perl-version
>=dev-perl/DBI-1.52
dev-db/postgresql-base"
DEPEND="${RDEPEND}"
# testcases require a local database with an
# open password for the postgres user.
SRC_TEST="skip"
src_prepare() {
postgres_include="$(readlink -f "${EPREFIX}"/usr/include/postgresql)"
postgres_lib="${postgres_include//include/lib}"
# Fall-through case is the non-split postgresql
# The active cases instead get us the matching libdir for the includedir.
for i in lib lib64 ; do
if [ -d "${postgres_lib}/${i}" ]; then
postgres_lib="${postgres_lib}/${i}"
break
fi
done
# env variables for compilation:
export POSTGRES_INCLUDE="${postgres_include}"
export POSTGRES_LIB="${postgres_lib}"
perl-module_src_prepare
}

@ -1,3 +1,4 @@
DIST DBD-Pg-2.17.2.tar.gz 232394 RMD160 3f509dc9e1f9562f74d565a939f5e072190e6d51 SHA1 e4509a8e1a06cc196ed6fc3e7976c124633bfeb8 SHA256 d2319f5554863f5d8671acfee7364b18d8bdb9880460e722bee871f3e607a6ff
DIST DBD-Pg-2.18.1.tar.gz 235387 RMD160 4b2638162e777657ac7cf2b54ea142733727bc2e SHA1 7ea0735fae4dab0b5c95b11ff391f9adedebfaca SHA256 f532ec1e69809d510c5267525b7dcc61b5f9d75aa9dd25014330b10741acd982
DIST DBD-Pg-2.19.0.tar.gz 234913 RMD160 bb40d697e29676c62a95002e6d5c7cecf2bc2ced SHA1 5551ae75f05fcb5011129025f9512e896e8f467e SHA256 9323c258932aee53cb009cad65201e69545306ce7cd0dc10d50974536519da39
DIST DBD-Pg-2.19.1.tar.gz 235182 RMD160 11a01cc7bea206f535b74b2f03f81a23b7776757 SHA1 0d0bd7daf2c24758716fbbde686e4d66cf81a206 SHA256 83d0cace673910d812ab2121e79c65e04b75e460fdd59f076908d9660f69cd9e

@ -1 +1,2 @@
DIST XML-Feed-0.46.tar.gz 47448 RMD160 b40181e07eb431287537d6c4596ad834a5ad5d9e SHA1 ebfb9cc3c495778995e41071b4c6125c9fb51fae SHA256 2fc3812ce2bf437478e37190949ccc6e3e2252a4d993ce66c945bae54b01db1a
DIST XML-Feed-0.47.tar.gz 51360 RMD160 56baf127393b063e8cfa5d588a4d156c4a0b7d6e SHA1 835e68ee122fe693d61224a296a16e85966953e3 SHA256 e5bafd7380b56c5e74dceec80b51fbc47a46d878b579d3e9701aab02f429b584

@ -0,0 +1,37 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-Feed/XML-Feed-0.470.0.ebuild,v 1.1 2012/03/11 14:03:37 tove Exp $
EAPI=4
MODULE_AUTHOR=DAVECROSS
MODULE_VERSION=0.47
inherit perl-module
DESCRIPTION="Syndication feed parser and auto-discovery"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
dev-perl/Class-ErrorHandler
dev-perl/Feed-Find
dev-perl/URI-Fetch
>=dev-perl/XML-RSS-1.470.0
>=dev-perl/XML-Atom-0.380.0
dev-perl/DateTime
dev-perl/DateTime-Format-Mail
dev-perl/DateTime-Format-W3CDTF
dev-perl/HTML-Parser
dev-perl/libwww-perl
virtual/perl-Module-Pluggable"
DEPEND="${RDEPEND}
virtual/perl-Module-Build
test? (
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
)
"
SRC_TEST=do

@ -1,2 +1,3 @@
DIST YAML-Tiny-1.41.tar.gz 36736 RMD160 8f552a68042586fa2ba7f8b6767f32dc0d07a7e9 SHA1 03efc3885bc39a2934b09ddacdc44a39929e5638 SHA256 eb076a2eee629f4b7b25212f68e05f58a6391f36ea083f3c8e4a08540fcf94ee
DIST YAML-Tiny-1.50.tar.gz 42411 RMD160 bfeeccc79782ee8efd113829215c80da4d069837 SHA1 a02e0d380559681bbb6d33513805cd4b5e52bd76 SHA256 a379dfad04db22d70edc47c611765b401b5c03dbb08b817cd7c362e01ea5e129
DIST YAML-Tiny-1.51.tar.gz 43342 RMD160 994f2e5fb9cc480400bf71c7242790a5455cb879 SHA1 d466b2e62bd90f9a10d21a714825faa0fb86d9d3 SHA256 5c6e9b3d9e558fc428d8b8710da49ff3bcb9fb606decb63c24816da01c9f8b4d

@ -0,0 +1,17 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/YAML-Tiny/YAML-Tiny-1.510.0.ebuild,v 1.1 2012/03/11 13:44:32 tove Exp $
EAPI=4
MODULE_AUTHOR=ADAMK
MODULE_VERSION=1.51
inherit perl-module
DESCRIPTION="Read/Write YAML files with as little code as possible"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
SRC_TEST=do

@ -1,2 +1,3 @@
DIST Text-Wrapper-1.01.tar.gz 7631 RMD160 4faefb96abc1027a1711445125538d67d650ea88 SHA1 5b35f2cbfc500c2f202c1f239e69752a42df0105 SHA256 20cb7d02065b6d8b7162d23cc69a7647c8cff847ba15eb1065e567db5fbc4e0c
DIST Text-Wrapper-1.02.tar.gz 8229 RMD160 e4a627b5d566160a9b5c079dcb4dc40ebeb06cf1 SHA1 d6dc32314765a8e8c144734846e07bd896aebff1 SHA256 6c00d5dbc5adae26bc7fa9c36ac9982ddc065d2247f3aa3acc802d2e865034a7
DIST Text-Wrapper-1.03.tar.gz 18052 RMD160 adf00b9e94af52cfeb70dd4dfcfc1fa6aa275ea2 SHA1 46b4d62ffd2b3fe7a5c12f44ee683639560eee92 SHA256 8274dcc448a3c9b3dd4b9abfef706ba79b3b0c2d2d06fa5dd47c721166c1492f

@ -0,0 +1,18 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/text-wrapper/text-wrapper-1.30.0.ebuild,v 1.1 2012/03/11 14:07:28 tove Exp $
EAPI=4
MY_PN=Text-Wrapper
MODULE_AUTHOR=CJM
MODULE_VERSION=1.03
inherit perl-module
DESCRIPTION="The Perl Text::Wrapper Module"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
SRC_TEST=do

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/dbus-python-1.0.0.ebuild,v 1.10 2012/03/09 14:48:12 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/dbus-python-1.0.0.ebuild,v 1.11 2012/03/12 06:43:36 jdhore Exp $
EAPI=4
@ -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.98

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.57.1.ebuild,v 1.1 2012/02/14 04:38:36 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.57.1.ebuild,v 1.2 2012/03/12 07:19:51 patrick Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -52,6 +52,11 @@ src_test() {
src_install() {
distutils_src_install
# Avoid conflict with dev-python/logilab-common. wrt Bug 405535
rm -f "${D}"usr/$(get_libdir)/python*/site-packages/logilab/__init__.py || die
rm -f "${D}"usr/$(get_libdir)/pypy*/site-packages/logilab/__init__.py || die
rm -f "${D}"usr/$(get_libdir)/jython*/site-packages/logilab/__init__.py || die
python_generate_wrapper_scripts -E -f -q "${ED}usr/bin/pytest"
doman doc/pytest.1 || die "doman failed"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.4.0.ebuild,v 1.5 2012/02/01 02:19:31 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.4.0.ebuild,v 1.6 2012/03/12 07:20:30 patrick Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@ -30,7 +30,9 @@ src_install() {
distutils_src_install
# Avoid conflict with dev-python/logilab-common.
rm -f "${D}"usr/$(get_libdir)/python*/site-packages/logilab/__init__.py
rm -f "${D}"usr/$(get_libdir)/python*/site-packages/logilab/__init__.py || die
rm -f "${D}"usr/$(get_libdir)/pypy*/site-packages/logilab/__init__.py || die
rm -f "${D}"usr/$(get_libdir)/jython*/site-packages/logilab/__init__.py || die
if use doc; then
dohtml doc/documentation.html

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.1.0-r1.ebuild,v 1.2 2012/03/08 22:54:51 pesa Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.1.0-r2.ebuild,v 1.1 2012/03/11 16:53:24 jlec Exp $
EAPI=4
@ -43,6 +43,8 @@ src_configure() {
configuration() {
local mycmakeargs=(
$(cmake-utils_use_build test TESTS)
-DPYTHON_SUFFIX=-$(PYTHON)
-DPYTHON_EXECUTABLE=$(PYTHON -a)
)
if [[ $(python_get_version -l --major) == 3 ]]; then

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-3.1.3.ebuild,v 1.2 2011/12/31 21:38:55 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/actionpack/actionpack-3.1.3.ebuild,v 1.3 2012/03/11 14:10:37 ranger Exp $
EAPI=4
@ -23,7 +23,7 @@ SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.1"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/actionpack"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-3.1.3.ebuild,v 1.5 2012/02/06 18:45:13 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activemodel/activemodel-3.1.3.ebuild,v 1.6 2012/03/11 14:09:18 ranger Exp $
EAPI=4
@ -20,7 +20,7 @@ SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.1"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/activemodel"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.1.3.ebuild,v 1.2 2011/12/31 20:58:55 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activerecord/activerecord-3.1.3.ebuild,v 1.3 2012/03/11 14:09:53 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
@ -21,7 +21,7 @@ SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.1"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="mysql postgres sqlite3"
RUBY_S="rails-rails-*/activerecord"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/activeresource-3.1.3.ebuild,v 1.4 2012/02/06 18:44:32 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeresource/activeresource-3.1.3.ebuild,v 1.5 2012/03/11 13:51:07 ranger Exp $
EAPI=4
@ -20,7 +20,7 @@ SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.1"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/activeresource"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.1.3.ebuild,v 1.6 2012/02/06 18:30:05 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.1.3.ebuild,v 1.7 2012/03/11 13:50:14 ranger Exp $
EAPI=4
@ -21,7 +21,7 @@ SRC_URI="https://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.1"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/${PN}"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/adhearsion/adhearsion-1.2.3.ebuild,v 1.1 2011/11/20 09:07:49 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/adhearsion/adhearsion-1.2.3.ebuild,v 1.2 2012/03/11 13:46:38 ranger Exp $
EAPI=4
USE_RUBY="ruby18"
@ -19,7 +19,7 @@ IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~ppc64"
SRC_URI="https://github.com/adhearsion/adhearsion/tarball/v${PV} -> ${P}.tgz"
RUBY_S="adhearsion-adhearsion-*"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/arel-2.2.1-r1.ebuild,v 1.3 2011/12/31 20:54:41 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/arel-2.2.1-r1.ebuild,v 1.4 2012/03/11 14:03:12 ranger Exp $
EAPI="2"
USE_RUBY="ruby18 ruby19 ree18 jruby"
@ -18,7 +18,7 @@ DESCRIPTION="Arel is a Relational Algebra for Ruby."
HOMEPAGE="http://github.com/rails/arel"
LICENSE="MIT"
SLOT="2.1"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_bdepend "

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.0.1.ebuild,v 1.8 2012/03/08 00:25:57 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.0.1.ebuild,v 1.9 2012/03/11 13:44:00 ranger Exp $
EAPI=2
@ -17,7 +17,7 @@ DESCRIPTION="An easy way to keep your users' passwords secure."
HOMEPAGE="http://bcrypt-ruby.rubyforge.org/"
LICENSE="MIT"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-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 ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.6.4.ebuild,v 1.3 2012/01/01 21:06:08 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-1.6.4.ebuild,v 1.4 2012/03/11 13:47:32 ranger Exp $
EAPI="4"
@ -18,7 +18,7 @@ HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="${RDEPEND}
sys-apps/dmidecode

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-3.1.4-r3.ebuild,v 1.1 2012/01/25 00:46:57 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-3.1.4-r3.ebuild,v 1.2 2012/03/11 14:12:37 ranger Exp $
EAPI=4
@ -21,7 +21,7 @@ HOMEPAGE="http://haml-lang.com/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
# TODO: haml has some emacs modes that it could be installing, in case
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hike/hike-1.2.1.ebuild,v 1.3 2011/12/31 19:47:18 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hike/hike-1.2.1.ebuild,v 1.4 2012/03/11 14:40:17 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18 jruby"
@ -18,7 +18,7 @@ LICENSE="MIT"
SRC_URI="https://github.com/sstephenson/hike/tarball/v${PV} -> ${P}.tgz"
RUBY_S="sstephenson-hike-*"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.0-r1.ebuild,v 1.2 2011/12/31 20:14:53 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.0-r1.ebuild,v 1.3 2012/03/11 14:39:47 ranger Exp $
EAPI=4
@ -22,7 +22,7 @@ RUBY_S="svenfuchs-${PN}-*"
LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~hppa ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.0.ebuild,v 1.2 2011/09/09 06:59:24 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.0.ebuild,v 1.3 2012/03/11 14:08:17 ranger Exp $
EAPI=2
@ -22,7 +22,7 @@ S="${WORKDIR}/svenfuchs-${PN}-*"
LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~hppa ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.1.ebuild,v 1.7 2012/02/06 19:37:14 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.1.ebuild,v 1.8 2012/03/11 13:48:25 ranger 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"
IUSE=""
RDEPEND="${RDEPEND} dev-libs/libxml2"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.3.0.ebuild,v 1.2 2011/12/31 20:19:29 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.3.0.ebuild,v 1.3 2012/03/11 14:41:09 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
@ -23,7 +23,7 @@ SRC_URI="https://github.com/${GITHUB_USER}/mail/tarball/${COMMIT} -> ${P}.tar.gz
LICENSE="MIT"
SLOT="2.3"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="${GITHUB_USER}-${PN}-*"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/metaclass/metaclass-0.0.1.ebuild,v 1.6 2012/03/07 18:30:37 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/metaclass/metaclass-0.0.1.ebuild,v 1.7 2012/03/11 14:05:16 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/floehopper/metaclass"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
all_ruby_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/method_source/method_source-0.7.0.ebuild,v 1.1 2012/01/15 10:52:23 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/method_source/method_source-0.7.0.ebuild,v 1.2 2012/03/11 12:53:50 ranger Exp $
EAPI=4
# jruby crashes on parsing the metadata.
@ -20,7 +20,7 @@ IUSE=""
SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~ppc64"
ruby_add_bdepend "test? ( >=dev-ruby/bacon-1.1.0 )"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/mocha-0.10.0.ebuild,v 1.4 2012/03/05 10:13:26 tomka Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/mocha-0.10.0.ebuild,v 1.5 2012/03/11 14:07:30 ranger Exp $
EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -20,7 +20,7 @@ HOMEPAGE="http://mocha.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
IUSE=""
ruby_add_bdepend "

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/mocha-0.10.5.ebuild,v 1.1 2012/02/29 13:02:13 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/mocha-0.10.5.ebuild,v 1.2 2012/03/11 14:39:14 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -20,7 +20,7 @@ HOMEPAGE="http://mocha.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_bdepend "

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-1.0.4.ebuild,v 1.7 2012/03/07 14:16:38 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-1.0.4.ebuild,v 1.8 2012/03/11 13:07:26 ranger Exp $
EAPI=2
@ -20,7 +20,7 @@ DESCRIPTION="A gem to provide swappable JSON backends"
HOMEPAGE="http://github.com/intridea/multi_json"
LICENSE="MIT"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mysql2/mysql2-0.3.6.ebuild,v 1.1 2011/06/17 18:19:46 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mysql2/mysql2-0.3.6.ebuild,v 1.2 2012/03/11 14:04:45 ranger Exp $
EAPI="3"
USE_RUBY="ruby18 ree18"
@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/brianmario/mysql2"
LICENSE="MIT"
SLOT="0.3"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
DEPEND="${DEPEND} virtual/mysql[-static]"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.1.0.ebuild,v 1.2 2011/12/22 14:17:27 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.1.0.ebuild,v 1.3 2012/03/11 13:02:20 ranger Exp $
EAPI="2"
USE_RUBY="ruby18 ree18"
@ -16,7 +16,7 @@ HOMEPAGE="http://net-ssh.rubyforge.org/gateway"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="amd64 ~ia64 ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend ">=dev-ruby/net-ssh-2.0.0"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/open4/open4-1.3.0.ebuild,v 1.1 2011/11/20 08:29:00 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/open4/open4-1.3.0.ebuild,v 1.2 2012/03/11 12:52:44 ranger Exp $
EAPI=4
# jruby: not compatible with its fork implementation
@ -17,7 +17,7 @@ HOMEPAGE="http://rubyforge.org/projects/codeforpeople/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
ruby_add_bdepend "test? ( dev-ruby/minitest )"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pdf-reader/pdf-reader-0.10.0.ebuild,v 1.2 2012/02/06 17:28:02 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pdf-reader/pdf-reader-0.10.0.ebuild,v 1.3 2012/03/11 13:45:44 ranger Exp $
EAPI=2
@ -26,7 +26,7 @@ S="${WORKDIR}/${GITHUB_USER}-${PN}-*"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc"
KEYWORDS="~amd64 ~ppc ~ppc64"
IUSE=""
ruby_add_rdepend dev-ruby/ascii85

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-cache/rack-cache-1.0.3.ebuild,v 1.5 2011/12/17 18:19:15 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-cache/rack-cache-1.0.3.ebuild,v 1.6 2012/03/11 13:44:52 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
@ -19,7 +19,7 @@ HOMEPAGE="http://tomayko.com/src/rack-cache/"
LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~ia64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ia64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_bdepend "test? ( dev-ruby/bacon )"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-protection/rack-protection-1.2.0.ebuild,v 1.1 2012/01/28 08:01:33 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-protection/rack-protection-1.2.0.ebuild,v 1.2 2012/03/11 14:14:49 ranger Exp $
EAPI=4
USE_RUBY="ruby18 ree18 ruby19"
@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/rkh/rack-protection"
LICENSE="MIT"
SLOT="$(get_version_component_range 1)"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
ruby_add_bdepend "test? ( dev-ruby/rack-test dev-ruby/rspec:2 )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-test/rack-test-0.6.1.ebuild,v 1.3 2011/12/31 19:39:11 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack-test/rack-test-0.6.1.ebuild,v 1.4 2012/03/11 14:14:04 ranger Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18"
@ -19,7 +19,7 @@ HOMEPAGE="http://github.com/brynary/rack-test"
LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend '>=dev-ruby/rack-1.0'

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-3.1.3.ebuild,v 1.3 2011/12/31 21:46:49 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-3.1.3.ebuild,v 1.4 2012/03/11 14:11:35 ranger Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18"
@ -17,7 +17,7 @@ HOMEPAGE="http://www.rubyonrails.org"
LICENSE="MIT"
SLOT="3.1"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/sinatra-1.3.1.ebuild,v 1.2 2011/12/31 19:28:46 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/sinatra-1.3.1.ebuild,v 1.3 2012/03/11 14:13:19 ranger Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18"
@ -17,7 +17,7 @@ HOMEPAGE="http://www.sinatrarb.com/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_PATCHES=( ${P}-rdoc-require.patch ${P}-rdoc-tests.patch )

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

Loading…
Cancel
Save