Sync with portage [Sat Feb 2 15:09:47 MSK 2013].

mhiretskiy
root 11 years ago
parent 783f316896
commit 78b103e01b

@ -1,3 +1,3 @@
DIST sudo-1.8.5p2.tar.gz 1746344 SHA256 c32ae2bc3faf83444c82ca75ccb10ad3684d8222e3535f164c4a4db7cdddf8cf SHA512 616967eea79f91cda2b0cd1d13ed453d20142521ecfca289432bdf5708ac0549c7873fd80170cc0481390e82f1e60fb0bffcfc7c6b70d5d721aa98d23361c5cb WHIRLPOOL ac0d2c040935c54947571a0d4671be70aaaf7a6f69cb097acd321718656d4c569b0db4191eaf943c6b642a1d641263429287241a236a0f2a0c9edf973710bf8b
DIST sudo-1.8.6p3.tar.gz 1854962 SHA256 8130df04268f678880c3f423337c56e7d437a0f508a46b1dfefae16b0b20c92e SHA512 239cd838afba3aa9c7123d19017e997a332e6434b744bdac1cfbdf911595b642c2b7b635761e15c4835dfa15058df7d0e003892a501288bd793c4d676f746051 WHIRLPOOL a109beab4f9709fc00fe8050468a30e73de971db0e8c2bc4d4cdf82fdbcd8e47ed939b34dc675dc700e59c12a412af203ed75b71649157d2df48af3b51c08f10
DIST sudo-1.8.6p5.tar.gz 1857194 SHA256 2b3f7128bd5747444c52abb29b5c8681752b53b098129f604a4c549d6aacec69 SHA512 02e6686a80068ab596b0493cecdedc0dad2b7712dc665560c8ce0ab77bd29f50a3f998d5543cbf7279b95cc7da84f062e4c10aa760f787d4e99bf7066fbaee74 WHIRLPOOL 7f1a5681bfeea1001409b4d2c8771e2fd3ca1969597a191c3a93b57e93f92d3cab7d4aeb2ae5a8600348211a9662b0bfd66f57c99f5ed97c2c36805fb7427f04
DIST sudo-1.8.6p6.tar.gz 1857449 SHA256 d600fee5cb2e843450263a2b8f133b9921ffa00cb6b841b0da82613447cefb7c SHA512 17b7ee567fb5e24766b42a80d668e4dd3f8f3da319661cb652b0d5b2d98b4cb2f8a0e2ada14013937799896c32caf9c7ff9de6515cf20cde28510a84b8b81264 WHIRLPOOL 40b7f5cac63360516cc4e893e598f06c0cf2ed2c714eed35db5242c535e2f1f95523db4dc46b5ded2df5d439b1fcbf3c14991d64aa411b89f240d955da1f09ed

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.6_p5.ebuild,v 1.1 2013/01/24 17:48:25 flameeyes Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.6_p6.ebuild,v 1.1 2013/02/01 17:16:32 flameeyes Exp $
EAPI=4

@ -0,0 +1 @@
DIST aescrypt-3.0.6b.tar.gz 28272 SHA256 88a5efe11ede495688e409807c33c09d3df6595acbbf2639f5a93d0061ca3dfd SHA512 4c88abc9bff50ae5d310be7dad8f29843941843f9b484d9846b08dc76c605940adbb375f7e8ffefd6e8236f35ff860a745f89226e9c171bfa70c28c16aa6626a WHIRLPOOL b8fc56084af1b8296a531ff1bfbf5b70d2ea79cb3a2a0539f21e01d443f549016d52fc73f2e94033d82ec1f6a9e4ef2124d7fd9d1971a6364f91d4e35393db7a

@ -0,0 +1,32 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/aescrypt/aescrypt-3.0.6b.ebuild,v 1.1 2013/02/01 23:37:09 alonbl Exp $
EAPI=4
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="Advanced file encryption using AES"
HOMEPAGE="http://www.aescrypt.com/"
SRC_URI="https://www.aescrypt.com/download/v3/${P}.tar.gz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="static"
DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${P}-build.patch"
epatch "${FILESDIR}/${P}-iconv.patch"
}
src_compile() {
if use static; then
append-cflags "-DDISABLE_ICONV"
append-ldflags "-static"
fi
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
}

@ -0,0 +1,62 @@
From ab74ea544739ab044af1e9b398770d31add3b435 Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev <alon.barlev@gmail.com>
Date: Sat, 2 Feb 2013 01:16:03 +0200
Subject: [PATCH 1/2] build: respect CFLAGS, DESTDIR and permissions
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
---
Makefile | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/Makefile b/Makefile
index ac661a8..abcdcc4 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,8 @@ CC=gcc
#The below line is for debugging
#CFLAGS=-I. -ggdb -Wall -D_FILE_OFFSET_BITS=64
-CFLAGS=-Wall -D_FILE_OFFSET_BITS=64
+CFLAGS=-Wall
+EXTRA_CFLAGS=-D_FILE_OFFSET_BITS=64
LIBS=
@@ -27,10 +28,10 @@ LIBS=
all: aescrypt aescrypt_keygen
aescrypt: aescrypt.o aes.o sha256.o password.o keyfile.o
- $(CC) $(CFLAGS) $(LIBS) -o $@ $^
+ $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LIBS) $(LDFLAGS) -o $@ $^
aescrypt_keygen: aescrypt_keygen.o password.o
- $(CC) $(CFLAGS) $(LIBS) -o $@ $^
+ $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LIBS) $(LDFLAGS) -o $@ $^
test:
@$(CC) -DTEST -o sha.test sha256.c
@@ -48,15 +49,16 @@ testfile: aescrypt
cmp test.orig.txt test.txt
%.o: %.c %.h
- $(CC) $(CFLAGS) -c $*.c
+ $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c $*.c
install: aescrypt
- install -o root -g root -m 755 aescrypt /usr/bin
- install -o root -g root -m 755 aescrypt_keygen /usr/bin
+ install -m 755 -d $(DESTDIR)/usr/bin
+ install -m 755 aescrypt $(DESTDIR)/usr/bin
+ install -m 755 aescrypt_keygen $(DESTDIR)/usr/bin
uninstall:
- rm -f /usr/bin/aescrypt
- rm -f /usr/bin/aescrypt_keygen
+ rm -f $(DESTDIR)/usr/bin/aescrypt
+ rm -f $(DESTDIR)/usr/bin/aescrypt_keygen
clean:
rm -f *.o aescrypt aescrypt_keygen test* *test
--
1.7.12.4

@ -0,0 +1,40 @@
From 337cc9367a3cb4450eee245c6ceb615d0f05499d Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev <alon.barlev@gmail.com>
Date: Sat, 2 Feb 2013 01:18:08 +0200
Subject: [PATCH 2/2] build: support disable iconv for static build
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
---
password.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/password.c b/password.c
index 9a2c1f8..dee79da 100644
--- a/password.c
+++ b/password.c
@@ -232,6 +232,15 @@ int passwd_to_utf16(unsigned char *in_passwd,
size_t ic_inbytesleft,
ic_outbytesleft;
+#ifdef DISABLE_ICONV
+ /* support only latin */
+ int i;
+ for (i=0;i<length+1;i++) {
+ out_passwd[i*2] = in_passwd[i];
+ out_passwd[i*2+1] = 0;
+ }
+ return length*2;
+#else
/* Max length is specified in character, but this function deals
* with bytes. So, multiply by two since we are going to create a
* UTF-16 string.
@@ -273,5 +282,6 @@ int passwd_to_utf16(unsigned char *in_passwd,
}
iconv_close(condesc);
return (max_length - ic_outbytesleft);
+#endif
}
--
1.7.12.4

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

@ -0,0 +1 @@
DIST vim-qt-20130201.tar.gz 11620051 SHA256 676bc4a98d25fd80a3e4a3fdf60db26b1417e8a87eacbd8f03c464c4e68a2639 SHA512 9e9c3b16968b800598f47e9e9c81e8c7e13acf720c933883e704aa390980aa47bda2727714caf1aad27228e5a0e3b4eb0ecd19fc56961b49cc07936a272f6463 WHIRLPOOL 6acd6e6e8d889124cad94dfb8be01a2a64402cdaaee6fcfbd3e822e5a2692d4c326b42916a10937c4bfda3cb1c1cba629d1610f24fb9766b5fd2b0c6013a2895

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

@ -0,0 +1,78 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-qt/vim-qt-20130201.ebuild,v 1.1 2013/02/01 19:43:29 yngwin Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
PYTHON_REQ_USE="threads"
inherit eutils fdo-mime flag-o-matic python-any-r1
DESCRIPTION="Qt GUI version of the Vim text editor"
HOMEPAGE="https://bitbucket.org/equalsraf/vim-qt/wiki/Home"
if [[ ${PV} == *9999* ]]; then
inherit git-2
EGIT_REPO_URI="https://bitbucket.org/equalsraf/${PN}.git
git://github.com/equalsraf/${PN}.git
git://gitorious.org/${PN}/${PN}.git"
KEYWORDS=""
else
SRC_URI="https://github.com/equalsraf/${PN}/archive/package-${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-package-${PV}"
fi
LICENSE="vim"
SLOT="0"
IUSE="acl cscope debug gpm nls perl python ruby"
RDEPEND="app-admin/eselect-vi
>=app-editors/vim-core-7.3.762[acl?]
sys-libs/ncurses
>=x11-libs/qt-core-4.7.0:4
>=x11-libs/qt-gui-4.7.0:4
acl? ( kernel_linux? ( sys-apps/acl ) )
cscope? ( dev-util/cscope )
gpm? ( sys-libs/gpm )
nls? ( virtual/libintl )
perl? ( dev-lang/perl )
python? ( ${PYTHON_DEPS} )
ruby? ( || ( dev-lang/ruby:1.9 dev-lang/ruby:1.8 ) )"
DEPEND="${RDEPEND}"
pkg_setup() {
export LC_COLLATE="C" # prevent locale brokenness bug #82186
use python && python-any-r1_pkg_setup
}
src_configure() {
use debug && append-flags "-DDEBUG"
local myconf="--with-features=huge --enable-multibyte"
myconf+=" $(use_enable acl)"
myconf+=" $(use_enable gpm)"
myconf+=" $(use_enable nls)"
myconf+=" $(use_enable perl perlinterp)"
myconf+=" $(use_enable python pythoninterp)"
myconf+=" $(use_enable ruby rubyinterp)"
myconf+=" --enable-gui=qt --with-vim-name=qvim --with-x"
if ! use cscope ; then
sed -i -e '/# define FEAT_CSCOPE/d' src/feature.h || die 'sed failed'
fi
econf ${myconf}
}
src_install() {
dobin src/qvim
doicon -s 64 src/qt/icons/vim-qt.png
make_desktop_entry qvim Vim-qt vim-qt "Qt;TextEditor;Development;"
}
pkg_postinst() {
fdo-mime_mime_database_update
}
pkg_postrm() {
fdo-mime_mime_database_update
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-1.2.2-r100.ebuild,v 1.1 2013/01/21 05:40:24 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-1.2.2-r100.ebuild,v 1.2 2013/02/02 01:14:38 mr_bones_ Exp $
EAPI=5
@ -224,7 +224,7 @@ src_prepare() {
##
# configures qemu based on the build directory and the build type
# we are using.
#
#
qemu_src_configure() {
debug-print-function $FUNCNAME "$@"
@ -404,7 +404,7 @@ src_install() {
cd ${S}
dodoc Changelog MAINTAINERS TODO pci-ids.txt
newdoc pc-bios/README README.pc-bios
# Avoid collision with app-emulation/libcacard
use smartcard && mv "${ED}/usr/bin/vscclient" "${ED}/usr/bin/qemu-vscclient"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-1.3.0.ebuild,v 1.4 2013/01/14 23:06:16 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-1.3.0.ebuild,v 1.5 2013/02/02 01:14:38 mr_bones_ Exp $
EAPI=5
@ -86,7 +86,7 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
sys-firmware/ipxe
~sys-firmware/seabios-1.7.2
~sys-firmware/sgabios-0.1_pre8
)
)
alsa? ( >=media-libs/alsa-lib-1.0.13 )
bluetooth? ( net-wireless/bluez )
brltty? ( app-accessibility/brltty )

@ -0,0 +1,70 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.7-r2.ebuild,v 1.1 2013/02/02 04:17:19 wired Exp $
EAPI=4
inherit bash-completion-r1 flag-o-matic
DESCRIPTION="Terminal multiplexer"
HOMEPAGE="http://tmux.sourceforge.net"
SRC_URI="mirror://sourceforge/tmux/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="vim-syntax"
COMMON_DEPEND="
>=dev-libs/libevent-2.0.10
sys-libs/ncurses"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
vim-syntax? ( || (
app-editors/vim
app-editors/gvim ) )"
DOCS=( CHANGES FAQ NOTES TODO )
pkg_setup() {
if has_version "<app-misc/tmux-1.7"; then
echo
ewarn "Some configuration options changed in this release."
ewarn "Please read the CHANGES file in /usr/share/doc/${PF}/"
ewarn
ewarn "WARNING: after updating to ${P} you will _not_ be able to connect to any"
ewarn "running 1.6 tmux server instances. You'll have to use an existing client to"
ewarn "end your old sessions or kill the old server instances. Otherwise you'll have"
ewarn "to temporarily downgrade to tmux 1.6 to access them."
echo
fi
}
src_prepare() {
# look for config file in the prefix
sed -i -e '/SYSTEM_CFG/s:"/etc:"'"${EPREFIX}"'/etc:' tmux.h || die
# and don't just add some includes
sed -i -e 's:-I/usr/local/include::' Makefile.in || die
# bug 438558
# 1.7 segfaults when entering copy mode if compiled with -Os
replace-flags -Os -O2
}
src_install() {
default
newbashcomp examples/bash_completion_tmux.sh ${PN}
docinto examples
dodoc examples/*.conf
if use vim-syntax; then
insinto /usr/share/vim/vimfiles/syntax
doins examples/tmux.vim
insinto /usr/share/vim/vimfiles/ftdetect
doins "${FILESDIR}"/tmux.vim
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/wcd/wcd-5.2.1.ebuild,v 1.4 2013/01/27 14:37:42 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/wcd/wcd-5.2.1-r1.ebuild,v 1.1 2013/02/02 09:55:53 jlec Exp $
EAPI=4
@ -11,8 +11,8 @@ HOMEPAGE="http://www.xs4all.nl/~waterlan/#WCD_ANCHOR"
SRC_URI="http://www.xs4all.nl/~waterlan/${P}-src.tar.gz"
SLOT="0"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-2"
KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="nls unicode"
CDEPEND="sys-libs/ncurses[unicode?]"
@ -32,3 +32,9 @@ src_compile() {
emake \
${mycompile}
}
src_install() {
local DOCS="../README.txt"
default
emake DESTDIR="${D}" DOTWCD=1 install-profile sysconfdir="/etc"
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/wcd/wcd-5.2.3.ebuild,v 1.4 2013/01/29 16:10:28 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/wcd/wcd-5.2.3-r1.ebuild,v 1.1 2013/02/02 09:52:55 jlec Exp $
EAPI=5
@ -11,15 +11,19 @@ HOMEPAGE="http://www.xs4all.nl/~waterlan/#WCD_ANCHOR"
SRC_URI="http://www.xs4all.nl/~waterlan/${P}-src.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="nls unicode"
CDEPEND="sys-libs/ncurses[unicode?]"
CDEPEND="
sys-libs/ncurses[unicode?]
unicode? ( dev-libs/libunistring )"
DEPEND="${CDEPEND}
app-text/ghostscript-gpl"
RDEPEND="${CDEPEND}"
S="${WORKDIR}"/${P}/src
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
tc-export CC
@ -28,7 +32,13 @@ src_prepare() {
src_compile() {
local mycompile="LFS=1"
use nls || mycompile="${mycompile} ENABLE_NLS="
use unicode && mycompile="${mycompile} UCS=1"
use unicode && mycompile="${mycompile} UCS=1 UNINORM=1"
emake \
${mycompile}
}
src_install() {
local DOCS="../README.txt"
default
emake DESTDIR="${D}" DOTWCD=1 install-profile sysconfdir="/etc"
}

@ -1 +1,2 @@
DIST epm-1.33.tar.gz 10952 SHA256 058c839a6aa0c63939d9cbecf81e589cd7c8ff8b13dc3e15ccd313caaa2ea19c SHA512 5ff8911f2ff2b6f3b9d31c53ab3057224a309fb1505812fc4a8d4ec60be8d9859fef9b38ac84b061a6efcf0aefcead93cb8e60e28afec021b83487cf0def8cc0 WHIRLPOOL 4a1babbedcfea361d5e79d4d9dfe8ab3e1bece5b2d1bcb7e6fe4dc36e5b614aec3b0c63d946d71e9b81d3890d0076cca1b33853825c5bc11e86c7f4d5a974342
DIST epm-1.40.tar.gz 10980 SHA256 da435cc7a86807f9a1575afdb0ed6bdef26a9b7d0f1d8b91550b1aacf75eeefc SHA512 745c7f902fb35672058b05763a308322fb891b5dcc4f37a0444fdc22f1802ec5e8479445537c299e23dcf3882259751a163e356a633e270a2386a1456b541103 WHIRLPOOL f61f47480108d477afee7fdab549894898ea70ba61a004fef99885390c5eeab601bb271db73b301fd94093266be05496c9308031fd98f27bd0c58e53fb91b036

@ -0,0 +1,33 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/epm/epm-1.40.ebuild,v 1.1 2013/02/01 20:53:40 fuzzyray Exp $
EAPI="4"
inherit eutils prefix
DESCRIPTION="rpm workalike for Gentoo Linux"
HOMEPAGE="https://github.com/fuzzyray/epm"
SRC_URI="http://www.gentoo.org/~fuzzyray/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
DEPEND=">=dev-lang/perl-5"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-prefix.patch
eprefixify epm
}
src_compile() {
pod2man epm > epm.1 || die "pod2man failed"
}
src_install() {
dobin epm || die
doman epm.1
}

@ -0,0 +1,32 @@
--- epm.orig 2012-12-27 21:21:51.288350173 -0700
+++ epm 2012-12-27 21:26:51.429905384 -0700
@@ -7,13 +7,13 @@
# Global vars
(my $version = '$Revision: 1.1 $') =~ s/.*?(\d.*\d).*/EPM version $1/;
my $verbose = 0;
-my $dbpath = '/var/db/pkg';
+my $dbpath = '@GENTOO_PORTAGE_EPREFIX@/var/db/pkg';
my $pkgregex =
'^.+?\/'. # group (ignored)
'(.+?)'. # name
'-(\d+(?:\.\d+)*\w*)'. # version, eg 1.23.4a
'((?:(?:_alpha|_beta|_pre|_rc)\d*)?)'. # special suffix
- '((?:-r\d+)?)$'; # revision, eg r12
+ '((?:-r\d+)?(?:\.\d+)?)$'; # revision, eg r12 or r01.1
my $root = '/';
my %opt = (
'dbpath' => \$dbpath,
@@ -267,11 +267,11 @@
if ($opt{'c'}) {
# Read in CONFIG_PROTECT from /etc/make.{global,conf}
my (@CONFIG_PROTECT) = split ' ',
- `. /etc/make.globals; . /etc/make.conf; echo \$CONFIG_PROTECT`;
+ `. @GENTOO_PORTAGE_EPREFIX@/etc/make.globals; . @GENTOO_PORTAGE_EPREFIX@/etc/make.conf; echo \$CONFIG_PROTECT`;
die "CONFIG_PROTECT is empty" unless @CONFIG_PROTECT;
my ($confprotre) = join '|', @CONFIG_PROTECT;
@files = grep {
- (split ' ', $_, 2)[1] =~ /^($confprotre)/o } @files;
+ (split ' ', $_, 2)[1] =~ m!^@GENTOO_PORTAGE_EPREFIX@($confprotre)!o } @files;
}
# Trim @files if doc files requested

@ -1,7 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<maintainer>
<email>peter@weilbacher.org</email>
<name>Peter Weilbacher</name>
<description>Current maintainer, assign bugs</description>
</maintainer>
<maintainer>
<email>fuzzyray@gentoo.org</email>
<description>Proxy committer, CC bugs</description>
</maintainer>
</pkgmetadata>

@ -1,3 +1,3 @@
DIST calibre-0.9.14.tar.xz 27947396 SHA256 e9df7052902a2c5447abe4305d7cee0c8b675b52f299d6a879d232d3901059a1 SHA512 bdb25750386d692ee909c5affe1845f4098444d340f80333a6002f6a1964477ebad0fc5f80bf1c499238986cab95733a75a8051dde937babf9065ca06fdb60b4 WHIRLPOOL bce5a0486eb9bd45aed16b14df78b8472cee0da2392958889e340f2b6f9eea8e965b4a7e8e5f1fee842d76e17b25d46feb68b9d8f415a55b1bd0862b71c5b223
DIST calibre-0.9.15.tar.xz 27934432 SHA256 223c0f2813af670460f7c8daccc8b58b7a0f0e2aa7c8c07e6d37c8d186aef391 SHA512 3cbbcf50075413c951ed8e9b21f9f3690ae00bb7bba5c74d5c5e01bb46dfffeb4b2f70a1a4bc73e65c4dea993cb26dfdf8532ec9c020cad08cc4e46adb42ed2d WHIRLPOOL f8613110546a80fbb239b14ec47651689c82b6bdc570f68c97f608bcb5e7261c0e114e54d325a8a8b5421b542b2ebd8332ab4deb7ec326ff724d07e8dbdc2180
DIST calibre-0.9.16.tar.xz 28002468 SHA256 053c1b332ce7dae8c7cc96018637e5abeecd791028ab86726f13c782cc6b82e0 SHA512 5b0d980bc88a077e6f4ac39dffad14d5a40316516eb947fd4a51390d85634e8d0a4fa1e51478a2805d65a4946801003d1946533be7808efbb4535465176fd2c8 WHIRLPOOL e4129756f1bde575309a2a39f727df618abdb78902b3d157a67963574ddb1ecd82f71dbc34c598bb0a6dc27e32776b86428a49bda87919ad46c611788642f60e
DIST calibre-0.9.17.tar.xz 28020076 SHA256 520dc6f46fc6984ce7882f3eb720313df38a3041dfd8275daa55c3a0a22e0ad9 SHA512 0c6d8331c8bbcea23987d8ab33b75247614a86ac048f4ad47a569d67f8ab8fda7b929cf477d2fcd2b20f9c67cec981518d4aeb2618fe3f45ee5f3129b1084031 WHIRLPOOL e948fc3b62ff7cc66a541d4f1df6d4bd5c5b430d3996b8962eb3d118999d2ad33c8ef41e88ed445e0bb887173187b38c7b0ba643c2942707308308c2bf0cf045

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.9.15.ebuild,v 1.1 2013/01/19 08:07:02 zmedico Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.9.17.ebuild,v 1.1 2013/02/01 15:34:43 zmedico Exp $
EAPI=4
PYTHON_DEPEND=2:2.7

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/jabref/jabref-2.6.ebuild,v 1.4 2011/08/07 11:54:33 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/jabref/jabref-2.6.ebuild,v 1.5 2013/02/02 01:23:15 calchan Exp $
EAPI=2
@ -31,10 +31,10 @@ CDEPEND="dev-java/spin:0
dev-java/jpfcodegen:0
mysql? ( dev-java/jdbc-mysql:0 )"
RDEPEND=">=virtual/jre-1.6
RDEPEND="virtual/jre:1.6
${CDEPEND}"
DEPEND=">=virtual/jdk-1.6
DEPEND="virtual/jdk:1.6
${CDEPEND}"
S="${WORKDIR}/${PN}-${MY_PV}"
@ -85,3 +85,8 @@ src_install() {
make_desktop_entry ${PN} JabRef JabRef-icon Office
echo "MimeType=text/x-bibtex" >> "${D}/usr/share/applications/${PN}-${PN}.desktop"
}
pkg_postinst() {
elog "Users need to set their user java vm to one of the 1.6 slot for the search"
elog "feature to work."
}

@ -2,7 +2,6 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ruby</herd>
<herd>sgml</herd>
<use>
<flag name="builder">Enable programmatic HTML/XML generation</flag>
<flag name="exif">Enable EXIF information in image galleries</flag>

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/4store/4store-1.1.5.ebuild,v 1.1 2013/02/01 03:33:52 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/4store/4store-1.1.5.ebuild,v 1.2 2013/02/02 01:15:06 mr_bones_ Exp $
EAPI="2"
@ -50,7 +50,7 @@ src_install() {
# fix 1777
fperms 755 /var/lib/4store
# fix 755
# fix 755
fperms 644 \
/usr/share/man/man1/4s-query.1 \
/usr/share/man/man1/4s-backend-setup.1 \

@ -1 +1,2 @@
DIST pgAgent-3.2.1-Source.tar.gz 42722 SHA256 7264bdc5d5609d36aab814e3b329e10a87c0699274412a979b27a711f983f365 SHA512 56abdde15805538be82ec2b4db3812b7fd6d7c41f9c7791e0c7b817719e4f766fcdc95380c73633ec96296ecc162b90453c2d22b08b78c30460a1e99a1ec8afc WHIRLPOOL ea977465e9c024aab52ccb3145ec30744815881748f4245dbfa73b8ad15bf0fcd57b6287a3b62a70afcdcd889c9e769efc804e2fe169dde70b9a2f37a51918b3
DIST pgAgent-3.3.0-Source.tar.gz 43722 SHA256 110f2fd811a05ea8a420a79fcbb25b971e60f10f8abb8ab2bede8419c58b7321 SHA512 928d72d578beacc7725cfd3e206d81a732baf6d654a681dd1d603b68e54c0d20e54fad793759924fdad7efc5c6b2047d372e6cd8ae7539c76c06db3a8963657a WHIRLPOOL ce44d26ef314ff0076ab376377c1f2b4e826366da346f4aac77e0e877a49fbbf9f6018869b8dc6db24b7ef519bb4d6499d6436da3a4a5053e1cd787028003856

@ -0,0 +1,52 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgagent/pgagent-3.3.0.ebuild,v 1.1 2013/02/02 07:55:39 patrick Exp $
EAPI="4"
inherit cmake-utils eutils wxwidgets
MY_PN=${PN/a/A}
KEYWORDS="~amd64 ~x86"
DESCRIPTION="${MY_PN} is a job scheduler for PostgreSQL"
HOMEPAGE="http://www.pgadmin.org/download/pgagent.php"
SRC_URI="mirror://postgresql/pgadmin3/release/${PN}/${MY_PN}-${PV}-Source.tar.gz"
LICENSE="POSTGRESQL GPL-2"
SLOT="0"
IUSE=""
RDEPEND=">=dev-db/postgresql-base-8.3.0
x11-libs/wxGTK:2.8
"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.6
"
S="${WORKDIR}/${MY_PN}-${PV}-Source"
src_prepare() {
sed -e "s:share):share/${P}):" \
-i CMakeLists.txt || die "Couldn't patch CMakeLists.txt"
}
src_configure() {
WX_GTK_VER="2.8"
if has_version "x11-libs/wxGTK[X]"; then
need-wxwidgets unicode
else
need-wxwidgets base-unicode
fi
mycmakeargs="-DSTATIC_BUILD:BOOLEAN=FALSE"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
newinitd "${FILESDIR}/pgagent.initd" ${PN}
newconfd "${FILESDIR}/pgagent.confd" ${PN}
rm "${ED}"/usr/{LICENSE,README} || die "Failed to remove useless docs"
}

@ -2,3 +2,4 @@ DIST fpcbuild-2.2.0.tar.gz 35801603 SHA256 55c6fe8df0a09b15c1bc5cbf6c7df12ee955f
DIST fpcbuild-2.2.2.tar.gz 39186745 SHA256 0d73b119e029382052fc6615034c4b5ee3ec66fa6cc45648f1f07cfb2c1058f1 SHA512 7869e9e50236a47503f4eaedaf5229cd7fcd13991404a314cc9b6ac297325b3016144637de3e731c89804e1dbf505a82dc6ad68e34926befaaec7eed304a9fbf WHIRLPOOL da1c218ea6e2b9e2235945d60d448ba508ec9274369a210e71910a5c180d9a5d601943c261f37b4f40f780c93ce873e476a79688913d2de3fd00334fe6ace75a
DIST fpcbuild-2.2.4.tar.gz 39849184 SHA256 77a54f09e39f07ed723071784a86d9ac8ca08fb5aa6fe41c8e9970bea395b4cf SHA512 91085c7f0e5f991726cc4a8bd8bf54e2384eb7fa0a1d96f4a329691a668c9fd977fec31e265f5cb8a904e37d61158282e11a5485657f8c6fb59d8105217b5b92 WHIRLPOOL 9f487f9ef198e20e863ee4f69092b10416c21017b81fc2a02452c1d2c7b688413c02fa507a0ccdeb3263c3b201674ff8f0a056926c623d19e11e3031eb69af28
DIST fpcbuild-2.4.0.tar.gz 41769847 SHA256 b3abbeaa0f2c3427fd447759e715cbc19b920f2ccad2b40ae5ab47e9d4124fd4 SHA512 e167426460ff68d4ead5a5ed849c1e9bd3b46c45fdf826bf47a7dade448a77b31a2486a9976ffb8c32a5c2d0d7267de019a3815fb225d8aa1bdb8afa6636a1e1 WHIRLPOOL 8fd915afcddb4596be20b1aa8e585eeaef5ad26d0864cd8955d2b5a082bce8a6b0e5bc5f262005bea1d592ec478e642feec27f201ef0cc37b7dd76a471a7c9a9
DIST fpcbuild-2.6.0.tar.gz 50751193 SHA256 d788854faa373e59835d4e353133f9965993cce79c62d82e5c31837a9117beef SHA512 5139bde3490cbe4e25fb5031299412c372a29149a083180fe3828856c2fb371347f4201ec98ae4cf8b2d4c77101de843b63e27ceee644018901e156718d994cd WHIRLPOOL 3c0c9403983cfdbc97cc4b840aefbf6595c8f28a1c4759945ada7db436f939db3dfe6aa1380ef0e8cabb1051899adcc4a5c4321ec8bd64431fdfa28c0a47be87

@ -0,0 +1,48 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc-ide/fpc-ide-2.6.0.ebuild,v 1.1 2013/02/02 08:25:07 patrick Exp $
EAPI=5
S="${WORKDIR}/fpcbuild-${PV}/fpcsrc/ide"
HOMEPAGE="http://www.freepascal.org/"
DESCRIPTION="Free Pascal Compiler Integrated Development Environment"
SRC_URI="mirror://sourceforge/freepascal/fpcbuild-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1-with-linking-exception"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="~dev-lang/fpc-${PV}"
RDEPEND="${DEPEND}"
# test gives compile errors, was not updated with fpc changes
RESTRICT="test"
src_prepare() {
find "${WORKDIR}" -name Makefile -exec sed -i -e 's/ -Xs / /g' {} + || die
# Use default configuration (minus stripping) unless specifically requested otherwise
if ! test ${PPC_CONFIG_PATH+set}; then
local FPCVER=$(fpc -iV)
export PPC_CONFIG_PATH="${WORKDIR}"
sed -e 's/^FPBIN=/#&/' /usr/lib/fpc/${FPCVER}/samplecfg |
sh -s /usr/lib/fpc/${FPCVER} "${PPC_CONFIG_PATH}" || die
sed -i -e '/^-Xs/d' "${PPC_CONFIG_PATH}"/fpc.cfg || die
fi
}
src_compile() {
emake -j1 || die "make failed"
}
src_install() {
emake -j1 INSTALL_PREFIX="${D}"usr install || die "make install failed"
}
pkg_postinst() {
einfo "To read the documentation, enable the doc USE flag for dev-lang/fpc,"
einfo "and add /usr/share/doc/fpc-${PV}/fpctoc.htx to the Help Files list."
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.10.ebuild,v 1.1 2013/01/28 07:58:55 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.10-r1.ebuild,v 1.1 2013/02/01 21:16:29 radhermit Exp $
EAPI=5
@ -35,4 +35,7 @@ src_test() {
src_install() {
use doc && HTML_DOCS=( "${S}"/doc/html )
autotools-utils_src_install
# add symlink for projects not using pkgconfig
dosym ../json-c /usr/include/json-c/json
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libRocket/libRocket-1.2.1.ebuild,v 1.2 2013/01/18 22:31:09 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libRocket/libRocket-1.2.1.ebuild,v 1.3 2013/02/02 01:15:35 mr_bones_ Exp $
EAPI=5
@ -19,7 +19,7 @@ IUSE="python samples"
RDEPEND="media-libs/freetype
python? (
${PYTHON_DEPS}
dev-libs/boost[python,${PYTHON_USEDEP}]
dev-libs/boost[python,${PYTHON_USEDEP}]
)"
DEPEND="${RDEPEND}"

@ -1 +1,2 @@
DIST libpqxx-4.0.1.tar.gz 1582532 SHA256 097ceda2797761ce517faa5bee186c883df1c407cb2aada613a16773afeedc38 SHA512 00204985097ef8bb0a3376d6ba541dbb471d7c52d7135f6244a9f4acbf6c8e5254d6f813e4411421e49bb56f4a520fc6ac67e300141d724396ce0ac11bd3a95e WHIRLPOOL d377863f9200e7ed235f8a2cf132b554efa4223d5f542eea23d743ffe391a13d44da767ee2f70146558e5b393ba334656c09007241c1aadde750c00c16e25c12
DIST libpqxx-4.0.tar.gz 2631181 SHA256 b160043289cfbf2a186d3b12f9976b6914e76d918d3d4469ff408bd199bbb8ed SHA512 30c955b568a93ba7003a808f42414fd743cc7017fc443d327b55fea732d86ec0ecd34381bdcd4410db85c74287781af021423b5991c3f821fe64db2c9f84c011 WHIRLPOOL a3b0a8629b9f6a33282a8b5a7c6913c7b003dbaa94dcfd811fee74b45a396aa049f358ce399ca1cfdeabbd50a1da0515423c6a510a025773ec8acfd4899c88a5

@ -0,0 +1,76 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpqxx/libpqxx-4.0.1.ebuild,v 1.1 2013/02/02 07:58:25 patrick Exp $
EAPI="4"
inherit eutils
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"
HOMEPAGE="http://pqxx.org/development/libpqxx/"
LICENSE="BSD"
SLOT="0"
IUSE="doc static-libs"
DEPEND="dev-db/postgresql-base"
RDEPEND="${DEPEND}"
src_configure() {
if use static-libs ; then
econf --enable-static
else
econf --enable-shared
fi
}
src_install () {
emake DESTDIR="${D}" install
dodoc AUTHORS ChangeLog NEWS README*
use doc && dohtml -r doc/html/*
}
src_test() {
einfo "The tests need a running PostgreSQL server and an existing database."
einfo "Test requires PGDATABASE and PGUSER to be set at a minimum. Optionally,"
einfo "set PGPORT and PGHOST. Define them at the command line or in:"
einfo " ${EROOT%/}/etc/libpqxx_test_env"
if [[ -z $PGDATABASE || -z $PGUSER ]] ; then
if [[ -f ${EROOT%/}/etc/libpqxx_test_env ]] ; then
source "${EROOT%/}/etc/libpqxx_test_env"
[[ -n $PGDATABASE ]] && export PGDATABASE
[[ -n $PGHOST ]] && export PGHOST
[[ -n $PGPORT ]] && export PGPORT
[[ -n $PGUSER ]] && export PGUSER
fi
fi
if [[ -n $PGDATABASE && -n $PGUSER ]] ; then
local server_version
server_version=$(psql -Aqtc 'SELECT version();' 2> /dev/null)
if [[ $? = 0 ]] ; then
# Currently works with highest server version in tree
#server_version=$(echo ${server_version} | cut -d " " -f 2 | cut -d "." -f -2 | tr -d .)
#if [[ $server_version < 92 ]] ; then
cd "${S}/test"
emake check
#else
# eerror "Server version must be 8.4.x or below."
# die "Server version isn't 8.4.x or below"
#fi
else
eerror "Is the server running?"
eerror "Verify role and database exist, and are permitted in pg_hba.conf for:"
eerror " Role: ${PGUSER}"
eerror " Database: ${PGDATABASE}"
die "Couldn't connect to server."
fi
else
eerror "PGDATABASE and PGUSER must be set to perform tests."
eerror "Skipping tests."
fi
}

@ -1,2 +1,3 @@
DIST vdk-2.4.0.tar.gz 1071732 SHA256 1383bcf2dc4707e130ae49d502ca823279bb1429ada953d48d9458ed7db49366 SHA512 4b1492e7dbe9357ba2479fa2dcd48c47b31497c3b16dbdb9de88a10d3770b3c9ac74f1ca1c866f9ab2b76ee726c831b4d57be7c907663c295df3bfd4d45feeee WHIRLPOOL 7ed3d92408df45da4c9f98c784bf656843a39ddaad6eaa2a7fc8b3c0963315cc3a11c11f2a4b604f3fec2ee006e6fd64c316e739e93583aa7c39acfeb62d5942
DIST vdk-2.4.1.tar.gz 1062475 SHA256 4eddaa278f8999dbe0c555614cc805603c5434a383de14ca069a3a99a72c68e8 SHA512 ffb0a2cc06f2b5a4e344ecbff8e780a37d8ee7933d2d911670ef08b4b90a2b3744ea1e61baa373af0b424ca992b5ddf956998fea5683907899071ff57b046f35 WHIRLPOOL ce7e6586d54c93ace381676a5929ac9263012b14d4d8befaec6389d2f2dd49712af6160bd1ed7b8aaa67a997cb57adfda82a5eae3b819ca7bee55eec7bc71ce5
DIST vdk-2.5.1.tar.gz 1113765 SHA256 5d8f6942b8ec2f83b477f24a4e15a9945c1b1b348412d3d22a89627a35130745 SHA512 49e458785d88ab145b40e6ddcd5c7aadc950697b797d17f1ac633354abb46cd7457ea449c62d4993fca53136051d7d7810a15ab561b49e730635566021997292 WHIRLPOOL 8240ccaaffe1169fbe13b25f585f2e0df483ff633f1e0bf00d2b01b5c60e29a21d7e1a0dbe8bb90da69d0e04c330a3ebb81ffc6355afa314af3a4733e7bcd65d

@ -0,0 +1,54 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/vdk/vdk-2.5.1.ebuild,v 1.1 2013/02/02 09:10:27 patrick Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="A Visual Development Kit for RAD"
SRC_URI="mirror://sourceforge/vdklib/${P}.tar.gz"
HOMEPAGE="http://www.mariomotta.it/vdklib/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="doc debug"
RDEPEND="x11-libs/gtk+:2"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_configure() {
local myconf=""
# gnome and sigc USE flags need to be added later
# when upstream decides to re-support them - ChrisWhite
use doc && \
myconf="${myconf} --enable-doc-html=yes \
--enable-doc-latex=yes \
--enable-doc-man=yes" \
|| myconf="${myconf} --enable-doc-html=no \
--enable-doc-latex=no \
--enable-doc-man=no"
use debug && \
myconf="${myconf} --enable-debug=yes" \
|| myconf="${myconf} --enable-debug=no"
econf \
${myconf} \
--enable-testvdk=no \
|| die "econf failed"
# die non user custom CFLAGS!
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS}/" -i Makefile
sed -e "s/CXXFLAGS = .*/CXXFLAGS = ${CXXFLAGS}/" -i Makefile
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS}/" -i vdk/Makefile
sed -e "s/CXXFLAGS = .*/CXXFLAGS = ${CXXFLAGS}/" -i vdk/Makefile
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README TODO
}

@ -0,0 +1,25 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.100.0.ebuild,v 1.1 2013/02/01 20:29:51 tove Exp $
EAPI=5
MODULE_AUTHOR=MIYAGAWA
MODULE_VERSION=0.10
inherit perl-module
DESCRIPTION="Simple and dumb file system watcher"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="virtual/perl-Filter"
DEPEND="
test? (
${RDEPEND}
dev-perl/Test-SharedFork
)
"
SRC_TEST=do

@ -1,2 +1,3 @@
DIST Filesys-Notify-Simple-0.08.tar.gz 48916 SHA256 f1756b682c38dea39ee382273f2b651136b9d640e8c0f07c85733914b7a75310 SHA512 fecdc3c6388ad50e4cdddb4c1a74a57089956559442c6c67ee72eb9c106336973b6f34803c0d8a52086db2e2deeb7b9d2f06a42736f66f2cbe1a83ac2166a5b6 WHIRLPOOL 9e8ff71b44aac02fe59e4835c9262c00aad90834a7e4a30eee07048ec50d5863fc13f0a2e281a5ec5354c0fd30cbbb4dcab7e6a858bad4c31c645ac3e6e28a58
DIST Filesys-Notify-Simple-0.09.tar.gz 24047 SHA256 83cfe03fdc6ce527d421479005bb9b5fda383489b284774f5928a054237c58be SHA512 53d451faf93ec59e14d3df828e3e6471b06d99be4e5c3e9304d3db64f259698a90ba0530fe7877cf45d56d3e9e478f8d83590a6b9f016a8d82db73321a971d95 WHIRLPOOL 539c49c0d0c9834bb59a949d42919cb19abf27e30afb933aa6fb8b97096751507733728ebeb78589786c45f6cfb07382827caa865c97354d3da1f2c8f5c2d075
DIST Filesys-Notify-Simple-0.10.tar.gz 24191 SHA256 b526ab0ceff0286a85f1fefb8be9e99c417971f710eb2f8fa3aad33e6028932b SHA512 ad09ee3b9c29466bfdbc66c61002df2003b34d2defdce67c796fe4a1c176d6c3bf59dc0e5c6f29b191e730c76fa64db06251b86de56e5272b0a0db9c4f324c10 WHIRLPOOL 0e74cbb083f0601af0dec00e739cedc10cc5f830f18a9fd3a7c43b7cd113ee8419b60bf388a37b7f02efaaa607ff97df7db8f8b08676dfa7ffd76df80499e87b

@ -0,0 +1,23 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/ImageInfo/ImageInfo-1.340.0.ebuild,v 1.1 2013/02/01 20:24:46 tove Exp $
EAPI=5
MY_PN=Image-Info
MODULE_AUTHOR=SREZIC
MODULE_VERSION=1.34
inherit perl-module
DESCRIPTION="The Perl Image-Info Module"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND=">=dev-perl/IO-String-1.01
dev-perl/XML-LibXML
dev-perl/XML-Simple"
RDEPEND="${DEPEND}"
SRC_TEST="do"

@ -1,2 +1,3 @@
DIST Image-Info-1.32.tar.gz 224783 SHA256 0ee396f74b6d4441e42bbb0b997c321305d5a660c6af4db3fa1329900ebbd350 SHA512 d7bf9f7cf51e5f0889b79b95c14feecef797e0a082e1dc84dbe46b7f679d1eb39990df268f418bd96c1d0b132583cce7e662f52e5ebc30297ac84c7b73087ffb WHIRLPOOL 7d0a9e6b936239b0951625f334b25c46728d9d453ac2c887cae96c9cf380d6a6eb4ae7dd9a7c2f83aaef46357d83ff5f559658130fb4e652000004f74a9499cd
DIST Image-Info-1.33.tar.gz 208927 SHA256 9bce4c2432fd91042583e1a6a8213b5f022555307c8a7f191c47bdeb9db3e5f3 SHA512 b14e48375e91e195c4c10fe30b5c9792ac4321e247866f8f3f7fa4965316b4cb766f065a7c4c1fb31e89e73014d44057b60a2422d69a2cada0cfb263664bbeea WHIRLPOOL 8cffb035c7e4f2e5089b425071d90055cf4eb43ca5c31113f6853952eaa0d66b7f70ba98d5f3326cb5aba905e1cd34917178f5eb8ca27e739234e3ba416c264b
DIST Image-Info-1.34.tar.gz 211385 SHA256 e8cd058bc5be384c408bbaf71407989ce6680bb0519ad6187d229ccdd14c686a SHA512 3547c9f3c4c14b478fee4da88fb3b6d70f1aea55a20abfd590e896d3e369997667ffdab723ae0ae6df8d37595ba2357fa92c8991ce3ab5dd575c0901802875e9 WHIRLPOOL 8bf69aeb883d229a2d3f5b5ff1fad1c123d5789cedd1587f874315ea4abb6fca8e029fb3ba6ceba363b1385499202511716b76287d8a972f05e689b7c9a32c24

@ -21,6 +21,7 @@
<remote-id type="cpan-module">Image::Info::SVG::XMLLibXMLReader</remote-id>
<remote-id type="cpan-module">Image::Info::SVG::XMLSimple</remote-id>
<remote-id type="cpan-module">Image::Info::TIFF</remote-id>
<remote-id type="cpan-module">Image::Info::WBMP</remote-id>
<remote-id type="cpan-module">Image::Info::XBM</remote-id>
<remote-id type="cpan-module">Image::Info::XPM</remote-id>
<remote-id type="cpan-module">Image::TIFF</remote-id>

@ -0,0 +1,32 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/MIME-tools/MIME-tools-5.504.0.ebuild,v 1.1 2013/02/01 20:22:15 tove Exp $
EAPI=5
MODULE_AUTHOR=DSKOLL
MODULE_VERSION=5.504
inherit perl-module
DESCRIPTION="A Perl module for parsing and creating MIME entities"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="test"
RDEPEND=">=virtual/perl-MIME-Base64-3.05
virtual/perl-libnet
dev-perl/URI
virtual/perl-Digest-MD5
dev-perl/libwww-perl
dev-perl/HTML-Tagset
dev-perl/HTML-Parser
dev-perl/MailTools
virtual/perl-File-Temp"
DEPEND="${RDEPEND}
test? (
dev-perl/Test-Deep
dev-perl/Test-Pod
)"
SRC_TEST="do"

@ -1 +1,2 @@
DIST MIME-tools-5.503.tar.gz 416793 SHA256 db79550a34b28cfe76602c98eef4a7967450e4aff5c2cf702b1b8f2e707cc333 SHA512 350bbe6a215cabdf1bacc7ae7c322166b2d9dd396c3c410d5d4c39b30dec524ec9665ced536ca7c106ee26d9d4a32012256b3a43843b238cd74c226ad56f380c WHIRLPOOL 0c6aeecf86c11b9b5cf02918973e4abaf2c494b51acb90a702e5ef927f0d3b68a5983f163ff769a3258d0caf1c5b24a721eadaadbe974b38bda888b83787cb5d
DIST MIME-tools-5.504.tar.gz 404825 SHA256 0f5819eecd59bd46874f741dfc452a0a172e59a7ac6c422ce69e10593f7693d2 SHA512 0ff4d3991bc9e37edc39204051f7d9b9562a8afa23f768f0f653c554bf29c16ba315a043d63818c9e2ebc5f01a9f6961930dd8f4a1a501b5639bca36dde93c09 WHIRLPOOL 41059bd54a0537ff4e5cf76658248de9acaa603d514df88b26ee2fb2bd661fc854f02228a2c055ac107b06c77a35254a4bc97bcd1c659ddd3e840c437d11b1ec

@ -1 +1,2 @@
DIST Net-OpenSSH-0.57.tar.gz 50654 SHA256 8c667f430572ebc9c54490165c3ca3530703a054116702fda8693f115681211b SHA512 c201ce4b4418657c0a035a397af7c1ab141e8afc8e9cc0628b475543a21f1910937a961578cc206285d8684a2671b6a04fc878d76cc4286a6bcc8081e7b14d7b WHIRLPOOL b1783beaf2834308930a673ff55f123bef6d81989ebe4b99f377a1badfdab6364b94f999c783cc1dfa9e188e0dad8adda1f082104a6cb1c70be2bb58d8ee7f93
DIST Net-OpenSSH-0.59.tar.gz 55353 SHA256 0373c0a06f3254077d02b17eb82a67f7e1189f37024223264363a1b617d83a65 SHA512 093e34057028a44310acc332041af6252263a6bc52d9a2a39d0a1dfd5a4810a24ac6ab65baef38dadffe5976ba00530a8a43a20a1510b51e6c5516b4dd95fdba WHIRLPOOL 00133ab0ef4e01d02c37e48cd5c7d5b5aa3ff27d8eebdb0e9a53d8c7224f2eecca0d9609d252f39d7e7b7064fa6cc9db6b956c409555f14f81e91a0351798380

@ -0,0 +1,25 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-OpenSSH/Net-OpenSSH-0.590.0.ebuild,v 1.1 2013/02/01 20:34:56 tove Exp $
EAPI=5
MODULE_AUTHOR=SALVA
MODULE_VERSION=0.59
inherit perl-module
DESCRIPTION="Net::OpenSSH, Perl wrapper for OpenSSH secure shell client"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE="sftp"
RDEPEND="
dev-perl/IO-Tty
sftp? (
dev-perl/Net-SFTP-Foreign
)
"
DEPEND="${RDEPEND}"
#SRC_TEST=do

@ -5,7 +5,9 @@
<upstream>
<remote-id type="cpan">Net-OpenSSH</remote-id>
<remote-id type="cpan-module">Net::OpenSSH</remote-id>
<remote-id type="cpan-module">Net::OpenSSH::ConnectionCache</remote-id>
<remote-id type="cpan-module">Net::OpenSSH::Constants</remote-id>
<remote-id type="cpan-module">Net::OpenSSH::OSTracer</remote-id>
<remote-id type="cpan-module">mod_perl_openssh</remote-id>
</upstream>
<use>

@ -1,2 +1,3 @@
DIST PPIx-Regexp-0.028.tar.gz 146435 SHA256 48454e762311780ecaf9b3b32a3fbdc6e30a52542659cbccb95f62980013ce8f SHA512 8ddbbe692fb944f1ac461c189b755a5db3bb955c341133aa08a2ace78f9e14a79371d4f413c3b97a569825abfc0a9ccec80543ef1a4df67bd3fc7756baa16629 WHIRLPOOL 69ebb3b0b2aee37ff42eaba24b84bcb6189b7dbcdb49dd0adc56f006ad88cb1e71c40b27dfd63857426f7f3760d2060ccf9ef9ee9ea8aaca8a8213c9366c2dc1
DIST PPIx-Regexp-0.029.tar.gz 149471 SHA256 e260d88e53947a061661a2e07381871e09b1f2d21bd8b8bb8027f6f5be306cec SHA512 b76062e29fad500d83129467d585878964178f47fc38192dab31f45c039dcddc43e32d0b067347539c79cc2d410ac140084be1088f070c73b84eab86145d7285 WHIRLPOOL e6e622fade368efd904caa62c7f2543f48e40c1a831499d9e5e4a1d2543256c64fff3255261eec23e12c01c7ba55ac8eb6365390c6cb7f7b4a97a4257126fb63
DIST PPIx-Regexp-0.031.tar.gz 152166 SHA256 44f705b2f0a47f8434c4ba84b17989597d65dde813b7b42c5cd7bd5c16699ff2 SHA512 4a55c368c24447dc8a386e58fac7f7acc31725b8b913595eff2cc0dc2f43d7e398474c5b94c8c007c2e9c2ad78f817dca4b39ae53f8b27a13b06aa9c291fa2e3 WHIRLPOOL fc80f560a7f0ee2dfd44eb27db134682f200393bd3a2ec2dcea3cfc8b2bdd73ea97b0b375b1e98304f871762984d6e87a9fdfd1da58b5afe3fba4e5962b86e5f

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PPIx-Regexp/PPIx-Regexp-0.31.0.ebuild,v 1.1 2013/02/01 20:19:23 tove Exp $
EAPI=5
MODULE_AUTHOR=WYANT
MODULE_VERSION=0.031
inherit perl-module
DESCRIPTION="Represent a regular expression of some sort"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="
dev-perl/List-MoreUtils
dev-perl/PPI
virtual/perl-Scalar-List-Utils
"
DEPEND="${RDEPEND}
virtual/perl-Module-Build
"
SRC_TEST=do

@ -21,6 +21,7 @@
<remote-id type="cpan-module">PPIx::Regexp::Structure::Modifier</remote-id>
<remote-id type="cpan-module">PPIx::Regexp::Structure::NamedCapture</remote-id>
<remote-id type="cpan-module">PPIx::Regexp::Structure::Quantifier</remote-id>
<remote-id type="cpan-module">PPIx::Regexp::Structure::RegexSet</remote-id>
<remote-id type="cpan-module">PPIx::Regexp::Structure::Regexp</remote-id>
<remote-id type="cpan-module">PPIx::Regexp::Structure::Replacement</remote-id>
<remote-id type="cpan-module">PPIx::Regexp::Structure::Subexpression</remote-id>

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild,v 1.2 2013/01/13 13:58:10 maekke Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PerlIO-Layers/PerlIO-Layers-0.10.0.ebuild,v 1.3 2013/02/01 18:19:29 bicatali Exp $
EAPI=4
@ -13,7 +13,7 @@ DESCRIPTION="Querying your filehandle's capabilities"
LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="dev-perl/List-MoreUtils"

@ -1,2 +1,3 @@
DIST Plack-1.0014.tar.gz 239954 SHA256 12b2db7ca43cc5f14086229627a15aff907964bcfb11e5ed7dd73692dda6353e SHA512 e48c5fcfdb104cdde74a793c3560252609c2549e816b50613d3f1c23743dd0e476de9dad7bfed4a4fe34ced31cced5271f6e15a9deddf1084b463c8254f6182e WHIRLPOOL 2dcaa8e5c2b200261835cca60eef884dc6828abb987db2c7d1d6a794f82512ea82f79c5718bb15ea9ef430f073b34bd4488e40c9987babf1c791927662c2da6e
DIST Plack-1.0015.tar.gz 240303 SHA256 aed391b5316456c0f7939403fae27be6f1c12c7695ab58d47448f352d602e3fd SHA512 dd1a8d101626854bea2cf6f8da033b2124a4cd812f2866faa373f50df6e8f66a4ca1106abbb3d032a3950bdb22a0ffe5d18ef15f0efd0549759648b012172390 WHIRLPOOL 57fcb97728e795cfe2288389e3e876cb76ad79ef0a0dbe70cfedabe34a73bed0832b545cb0ea1d1378a485bac5717ba18f6e1ce972eb10a2953e7f1b4c99225b
DIST Plack-1.0016.tar.gz 243065 SHA256 538b531fe05493d8269dcb2fce53d2fcfcbc50e6da708fdb0228dd30340accb4 SHA512 d81d49e0576da81c2374bcfb2f2d196063e3810c4c72cf4de0044b2e1d155348d7342d10a26cd590c4ce3a26b821db6c39026013418d8f2c2201b37bcd33cb35 WHIRLPOOL 7a13c193e2e71c61105369e6c4dc5c2deaadbb1077060be4b982bec2c9695234332a3a80de0ca9432186d2a385f506a6b0769fbfd7050817c4a8d8eb3cdea4a5

@ -0,0 +1,38 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Plack/Plack-1.1.600.ebuild,v 1.1 2013/02/01 20:15:49 tove Exp $
EAPI=5
MODULE_AUTHOR=MIYAGAWA
MODULE_VERSION=1.0016
inherit perl-module
DESCRIPTION="PSGI toolkit and servers"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
>=dev-perl/libwww-perl-5.814.0
>=dev-perl/URI-1.590.0
virtual/perl-PodParser
>=dev-perl/File-ShareDir-1.0.0
dev-perl/Try-Tiny
virtual/perl-parent
>=dev-perl/Devel-StackTrace-1.230.0
>=dev-perl/Devel-StackTrace-AsHTML-0.110.0
dev-perl/Filesys-Notify-Simple
>=dev-perl/Hash-MultiValue-0.50.0
>=dev-perl/HTTP-Body-1.60.0
>=dev-perl/Test-TCP-1.20.0
>=dev-perl/Stream-Buffered-0.20.0
"
DEPEND="${RDEPEND}
test? (
>=virtual/perl-Test-Simple-0.88
dev-perl/Test-Requires
)"
SRC_TEST=do

@ -1,2 +1,3 @@
DIST Tree-DAG_Node-1.06.tar.gz 32843 SHA256 502570774dd3bf11345fb028ca4cdd79f04db12ee68a826f0c44e24da0e3db2a SHA512 dfdec2799b3ef2e20303001aa40df16be134e1c56d48acd61cb6397e66d7fb38beeb4efdbcd24fe16e2fcc15471e77dabb1fd2df0334e3e44024109a997ae71b WHIRLPOOL 08083b8136b710d68f342403ad601037fad7ffe04b0728a54dbd45f5bbda12a16c0265dddadc22ef7612fb6a0485402938adf577735c8b3fcec9c4b2b222990b
DIST Tree-DAG_Node-1.09.tgz 43450 SHA256 23c6df0e8c347b741b93a97158b0fe022c54b2bb4fbd18a2a1a8da76a6f74bcc SHA512 49fd1682ffa6eafd59773069b14a156b0a1769c07001c3a588f13b777ad418845e144335c20c6dab3b2cf62a3a7e64c018c1f5c41d1f84e6745e90a7d48740bc WHIRLPOOL 3a624e13de5c535a0504e5aa061bd8dc932379b66ffaeed709a5d4c15fea1d4e21de99052d1a10d26ddca327c04c34a9f2648fb551da9d4d1a74f0aded3316b9
DIST Tree-DAG_Node-1.10.tgz 43584 SHA256 21deb941b57781788ea669889025e565d56e05c84d0b7d5e82930a8795949492 SHA512 510a88e9222f9f79820dfd735935b5c76a9b802a0afb33b85de5335cfcd393db749aeca10d98c3d2ce54a8539cd362ddd282bc20c4e67867c9c09f171376d6a3 WHIRLPOOL 88edf03f4da9149f450392ec85d64ffe323a697dcc6fef59ac784e006b17ed6b1af1d534b60622ac6cb94921f66001d63975db8f539020ae3cba4a329f79aec0

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Tree-DAG_Node/Tree-DAG_Node-1.100.0.ebuild,v 1.1 2013/02/01 20:10:32 tove Exp $
EAPI=5
MODULE_AUTHOR=RSAVAGE
MODULE_A_EXT=tgz
MODULE_VERSION=1.10
inherit perl-module
DESCRIPTION="(Super)class for representing nodes in a tree"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="test"
DEPEND="
>=virtual/perl-Module-Build-0.380.0
test? (
>=dev-perl/Test-Pod-1.450.0
>=virtual/perl-Test-Simple-0.980.0
)
"
SRC_TEST="do"

@ -1 +1,2 @@
DIST indirect-0.26.tar.gz 38405 SHA256 0ba50c45962c6404ce1c297d2f6be27a232821cadcd03ad090f854c5936fcdf8 SHA512 828b0c685e8c0746929a73ba98ba1c0c06cce53d2e013ce670758b146eef9cbeff3e45de768c0e7581d051d1914dc2320ef1ae12252d9cacb9509755612805fe WHIRLPOOL e5b22c1160055dce74fa05cea9f45f5d5a7d6ca4d07fc618c2376e5a36ace507a1c260fa7f962e222aaeaa574a3c99dbcb732469f9803689be4c8e07d9411524
DIST indirect-0.27.tar.gz 38266 SHA256 2d2da4c38eab4a02ac9e616cba8de18d7679a3e3358153791277efbbcb8685b7 SHA512 facc9f4b17308378301781d1ef201d618644b5bd9bc072671bf3d632d7ad7c92a45c94cbf5450887364d9c6b6270a71fa711a2514f49718be9b493d4fb74518c WHIRLPOOL 3b3f3ea0c2d14362100d9062466ae4769df1e133a84456b2c0db3d6c7447d94e99a98a334f2f766029ff68c56f5a6a8f45c986102e289ade79e0a67a6345b9cc

@ -0,0 +1,23 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/indirect/indirect-0.270.0.ebuild,v 1.1 2013/02/01 20:07:07 tove Exp $
EAPI=5
MODULE_AUTHOR=VPIT
MODULE_VERSION=0.27
inherit perl-module
DESCRIPTION="Lexically warn about using the indirect object syntax"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="test"
DEPEND="
test? (
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
)"
SRC_TEST=do

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/argh/argh-0.22.0.ebuild,v 1.1 2013/01/22 06:07:06 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/argh/argh-0.22.0.ebuild,v 1.2 2013/02/02 01:16:04 mr_bones_ Exp $
EAPI=4
@ -21,4 +21,3 @@ LICENSE="LGPL-3"
RDEPEND=""
DEPEND=""

@ -1 +1,2 @@
DIST doit-0.16.1.tar.gz 279086 SHA256 02a36ae4efa7dd5ae3bff0799daa302653431b49c2b5a6b03ef12eae118aa704 SHA512 8e4ef8d8aa3f1b4f78f61d1feb769102bb816de1d178582f907e3ea894a5302e2f19314f159de5cd7180c590c15236260fa2ecb6cbeef1f5148b7901e14ef3d6 WHIRLPOOL 9b9a69efa2da7a4bd7dd67cc201f26fbbb4a5663590d5024e98e43c95f453d34c3d42422170509ac0f255c897b594893ad6748fcb02e6641affcc9d01178d2ca
DIST doit-0.20.0.tar.gz 318963 SHA256 78c5e9c4db69871e2cacadad3c73a051f6833d2baf0f13c40676b2ccea061166 SHA512 e75c83888a5ea0c3cea3b6dae4c266306c2f607e465d1f94953384bacedaeaa1b7067dc1449d08d08c9969b5d4376187342c2fc8f729be3bc90a8b16a8d8bc8e WHIRLPOOL 6b8995ea02b39d3aca24834958dc88c67d8c5c1e367153a0f27e45b97f273c65ba8f63d713d5754dec266dfeac7a4d8726d91f414a574a85a19c5e836f38d617

@ -0,0 +1,27 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/doit/doit-0.20.0.ebuild,v 1.1 2013/02/02 09:17:36 yngwin Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit eutils distutils-r1
DESCRIPTION="Automation tool"
HOMEPAGE="http://python-doit.sourceforge.net/ http://pypi.python.org/pypi/doit"
SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="dev-python/pyinotify"
src_install() {
distutils-r1_src_install
dodoc AUTHORS CHANGES README TODO.txt dev_requirements.txt
dodoc -r doc
docompress -x /usr/share/doc/${PF}/doc
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/icalendar-3.2-r1.ebuild,v 1.1 2013/01/22 16:58:43 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/icalendar/icalendar-3.2-r1.ebuild,v 1.2 2013/02/02 01:16:33 mr_bones_ Exp $
EAPI="5"
@ -22,9 +22,9 @@ DOCS="README.rst"
RDEPEND=""
DEPEND="dev-python/setuptools
doc? ( dev-python/sphinx
doc? ( dev-python/sphinx
dev-python/pytz )
test? ( virtual/python-unittest2[${PYTHON_USEDEP}]
test? ( virtual/python-unittest2[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-1.5 )"
python_compile_all() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.2.0-r1.ebuild,v 1.4 2013/01/09 22:10:03 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.2.0-r1.ebuild,v 1.5 2013/02/02 01:17:03 mr_bones_ Exp $
EAPI="3"
@ -113,7 +113,7 @@ src_prepare() {
-e 's:^wx = True:wx = False:' \
-e 's:^wxagg = True:wxagg = False:' \
-e 's:^six = False:six = True:' \
-i setup.cfg || die
-i setup.cfg || die
fi
# avoid checks needing a X display

@ -1,36 +0,0 @@
diff -Nur numpy/f2py/f2py.1 numpy/f2py.new/f2py.1
--- numpy/f2py/f2py.1 2006-07-26 21:04:19.000000000 +0100
+++ numpy/f2py.new/f2py.1 2007-02-14 12:16:47.000000000 +0000
@@ -184,7 +184,7 @@
Optional Numarray 0.9 or higher partially supported.
-numpy_distutils from Scipy (can be downloaded from F2PY homepage)
+numpy_distutils from Numpy (can be downloaded from F2PY homepage)
.SH "SEE ALSO"
python(1)
.SH BUGS
@@ -200,10 +200,8 @@
Mailing list: http://cens.ioc.ee/mailman/listinfo/f2py-users/
-Scipy website: http://www.numpy.org
+Numpy website: http://numeric.numpy.org
.SH COPYRIGHT
Copyright (c) 1999, 2000, 2001, 2002, 2003, 2004, 2005 Pearu Peterson
.SH LICENSE
NumPy License
-.SH VERSION
-2.45.241
diff -Nur numpy/f2py/setup.py numpy/f2py.new/setup.py
--- numpy/f2py/setup.py 2006-10-03 05:35:22.000000000 +0100
+++ numpy/f2py.new/setup.py 2007-02-14 12:16:41.000000000 +0000
@@ -35,8 +35,7 @@
config.add_data_files('src/fortranobject.c',
'src/fortranobject.h',
- 'f2py.1'
)
config.make_svn_version_py()

@ -1,28 +0,0 @@
--- numpy/core/include/numpy/ufuncobject.h.orig 2009-07-28 15:04:42 -0400
+++ numpy/core/include/numpy/ufuncobject.h 2009-07-28 15:05:58 -0400
@@ -318,8 +318,10 @@
#elif defined(__GLIBC__) || defined(__APPLE__) || defined(__CYGWIN__) || defined(__MINGW32__) || (defined(__FreeBSD__) && (__FreeBSD_version >= 502114))
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(__MINGW32__) || defined(__FreeBSD__)
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(__MINGW32__)
#include <fenv.h>
+#elif defined(__FreeBSD__)
+#include "fenv/fenv.h"
#elif defined(__CYGWIN__)
#include "fenv/fenv.c"
#endif
--- numpy/numarray/_capi.c.orig 2009-07-28 15:18:13 -0400
+++ numpy/numarray/_capi.c 2009-07-28 15:19:04 -0400
@@ -8,8 +8,10 @@
#include <sys/param.h>
#endif
-#if defined(__GLIBC__) || defined(__APPLE__) || defined(__MINGW32__) || (defined(__FreeBSD__) && (__FreeBSD_version >= 502114))
+#if defined(__GLIBC__) || defined(__APPLE__) || defined(__MINGW32__)
#include <fenv.h>
+#elif (defined(__FreeBSD__) && (__FreeBSD_version >= 502114))
+#include "numpy/fenv/fenv.h"
#elif defined(__CYGWIN__)
#include "numpy/fenv/fenv.h"
#include "numpy/fenv/fenv.c"

@ -1,15 +0,0 @@
Reported [2010.01.18]: http://projects.scipy.org/numpy/ticket/1365
diff -ru numpy-1.4.0.orig/numpy/core/setup.py numpy-1.4.0/numpy/core/setup.py
--- numpy-1.4.0.orig/numpy/core/setup.py 2010-01-15 16:49:14 +0100
+++ numpy-1.4.0/numpy/core/setup.py 2010-01-15 17:02:27 +0100
@@ -169,6 +169,9 @@
priv = []
pub = []
+ if os.uname()[0] == "Interix":
+ return priv, pub
+
# Check for complex support
st = config.check_header('complex.h')
if st:

@ -1,31 +0,0 @@
https://github.com/numpy/numpy/commit/f1f52d6c962bf0ada57d8332b3fbd863bb1ca6cd
--- numpy/ctypeslib.py
+++ numpy/ctypeslib.py
@@ -93,7 +93,6 @@
"with ctypes < 1.0.1")
ext = os.path.splitext(libname)[1]
-
if not ext:
# Try to load library with platform-specific name, otherwise
# default to libname.[so|pyd]. Sometimes, these files are built
@@ -112,14 +111,15 @@
else:
libdir = loader_path
+ # Need to save exception when using Python 3k, see PEP 3110.
+ exc = None
for ln in libname_ext:
try:
libpath = os.path.join(libdir, ln)
return ctypes.cdll[libpath]
except OSError, e:
- pass
-
- raise e
+ exc = e
+ raise exc
ctypes_load_library = deprecate(load_library, 'ctypes_load_library',
'load_library')

@ -1,67 +0,0 @@
http://projects.scipy.org/numpy/ticket/1919
https://github.com/numpy/numpy/commit/4dac50bf1faf2c8189c277ec8f11ead506c243b1
https://github.com/numpy/numpy/commit/418f070fc67d1ea2b6eae3259e9dcf7a980bbaaf
--- numpy/core/code_generators/generate_ufunc_api.py
+++ numpy/core/code_generators/generate_ufunc_api.py
@@ -75,14 +75,53 @@
return 0;
}
-#define import_umath() { UFUNC_NOFPE if (_import_umath() < 0) {PyErr_Print(); PyErr_SetString(PyExc_ImportError, "numpy.core.umath failed to import"); return; }}
-
-#define import_umath1(ret) { UFUNC_NOFPE if (_import_umath() < 0) {PyErr_Print(); PyErr_SetString(PyExc_ImportError, "numpy.core.umath failed to import"); return ret; }}
-
-#define import_umath2(msg, ret) { UFUNC_NOFPE if (_import_umath() < 0) {PyErr_Print(); PyErr_SetString(PyExc_ImportError, msg); return ret; }}
-
-#define import_ufunc() { UFUNC_NOFPE if (_import_umath() < 0) {PyErr_Print(); PyErr_SetString(PyExc_ImportError, "numpy.core.umath failed to import"); }}
+#if PY_VERSION_HEX >= 0x03000000
+#define NUMPY_IMPORT_UMATH_RETVAL NULL
+#else
+#define NUMPY_IMPORT_UMATH_RETVAL
+#endif
+#define import_umath() \
+ do {\
+ UFUNC_NOFPE\
+ if (_import_umath() < 0) {\
+ PyErr_Print();\
+ PyErr_SetString(PyExc_ImportError,\
+ "numpy.core.umath failed to import");\
+ return NUMPY_IMPORT_UMATH_RETVAL;\
+ }\
+ } while(0)
+
+#define import_umath1(ret) \
+ do {\
+ UFUNC_NOFPE\
+ if (_import_umath() < 0) {\
+ PyErr_Print();\
+ PyErr_SetString(PyExc_ImportError,\
+ "numpy.core.umath failed to import");\
+ return ret;\
+ }\
+ } while(0)
+
+#define import_umath2(ret, msg) \
+ do {\
+ UFUNC_NOFPE\
+ if (_import_umath() < 0) {\
+ PyErr_Print();\
+ PyErr_SetString(PyExc_ImportError, msg);\
+ return ret;\
+ }\
+ } while(0)
+
+#define import_ufunc() \
+ do {\
+ UFUNC_NOFPE\
+ if (_import_umath() < 0) {\
+ PyErr_Print();\
+ PyErr_SetString(PyExc_ImportError,\
+ "numpy.core.umath failed to import");\
+ }\
+ } while(0)
#endif
"""

@ -0,0 +1,143 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/numpy/numpy-1.6.2-r1.ebuild,v 1.1 2013/02/01 20:44:54 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} )
FORTRAN_NEEDED=lapack
inherit distutils-r1 eutils flag-o-matic fortran-2 multilib toolchain-funcs versionator
DOC_P="${PN}-1.6.0"
DESCRIPTION="Fast array and numerical python library"
HOMEPAGE="http://numpy.scipy.org/ http://pypi.python.org/pypi/numpy"
SRC_URI="mirror://sourceforge/numpy/${P}.tar.gz
doc? (
http://docs.scipy.org/doc/${DOC_P}/numpy-html.zip -> ${DOC_P}-html.zip
http://docs.scipy.org/doc/${DOC_P}/numpy-ref.pdf -> ${DOC_P}-ref.pdf
http://docs.scipy.org/doc/${DOC_P}/numpy-user.pdf -> ${DOC_P}-user.pdf
)"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc lapack test"
RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
lapack? ( virtual/cblas virtual/lapack )"
DEPEND="${RDEPEND}
doc? ( app-arch/unzip )
lapack? ( virtual/pkgconfig )
test? ( >=dev-python/nose-0.10[${PYTHON_USEDEP}] )"
# Uses distutils.command.config.
DISTUTILS_IN_SOURCE_BUILD=1
src_unpack() {
unpack ${P}.tar.gz
if use doc; then
unzip -qo "${DISTDIR}"/${DOC_P}-html.zip -d html || die
fi
}
pc_incdir() {
pkg-config --cflags-only-I $@ | \
sed -e 's/^-I//' -e 's/[ ]*-I/:/g'
}
pc_libdir() {
pkg-config --libs-only-L $@ | \
sed -e 's/^-L//' -e 's/[ ]*-L/:/g'
}
pc_libs() {
pkg-config --libs-only-l $@ | \
sed -e 's/[ ]-l*\(pthread\|m\)[ ]*//g' \
-e 's/^-l//' -e 's/[ ]*-l/,/g'
}
python_prepare_all() {
epatch "${FILESDIR}"/${PN}-1.6.1-atlas.patch
if use lapack; then
append-ldflags "$(pkg-config --libs-only-other cblas lapack)"
local libdir="${EPREFIX}"/usr/$(get_libdir)
# make sure _dotblas.so gets built
sed -i -e '/NO_ATLAS_INFO/,+1d' numpy/core/setup.py || die
cat >> site.cfg <<-EOF
[blas]
include_dirs = $(pc_incdir cblas)
library_dirs = $(pc_libdir cblas blas):${libdir}
blas_libs = $(pc_libs cblas blas)
[lapack]
library_dirs = $(pc_libdir lapack):${libdir}
lapack_libs = $(pc_libs lapack)
EOF
else
export {ATLAS,PTATLAS,BLAS,LAPACK,MKL}=None
fi
export CC="$(tc-getCC) ${CFLAGS}"
append-flags -fno-strict-aliasing
# See progress in http://projects.scipy.org/scipy/numpy/ticket/573
# with the subtle difference that we don't want to break Darwin where
# -shared is not a valid linker argument
if [[ ${CHOST} != *-darwin* ]]; then
append-ldflags -shared
fi
# only one fortran to link with:
# linking with cblas and lapack library will force
# autodetecting and linking to all available fortran compilers
if use lapack; then
append-fflags -fPIC
NUMPY_FCONFIG="config_fc --noopt --noarch"
# workaround bug 335908
[[ $(tc-getFC) == *gfortran* ]] && NUMPY_FCONFIG+=" --fcompiler=gnu95"
fi
distutils-r1_python_prepare_all
}
python_compile() {
distutils-r1_python_compile ${NUMPY_FCONFIG}
}
python_test() {
local fake_root=${BUILD_DIR}/tests
esetup.py ${NUMPY_FCONFIG} build install --home="${fake_root}"
cd "${fake_root}"/lib || die
PYTHONPATH=python "${PYTHON}" -c "
import numpy, sys
r = numpy.test()
sys.exit(0 if r.wasSuccessful() else 1)" || die "Tests fail with ${EPYTHON}"
}
python_install() {
distutils-r1_python_install ${NUMPY_FCONFIG}
rm -f "${D}"$(python_get_sitedir)/numpy/*.txt
}
python_install_all() {
distutils-r1_python_install_all
dodoc COMPATIBILITY DEV_README.txt THANKS.txt
docinto f2py
dodoc numpy/f2py/docs/*.txt
doman numpy/f2py/f2py.1
if use doc; then
insinto /usr/share/doc/${PF}
doins -r "${WORKDIR}"/html
doins "${DISTDIR}"/${DOC_P}*pdf
fi
}

@ -1,99 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/pygtk-2.24.0-r1.ebuild,v 1.12 2012/05/04 15:12:13 patrick Exp $
EAPI="3"
GCONF_DEBUG="no"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
# dev-python/pycairo does not support Python 2.4 / 2.5.
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* *-jython 2.7-pypy-*"
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
inherit alternatives autotools eutils flag-o-matic gnome.org python virtualx
DESCRIPTION="GTK+2 bindings for Python"
HOMEPAGE="http://www.pygtk.org/"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc examples test"
RDEPEND=">=dev-libs/glib-2.8:2
>=x11-libs/pango-1.16
>=dev-libs/atk-1.12
>=x11-libs/gtk+-2.24:2
>=dev-python/pycairo-1.0.2
>=dev-python/pygobject-2.21.3:2
dev-python/numpy
>=gnome-base/libglade-2.5:2.0
"
DEPEND="${RDEPEND}
doc? (
dev-libs/libxslt
>=app-text/docbook-xsl-stylesheets-1.70.1 )
virtual/pkgconfig"
src_prepare() {
# Fix declaration of codegen in .pc
epatch "${FILESDIR}/${PN}-2.13.0-fix-codegen-location.patch"
# Disable pyc compiling
echo '#!/bin/sh' > py-compile
AT_M4DIR="m4" eautoreconf
python_copy_sources
}
src_configure() {
use hppa && append-flags -ffunction-sections
python_src_configure \
$(use_enable doc docs) \
--with-glade \
--enable-thread
}
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
testing() {
cd tests
export XDG_CONFIG_HOME="${T}/$(PYTHON --ABI)"
Xemake check-local
}
python_execute_function -s testing
}
src_install() {
python_src_install
python_clean_installation_image
dodoc AUTHORS ChangeLog INSTALL MAPPING NEWS README THREADS TODO || die
if use examples; then
rm examples/Makefile*
insinto /usr/share/doc/${PF}
doins -r examples || die
fi
}
pkg_postinst() {
python_mod_optimize gtk-2.0
create_symlinks() {
alternatives_auto_makesym $(python_get_sitedir)/pygtk.py pygtk.py-[0-9].[0-9]
alternatives_auto_makesym $(python_get_sitedir)/pygtk.pth pygtk.pth-[0-9].[0-9]
}
python_execute_function create_symlinks
}
pkg_postrm() {
python_mod_cleanup gtk-2.0
create_symlinks() {
alternatives_auto_makesym $(python_get_sitedir)/pygtk.py pygtk.py-[0-9].[0-9]
alternatives_auto_makesym $(python_get_sitedir)/pygtk.pth pygtk.pth-[0-9].[0-9]
}
python_execute_function create_symlinks
}

@ -0,0 +1,98 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/pygtk-2.24.0-r3.ebuild,v 1.1 2013/02/01 23:40:59 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
GNOME_TARBALL_SUFFIX="bz2"
PYTHON_COMPAT=( python2_{6,7} )
inherit autotools eutils flag-o-matic gnome2 python-r1 virtualx
DESCRIPTION="GTK+2 bindings for Python"
HOMEPAGE="http://www.pygtk.org/"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc examples test"
RDEPEND="
>=dev-libs/glib-2.8:2
>=x11-libs/pango-1.16
>=dev-libs/atk-1.12
>=x11-libs/gtk+-2.24:2
>=dev-python/pycairo-1.0.2[${PYTHON_USEDEP}]
>=dev-python/pygobject-2.26.8-r53:2[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
>=gnome-base/libglade-2.5:2.0
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? (
dev-libs/libxslt
>=app-text/docbook-xsl-stylesheets-1.70.1 )
"
src_prepare() {
# Fix declaration of codegen in .pc
epatch "${FILESDIR}/${PN}-2.13.0-fix-codegen-location.patch"
epatch "${FILESDIR}/${PN}-2.14.1-libdir-pc.patch"
# Examples is handled "manually"
sed -e 's/\(SUBDIRS = .* \)examples/\1/' \
-i Makefile.am Makefile.in || die
AT_M4DIR="m4" eautoreconf
prepare_pygtk() {
mkdir -p "${BUILD_DIR}" || die
}
python_foreach_impl prepare_pygtk
}
src_configure() {
use hppa && append-flags -ffunction-sections
configure_pygtk() {
ECONF_SOURCE="${S}" gnome2_src_configure \
$(use_enable doc docs) \
--with-glade \
--enable-thread
}
python_foreach_impl run_in_build_dir configure_pygtk
}
src_compile() {
python_foreach_impl run_in_build_dir gnome2_src_compile
}
src_test() {
# Let tests pass without permissions problems, bug #245103
gnome2_environment_reset
unset DBUS_SESSION_BUS_ADDRESS
testing() {
cd tests
Xemake check-local
}
python_foreach_impl run_in_build_dir testing
}
src_install() {
dodoc AUTHORS ChangeLog INSTALL MAPPING NEWS README THREADS TODO
if use examples; then
rm examples/Makefile*
insinto /usr/share/doc/${PF}
doins -r examples
fi
python_foreach_impl run_in_build_dir gnome2_src_install
prune_libtool_files --modules
}
run_in_build_dir() {
pushd "${BUILD_DIR}" > /dev/null || die
"$@"
popd > /dev/null
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.6 2012/06/08 11:46:27 phajdan.jr Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.7 2013/02/02 06:13:01 idella4 Exp $
EAPI="3"
PYTHON_DEPEND="*:2.6"
@ -46,6 +46,7 @@ src_prepare() {
-e "s/testMulti/_&/" \
-e "s/testRefuseDottedNames/_&/" \
-e "s/testResolve/_&/" \
-e "s/testBCLookup/_&/" \
-i tests/PyroTests/test_naming.py
sed \
-e "s/testOwnloopBasics/_&/" \
@ -54,7 +55,7 @@ src_prepare() {
sed \
-e "s/testServerConnections/_&/" \
-e "s/testServerParallelism/_&/" \
-e "s/testServerParallelism/_&/" \
-i tests/PyroTests/test_server.py
sed \

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-glanceclient/python-glanceclient-0.7.0.ebuild,v 1.4 2013/01/17 19:51:12 prometheanfire Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-glanceclient/python-glanceclient-0.7.0.ebuild,v 1.5 2013/02/02 01:17:33 mr_bones_ Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# test? ( dev-python/mox
# test? ( dev-python/mox
# dev-python/nose
# dev-python/nosehtmloutput
# dev-python/openstack-nose-plugin

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.4.1-r1.ebuild,v 1.1 2013/01/14 11:06:32 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.4.1-r1.ebuild,v 1.2 2013/02/02 01:12:47 mr_bones_ Exp $
EAPI="5"
@ -36,4 +36,4 @@ python_install_all() {
python_test() {
${EPYTHON} setup.py test || die "Tests fail with ${EPYTHON}"
}
}

@ -2,3 +2,4 @@ DIST plan9port-20121219.tgz 54175831 SHA256 289a355f0dee5900ece427a5360a510879e3
DIST plan9port-20130103.tgz 54176071 SHA256 62c43c14d2d299c427c1d89cf6755c845c0992f0a0f65d6aca202fd24c1d5333 SHA512 b910b94040a8b745dca8750d2e4c8553dcf49885eaa659092ce261f7b761ea13860278f1ec59d4036be2fbd883b099af32dfc0c40e7f3d0cd329c9278527663f WHIRLPOOL ac2a742585072d54e7ddf0b7c264f958d6f999c6263aef483a1763d14446c65c40f94a6d60d49aecc7899fa123da59c7a62628fc47f9fdf09b76e5f195d8668f
DIST plan9port-20130105.tgz 54176333 SHA256 e804b0b205070277b7d84333f6aab9cb113bac5ac144348ce9f9da739a6e4876 SHA512 b8dfa8a497294fcf55733adea8d49521a8e6d6e13bc2b3253ec833950c8d5e57b3e00e1c5aaf9d3c1bc26b0f13a1b6c89629540b9c562304db1f2d04cd0348a1 WHIRLPOOL 879f5428700688bf03ad6ec12e732435085f40ec2811fdb7a0a4a6f751c2047a536570146dfe8a702a6b644499e3b053af97850a74d2e5a3341bd0124deb8cc9
DIST plan9port-20130119.tgz 54176486 SHA256 d63733c4396e2569a04131517e86f253e270f1370449f63c422316488f8d63e1 SHA512 f81795937a6e8ca99cd5a7d59f601298bd14db2cff4141054731985ac806b74927988562530701adb2d0657c508576273a5b13e748f7818d8e49a3abba5521ea WHIRLPOOL 4d83740b046b99d3687069dd95f8265ff7816bc674f4edce2870d1f439fd9820c2efef73e104aab9c22eb073f76198b6a35223ff82a567272f9d8fa0ff68b945
DIST plan9port-20130131.tgz 54178455 SHA256 ece69e2e4b0f46e8bafef1ea77dbbb616e3b5af0ae0f617e1aa5470fe4351110 SHA512 a8169ffd6f0f469e6c31e62b0b7ead6a31d05a4d3f73cff108c6dd5728ad84f05de88c82b9cd135d8c16b541e38f472413da69e4f9d7aebc6ad91a5be89c390d WHIRLPOOL 0598d959a69a474967458b0e471c32742c676d714b734200ae63624c6f114991616c8fa78fe5c02c45f74b8f3edc50759df547118cc9ef136dd093307aa35a56

@ -0,0 +1,76 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/plan9port/plan9port-20130131.ebuild,v 1.1 2013/02/02 01:32:40 blueness Exp $
EAPI="4"
inherit eutils
DESCRIPTION="Port of many Plan 9 programs and libraries"
HOMEPAGE="http://swtch.com/plan9port/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tgz"
LICENSE="9base BSD-4 MIT LGPL-2.1 BigelowHolmes"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-apps/xauth"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
PLAN9=/usr/lib/plan9
src_prepare()
{
epatch "${FILESDIR}/${PN}-"{9660srv-errno,noexecstack}".patch"
# Fix paths, done in place of ./INSTALL -c
einfo "Fixing hard-coded /usr/local/plan9 paths"
grep --null -l -r '/usr/local/plan9' |
xargs --null sed -i "s!/usr/local/plan9!${PLAN9}!g"
}
src_compile() {
# Convert -j5 to NPROC=5 for mk
export NPROC="$(echo "$MAKEOPTS" | sed -r -n 's/.*(^| )-j([0-9]*).*/\2/p')"
# The INSTALL script builds mk then [re]builds everything using that
einfo "Compiling Plan 9 from User Space can take a very long time"
einfo "depending on the speed of your computer. Please be patient!"
./INSTALL -b
}
src_install() {
dodir "${PLAN9}"
# P9P's man does not handle compression
docompress -x $PLAN9/man
# do* plays with the executable bit, and we should not modify them
cp -a * "${D}/${PLAN9}"
# build the environment variables and install them in env.d
cat > "${T}/30plan9" <<-EOF
PLAN9="${PLAN9}"
PATH="${PLAN9}/bin"
ROOTPATH="${PLAN9}/bin"
MANPATH="${PLAN9}/man"
EOF
doenvd "${T}/30plan9"
}
pkg_postinst() {
elog "Plan 9 from User Space has been successfully installed into"
elog "${PLAN9}. Your PLAN9 and PATH environment variables have"
elog "also been appropriately set, please use env-update and"
elog "source /etc/profile to bring that into immediate effect."
elog
elog "Please note that ${PLAN9}/bin has been appended to the"
elog "*end* or your PATH to prevent conflicts. To use the Plan9"
elog "versions of common UNIX tools, use the absolute path:"
elog "${PLAN9}/bin or the 9 command (eg: 9 troff)"
elog
elog "Please report any bugs to bugs.gentoo.org, NOT Plan9Port."
}

@ -1 +1,2 @@
DIST vdkbuilder2-2.4.0.tar.gz 1079112 SHA256 549a298214f314933d7b8d0e7785c98a388faad3ea0725a0dffc08d660174381 SHA512 9a40c7c4ea17aaa565cd2a3d8392f11d2cd336e7361134ea9f2a8b12bf6ee888f6e02daec60dbc0f80b37defb08eef54edf9547f209d8ddd43388c9bc514ff33 WHIRLPOOL 8d3cf5827c94e59bf0b9944ab4e4f7acba66b9962f58b602a79d2983349fae92e5e6a3ff623d59a7d691dfb8f03ce2f8731316bb401ad8d204525fffef0116ec
DIST vdkbuilder2-2.5.0.tar.gz 1159849 SHA256 75053fa125b203e1aa4143eba8dd74698286eeb2458e52fa20c68c822c0640b4 SHA512 b100d433e0c8addafcece943a9da05c48985b18dfc7154df203fb0a2befbfa7caca42bd6ac4f764d66685dbaeb11916ae777da07d0b5e413a577bd764bcc4281 WHIRLPOOL a5116067491ebdbb6fcb622f7ed0de4c044adc4ede00e5f0cfdead013f2d1e55ac4c91b3bf46397bf925475399de9c979449a9638daf594e6a8293952b1df82c

@ -0,0 +1,64 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/vdkbuilder/vdkbuilder-2.5.0.ebuild,v 1.1 2013/02/02 09:11:10 patrick Exp $
EAPI=5
inherit eutils autotools
MY_P=${PN}2-${PV}
DESCRIPTION="The Visual Development Kit used for VDK Builder."
HOMEPAGE="http://vdkbuilder.sf.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="nls debug"
RDEPEND=">=dev-libs/vdk-2.5.0"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
custom_cflags() {
for files in *
do
if [ -e ${files}/Makefile ]
then
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS} -I../include/" -i ${files}/Makefile
sed -e "s/CXXFLAGS = .*/CFLAGS = ${CXXFLAGS} -I../include/" -i ${files}/Makefile
fi
done
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.4.0-make-382.patch || die
}
src_configure() {
eautoreconf
local myconf=""
use debug \
&& myconf="${myconf} --enable-devel=yes" \
|| myconf="${myconf} --enable-devel=no"
econf \
$(use_enable nls) \
--disable-vdktest \
${myconf} || die "econf failed"
custom_cflags
}
src_compile() {
emake -j1 || die
}
src_install () {
einstall || die
dodoc AUTHORS BUGS ChangeLog NEWS README TODO
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.7 2013/01/26 11:39:41 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.8 2013/02/01 21:39:50 mgorny Exp $
# @ECLASS: autotools-multilib.eclass
# @MAINTAINER:
@ -29,96 +29,56 @@ if [[ ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then
die "${ECLASS}: multilib support requires out-of-source builds."
fi
inherit autotools-utils multilib multiprocessing
inherit autotools-utils multilib-build
EXPORT_FUNCTIONS src_configure src_compile src_test src_install
IUSE=multilib
# @ECLASS-VARIABLE: MULTILIB_USEDEP
# @DESCRIPTION:
# The USE-dependency to be used on dependencies (libraries) needing
# to support multilib as well.
#
# Example use:
# @CODE
# RDEPEND="dev-libs/libfoo[${MULTILIB_USEDEP}]
# net-libs/libbar[ssl,${MULTILIB_USEDEP}]"
# @CODE
MULTILIB_USEDEP='multilib(-)?'
# @FUNCTION: autotools-multilib_foreach_abi
# @USAGE: argv...
# @DESCRIPTION:
# If multilib support is enabled, sets the toolchain up for each
# supported ABI along with the ABI variable and correct BUILD_DIR,
# and runs the given commands with them.
#
# If multilib support is disabled, it just runs the commands. No setup
# is done.
autotools-multilib_foreach_abi() {
local initial_dir=${BUILD_DIR:-${S}}
if use multilib; then
local ABI
for ABI in $(get_all_abis); do
multilib_toolchain_setup "${ABI}"
BUILD_DIR=${initial_dir%%/}-${ABI} "${@}"
done
else
"${@}"
fi
}
# @FUNCTION: autotools-multilib_parallel_foreach_abi
# @USAGE: argv...
# @DESCRIPTION:
# If multilib support is enabled, sets the toolchain up for each
# supported ABI along with the ABI variable and correct BUILD_DIR,
# and runs the given commands with them. The commands are run
# in parallel with number of jobs being determined from MAKEOPTS.
#
# If multilib support is disabled, it just runs the commands. No setup
# is done.
#
# Useful for running configure scripts.
autotools-multilib_parallel_foreach_abi() {
local initial_dir=${BUILD_DIR:-${S}}
if use multilib; then
multijob_init
local ABI
for ABI in $(get_all_abis); do
(
multijob_child_init
multilib_toolchain_setup "${ABI}"
BUILD_DIR=${initial_dir%%/}-${ABI}
"${@}"
) &
multijob_post_fork
done
multijob_finish
else
"${@}"
fi
}
autotools-multilib_src_configure() {
autotools-multilib_parallel_foreach_abi autotools-utils_src_configure
multilib_parallel_foreach_abi autotools-utils_src_configure
}
autotools-multilib_src_compile() {
autotools-multilib_foreach_abi autotools-utils_src_compile
multilib_foreach_abi autotools-utils_src_compile
}
autotools-multilib_src_test() {
autotools-multilib_foreach_abi autotools-utils_src_test
multilib_foreach_abi autotools-utils_src_test
}
autotools-multilib_src_install() {
autotools-multilib_foreach_abi autotools-utils_src_install
autotools-multilib_secure_install() {
autotools-utils_src_install
# Make sure all headers are the same for each ABI.
autotools-multilib_cksum() {
find "${ED}"usr/include -type f \
-exec cksum {} + | sort -k2
}
local cksum=$(autotools-multilib_cksum)
local cksum_file=${T}/.autotools-multilib_cksum
if [[ -f ${cksum_file} ]]; then
local cksum_prev=$(< "${cksum_file}")
if [[ ${cksum} != ${cksum_prev} ]]; then
echo "${cksum}" > "${cksum_file}.new"
eerror "Header files have changed between ABIs."
if type -p diff &>/dev/null; then
eerror "$(diff -du "${cksum_file}" "${cksum_file}.new")"
else
eerror "Old checksums in: ${cksum_file}"
eerror "New checksums in: ${cksum_file}.new"
fi
die "Header checksum mismatch, aborting."
fi
else
echo "${cksum}" > "${cksum_file}"
fi
}
multilib_foreach_abi autotools-multilib_secure_install
}

@ -0,0 +1,141 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.1 2013/02/01 21:39:50 mgorny Exp $
# @ECLASS: multilib-build.eclass
# @MAINTAINER:
# Michał Górny <mgorny@gentoo.org>
# @BLURB: flags and utility functions for building multilib packages
# @DESCRIPTION:
# The multilib-build.eclass exports USE flags and utility functions
# necessary to build packages for multilib in a clean and uniform
# manner.
#
# Please note that dependency specifications for multilib-capable
# dependencies shall use the USE dependency string in ${MULTILIB_USEDEP}
# to properly request multilib enabled.
if [[ ! ${_MULTILIB_BUILD} ]]; then
# EAPI=5 is required for meaningful MULTILIB_USEDEP.
case ${EAPI:-0} in
5) ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac
inherit multilib multiprocessing
# @ECLASS-VARIABLE: _MULTILIB_FLAGS
# @INTERNAL
# @DESCRIPTION:
# The list of multilib flags and corresponding ABI values.
_MULTILIB_FLAGS=(
abi_x86_32:x86
abi_x86_64:amd64
)
# @ECLASS-VARIABLE: MULTILIB_USEDEP
# @DESCRIPTION:
# The USE-dependency to be used on dependencies (libraries) needing
# to support multilib as well.
#
# Example use:
# @CODE
# RDEPEND="dev-libs/libfoo[${MULTILIB_USEDEP}]
# net-libs/libbar[ssl,${MULTILIB_USEDEP}]"
# @CODE
_multilib_build_set_globals() {
local flags=( "${_MULTILIB_FLAGS[@]%:*}" )
local usedeps=${flags[@]/%/(-)?}
IUSE=${flags[*]}
MULTILIB_USEDEP=${usedeps// /,}
}
_multilib_build_set_globals
# @FUNCTION: multilib_get_enabled_abis
# @DESCRIPTION:
# Return the ordered list of enabled ABIs if multilib builds
# are enabled. The best (most preferred) ABI will come last.
#
# If multilib is disabled, the default ABI will be returned
# in order to enforce consistent testing with multilib code.
multilib_get_enabled_abis() {
debug-print-function ${FUNCNAME} "${@}"
local abis=( $(get_all_abis) )
local abi i found
for abi in "${abis[@]}"; do
for i in "${_MULTILIB_FLAGS[@]}"; do
local m_abi=${i#*:}
local m_flag=${i%:*}
if [[ ${m_abi} == ${abi} ]] && use "${m_flag}"; then
echo "${abi}"
found=1
fi
done
done
if [[ ! ${found} ]]; then
debug-print "${FUNCNAME}: no ABIs enabled, fallback to ${DEFAULT_ABI}"
echo ${DEFAULT_ABI}
fi
}
# @FUNCTION: multilib_foreach_abi
# @USAGE: <argv>...
# @DESCRIPTION:
# If multilib support is enabled, sets the toolchain up for each
# supported ABI along with the ABI variable and correct BUILD_DIR,
# and runs the given commands with them.
#
# If multilib support is disabled, it just runs the commands. No setup
# is done.
multilib_foreach_abi() {
local initial_dir=${BUILD_DIR:-${S}}
local ABI
for ABI in $(multilib_get_enabled_abis); do
multilib_toolchain_setup "${ABI}"
BUILD_DIR=${initial_dir%%/}-${ABI} "${@}"
done
}
# @FUNCTION: multilib_parallel_foreach_abi
# @USAGE: <argv>...
# @DESCRIPTION:
# If multilib support is enabled, sets the toolchain up for each
# supported ABI along with the ABI variable and correct BUILD_DIR,
# and runs the given commands with them. The commands are run
# in parallel with number of jobs being determined from MAKEOPTS.
#
# If multilib support is disabled, it just runs the commands. No setup
# is done.
#
# Useful for running configure scripts.
multilib_parallel_foreach_abi() {
local initial_dir=${BUILD_DIR:-${S}}
multijob_init
local ABI
for ABI in $(multilib_get_enabled_abis); do
(
multijob_child_init
multilib_toolchain_setup "${ABI}"
BUILD_DIR=${initial_dir%%/}-${ABI}
"${@}"
) &
multijob_post_fork
done
multijob_finish
}
_MULTILIB_BUILD=1
fi

@ -1,4 +1,6 @@
DIST emutos-256k-0.8.3.zip 1060313 RMD160 ffc5d7976568348dfaf72e70904c73293c71ef14 SHA1 2764f9761c8913a8604f27ff85b3a93f7acb4848 SHA256 61abced9e179bd1066fe0299c05d9c703224f4d6f242927ab37617730a4d158e
DIST emutos-256k-0.8.5.zip 1060920 RMD160 aa59ab71ad149a2c7aebe2fda7708c3d3ab3e6ec SHA1 e8d52a7fd43f46e92bc77e2f74261f403ff620c0 SHA256 fab55e8f0e45220e8263d89d3cdff9e465c6a52214f6a91e752ff257d1dfec75
DIST emutos-512k-0.8.3.zip 211069 RMD160 ddc0fae3d332425f2b5b551544c78676d412a5be SHA1 5edb36b4f959c6ae258f30ac5107fd1a5725215d SHA256 5e493fcbba89a9f92a425755e18c5d579a4c5a1d784c0af0a5d37e29639fb315
DIST emutos-512k-0.8.5.zip 213435 RMD160 8440e97667dbdf3de7b484d98ae6ada3b5e1fe2a SHA1 63ec3326e65d07c64e529694b7cfbbc559188f47 SHA256 542042a9d816104e27fda0fbd35bbb20dd19337fa6e9d6fbbf15a52fb7890ca1
DIST emutos-256k-0.8.3.zip 1060313 SHA256 61abced9e179bd1066fe0299c05d9c703224f4d6f242927ab37617730a4d158e
DIST emutos-256k-0.8.5.zip 1060920 SHA256 fab55e8f0e45220e8263d89d3cdff9e465c6a52214f6a91e752ff257d1dfec75 SHA512 42ef1ad90dba755214da10d4ee4acc7bbe847c125944562ae141dadc4958933f08dc7654d8e34f97c5595ba3706531eb53ca52f31725876613a324100ba5635f WHIRLPOOL 6a4af2975eb6254dedc73d8253950d946792365cbb31d0946a67edd1d7836c53f91ce86adff23c37ea64f9ffad1296dcbc8b8ae433b18683a7bbe2f263065ffd
DIST emutos-256k-0.8.7.zip 1519299 SHA256 43ac8dbdc03bf89ed683692ca3ab2d59d7997262e461a69f09c7918ccd38b1c0 SHA512 096a30ab59c58e04bfdbe5220235995d102e524f7dfb0c35d983d31058fa2af2fbc9ac862f46bdbf1fa918f17e66fe67646bab1450cd88ebeaf7503db007be55 WHIRLPOOL 06be71f044999fad8fa5ace3507c6b6713e8ecc1f8d2b085f34004583c986bce27bdfd7477c4ef1b8ad749d5dd75754b3f2681bc6fee0ce299b39b9f8943913a
DIST emutos-512k-0.8.3.zip 211069 SHA256 5e493fcbba89a9f92a425755e18c5d579a4c5a1d784c0af0a5d37e29639fb315
DIST emutos-512k-0.8.5.zip 213435 SHA256 542042a9d816104e27fda0fbd35bbb20dd19337fa6e9d6fbbf15a52fb7890ca1 SHA512 d8ca973558d19cffc4900e2bf42b6f0c77c9ace1c5e515be136445e4d081f8e19d392475479fc97c3f4e26cb49e175b123ac62c540f2059f29a4c13e633ca477 WHIRLPOOL be538d5790bbf97794fad77541c0c1b71f3809a6b6cafbe579c0f6596d6c72eb74e2488faec95a5c196e231c99d899501ae93c0226781938339f477421a05cc7
DIST emutos-512k-0.8.7.zip 254887 SHA256 e11cc584ea0a40975cd35d6e2635796fcddc16834831cd227982218dab18d71c SHA512 6cffa9708c884a85d1eb8c6b3c86e7a74e941a0141dff14a8a38865c1b211ecb0079f7151b4069dcffb9fd178d833e4ae280089a130c215f4c0e2a4704b7b68d WHIRLPOOL ee837a668671afb61f7689bd949bc2acd6f062181262a2cf5cad273b139120dc0d92ba2d085da606c76cce965016a68d60223ef95e42064c3cf909718cc3b9b2

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/emutos/emutos-0.8.7.ebuild,v 1.1 2013/02/02 00:04:07 hasufell Exp $
inherit games
DESCRIPTION="a single-user single-tasking operating system for 32 bit Atari computer emulators"
HOMEPAGE="http://emutos.sourceforge.net"
SRC_URI="mirror://sourceforge/emutos/emutos-512k-${PV}.zip
mirror://sourceforge/emutos/emutos-256k-${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=""
DEPEND="app-arch/unzip"
S=${WORKDIR}
src_install() {
dogameslib */*.img || die "dogameslib failed"
dodoc emutos-512k-${PV}/{readme.txt,doc/{announce,authors,changelog,status}.txt}
prepgamesdirs
}

@ -1,2 +1,3 @@
DIST quakeforge-0.5.5.tar.bz2 1954072 SHA256 9ff29340f571fc26d19992a32f58e767e1b811248688f383083bc2ccb263ec6a SHA512 0e81fbe2ef4fd1f491e2b46f222807eaa1b1dadf1e5200d3cd4609146050664a68c801c48418a3632a5ad0798ea9ec4eed70da03c2f90abb5fd1291adc95399c WHIRLPOOL 7442e2f2f8641b41cfbfb4206605faadc6f738bf9151c033ca8b39110428621b19e158ea185d4236069165738027a104dc939944bfb758021dbd85809276430c
DIST quakeforge-0.7.0.tar.bz2 2780842 SHA256 3aafc52fbe8881c8f51f7726ebe00e42e9deb7b6db9dc308929a5cf998d25a62 SHA512 17f38fa30da32793b83e1f0e40d9185f65c87d2ea43ff5d2137c4302d56ab386803d4cc0407a18542162a3a3bddb81954c1419af24e29a21e99a9f07a6afd42f WHIRLPOOL a605b83c4da6a3ce85e1a74000223c1c7f68c4c7743ec095f12ab7df5e5074ac76d536092d50bf023f3af0b4f0201d7f19c111142365838d4fe13fe14298e6a7
DIST quakeforge-0.7.2.tar.bz2 2887823 SHA256 1ddc8c963b23bd648d94af48062ab0448345761defeceaef7c62be55c4a28d7a SHA512 d296e10b86466aee0a4be527a5fea7a44bae60ebef52ad86381744dc96e2bed2ad14d3b790b4514a5c59ac897662e91b80a9d49c822910930742a1d2b8a2ec55 WHIRLPOOL 11a4465435f42ba866806d4d4ede34a4a4e6b42b9e4fd6696c10e55bba4182762dc890ddff463bd9ad00b937d36dbde269886683f6f85b639a0ea6a30f5f6e4a

@ -0,0 +1,33 @@
--- nq/source/Makefile.am.old 2012-11-18 16:57:56.658388682 +0100
+++ nq/source/Makefile.am 2012-11-18 16:58:11.470268607 +0100
@@ -138,7 +138,7 @@
nq_x11_SOURCES= sys_unix.c
nq_x11_LDADD= $(nq_x11_libs) \
$(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
- $(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS)
+ $(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS) -ldl
nq_x11_LDFLAGS= $(common_ldflags)
nq_x11_DEPENDENCIES= $(nq_x11_libs)
--- qw/source/Makefile.am.old 2012-11-18 17:10:59.148172332 +0100
+++ qw/source/Makefile.am 2012-11-18 17:11:55.866876762 +0100
@@ -168,7 +168,7 @@
qw_client_x11_SOURCES= cl_sys_unix.c
qw_client_x11_LDADD= $(qw_client_x11_libs) \
$(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
- $(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS) $(LIBCURL_LIBS)
+ $(X_EXTRA_LIBS) $(X_SHM_LIB) $(NET_LIBS) $(LIBCURL_LIBS) -ldl
qw_client_x11_LDFLAGS= $(common_ldflags)
qw_client_x11_DEPENDENCIES= $(qw_client_x11_libs)
--- tools/qwaq/Makefile.am.old 2012-11-18 17:15:16.024714317 +0100
+++ tools/qwaq/Makefile.am 2012-11-18 17:15:41.955749660 +0100
@@ -38,7 +38,7 @@
qwaq_x11_SOURCES=qwaq.c qwaq-bi.c
qwaq_x11_LDADD= $(qwaq_x11_libs) $(QWAQ_LIBS) \
$(VIDMODE_LIBS) $(DGA_LIBS) $(X_LIBS) -lX11 \
- $(X_EXTRA_LIBS) $(X_SHM_LIB)
+ $(X_EXTRA_LIBS) $(X_SHM_LIB) -ldl
qwaq_x11_LDFLAGS=
qwaq_x11_DEPENDENCIES= $(qwaq_x11_libs) $(QWAQ_DEPS)

@ -26,4 +26,8 @@ Other things we're doing include merging the two code trees, adding
features, and improving the OpenGL renderer. And QuakeForge is still the
most portable source tree based on the id Software code.
</longdescription>
<use>
<flag name="wildmidi">enable libWildMidi support</flag>
<flag name="xdg">enable XDG support</flag>
</use>
</pkgmetadata>

@ -0,0 +1,130 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quakeforge/quakeforge-0.7.2.ebuild,v 1.1 2013/02/02 00:07:45 hasufell Exp $
EAPI=5
inherit base eutils autotools games
DESCRIPTION="A new 3d engine based off of id Softwares's legendary Quake and QuakeWorld game engine"
HOMEPAGE="http://www.quakeforge.net/"
SRC_URI="mirror://sourceforge/quake/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="cdinstall debug fbcon flac sdl svga X ncurses png vorbis zlib ipv6 xv dga alsa oss xdg wildmidi"
RESTRICT="userpriv"
RDEPEND="
media-libs/libsamplerate
net-misc/curl
virtual/opengl
png? ( media-libs/libpng:0 )
flac? ( media-libs/flac )
sdl? ( media-libs/libsdl )
svga? ( media-libs/svgalib )
X? (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXxf86vm
)
ncurses? ( sys-libs/ncurses )
vorbis? ( media-libs/libogg media-libs/libvorbis )
zlib? ( sys-libs/zlib )
xv? (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXxf86vm
)
dga? ( x11-libs/libXxf86dga )
alsa? ( media-libs/alsa-lib )
wildmidi? ( media-sound/wildmidi )"
DEPEND="${RDEPEND}
cdinstall? ( games-fps/quake1-data )
>=sys-devel/bison-2.6
sys-devel/flex
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
eautoreconf
}
src_configure() {
local debugopts
use debug \
&& debugopts="--enable-debug --disable-optimize --enable-profile" \
|| debugopts="--disable-debug --disable-profile"
local clients=${QF_CLIENTS}
use fbcon && clients="${clients},fbdev"
use sdl && clients="${clients},sdl"
use svga && clients="${clients},svga"
use X && clients="${clients},x11"
[ "${clients:0:1}" == "," ] && clients=${clients:1}
local servers=${QF_SERVERS:-master,nq,qw,qtv}
local tools=${QF_TOOLS:-all}
local svgaconf # use old school way for broken conf opts
use svga \
&& svgaconf="--with-svga=/usr" \
|| svgaconf="--without-svga"
addpredict "$(games_get_libdir)"
egamesconf \
--enable-dependency-tracking \
$(use_enable ncurses curses) \
$(use_enable vorbis) \
$(use_enable png) \
$(use_enable zlib) \
$(use_with ipv6) \
$(use_with fbcon fbdev) \
${svgaconf} \
$(use_with X x) \
$(use_enable xv vidmode) \
$(use_enable dga) \
$(use_enable sdl) \
--disable-xmms \
$(use_enable alsa) \
$(use_enable flac) \
$(use_enable oss) \
$(use_enable xdg) \
$(use_enable wildmidi) \
--enable-sound \
--disable-optimize \
--disable-Werror \
${debugopts} \
--with-global-cfg="${GAMES_SYSCONFDIR}"/quakeforge.conf \
--with-sharepath="${GAMES_DATADIR}"/quake1 \
--with-clients=${clients} \
--with-servers=${servers} \
--with-tools=${tools}
}
src_install() {
emake -j1 DESTDIR="${D}" install
mv "${D}/${GAMES_PREFIX}"/include "${D}"/usr/ || die
dodoc ChangeLog NEWS TODO
prepgamesdirs
}
pkg_postinst() {
# same warning used in quake1 / quakeforge / nprquake-sdl
games_pkg_postinst
echo
elog "Before you can play, you must make sure"
elog "${PN} can find your Quake .pak files"
elog
elog "You have 2 choices to do this"
elog "1 Copy pak*.pak files to ${GAMES_DATADIR}/quake1/id1"
elog "2 Symlink pak*.pak files in ${GAMES_DATADIR}/quake1/id1"
elog
elog "Example:"
elog "my pak*.pak files are in /mnt/secondary/Games/Quake/Id1/"
elog "ln -s /mnt/secondary/Games/Quake/Id1/pak0.pak ${GAMES_DATADIR}/quake1/id1/pak0.pak"
elog
elog "You only need pak0.pak to play the demo version,"
elog "the others are needed for registered version"
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/grimrock/grimrock-20121222.ebuild,v 1.2 2013/01/29 12:37:49 hasufell Exp $
# $Header: /var/cvsroot/gentoo-x86/games-rpg/grimrock/grimrock-20121222.ebuild,v 1.3 2013/02/01 20:02:48 hasufell Exp $
EAPI=5
@ -41,7 +41,7 @@ RDEPEND="
x11-libs/libXdmcp
x11-libs/libXext
system-libs? (
media-libs/freeimage
media-libs/freeimage[png]
media-libs/libogg
media-libs/libvorbis
media-libs/openal

@ -1,2 +1,2 @@
DIST viewnior-1.1.tar.gz 512101 RMD160 af8030e89ea90339d3c38f63f7ecdb69b1fb6717 SHA1 177506883aa5f711dcd9e7aa826d9c7c8dece9bd SHA256 f3826003bae241c068aa469c2d0dec6849da8b973815f570dd6d7addc7c2735d
DIST viewnior-1.3.tar.gz 525015 RMD160 4e84aa41ec61becc8d68bef3c93eec6405106de9 SHA1 5cb0bca122d91b380445a9c55dfcb5609203edb3 SHA256 46c97c1a85361519b42fe008cfb8911e66f709f3a3a988c11047ab3726889f10
DIST viewnior-1.1.tar.gz 512101 SHA256 f3826003bae241c068aa469c2d0dec6849da8b973815f570dd6d7addc7c2735d SHA512 e33204e675acd71c9a8bb5f08bcfe903ef7ef4bf944bbd4813efb4fcacd2f62b056f398c0509aec679692504ae59cf2af6cb98d090d3ed0336b9faa59b0d0cbd WHIRLPOOL 34b6b56d5e5a4bd29c402f5425ecef7a603ef796ae0c3d5410b71de6f12c8573a4a39065633cb4faa38facd8057f2b703ef8be233e7fd21939f9df2a956f5671
DIST viewnior-1.3.tar.gz 525015 SHA256 46c97c1a85361519b42fe008cfb8911e66f709f3a3a988c11047ab3726889f10 SHA512 1047422f73fc9bc7b7cbef1298f52bd1e59c0430bdcfa219061ec929c9c874f7872d3d6fbfcb44681f031deffd7fa5c2ffe2e98002df47ada8f432203feefa33 WHIRLPOOL 899a6f40fb4da994335cee5f21ee0613e60f7bbb3b1331730c25c44278f93da3c28abe08e3ddd61a1566c1c9117b24a743bf8336c4b72a0945fa333d6e5cfb03

@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/viewnior/viewnior-1.3.ebuild,v 1.1 2012/06/14 07:47:36 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/viewnior/viewnior-1.3.ebuild,v 1.2 2013/02/02 03:33:51 wired Exp $
EAPI="4"
inherit fdo-mime gnome2-utils
inherit fdo-mime gnome2-utils autotools
DESCRIPTION="Fast and simple image viewer"
HOMEPAGE="http://xsisqox.github.com/Viewnior/index.html"
@ -21,6 +21,14 @@ RDEPEND="${DEPEND}"
DOCS="AUTHORS ChangeLog* NEWS README TODO"
src_prepare() {
# fix for bug #454230
sed -r -i "s:(PKG_CHECK_MODULES):AC_CHECK_LIB([m],[cos])\n\n\1:" configure.ac
sed -r -i "/^SHAVE_INIT/d" configure.ac
eautoreconf
}
pkg_preinst() {
gnome2_icon_savelist
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-bad/gst-plugins-bad-0.10.23-r1.ebuild,v 1.4 2013/02/01 12:25:27 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-bad/gst-plugins-bad-0.10.23-r1.ebuild,v 1.6 2013/02/01 18:09:38 ago Exp $
EAPI="5"
@ -11,7 +11,7 @@ HOMEPAGE="http://gstreamer.freedesktop.org/"
SRC_URI+=" http://dev.gentoo.org/~tetromino/distfiles/${PN}/${P}-h264-patches.tar.xz"
LICENSE="LGPL-2"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="+orc"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-0.10.36.ebuild,v 1.7 2013/02/01 12:25:47 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/gst-plugins-base-0.10.36.ebuild,v 1.9 2013/02/01 18:10:03 ago Exp $
EAPI="5"
@ -10,7 +10,7 @@ DESCRIPTION="Basepack of plugins for gstreamer"
HOMEPAGE="http://gstreamer.freedesktop.org/"
LICENSE="GPL-2+ LGPL-2+"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+introspection nls +orc"
RDEPEND=">=dev-libs/glib-2.24:2

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-0.10.31.ebuild,v 1.6 2013/02/01 12:26:02 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-good/gst-plugins-good-0.10.31.ebuild,v 1.8 2013/02/01 18:10:25 ago Exp $
EAPI="5"
@ -11,7 +11,7 @@ DESCRIPTION="Basepack of plugins for gstreamer"
HOMEPAGE="http://gstreamer.freedesktop.org/"
LICENSE="LGPL-2.1+"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="+orc"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-ugly/gst-plugins-ugly-0.10.19.ebuild,v 1.5 2013/02/01 12:26:20 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-ugly/gst-plugins-ugly-0.10.19.ebuild,v 1.7 2013/02/01 18:10:47 ago Exp $
EAPI="5"
@ -11,7 +11,7 @@ DESCRIPTION="Basepack of plugins for gstreamer"
HOMEPAGE="http://gstreamer.sourceforge.net"
LICENSE="GPL-2"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="+orc"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.36.ebuild,v 1.5 2013/02/01 12:25:10 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/gstreamer/gstreamer-0.10.36.ebuild,v 1.7 2013/02/01 18:08:57 ago Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://${PN}.freedesktop.org/src/${PN}/${P}.tar.xz"
LICENSE="LGPL-2+"
SLOT="0.10"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+introspection nls +orc test"
RDEPEND=">=dev-libs/glib-2.24:2

@ -1 +1,2 @@
DIST raspberrypi-userland-0_pre20121024.tar.xz 539284 SHA256 6d280a16a34065ecacbd6e779ffe8277390129367fafb32d81f0197deed2b512 SHA512 7a6d24e95fd7e075694b434c08765dd884705c59aa26a7795d156b3b8304a8b168bddccebfd99733063da7b0bd0f7ae210f3bf6eec0c63ba3c1f116dddff34cb WHIRLPOOL 5c64ad8c8b45452f200fb5788ef477f748ae6a87acb1d494c146eb1c26a29be0f4ec9ffc3c085b4e821275ee83ea8b7a3c2ac8bd86ebd67b050676d021295ef2
DIST raspberrypi-userland-0_pre20130131.tar.xz 31815328 SHA256 d949b3e208c98b631516e21e42de39ad8fa54f0a425ada41890e6d55ed8c7314 SHA512 64a71d70b14477687049ce7d658a248bef8d934287cb50a6ce39cad8ce7c43ca067f4417fddd471b01032874f8e461060983476b7a511ca9b86bc61ffadd0d72 WHIRLPOOL 8d018d00f400323247e1327695fcba7665377cb22d48f7681b6eaa7136157eda4a4b5d0fc1d5888fc45f1e7c788f4defcee8de3917b3d95966cf272b3de26aec

@ -0,0 +1,54 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20130131.ebuild,v 1.1 2013/02/02 00:57:27 chithanh Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="Raspberry Pi userspace tools and libraries"
HOMEPAGE="https://github.com/raspberrypi/userland"
if [[ ${PV} == 9999* ]]; then
inherit git-2
EGIT_REPO_URI="git://github.com/${PN/-//}.git"
SRC_URI=""
KEYWORDS=""
else
SRC_URI="mirror://gentoo/${P}.tar.xz"
KEYWORDS="~arm"
fi
LICENSE="BSD"
SLOT="0"
# TODO:
# * port vcfiled init script
# * stuff is still installed to hardcoded /opt/vc location, investigate whether
# anything else depends on it being there
# * live ebuild
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-2_src_unpack
else
default
mv userland-*/ ${P}/ || die
fi
}
src_prepare() {
# init script for Debian, not useful on Gentoo
sed -i "/DESTINATION \/etc\/init.d/,+2d" interface/vmcs_host/linux/vcfiled/CMakeLists.txt || die
}
src_configure() {
# toolchain file not needed, but build fails if it is not specified
local mycmakeargs="-DCMAKE_TOOLCHAIN_FILE=/dev/null"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
doenvd "${FILESDIR}"/04${PN}
}

@ -0,0 +1,54 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/raspberrypi-userland/raspberrypi-userland-9999.ebuild,v 1.1 2013/02/02 00:57:27 chithanh Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="Raspberry Pi userspace tools and libraries"
HOMEPAGE="https://github.com/raspberrypi/userland"
if [[ ${PV} == 9999* ]]; then
inherit git-2
EGIT_REPO_URI="git://github.com/${PN/-//}.git"
SRC_URI=""
KEYWORDS=""
else
SRC_URI="mirror://gentoo/${P}.tar.xz"
KEYWORDS="~arm"
fi
LICENSE="BSD"
SLOT="0"
# TODO:
# * port vcfiled init script
# * stuff is still installed to hardcoded /opt/vc location, investigate whether
# anything else depends on it being there
# * live ebuild
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-2_src_unpack
else
default
mv userland-*/ ${P}/ || die
fi
}
src_prepare() {
# init script for Debian, not useful on Gentoo
sed -i "/DESTINATION \/etc\/init.d/,+2d" interface/vmcs_host/linux/vcfiled/CMakeLists.txt || die
}
src_configure() {
# toolchain file not needed, but build fails if it is not specified
local mycmakeargs="-DCMAKE_TOOLCHAIN_FILE=/dev/null"
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
doenvd "${FILESDIR}"/04${PN}
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20111220.ebuild,v 1.7 2012/04/15 18:14:33 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20111220.ebuild,v 1.9 2013/02/01 18:09:16 ago Exp $
EAPI=4
@ -29,7 +29,7 @@ SLOT="0"
if [ "${PV#9999}" != "${PV}" ]; then
KEYWORDS=""
else
KEYWORDS="alpha amd64 ~mips ~ppc ~ppc64 sparc x86 ~x86-fbsd"
KEYWORDS="alpha amd64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
fi
IUSE="10bit custom-cflags debug +interlaced pic static-libs +threads"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20120707.ebuild,v 1.5 2012/12/16 19:08:40 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20120707.ebuild,v 1.6 2013/02/02 00:28:26 ssuominen Exp $
EAPI=4
@ -35,6 +35,7 @@ IUSE="10bit custom-cflags debug +interlaced pic static-libs +threads"
RDEPEND=""
DEPEND="amd64? ( >=dev-lang/yasm-1 )
amd64-fbsd? ( >=dev-lang/yasm-1 )
x86? ( >=dev-lang/yasm-1 )
x86-fbsd? ( >=dev-lang/yasm-1 )"

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-9999.ebuild,v 1.4 2012/05/15 13:12:19 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-9999.ebuild,v 1.6 2013/02/02 00:30:33 ssuominen Exp $
EAPI=4
@ -37,6 +37,7 @@ RDEPEND=""
ASM_DEP=">=dev-lang/yasm-1"
DEPEND="
amd64? ( ${ASM_DEP} )
amd64-fbsd? ( ${ASM_DEP} )
x86? ( ${ASM_DEP} )
x86-fbsd? ( ${ASM_DEP} )
"

@ -1,12 +1,12 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-0.10.19.ebuild,v 1.5 2013/02/01 12:26:35 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-0.10.19.ebuild,v 1.7 2013/02/01 18:11:09 ago Exp $
EAPI="5"
inherit gst-plugins-ugly
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="+orc"
RDEPEND="

@ -1,12 +1,12 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.36.ebuild,v 1.6 2013/02/01 12:26:53 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.36.ebuild,v 1.8 2013/02/01 18:11:30 ago Exp $
EAPI="5"
inherit gst-plugins-base gst-plugins10
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND=">=media-libs/alsa-lib-0.9.1"

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.31.ebuild,v 1.6 2013/02/01 12:27:08 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.31.ebuild,v 1.8 2013/02/01 18:11:47 ago Exp $
EAPI="5"
inherit gst-plugins-good
DESCRIPTION="GStreamer plugin for annodex stream manipulation"
KEYWORDS="~alpha amd64 ~ppc ~ppc64 x86"
KEYWORDS="~alpha amd64 ppc ppc64 x86"
IUSE=""
RDEPEND=">=dev-libs/libxml2-2.4.9"

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-assrender/gst-plugins-assrender-0.10.23.ebuild,v 1.6 2013/02/01 12:27:20 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-assrender/gst-plugins-assrender-0.10.23.ebuild,v 1.8 2013/02/01 18:12:04 ago Exp $
EAPI="5"
inherit gst-plugins-bad
DESCRIPTION="GStreamer plugin for ASS/SSA rendering with effects support"
KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86 ~amd64-fbsd"
KEYWORDS="amd64 ~hppa ppc ppc64 x86 ~amd64-fbsd"
IUSE=""
RDEPEND=">=media-libs/libass-0.9.4"

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

Loading…
Cancel
Save