Sync with portage [Thu Jul 23 10:04:29 MSK 2015].

mhiretskiy
root 9 years ago
parent e107150050
commit 6f972efe2b

@ -1,4 +1 @@
DIST bochs-2.4.1.tar.gz 4046505 SHA256 d4fd63e328870d8a9452d8397c83a295b093d5d158386d1ef9b98f161f520ab3 SHA512 7f666be6c6628709eeb423ccdd5fb4360a81a112dc7ac78c99fca3bd8e01f9ff84b2967f5ca2aebd96fcc9758ca68c745693d9c4fabbd65307eaf719988917ca WHIRLPOOL 20d208a3337349f4896a4ba3adcbc563d494ca3e5ff762d9fd56dc4d68440f07337ed83c8a3cb6b4a5af070ade735239a6f016e00570644cd9576d8153bcf9bd
DIST bochs-2.4.5.tar.gz 4059598 SHA256 b948622a364c2e7da4221a6a4640ba2efa68422e1411ac377c69d37f46f67616 SHA512 dbd5aa4a22f95c6d55cafa1b4e96c8a8da5e09acc29e14f6b689c44a853198fa0c23c414a7f5cb59e5e7172b67b1e281b8b8dce2b58416c53b5aec1f2afac6c1 WHIRLPOOL 91c25832fc92cbd18c9da40773379af6a47f7aa22b66c12fc07de817eaf9501be549e59041676eb2d9d2970dc0e1a6c83047a827c8d8eb59924a41013ed0bf73
DIST bochs-2.6.tar.gz 4212828 SHA256 65123e44a6d2c1148d741da025d16311b9ccd600ef268b911aba73c67eaf86e1 SHA512 506e7816c96caf56005c74df20d243aef111dded41b65dbf440844af3d49bc5987af333ef65a53f90de9fbdfc4d18e3e23fff1157ccb08bd95afff8fdbbcfba3 WHIRLPOOL 4598ad37b6792a001e3301770318c6a6d53bda98dc9a21337db4659573d8bf4ec64cf3376386f5e298dc25813c9bcc5e29b7a82383b96c1e2f82c77a75877001
DIST dlxlinux4.tar.gz 1504868 SHA256 68b35f850ce69f4050ed85064e15d756245d57e84ddc1d52678b0e2a97dbf73e SHA512 e390aa2f264a456f05c587080e9b6f97ef44ba53345bfc716cd2aa6b274c4850bc6504239c0a2cbb63a711a358722a4130551ce1f7c25322ef2f7d0120d92e2f WHIRLPOOL 8dcd03c062baaacb6c8ce5f5c49903341f4ef70fad5d5804e963b649c593360fb58dbafa0b7fc6517c43733baf9674398d05093a53cbd307cc3204a18ff809b8

@ -1,149 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-2.4.1.ebuild,v 1.5 2010/09/04 09:22:32 lu_zero Exp $
inherit eutils wxwidgets
DESCRIPTION="a LGPL-ed pc emulator"
HOMEPAGE="http://bochs.sourceforge.net/"
SRC_URI="mirror://sourceforge/bochs/${P}.tar.gz
http://bochs.sourceforge.net/guestos/dlxlinux4.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="X debugger readline usb wxwidgets svga sdl ncurses vnc acpi"
RDEPEND="X? ( x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXpm )
sdl? ( media-libs/libsdl )
svga? ( media-libs/svgalib )
wxwidgets? ( =x11-libs/wxGTK-2.8* )
readline? ( sys-libs/readline )
ncurses? ( sys-libs/ncurses )"
DEPEND="${RDEPEND}
X? ( x11-proto/xproto )
>=sys-apps/sed-4
>=app-text/opensp-1.5"
src_unpack() {
unpack "${P}.tar.gz"
cd "${S}"
# we already downloaded dlxlinux4.tar.gz so let the Makefile cp it instead
# of downloading it again
sed -i \
-e "s:\$(WGET) \$(DLXLINUX_TAR_URL):cp ${DISTDIR}/dlxlinux4.tar.gz .:" \
Makefile.in || \
die "sed Makefile.in failed"
}
src_compile() {
WX_GTK_VER=2.8
use wxwidgets && \
need-wxwidgets unicode
use x86 && \
myconf="--enable-idle-hack --enable-fast-function-calls"
use amd64 && \
myconf="--enable-x86-64"
use wxwidgets && \
myconf="${myconf} --with-wx"
use wxwidgets || \
myconf="${myconf} --without-wx"
use vnc && \
myconf="${myconf} --with-rfb"
use X && \
myconf="${myconf} --with-x11"
use ncurses && \
myconf="${myconf} --with-term"
# --enable-all-optimizations causes bus error on sparc :(
use sparc || \
myconf="${myconf} --enable-all-optimizations"
econf \
--enable-pae \
--enable-large-pages \
--enable-global-pages \
--enable-mtrr \
--enable-repeat-speedups \
--enable-trace-cache \
--enable-fast-function-calls \
--enable-ignore-bad-msr \
--enable-disasm \
--enable-logging \
--enable-raw-serial \
--enable-vbe \
--enable-clgd54xx \
--enable-fpu \
--enable-vme \
--enable-alignment-check \
--enable-sep \
--enable-popcnt \
--enable-monitor-mwait \
--enable-gameport \
--enable-iodebug \
--prefix=/usr \
--enable-ne2000 \
--enable-sb16=linux \
--enable-plugins \
--enable-cdrom \
--enable-pci \
--enable-pcidev \
--enable-pnic \
--enable-mmx \
--enable-sse=2 \
--enable-3dnow \
--enable-cpu-level=6 \
--enable-smp \
--with-nogui \
--enable-xsave \
--enable-aes \
$(use_enable usb) \
$(use_enable readline) \
$(use_enable debugger) \
$(use_with X) \
$(use_with sdl) \
$(use_with svga) \
$(use_enable acpi) \
${myconf} || \
die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install unpack_dlx || die "make install failed"
# workaround
make prefix="${D}/usr" install_dlx
dodoc \
CHANGES \
PARAM_TREE.txt \
README \
README-plugins \
TESTFORM.txt \
TODO || \
die "doco failed"
if [ use vnc ]
then
dodoc README.rfb || die "dodoc failed"
fi
if [ use wxwidgets ]
then
dodoc README-wxWindows || die "dodoc failed"
fi
}

@ -1,135 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-2.4.5.ebuild,v 1.1 2010/09/04 09:22:32 lu_zero Exp $
inherit eutils wxwidgets
DESCRIPTION="a LGPL-ed pc emulator"
HOMEPAGE="http://bochs.sourceforge.net/"
SRC_URI="mirror://sourceforge/bochs/${P}.tar.gz
http://bochs.sourceforge.net/guestos/dlxlinux4.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="X debugger readline usb wxwidgets svga sdl ncurses vnc acpi"
RDEPEND="X? ( x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXpm )
sdl? ( media-libs/libsdl )
svga? ( media-libs/svgalib )
wxwidgets? ( =x11-libs/wxGTK-2.8* )
readline? ( sys-libs/readline )
ncurses? ( sys-libs/ncurses )"
DEPEND="${RDEPEND}
X? ( x11-proto/xproto )
>=sys-apps/sed-4
>=app-text/opensp-1.5"
src_unpack() {
unpack "${P}.tar.gz"
cd "${S}"
# we already downloaded dlxlinux4.tar.gz so let the Makefile cp it instead
# of downloading it again
sed -i \
-e "s:\$(WGET) \$(DLXLINUX_TAR_URL):cp ${DISTDIR}/dlxlinux4.tar.gz .:" \
Makefile.in || \
die "sed Makefile.in failed"
}
src_compile() {
WX_GTK_VER=2.8
use wxwidgets && \
need-wxwidgets unicode
use x86 && \
myconf="--enable-idle-hack --enable-fast-function-calls"
use amd64 && \
myconf="--enable-x86-64"
use wxwidgets && \
myconf="${myconf} --with-wx"
use wxwidgets || \
myconf="${myconf} --without-wx"
use vnc && \
myconf="${myconf} --with-rfb"
use X && \
myconf="${myconf} --with-x11"
use ncurses && \
myconf="${myconf} --with-term"
# --enable-all-optimizations causes bus error on sparc :(
use sparc || \
myconf="${myconf} --enable-all-optimizations"
econf \
--enable-repeat-speedups \
--enable-trace-cache \
--enable-fast-function-calls \
--enable-disasm \
--enable-logging \
--enable-raw-serial \
--enable-vbe \
--enable-clgd54xx \
--enable-alignment-check \
--enable-monitor-mwait \
--enable-gameport \
--enable-iodebug \
--prefix=/usr \
--enable-ne2000 \
--enable-sb16=linux \
--enable-plugins \
--enable-cdrom \
--enable-pci \
--enable-pcidev \
--enable-pnic \
--enable-cpu-level=6 \
--enable-smp \
--with-nogui \
$(use_enable usb) \
$(use_enable readline) \
$(use_enable debugger) \
$(use_with X) \
$(use_with sdl) \
$(use_with svga) \
$(use_enable acpi) \
${myconf} || \
die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install unpack_dlx || die "make install failed"
# workaround
make prefix="${D}/usr" install_dlx
dodoc \
CHANGES \
PARAM_TREE.txt \
README \
README-plugins \
TESTFORM.txt \
TODO || \
die "doco failed"
if [ use vnc ]
then
dodoc README.rfb || die "dodoc failed"
fi
if [ use wxwidgets ]
then
dodoc README-wxWindows || die "dodoc failed"
fi
}

@ -1,2 +1 @@
DIST fuse-utils-1.0.0.tar.gz 415310 SHA256 39f110d9760b84ecd23ab4a7ad777db6480b470f1c6435889a125abb302de104 SHA512 bea181db94c75ecdced1476d1669e6f852a14dc760d9d17e81cf14fc604e899ebec1768b2adcefbe0962636c9dc456fde9de486a70406cc7d1f7a27789c386f4 WHIRLPOOL de80b3dbcafd988373e821baf9cc020d446ab8a65ccaf8c6ca5e8bb93805da328cfad3639ff8cdbe120fee94e989536ab2b25eb7bc7f7546ebbfb97724b64215
DIST fuse-utils-1.1.1.tar.gz 505766 SHA256 7c36c0b42805661a06c21aede3461ffc8ccdb5ce56fe232875bf86e79f77c93c SHA512 67a9cc6af97f213a43b5e557dfe800f823e914faae99d7c5b2ddfc52656ab89bac737df644b9aa32ac009bdc0740d2064ccc6de2643ecba9141787245f9657f9 WHIRLPOOL 6da43fbbacdc918ce1cd4b11b21499a7faf26afe5cd1cd46e4911594c515679f2b5f6640d0530b6f47f644bc16c0247b5df26c49893f2e656b7d878ec95ea394

@ -1,36 +0,0 @@
--- configure.in 2010-12-16 21:47:12.000000000 +0000
+++ configure.in 2011-02-03 19:13:29.000000000 +0000
@@ -48,12 +48,16 @@
LDFLAGS="$LDFLAGS -L$prefix/lib"
fi)
-dnl Check that libgcrypt is available
-AC_CHECK_LIB(gcrypt,gcry_check_version,
- AC_DEFINE([HAVE_LIBGCRYPT], 1, [Defined if we've got libgcrypt])
- GCRYPT_LIBS="$LIBS -lgcrypt"
- gcrypt=yes
-)
+dnl Check whether to use libgcrypt
+AC_MSG_CHECKING(whether to use libgcrypt)
+AC_ARG_WITH(libgcrypt,
+[ --without-libgcrypt don't use libgcrypt],
+if test "$withval" = no; then libgcrypt=no; else libgcrypt=yes; fi,
+libgcrypt=yes)
+AC_MSG_RESULT($libgcrypt)
+if test "$libgcrypt" = yes; then
+ AC_CHECK_HEADERS(gcrypt.h,LIBS="$LIBS -lgcrypt")
+fi
AC_SUBST(GCRYPT_LIBS)
AM_CONDITIONAL(BUILD_RZXCHECK, test "$gcrypt" = yes)
--- audio2tape.h 2010-12-16 21:47:12.000000000 +0000
+++ audio2tape.h 2011-02-03 19:13:02.000000000 +0000
@@ -26,6 +26,8 @@
#ifndef AUDIO2TAPE_H
#define AUDIO2TAPE_H
+#include <string.h>
+
class audio2tape_exception : public std::exception
{
public:

@ -1,43 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse-utils/fuse-utils-1.0.0.ebuild,v 1.3 2012/05/03 18:49:07 jdhore Exp $
EAPI="3"
inherit autotools eutils
DESCRIPTION="Utils for the Free Unix Spectrum Emulator by Philip Kendall"
HOMEPAGE="http://fuse-emulator.sourceforge.net"
SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="audiofile gcrypt"
RDEPEND="~app-emulation/libspectrum-1.0.0[gcrypt?]
audiofile? ( >=media-libs/audiofile-0.2.3 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare () {
epatch "${FILESDIR}/${P}-libgcrypt.patch"
eautoreconf
}
src_configure() {
econf \
$(use_with audiofile ) \
$(use_with gcrypt libgcrypt) \
|| die "Configure failed!"
}
src_compile() {
emake || die "Make failed!"
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
dodoc AUTHORS ChangeLog README
doman man/*.1
}

@ -1,7 +1,4 @@
DIST hercules-3.04.tar.gz 2079774 SHA256 4512a7c2b86b4a92c337c99761295aa4eaa54e90da3d0881c283b69c03b1eed5 SHA512 81277072de19f357897fafca7c1e01dcb9c511d0d428f494c7c73b9a9d9b32fc2b1414f85435120f1a05edf495ad689519c9ee4d17e3d60019c04c51d89252b0 WHIRLPOOL bbf53ccc8ae774007141961bc13c11dedd12b58f3a39cf37ac99a48d66e2c0f66e14197516eb20e2ef88525299cb904721f32a178c60d9c9bc756a49649268b0
DIST hercules-3.05.tar.gz 2470621 SHA256 f190221fa25692c0316be331f618c0675f9f9875c44b8af3efa7a431d138b1e2 SHA512 0ea3e3dfb119f90721df7bddb1bd8d5329f13ca744325454459f7e716ae8859ecc23b5bd61afe9f1ed7426a2cd9d57ce881653620c4c5601781f7ba1f5022321 WHIRLPOOL 089362403fadac9973f2f4312010a03531553cf50beaf1402b0605f903dc01add14c50627c4b08831d1bd7a6dc9e72177114805c106833411c9f58572363021d
DIST hercules-3.06.tar.gz 2658262 SHA256 fa00b17c86a47133108c49973ba343d589f0e8777a115d827ef3da9aafbda22b SHA512 a938c2be64094ca412fb9094942088e344aa67b0af324af674d4fff73c6e936ffc6e384a5edcb48d1c31439c55322bf5e6b2e7ea36e7e7c9e416d8522240b1c5 WHIRLPOOL dbebb54e19ea5016d576153a0818ff5ce8e7114449837f127ad1c0ea82c561306a443dee2bd47d9a8c4afbd6ca257ca350348e773def86eccac76d3c754ea29c
DIST hercules-3.07.tar.gz 2701835 SHA256 02d5f6c66d699d413a4db9ef5a799249a6645ac10f2af1edb37992e7fa1f7724 SHA512 5e4e55e9a11f0b7e78daafe9f219243d298bbdeeaf35f82c862db0c9f0de24f553239d0b76acaf7673cf54d03278193c2f93df3fba410874f95dbf93b5bb0e64 WHIRLPOOL 0b68910dc43fb49ca2e54f2e405f03cc15e86ed7f297fb81ca4f62f8e11077097d019e8d125a66fedd2666e988c017d1b8066a61857dc520b6c6f3c99059b00c
DIST hercules-3.08.tar.gz 2684844 SHA256 85e217773587f2278d4b6cb6bc815e042cfc982d0fc14baa0da4a84dea399e9d SHA512 6fe8da6e0462f4b27f987c86b2de769e6a1a9eb3389bb612b59931590f75e7dd9d4a8456b5f36209aadf433dfe2e48686f2cda8e95b7480b9bdb971247e1eae5 WHIRLPOOL 833b2ba21a17d70cd3ba9a4f88fdaaec288acf471d43fd9c660e55c7c48f7a34b46b1defd7ffb699ed3f34af1fca9484303a09f3a020fa06367cdd291a675f5b
DIST hercules-3.09.tar.gz 2567052 SHA256 98a6029d908943451635ba53acf97ed61fdf6ebafc4402be7137c620851fe4e7 SHA512 0c972f62de6f780608adff3fdb614b0c6fe46349da73ec2225d809786fd5188f9e9fbb0ee5858a75cb156071c0e976d37997547d23c939aa48c3b727c5680c0a WHIRLPOOL f9eee4c11855ac08f20423f4b864b2d41315ce445af4f844b644a0399e83535442cb697571e0956ba53deae3cb755956f3cdf0a323efd07afb4be8bc8dd1c145
DIST hercules-3.10.tar.gz 2608321 SHA256 26264569b7d78bbc3b6221926051ac3761c4a792dfc84d591d3230de40aa46fa SHA512 de8b3e2e90fdb745dea9c8ce4dbe506de2aba3bf08b3e937605798e6a8020576a949d6ea3496b7c42bd23d617fc96648d2d8ec05a66e8ed174ce46a3bc31c5d1 WHIRLPOOL 5233ededd4ef42e201216a11b2a09ee6c59a678771aaa9bc78ab4b87f459addc5c0b4ffd4bd2ec98d15a461565db6a354cc1ac846f800b98e86e93e51b263b4a

@ -1,33 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.04.ebuild,v 1.5 2007/06/27 13:41:25 armin76 Exp $
inherit flag-o-matic
DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator"
HOMEPAGE="http://www.hercules-390.org/"
SRC_URI="http://www.hercules-390.org/${P}.tar.gz"
LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE="custom-cflags"
src_compile() {
use custom-cflags || strip-flags
econf \
--enable-cckd-bzip2 \
--enable-het-bzip2 \
--enable-setuid-hercifc \
--enable-custom="Gentoo Linux ${PF}.ebuild" \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake -j1 DESTDIR="${D}" install || die
dohtml -r html/
insinto /usr/share/hercules
doins hercules.cnf
dodoc README.* RELEASE.NOTES CHANGES
}

@ -1,33 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.05.ebuild,v 1.1 2007/06/24 21:18:41 vapier Exp $
inherit flag-o-matic
DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator"
HOMEPAGE="http://www.hercules-390.org/"
SRC_URI="http://www.hercules-390.org/${P}.tar.gz"
LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="custom-cflags"
src_compile() {
use custom-cflags || strip-flags
econf \
--enable-cckd-bzip2 \
--enable-het-bzip2 \
--enable-setuid-hercifc \
--enable-custom="Gentoo Linux ${PF}.ebuild" \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake -j1 DESTDIR="${D}" install || die
dohtml -r html/
insinto /usr/share/hercules
doins hercules.cnf
dodoc README.* RELEASE.NOTES CHANGES
}

@ -1,43 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/hercules/hercules-3.07.ebuild,v 1.2 2010/09/07 21:18:58 vapier Exp $
inherit eutils flag-o-matic
DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator"
HOMEPAGE="http://www.hercules-390.org/"
SRC_URI="http://www.hercules-390.org/${P}.tar.gz"
LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="custom-cflags"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e 's:@modexecdir@:$(libdir)/$(PACKAGE):' \
-e '/^AM_CPPFLAGS/s:=:= -DMODULESDIR=\\"$(modexecdir)\\" :' \
$(find -name Makefile.in)
sed -i '/MODULESDIR/d' config.h.in
}
src_compile() {
use custom-cflags || strip-flags
econf \
--enable-cckd-bzip2 \
--enable-het-bzip2 \
--enable-setuid-hercifc \
--enable-custom="Gentoo ${PF}.ebuild" \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
insinto /usr/share/hercules
doins hercules.cnf
dodoc README.* RELEASE.NOTES CHANGES
dohtml -r html
}

@ -1,5 +1,2 @@
DIST libspectrum-0.2.2.tar.gz 386960 SHA256 bdcc47ef44881346bfd06bbbbd631fb658905e5274f2b68c4bddac1a4243cbf9 SHA512 28c7fff48624b73452a4e00b3b529ec1019a86feed07f7ff70206a961f019a3f3e3ed84f709f435c507c956d252744fbebe2f6d426db019f5486284934c5339e WHIRLPOOL 4691011c97db4c34809877f61d2d1f11728a3fd75151e4f266305a14dc224b25fcdf745ef2953943e8adc51ce2114c3b368fe306eb683a06090645c7f296661d
DIST libspectrum-0.4.0.tar.gz 470513 SHA256 adddb56806d16b7853642734c2f99460dbb174b5f775ca3a756735eaab0e7ebe SHA512 4c032a9d44f7232a9fdb7dff27ca5a954fa61804be64f906535ce8fb2ec5f2886ed3b5d6637e50b327951f225811e33990d08311a570941444ba06b0a58dad31 WHIRLPOOL e210ce0dd85f7ae45898ba76a22f06026ed5e85eb31c9bfeaef563a6465e6391be24855da49f06b24f9d6369396948e7b1350c94cc6e4de89ad814ec0300597b
DIST libspectrum-0.5.0.1.tar.gz 490943 SHA256 fda2f69d54c9f4c96778b8a8c52e0151759a4aec9e7989b9684701791ba0560d SHA512 b0a9501e4e6f920c04ea31e61a1e88e738ef1ab1c190961892a398f90e44c08eb8e886ff260d29448e95a70f5ddab52a67d3c1655b7a56bf3dc24cfd7bb7c768 WHIRLPOOL 04189e5e4a0662ef0ed780e35f4e5b1f11341e526f0d56746f45498c30dd25c7e7ace45ecc850732e347b9024ffdc9c8a74a56cf57843dc646876ba004533957
DIST libspectrum-1.0.0.tar.gz 462552 SHA256 cdf8f5006676c0f68939e331eeadeda5d608d777f1234b080b97f677f1dd287c SHA512 1ed3e36e9d62d69b470e959509d2a56e5a3608a9ea9f3f6f0ddd78e4f5f4a75da957e4120a0ffdf6366c3e90e148de9d83954fc711414389687e55bbc91f1bc8 WHIRLPOOL bf245f20181c82bae9e985e230729c3f341134f84239d82133231b2de5d8fe61533a1e11a9004b6d5a0971bdd97622ba453912522c66292b82715a5a937d351b
DIST libspectrum-1.1.1.tar.gz 502942 SHA256 178d3607af2109b6b8dafac4f91912745b9f3c087319945c3a886bb7fe7989d5 SHA512 61197c8d1d6b4b595b55cf7e8f8c43423935291a9fbc688f1bb06d4c3ef53dbcf391a96f0528443518c2ca2d6fe187ee56d5ed915702f13a16ad44aa16037f49 WHIRLPOOL c89c7c3183f9d960dcedf789c763687e66cdaea1b2c41fdd41c1f1b0484cc9039790415bf8f231ff2bea0914fe2ababfd6d174338141bee13859521bf73caa92

@ -1,52 +0,0 @@
--- libspectrum-0.5.0.1/configure.in 2009-01-14 20:50:55.000000000 +0100
+++ configure.in 2009-01-24 16:10:53.000000000 +0100
@@ -65,11 +65,19 @@
CPPFLAGS="$CPPFLAGS -I$prefix/include"; LDFLAGS="$LDFLAGS -L$prefix/lib"
fi)
-dnl Check for zlib (the UNIX version is called z, Win32 zdll)
-AC_CHECK_HEADERS(
- zlib.h,
- AC_SEARCH_LIBS(compress2, z zdll)
-)
+dnl Check whether to use zlib (the UNIX version is called z, Win32 zdll)
+AC_MSG_CHECKING(whether to use zlib)
+AC_ARG_WITH(zlib,
+[ --without-zlib don't use zlib],
+if test "$withval" = no; then zlib=no; else zlib=yes; fi,
+zlib=yes)
+AC_MSG_RESULT($zlib)
+if test "$zlib" = yes; then
+ AC_CHECK_HEADERS(
+ zlib.h,
+ AC_SEARCH_LIBS(compress2, z zdll)
+ )
+fi
dnl Check whether to use libgcrypt
AC_MSG_CHECKING(whether to use libgcrypt)
@@ -82,11 +90,19 @@
AC_CHECK_HEADERS(gcrypt.h,LIBS="$LIBS -lgcrypt")
fi
-dnl Check for libbz2 1.0 or greater
-AC_CHECK_HEADER(
- bzlib.h,
- AC_CHECK_LIB(bz2,BZ2_bzDecompressInit)
-)
+dnl Check whether to use libbz2 (1.0 or greater)
+AC_MSG_CHECKING(whether to use libbz2)
+AC_ARG_WITH(bzip2,
+[ --without-bzip2 don't use libbz2],
+if test "$withval" = no; then bzip2=no; else bzip2=yes; fi,
+bzip2=yes)
+AC_MSG_RESULT($bzip2)
+if test "$bzip2" = yes; then
+ AC_CHECK_HEADER(
+ bzlib.h,
+ AC_CHECK_LIB(bz2,BZ2_bzDecompressInit)
+ )
+fi
dnl Either find glib or use the replacement
AC_MSG_CHECKING(whether to use glib)

@ -1,28 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/libspectrum-0.2.2-r1.ebuild,v 1.7 2012/05/03 18:49:07 jdhore Exp $
DESCRIPTION="Spectrum emulation library"
HOMEPAGE="http://www.srcf.ucam.org/~pak21/spectrum/libspectrum.html"
SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="amd64 ppc x86"
RDEPEND=">=dev-libs/glib-2
dev-libs/libgcrypt
dev-lang/perl"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_compile() {
econf --with-glib || die
emake -j1 || die "libspectrum make failed!"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog README THANKS doc/*.txt *.txt
}

@ -1,33 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/libspectrum-0.4.0.ebuild,v 1.3 2012/05/03 18:49:07 jdhore Exp $
DESCRIPTION="Spectrum emulation library"
HOMEPAGE="http://fuse-emulator.sourceforge.net/libspectrum.php"
SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="audiofile bzip2 zlib"
RDEPEND="zlib? ( sys-libs/zlib )
bzip2? ( >=app-arch/bzip2-1.0 )
>=dev-libs/glib-2
audiofile? ( >=media-libs/audiofile-0.2.3 )"
DEPEND="${RDEPEND}
dev-lang/perl
virtual/pkgconfig"
src_compile() {
econf --with-glib \
$(use_with audiofile libaudiofile) \
|| die "econf failed!"
emake || die "emake failed!"
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog README THANKS doc/*.txt *.txt
doman doc/libspectrum.3
}

@ -1,46 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libspectrum/libspectrum-0.5.0.1.ebuild,v 1.3 2012/05/03 18:49:07 jdhore Exp $
inherit eutils autotools
DESCRIPTION="Spectrum emulation library"
HOMEPAGE="http://fuse-emulator.sourceforge.net/libspectrum.php"
SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="audiofile bzip2 zlib"
RDEPEND="zlib? ( sys-libs/zlib )
bzip2? ( >=app-arch/bzip2-1.0 )
>=dev-libs/glib-2
audiofile? ( >=media-libs/audiofile-0.2.3 )"
DEPEND="${RDEPEND}
dev-lang/perl
virtual/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
#submitted upstream at:
# http://sf.net/tracker/index.php?func=detail&aid=2533274&group_id=91293&atid=596650
epatch "${FILESDIR}/${P}-without-bzip2_zlib.patch"
eautoreconf
}
src_compile() {
econf --with-glib \
$(use_with zlib zlib) \
$(use_with bzip2 bzip2) \
$(use_with audiofile libaudiofile) \
|| die "econf failed!"
emake || die "emake failed!"
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog README THANKS doc/*.txt *.txt
doman doc/libspectrum.3
}

@ -1,5 +1,2 @@
DIST softgun-0.11.tgz 206893 SHA256 6ab9e2ff8f77c88f88bcda03849292b2e19bd797955ba18b10ac663e62251638 SHA512 3c7057416aa042a0c3cf319b99fad0591b25976ccd9783c1806000e729a8f244b384e6b3acad9cea5e003eb618fddf2bcb81e7b23a96d48a985cd59ae2a02e5c WHIRLPOOL 81e21b774396d871d1628294d09d6442f575f00b20fa60053399a2fc6ec11a7703fb8ab95cf64eb5c5250481fae7e4071dc4ab47f7a2991278f66ab04b786206
DIST softgun-0.16.tgz 572445 SHA256 86dc0bdcf570233df2d54bffbdd7aa06a28593bac30550dde79ddefc10e56ef0 SHA512 c4a937ca92f44304d98b8a9375d7380c976f7357cf4ae04fdb471e99b3ea5e8194fd784a196aec130162b74091a0644788c8bbc1936e6f6d6a66518eae844fc6 WHIRLPOOL 01974c00ed4f355bb10710ff9052c8872fd4edc60b6f02dbd4a6e72bdb4e61f10065fa2d5093721336c7e3e7dedc44343a33a8012042eb3a4dff39ba2b5488e4
DIST softgun-0.19.tgz 980765 SHA256 53fdd189895ad1b3a1ba3b4e78160138678d06d4aab0319d4bfa6d89ac76f3cd SHA512 a8c4ee1a40ed2b055937be73d9173d1908d83b0f2e2f5e8c6939db07d14bb815d8868caeb58eb7ff1b0ae9be26b3feb2ee1dd076409641613acf54675b239f14 WHIRLPOOL fd7f6a25f21f2a4e75d4ba1c319123c948221f75c0bb92964db7603cc45b03cbfd8736ac0765f8193c290b02d2a4e941b58f26d665f0a09f9163a39a3a638acc
DIST softgun-0.21.tgz 1126433 SHA256 a133b6d1062545cbad78442902c9b447bc8307b08e055933fed177659b34eea5 SHA512 145c6e8407e57353212dcb7ab8193c9b5d5c7fa6271dfbe3f4637c236b07989ef61729f55850da14639dc7d7d64ad5b68c73783e634dc5d2763865977c62ca8a WHIRLPOOL a4fcaae3846ecedb863d16673630cc5b7346af010dc21fd4161b7a5a3ec8af24a1a4db018835f0b2860cc06aed4843aaba41cc47ef18a91ae5c5933e7f82be08
DIST softgun-0.22.tgz 1239881 SHA256 413d0137a3ee588ab76703058d9bc132f25b4f760ff5a97d6150ffe2f9d2e2fb SHA512 5c13840874b09aab6c0921d705c0ea94da87cc1a80d2fcbc9f329ade25f33bb2c8eba2fe284b4c3b41e70b8f258a45fc83caa296880bfa3e7870994de587e591 WHIRLPOOL cbbb2745b9e5cf72a18fcea87c604078db436ec6376c918920f31132fdfae246fea6f9279260787e25481e43013e200e19a9b7aef05ccd469caaa84c9effb34d

@ -1,54 +0,0 @@
diff -ru softgun-0.19.orig/config.mk softgun-0.19/config.mk
--- softgun-0.19.orig/config.mk 2010-11-12 15:13:47.000000000 +0100
+++ softgun-0.19/config.mk 2010-11-12 15:14:39.000000000 +0100
@@ -16,10 +16,10 @@
SHAREDCFLAGS=-fPIC -nostdlib -D_SHARED_
SHAREDLDFLAGS=-nostdlib -shared
ifeq ($(shell uname),Linux)
-LDFLAGS=-rdynamic -lpthread -ldl -lrt -lm -lz -lasound
+LIBS=-rdynamic -lpthread -ldl -lrt -lm -lz -lasound
else
ifeq ($(shell uname),FreeBSD)
- LDFLAGS=-rdynamic -lpthread -lm -lz -lSDL
+ LIBS=-rdynamic -lpthread -lm -lz -lSDL
else
$(error Unknown architecture)
endif
diff -ru softgun-0.19.orig/Makefile softgun-0.19/Makefile
--- softgun-0.19.orig/Makefile 2010-11-12 15:13:47.000000000 +0100
+++ softgun-0.19/Makefile 2010-11-12 15:14:27.000000000 +0100
@@ -116,10 +116,10 @@
wgew: $(OBJS)
- $(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
softgun_be: $(OBJS_BE)
- $(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
boards/libboards.a:
$(MAKE) -C boards libboards.a
diff -ru softgun-0.19.orig/printer/module.mk softgun-0.19/printer/module.mk
--- softgun-0.19.orig/printer/module.mk 2010-11-12 15:13:47.000000000 +0100
+++ softgun-0.19/printer/module.mk 2010-11-12 15:14:59.000000000 +0100
@@ -5,5 +5,5 @@
INSTALL_BINS += pcl3gui2png
pcl3gui2png: $(PRINTER_OBJS) printer/pcl3gui2png.c
- $(CC) -o $@ $(PRINTER_OBJS) printer/pcl3gui2png.c
+ $(CC) $(LDFLAGS) -o $@ $(PRINTER_OBJS) printer/pcl3gui2png.c
diff -ru softgun-0.19.orig/tools/Makefile softgun-0.19/tools/Makefile
--- softgun-0.19.orig/tools/Makefile 2010-11-12 15:13:47.000000000 +0100
+++ softgun-0.19/tools/Makefile 2010-11-12 15:15:19.000000000 +0100
@@ -1,7 +1,7 @@
include ../config.mk
sg_tunctl: tunctl.c
- $(CC) $(CFLAGS) tunctl.c -o sg_tunctl
+ $(CC) $(CFLAGS) $(LDFLAGS) tunctl.c -o sg_tunctl
install:
install -m 0755 sg_tunctl $(bindir)

@ -1,37 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.11.ebuild,v 1.2 2007/01/25 22:53:19 genone Exp $
inherit toolchain-funcs
DESCRIPTION="ARM software emulator"
HOMEPAGE="http://softgun.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/^CFLAGS/s:-O9.*-fomit-frame-pointer:${CFLAGS}:" \
config.mk || die "sed config.mk failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die "Make feiled"
}
src_install() {
dodir /usr/bin
make install prefix="${D}/usr" || die "Install failed"
dodoc README configs/defaultconfig
}
pkg_postinst() {
elog "To create a configuration file, run as user:"
elog " gzcat /usr/share/doc/${PF}/defaultconfig.gz > ~/.emuconfig"
}

@ -1,32 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild,v 1.2 2010/01/04 03:33:11 flameeyes Exp $
inherit toolchain-funcs
DESCRIPTION="ARM software emulator"
HOMEPAGE="http://softgun.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/^CFLAGS/s:-O9.*-fomit-frame-pointer:${CFLAGS}:" \
config.mk || die "sed config.mk failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
dodir /usr/bin
emake install prefix="${D}/usr" || die
dodoc README configs/*.sg
}

@ -1,33 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.19.ebuild,v 1.1 2010/11/12 17:15:27 maekke Exp $
EAPI=2
inherit toolchain-funcs eutils
DESCRIPTION="ARM software emulator"
HOMEPAGE="http://softgun.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE=""
src_prepare() {
epatch "${FILESDIR}"/${P}-make.patch
sed -i \
-e "/^CFLAGS/s:-O9.*-Werror:${CFLAGS}:" \
config.mk || die "sed config.mk failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
dodir /usr/bin
emake install prefix="${D}/usr" || die
dodoc README configs/*.sg
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/freemind/freemind-1.0.1-r1.ebuild,v 1.4 2015/06/29 07:59:59 monsieurp Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/freemind/freemind-1.0.1-r1.ebuild,v 1.5 2015/07/23 02:12:11 patrick Exp $
EAPI="5"
@ -27,11 +27,11 @@ CDEPEND="
latex? ( dev-java/hoteqn:0 )
pdf? (
dev-java/batik:1.8
dev-java/fop:2
dev-java/fop:0
)
svg? (
dev-java/batik:1.8
dev-java/fop:2
dev-java/fop:0
)"
DEPEND="${CDEPEND}
>=virtual/jdk-1.6

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/freemind/freemind-1.0.1-r2.ebuild,v 1.1 2015/07/17 13:01:29 monsieurp Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/freemind/freemind-1.0.1-r2.ebuild,v 1.2 2015/07/23 02:12:11 patrick Exp $
EAPI="5"
@ -27,7 +27,7 @@ CDEPEND="
latex? ( dev-java/hoteqn:0 )
pdf? (
dev-java/batik:1.8
dev-java/fop:2
dev-java/fop:0
)
svg? (
dev-java/batik:1.8

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/libreoffice-bin-debug-4.4.4.3.ebuild,v 1.1 2015/07/21 23:36:24 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin-debug/libreoffice-bin-debug-4.4.4.3.ebuild,v 1.3 2015/07/22 19:34:07 ago Exp $
EAPI=5
@ -47,7 +47,7 @@ SRC_URI="
IUSE="gnome java kde"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
KEYWORDS="-* amd64 x86"
RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.4.4.3.ebuild,v 1.1 2015/07/21 23:35:28 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-4.4.4.3.ebuild,v 1.3 2015/07/22 19:34:03 ago Exp $
EAPI=5
@ -55,7 +55,7 @@ SRC_URI="
IUSE="gnome java kde"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
KEYWORDS="-* amd64 x86"
BIN_COMMON_DEPEND="
=app-text/libexttextcat-3.4*

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-4.4.4.3.ebuild,v 1.1 2015/07/12 19:08:00 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-4.4.4.3.ebuild,v 1.3 2015/07/22 19:33:58 ago Exp $
EAPI=5
@ -14,7 +14,7 @@ BASE_SRC_URI="http://download.documentfoundation.org/${PN/-l10n/}/stable/${MY_PV
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
IUSE="offlinehelp"
#

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.4.4.3.ebuild,v 1.1 2015/07/12 20:54:02 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.4.4.3.ebuild,v 1.3 2015/07/22 19:33:54 ago Exp $
EAPI=5
@ -90,7 +90,7 @@ unset lo_xt
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
[[ ${PV} == *9999* ]] || \
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
COMMON_DEPEND="
${PYTHON_DEPS}

@ -1,49 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/etc-proposals/etc-proposals-1.4.3-r2.ebuild,v 1.5 2011/01/15 16:00:40 maekke Exp $
EAPI=3
PYTHON_DEPEND="2:2.5"
inherit distutils
DESCRIPTION="a set of tools for updating gentoo config files"
HOMEPAGE="http://developer.berlios.de/projects/etc-proposals/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
IUSE="gtk qt4"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
DEPEND="gtk? ( >=dev-python/pygtk-2.10 )
qt4? ( >=dev-python/PyQt4-4.1.1[X] )"
RDEPEND="${DEPEND}"
PYTHON_MODNAME="etcproposals"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_install(){
distutils_src_install
dosbin "${D}"/usr/bin/etc-proposals
rm -rf "${D}"/usr/bin
# Bug 308725: Filter out the "PreferedFrontends" based on USE Flags:
use qt4 || sed -i -e '/^PreferedFrontends=/ s/qt4,//' "${D}"/etc/etc-proposals.conf
use gtk || sed -i -e '/^PreferedFrontends=/ s/gtk2,//' "${D}"/etc/etc-proposals.conf
}
pkg_postinst() {
distutils_pkg_postinst
elog "The configuration file has been installed to /etc/etc-proposals.conf"
elog "If you are installing etc-proposals for the first time or updating"
elog "from a version < 1.3 you should run the following command once:"
elog "etc-proposals --init-db"
ewarn "A full backup of /etc and other files managed by CONFIG_PROTECT"
ewarn "is highly advised before testing this tool!"
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild,v 1.4 2015/07/15 09:21:55 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/dvipsk/dvipsk-5.994_p20140525.ebuild,v 1.5 2015/07/22 19:17:11 blueness Exp $
EAPI=4
@ -29,7 +29,7 @@ SRC_URI="${SRC_URI} ) "
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc source"
DEPEND=">=dev-libs/kpathsea-6.2.0"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libetonyek/libetonyek-0.1.3.ebuild,v 1.2 2015/07/19 16:21:36 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libetonyek/libetonyek-0.1.3.ebuild,v 1.4 2015/07/22 19:33:21 ago Exp $
EAPI=5
@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
SLOT="0"
[[ ${PV} == 9999 ]] || \
KEYWORDS="~amd64 ~arm ~x86"
KEYWORDS="amd64 ~arm x86"
IUSE="doc static-libs test"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libexttextcat/libexttextcat-3.4.4.ebuild,v 1.1 2015/04/04 23:37:57 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libexttextcat/libexttextcat-3.4.4.ebuild,v 1.3 2015/07/22 19:33:16 ago Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/liblangtag-0.5.6.ebuild,v 1.2 2015/05/23 20:41:39 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/liblangtag/liblangtag-0.5.6.ebuild,v 1.4 2015/07/22 19:33:24 ago Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="https://bitbucket.org/tagoh/${PN}/downloads/${P}.tar.bz2"
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
KEYWORDS="amd64 ~arm ~ppc x86"
IUSE="introspection static-libs test"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libmwaw/libmwaw-0.3.5.ebuild,v 1.1 2015/05/22 22:53:42 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libmwaw/libmwaw-0.3.5.ebuild,v 1.3 2015/07/22 19:33:29 ago Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
KEYWORDS="amd64 ~arm x86"
IUSE="doc static-libs"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/libodfgen-0.1.4.ebuild,v 1.1 2015/05/22 22:50:16 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/libodfgen-0.1.4.ebuild,v 1.3 2015/07/22 19:33:33 ago Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz"
LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/mythes-1.2.4.ebuild,v 1.1 2014/12/27 21:18:50 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/mythes-1.2.4.ebuild,v 1.3 2015/07/22 19:33:13 ago Exp $
EAPI=5
@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/hunspell/MyThes/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
RDEPEND="app-text/hunspell"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild,v 1.4 2015/07/15 09:28:35 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ps2pkm/ps2pkm-1.5_p20140525.ebuild,v 1.5 2015/07/22 19:18:20 blueness Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=">=dev-libs/kpathsea-6.2.0"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild,v 1.4 2015/07/15 09:33:52 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2014-r4.ebuild,v 1.5 2015/07/22 19:44:29 blueness Exp $
EAPI=5
@ -69,7 +69,7 @@ for i in ${TL_CORE_EXTRA_SRC_MODULES}; do
done
SRC_URI="${SRC_URI} )"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~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 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="cjk X doc source tk xetex"
TEXMF_PATH=/usr/share/texmf-dist

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/texlive-2014.ebuild,v 1.4 2015/07/12 18:15:22 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/texlive/texlive-2014.ebuild,v 1.5 2015/07/22 19:43:26 blueness Exp $
EAPI="5"
@ -10,7 +10,7 @@ SRC_URI=""
LICENSE="metapackage"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="cjk context detex dvi2tty extra epspdf games graphics
humanities jadetex luatex metapost music omega pdfannotextractor png pstricks publishers
science tex4ht texi2html truetype xetex xindy xml X"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild,v 1.2 2015/07/15 09:35:38 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/ttf2pk2/ttf2pk2-2.0_p20140525.ebuild,v 1.3 2015/07/22 19:51:06 blueness Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
# Note about blockers: it is a freetype2 based replacement for ttf2pk and

@ -1,2 +1 @@
DIST cbind-6.0.1.tar.bz2 69865 SHA256 dd602e065e1c925995c1b5bdaaef338f94053bfd4391f18527ce96e8ca521689 SHA512 160535ac298ad5e2873cc3de5455a25750dba6df9c7a56a28474a02985b8f7ffdab0039392586e742b0fea1e4e8dcddef2e674205b0b408459b768a0dc1a5b05 WHIRLPOOL 3b8f59643990c8d30f70cfabd83937d28ec0a6f9bdf0274e1cb007cac8433d6534107a658c296f7bb14c07d7a04ebd62f56c0bbe1e421b2815f68a733d382476
DIST cbind-6.0.tar.bz2 69853 SHA256 dc4a0c67ac0066f065f1424cd6682d70036bb428fd1a85aeb85d760be9a519cb SHA512 f8ee658363a745e44261d29072f494b92e56f679cfaabc02520b8a4c7eff2182ca165fcdf91be07eca05bb9ceadb60c3c473ccee9739f119b0086292ec2780b4 WHIRLPOOL 25b496635bdae944bbb15d0b3e43bdddb0333c83d5164fb525f7894494f07df576b57933cc45bd6f1856764e5c1a1751d3d1800ba9123dd3d802a1e8c375cc0b

@ -1,28 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/cbind/cbind-6.0.ebuild,v 1.9 2014/08/10 19:53:11 slyfox Exp $
# !NOTE!
# this is a utility, no libs generated, no reason to do the gnat.eclass dance
# so, "inherit gnat" should not appear here!
DESCRIPTION="This tool is designed to aid in the creation of Ada bindings to C"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
HOMEPAGE="http://www.rational.com/"
LICENSE="GMGPL"
DEPEND="virtual/ada"
RDEPEND="${DEPEND}"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
src_compile() {
MAKEOPTS="${MAKEOPTS} -j1" emake || die
}
src_install () {
make PREFIX="${D}"/usr/ install || die
dodoc README DOCS
}

@ -1,2 +1 @@
DIST florist-2006.0.tar.bz2 177530 SHA256 ed379c0e1f5d57342dfb199b014ec5ce41cc81d109951de00f8ea2757e433d10 SHA512 0a28ed2b6b958f746ed1d778585f2af9492234476611a0f477d1279d559b8799b78b613c861f3ae1132050be62fe2a2224232f6398d6c8679bd4dbb82767b9b2 WHIRLPOOL f21516cdcc1a5778bf73eb0013e1392ee8a51538dab2ed6ebb67d4d917c138ed707a7b96b89fb95cad0cc15b014653f193908c85925456ba3e1a038adc896153
DIST florist-2007.0.tar.bz2 167089 SHA256 e6047390bba1fc70feeafd2009a7a00b6bb6126bb64520e0c0f973aa6ced838a SHA512 b04f947e08c48364fd339cf0e6437c2f5d869f2195d9b364ddd95b364b481d525a6784f39d55b9f0d495b3a0e8966b2a4821e086e79901ffcd330da42395beca WHIRLPOOL f2b170f78a982bfeb629b2ceb69b476ff0fa50476ddc8688b9b13dd401205866f9d2c21c9c5d79cce2db3c527a15eca93ed70630f1ab16cad5e59dd2f37774a9

@ -1,53 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/florist/florist-2006.0.ebuild,v 1.5 2008/01/23 22:22:31 george Exp $
inherit gnat libtool
IUSE=""
DESCRIPTION="Posix bindings for Ada"
HOMEPAGE="http://libre2.adacore.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="virtual/ada"
lib_compile()
{
elibtoolize
econf || die "econf failed"
emake || die "make failed"
make floristlib || die "building library failed"
einfo "lib_compile completed"
}
# NOTE: we are using $1 - the passed gnat profile name
lib_install()
{
# install goal is just (access violating) mkdir and 2 cp's
# instead move stuff properly here
cp -rp ${SL}/floristlib/{libflorist.a,*.ali} ${DL}
chmod 0444 ${DL}/*.ali
}
src_install ()
{
# install sources
dodir ${AdalibSpecsDir}/${PN}
insinto ${AdalibSpecsDir}/${PN}
doins -r *.ad{b,s} *.c *.gpb gnatsocks/
#set up environment
#echo "PATH=%DL%/bin" > ${LibEnv}
echo "LDPATH=%DL%" >> ${LibEnv}
echo "ADA_OBJECTS_PATH=%DL%" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=/usr/include/ada/${PN}" >> ${LibEnv}
gnat_src_install
dodoc README
}

@ -1,3 +1 @@
DIST GtkAda-2.4.0.tgz 3235169 SHA256 1c80eaa850eb87101188ea4d5145b7a8093b99ff99466c1f9f17a737828cd43e SHA512 6846e39e46fa1c2f4937d9d92a7a285c6df42fc6fade38e88358be1b1e95b857edef0527829b970912c7d5dda521a481424ec4e57680374ec178ccbf49e82af1 WHIRLPOOL 27c8ffc106f6ab242933040aff0b723380e8aac2ed455f31c89844658a1effd9f6973945d48a12d804a92509484abff350defd376e340cb7cbdb2c7203492c9e
DIST GtkAda-gpl-2.10.0.tgz 5519438 SHA256 f5a1a4efecaf99ce7cdaecfa4df7b6935be03692c9b68d8c746a58cca1137a30 SHA512 5162a5c75d5bf9e6f7f6d5f9b54680d7b4fb1265010630d96e9054b9d1993b8f06c63533f6fdbdc6f7b2137c3d88fb7fec06d0ca1460014e701a2469b280d173 WHIRLPOOL 4454e4824b036f6e5072b5d6b042213bbca5ffd27e4c7a6e903f41e0806bc8b232b439fc7480c533c10bab0ac65c40513364c4f266c8f367eda5cdcd76bcefe8
DIST GtkAda-gpl-2.8.0.tgz 2833063 SHA256 e1ab10d87f26daf7846ca4b1eefb8532f43a74b40348a2545b7046291b113fb0 SHA512 19c24e44cacbce36759fbb0896e33ae887db4b4c7138d6dcf011e592b40baab4cdcf49ff42f7c8f9fcb991f1b6dc5c233fa4e33365cb00fae2c0bcdec97525fa WHIRLPOOL ab10f395514408cceb5dcef5a2e1ccb686adb61c4ab23dcf876f12a4a71c4de9a83fed199a539eb6bf39720acc90633f11aa6d3bc2a4499e7d1f733c5fc726c5

@ -1,97 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/gtkada/gtkada-2.4.0-r2.ebuild,v 1.6 2007/12/28 22:40:13 george Exp $
inherit eutils gnat
Name="GtkAda"
DESCRIPTION="Gtk+ bindings to the Ada language"
HOMEPAGE="https://libre2.adacore.com/GtkAda/"
SRC_URI="mirror://gentoo/${Name}-${PV}.tgz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls opengl"
DEPEND="virtual/ada
>=x11-libs/gtk+-2.2.0
>=sys-apps/sed-4"
RDEPEND=""
S="${WORKDIR}/${Name}-${PV}"
# a location to temporarily keep common stuff installed by make install
CommonInst="${WORKDIR}/common-install"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s|-I\$prefix/include|-I${AdalibSpecsDir}|" \
src/gtkada-config.in
}
lib_compile() {
# some profile specific fixes first
sed -i -e "s|-L\$prefix/include|-L${AdalibLibTop}/$1|" \
src/gtkada-config.in
# ATTN! Check if this is fixed when new version comes out!
# this one fails on 4.1 without and 3.4 with..
if [[ $(get_gnat_SLOT $1) > 3.4 ]] ; then
epatch "${FILESDIR}"/${P}.patch
fi
local myconf
use opengl && myconf="--with-GL=auto" || myconf="--with-GL=no"
econf ${myconf} $(use_enable nls) || die "./configure failed"
make GNATFLAGS="${ADACFLAGS}" || die
}
lib_install() {
make prefix=${DL} \
incdir=${DL}/adainclude \
libdir=${DL}/adalib \
alidir=${DL}/adalib \
install || die
# move common stuff out of $DL
if [[ -d "${CommonInst}" ]] ; then
# we need only one copy, its all identical
mv "${DL}"/adainclude/gtkada-mdi.adb "${DL}"
rm -rf "${DL}"/{adainclude/*,doc,projects,share}
mv "${DL}"/gtkada-mdi.adb "${DL}"/adainclude/
else
mkdir "${CommonInst}"
mv ${DL}/{adainclude,doc,projects,share} "${CommonInst}"
# one .adb file has profile-specific fixes..
mkdir "${DL}"/adainclude
mv "${CommonInst}"/adainclude/gtkada-mdi.adb "${DL}"/adainclude/
fi
}
src_install() {
#set up environment
echo "PATH=%DL%/bin" > ${LibEnv}
echo "LDPATH=%DL%/adalib" >> ${LibEnv}
echo "ADA_OBJECTS_PATH=%DL%/adalib" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=%DL%/adainclude:/usr/lib/ada/adainclude/${PN}" >> ${LibEnv}
gnat_src_install
#specs
cd "${CommonInst}"
dodir "${AdalibSpecsDir}/${PN}"
insinto "${AdalibSpecsDir}/${PN}"
doins "${CommonInst}"/adainclude/*
#docs
cd "${S}"
dodoc ANNOUNCE AUTHORS README
cd "${CommonInst}"
cp -dPr doc/${Name}/* share/${PN}/examples/ "${D}/usr/share/doc/${PF}"
}

@ -1,110 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ada/gtkada/gtkada-2.8.0.ebuild,v 1.10 2009/08/01 22:56:55 flameeyes Exp $
inherit eutils gnat versionator
Name="GtkAda-gpl"
MajorPV=$(get_version_component_range 1-2)
DESCRIPTION="Gtk+ bindings to the Ada language"
HOMEPAGE="https://libre.adacore.com/GtkAda/"
SRC_URI="mirror://gentoo/${Name}-${PV}.tgz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE="nls opengl"
DEPEND="virtual/ada
>=dev-libs/glib-2.8.0
>=x11-libs/pango-1.10.0
>=dev-libs/atk-1.10.0
>=x11-libs/gtk+-2.8.13
>=sys-apps/sed-4"
RDEPEND=""
S="${WORKDIR}/${Name}-${PV}"
# only needed for gcc-3.x based gnat profiles, but matching them individually
# would be insane
QA_EXECSTACK="${AdalibLibTop:1}/*/gtkada/libgtkada-${MajorPV}.so.0"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s:-aI\$prefix/include/gtkada:-aI${AdalibSpecsDir}/gtkada:" \
src/gtkada-config.in
# disable building tests to avoid waisting time while building for every
# profile. The tests are nonetheless installed under doc dir.
sed -i -e "/testgtk_dir/d" Makefile.in
# remove lib stripping
find src/ -name Makefile.in -exec sed -i -e "/strip/d" {} \;
}
lib_compile() {
# some profile specific fixes first
sed -i -e "s:\$prefix/lib\(/gtkada\)*:${AdalibLibTop}/$1/gtkada:" \
src/gtkada-config.in
local myconf
use opengl && myconf="--with-GL=auto" || myconf="--with-GL=no"
econf ${myconf} $(use_enable nls) || die "./configure failed"
# bug #279962
emake -j1 GNATFLAGS="${ADACFLAGS}" || die
}
lib_install() {
# make install misses all the .so and .a files and otherwise creates more
# problems than it's worth. Will do everything manually
mkdir -p ${DL}
cp src/*.ali src/gtkada-config ${DL}
find -iname "*.a" -exec mv {} ${DL} \;
find -iname "*.so*" -exec mv {} ${DL} \;
}
src_install() {
#set up environment
echo "PATH=%DL%" > ${LibEnv}
echo "LDPATH=%DL%" >> ${LibEnv}
echo "ADA_OBJECTS_PATH=%DL%" >> ${LibEnv}
echo "ADA_INCLUDE_PATH=${AdalibSpecsDir}/${PN}" >> ${LibEnv}
gnat_src_install
#specs
cd "${S}"/src
dodir "${AdalibSpecsDir}/${PN}"
insinto "${AdalibSpecsDir}/${PN}"
doins *.ad? glade/*.ad? gnome/*.ad? opengl/*.{ad?,c,h}
#docs
cd "${S}"
dodoc ANNOUNCE AUTHORS README
cp -dPr examples/ testgtk/ "${D}/usr/share/doc/${PF}"
cd "${S}"/docs
doinfo gtkada_ug/gtkada_ug.info
ps2pdf gtkada_ug/gtkada_ug.ps
ps2pdf gtkada_rm/gtkada_rm.ps
cp gtkada_ug.pdf gtkada_rm.pdf "${D}/usr/share/doc/${PF}"
dohtml -r gtkada_ug/{gtkada_ug.html,boxes.gif,hierarchy.jpg}
cp -dPr gtkada_rm/gtkada_rm/ "${D}/usr/share/doc/${PF}/html"
# utility stuff
cd "${S}"
dodir "${AdalibDataDir}/${PN}"
insinto "${AdalibDataDir}/${PN}"
doins -r xml/gtkada.xml projects/
}
pkg_postinst() {
eselect gnat update
einfo "The environment has been set up to make gnat automatically find files for"
einfo "GtkAda. In order to immediately activate these settings please do:"
einfo " env-update && source /etc/profile"
einfo "Otherwise the settings will become active next time you login"
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/libcmis-0.5.0-r1.ebuild,v 1.1 2015/05/16 21:13:10 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/libcmis-0.5.0-r1.ebuild,v 1.3 2015/07/22 19:33:36 ago Exp $
EAPI=5
@ -18,7 +18,7 @@ SLOT="0.5"
# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
[[ ${PV} == 9999 ]] || \
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
IUSE="static-libs man test"

@ -2,4 +2,5 @@ DIST phpMyAdmin-4.0.10.10-all-languages.tar.xz 4775140 SHA256 5f4522227ad9ffce91
DIST phpMyAdmin-4.2.13.3-all-languages.tar.xz 5205440 SHA256 2d78bd91dc90d95d9f21c7e41294f2995a36dbbe1e4d1209e972b1d855c4877e SHA512 77ad296931666896613b7363c35c5546da66bddcda37fb31609ca5fb78f4b12241f6c976d1916a6491fbbc33d5f837163bcd0c0e0f227458d055076a971b640f WHIRLPOOL c4bb8f0689b0aa2ae7a67793f9c26b761e1a1e28e4e684f495815caf89ef527f4fced30aa53986c10d41ec000f3e295677739d5e73cbfc336466591c9fcf6a3e
DIST phpMyAdmin-4.3.12-all-languages.tar.xz 5370996 SHA256 2ef69b32af8dfb51523378b654b0d3ee58a08fc80ab7ef2d1bdc38e0e26956ce SHA512 d7bb599ed3f2d5674e0b03df519a8c7a293f8a2814b7d28dab66161e0e3eb40e8e4943f436d113829df5187d1b802cb53dad7495efbeccc64f79d2190df4d688 WHIRLPOOL a008f10f2901fe774af151ac28230f0eb0294d74213a1a0f95909d5c98dee543b81647dbe9d5f014513743aca5d00847871506d46f5dcaf430e4936c493ff8be
DIST phpMyAdmin-4.3.13.1-all-languages.tar.xz 5446988 SHA256 d7484e2449453eae52613aae59e5f3a9342014aba7db88598ad6a90504ebfbd3 SHA512 b08a41721876a4c7c8fcc162f0f1f43bbd67b4f87fc1c0668672addb8eb6f56695755401a2de2c75fc944b074f5187c6df942bec0ff03c16ad34c27b505b87a0 WHIRLPOOL a72b7e4247bb7de68820d5583967b04b8dfd0917383f88d707b48235d119e0ad4fd45a04352dda0f43b11b2ba4def5a4648eca01e2f7ceabd3f788e429dc83ca
DIST phpMyAdmin-4.4.12-all-languages.zip 9982178 SHA256 168c5ec097ae819f3491615e824cb7bfe1886b40f85db2f0f5722dc24a89a81f SHA512 b737ac5e804af38e5331e54a1edb040a98057e3abd06c1d93f3b6fbc4895041145ace5e8e7872f25448b2142aa06ae0f8eefc0cb8b098a6bbb3fd9c3ce1b048a WHIRLPOOL 5bf0abb0f470c0763a0c7e4a97f8c68c768d7e8d3361de9c6c569204fb385c49775a08827aa92037b7f3efa26f89eedb665e79a657d38dc1b6c589b27c6140ff
DIST phpMyAdmin-4.4.6.1-all-languages.tar.xz 5635832 SHA256 d423a81868f01b4ce77f90113d83df96590446acdbe8f00a46aeb670c4a9ac5c SHA512 d25c63f9d354ae3f488d1837c710cfc5bacde3d6421d71eb96ff5868971132ea570aad9875f35d862d22d0318b5e16b208a2d6a7d542424ee2a04e329a619978 WHIRLPOOL 8c5f5e9349e801e328ddafe89322e457b89bfa4c5dbe593be9990ac3168a5d0cfada260ef275388b95f2c806952a682445baff23d6092dd5a66766681759172b

@ -0,0 +1,62 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-4.4.12.ebuild,v 1.1 2015/07/23 02:30:18 jmbsvicetto Exp $
EAPI="5"
inherit eutils webapp
MY_PV=${PV/_/-}
MY_PN="phpMyAdmin"
MY_P="${MY_PN}-${MY_PV}-all-languages"
DESCRIPTION="Web-based administration for MySQL database in PHP"
HOMEPAGE="https://www.phpmyadmin.net/"
SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.zip"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
IUSE="setup"
RDEPEND="
dev-lang/php[crypt,ctype,filter,json,session,unicode]
|| (
dev-lang/php[mysqli]
dev-lang/php[mysql]
)
virtual/httpd-php:*
"
need_httpd_cgi
S="${WORKDIR}"/${MY_P}
pkg_setup() {
webapp_pkg_setup
}
src_install() {
webapp_src_preinst
dodoc README RELEASE-DATE-${MY_PV} ChangeLog || die
rm -f LICENSE README* RELEASE-DATE-${MY_PV}
if ! use setup; then
rm -rf setup || die "Cannot remove setup utility"
elog "The phpMyAdmin setup utility has been removed."
elog "It is a regular target of various exploits. If you need it, set USE=setup."
else
elog "You should consider disabling the setup USE flag"
elog "to exclude the setup utility if you don't use it."
elog "It regularly is the target of various exploits."
fi
insinto "${MY_HTDOCSDIR#${EPREFIX}}"
doins -r .
webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php
webapp_serverowned "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php
webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt
webapp_src_install
}

@ -1,3 +1 @@
DIST ecore-1.7.10.tar.bz2 3455136 SHA256 c3f27ab18517b85b286871c6c7ccf8e22347f0661502db0fbf401537fa5a4bb6 SHA512 24fbe064913c566f885a2e51185b1f1d37c62c0d03ba0d549e9715ba516fb6b3f630ad331f89f66e91de1401b06b01b16916650448dda11d5e1efa24e52eaf39 WHIRLPOOL 93c187d8e8481f016aef07cefc99621eed136f43055387d31936c1745ac7929f71443f40cd26873b0cca891342dbff818e31b709cfb28385414dc78c890edcae
DIST ecore-1.7.8.tar.bz2 3453891 SHA256 f3f97abc3a5dc91f4769eef4dd70de79a3daa36cddff52fa2a37b81e197c35f3 SHA512 f48c5580bdf2adbfafc07ec6528592a20f4a0e275e4186065cb11eebe27c0f502cbe4e2cce3c7d700fa9c6d05b1628ecc541b7ec82a01b1d9f21eb42c3070495 WHIRLPOOL 70b48a1bc8b699389904f70fb5757fc2c6f6b477f109a4f48962460352d25db33b1dd1978aaea36491cbf05bc0b6629a613d93634876c15be0de487413619530
DIST ecore-1.7.9.tar.bz2 3454403 SHA256 dedab13e9602c301b1a3be6fdc4bdb17b4d8adb802d7e2d468b3282af2640b65 SHA512 4f0ca04c7c1989b9788a5e284431a64919e88860cd233687e5afbc6fff540869d0ceac0a2a30c80fbe109494bffc076149caff838a9cddfb502226675e68ba3d WHIRLPOOL a7339cd277431ca2b4c663a9b0c2860ce44fa2a8487bbde1e8503bf4bcc0147c9b0c5ad4c4b2594b46541a876df510d81b921d5d631195a987f09bc55435e198

@ -1,232 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ecore/ecore-1.7.8.ebuild,v 1.1 2013/08/06 19:31:02 tommy Exp $
EAPI=2
#virtualx is required for tests, which are currently broken
#inherit virtualx
inherit enlightenment eutils
DESCRIPTION="Enlightenment's core event abstraction layer and OS abstraction layer"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="ares curl directfb +evas examples fbcon gles glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib wayland +X xcb xinerama xprint xscreensaver"
RDEPEND=">=dev-libs/eina-1.7.8
ares? ( net-dns/c-ares )
glib? ( dev-libs/glib )
curl? ( net-misc/curl )
gnutls? ( net-libs/gnutls )
!gnutls? ( ssl? ( dev-libs/openssl ) )
evas? (
>=media-libs/evas-1.7.8[directfb?,fbcon?,opengl?,X?,xcb?]
opengl? ( virtual/opengl )
wayland? (
>=media-libs/evas-1.7.8[directfb?,fbcon?,gles?,opengl?,wayland?,X?,xcb?]
)
)
directfb? ( >=dev-libs/DirectFB-0.9.16 )
tslib? ( x11-libs/tslib )
sdl? ( media-libs/libsdl )
wayland? ( dev-libs/wayland )
X? (
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrender
x11-libs/libXtst
xinerama? ( x11-libs/libXinerama x11-libs/libXrandr )
xprint? ( x11-libs/libXp )
xscreensaver? ( x11-libs/libXScrnSaver )
)
!X? ( xcb? ( x11-libs/xcb-util ) )"
DEPEND="${RDEPEND}"
#tests depend on temp data from eina WORKDIR
RESTRICT=test
#src_prepare() {
# sed -i "s:1.7.7:1.7.6:g" configure.ac
# eautoreconf
#}
src_configure() {
local SSL_FLAGS="" EVAS_FLAGS="" X_FLAGS=""
if use gnutls; then
if use ssl; then
einfo "You have enabled both 'ssl' and 'gnutls', so we will use"
einfo "gnutls and not openssl for ecore-con support"
fi
SSL_FLAGS="
--disable-openssl
--enable-gnutls
"
elif use ssl; then
SSL_FLAGS="
--enable-openssl
--disable-gnutls
"
else
SSL_FLAGS="
--disable-openssl
--disable-gnutls
"
fi
local x_or_xcb=""
if use X; then
x_or_xcb="X"
elif use xcb; then
x_or_xcb="xcb"
fi
if use evas; then
if use opengl && [[ -z "$x_or_xcb" ]]; then
ewarn "Ecore/Evas usage of OpenGL requires X11."
ewarn "Compile dev-libs/ecore with USE=X or xcb."
ewarn "Compiling without opengl support."
EVAS_FLAGS+="
--disable-ecore-evas-software-x11
--disable-ecore-evas-software-16-x11
"
else
EVAS_FLAGS+="
--enable-ecore-evas-software-x11
--enable-ecore-evas-software-16-x11
"
fi
EVAS_FLAGS+="
$(use_enable directfb ecore-evas-directfb)
$(use_enable fbcon ecore-evas-fb)
$(use_enable opengl ecore-evas-opengl-x11)
"
if use wayland ; then
EVAS_FLAGS+="
--enable-ecore-evas-wayland-shm
"
if use gles ; then
EVAS_FLAGS+="
--enable-ecore-evas-wayland-egl
"
else
EVAS_FLAGS+="
--enable-ecore-evas-wayland-egl
"
fi
else
EVAS_FLAGS+="
--disable-ecore-evas-wayland-egl
--disable-ecore-evas-wayland-shm
"
fi
else
EVAS_FLAGS+="
--disable-ecore-evas-directfb
--disable-ecore-evas-fb
--disable-ecore-evas-software-x11
--disable-ecore-evas-software-16-x11
--disable-ecore-evas-opengl-x11
--disable-ecore-evas-wayland-egl
--disable-ecore-evas-wayland-shm
"
if use opengl; then
ewarn "Ecore usage of OpenGL is dependent on media-libs/evas."
ewarn "Compile dev-libs/ecore with USE=evas."
fi
fi
if use X; then
if use xcb; then
ewarn "You have enabled both 'X' and 'xcb', so we will use"
ewarn "X as it's considered the most stable for ecore-x"
fi
X_FLAGS="
--enable-ecore-x
--disable-ecore-x-xcb
"
elif use xcb; then
X_FLAGS="
--enable-ecore-x
--enable-ecore-x-xcb
"
else
X_FLAGS="
--disable-ecore-x
--disable-ecore-x-xcb
"
fi
if [[ ! -z "$x_or_xcb" ]]; then
X_FLAGS+="
$(use_enable xinerama ecore-x-xinerama)
$(use_enable xprint ecore-x-xprint)
$(use_enable xscreensaver ecore-x-screensaver)
"
else
X_FLAGS+="
--disable-ecore-x-xinerama
--disable-ecore-x-xprint
--disable-ecore-x-screensaver
"
fi
if use tslib && ! use fbcon; then
ewarn "Ecore just uses tslib for framebuffer input."
ewarn "Compile dev-libs/ecore with USE=fbcon."
fi
MY_ECONF="
--enable-ecore-con
--enable-ecore-ipc
--enable-ecore-file
--enable-ecore-imf
--enable-ecore-input
--disable-ecore-win32
--disable-ecore-wince
--disable-ecore-evas-software-gdi
--disable-ecore-evas-software-ddraw
--disable-ecore-evas-direct3d
--disable-ecore-evas-opengl-glew
--disable-ecore-evas-software-16-ddraw
--disable-ecore-evas-software-16-wince
--disable-ecore_imf_scim
$(use_enable ares cares)
$(use_enable curl)
$(use_enable directfb ecore-directfb)
$(use_enable doc)
$(use_enable examples build-examples)
$(use_enable examples install-examples)
$(use_enable evas ecore-evas)
$(use_enable evas ecore-input-evas)
$(use_enable evas ecore-imf-evas)
$(use_enable evas ecore-evas-software-buffer)
$(use_enable fbcon ecore-fb)
$(use_enable glib)
$(use_enable inotify)
$(use_enable ipv6)
$(use_enable sdl ecore-sdl)
$(use_enable test tests)
$(use_enable threads posix-threads)
$(use_enable tslib)
$(use_enable wayland ecore-wayland)
$(use_enable X xim)
${SSL_FLAGS}
${EVAS_FLAGS}
${X_FLAGS}
"
enlightenment_src_configure
}
src_test() {
Xemake check
}

@ -1,227 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ecore/ecore-1.7.9.ebuild,v 1.1 2013/11/12 18:14:05 tommy Exp $
EAPI=3
#virtualx is required for tests, which are currently broken
#inherit virtualx
inherit enlightenment eutils
DESCRIPTION="Enlightenment's core event abstraction layer and OS abstraction layer"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="ares curl directfb +evas examples fbcon gles glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib wayland +X xcb xinerama xprint xscreensaver"
RDEPEND=">=dev-libs/eina-1.7.9
ares? ( net-dns/c-ares )
glib? ( dev-libs/glib )
curl? ( net-misc/curl )
gnutls? ( net-libs/gnutls )
!gnutls? ( ssl? ( dev-libs/openssl ) )
evas? (
>=media-libs/evas-1.7.9[directfb?,fbcon?,opengl?,X?,xcb?]
opengl? ( virtual/opengl )
wayland? (
>=media-libs/evas-1.7.9[directfb?,fbcon?,gles?,opengl?,wayland?,X?,xcb?]
)
)
directfb? ( >=dev-libs/DirectFB-0.9.16 )
tslib? ( x11-libs/tslib )
sdl? ( media-libs/libsdl )
wayland? ( dev-libs/wayland )
X? (
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXcursor
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXrender
x11-libs/libXtst
xinerama? ( x11-libs/libXinerama x11-libs/libXrandr )
xprint? ( x11-libs/libXp )
xscreensaver? ( x11-libs/libXScrnSaver )
)
!X? ( xcb? ( x11-libs/xcb-util ) )"
DEPEND="${RDEPEND}"
#tests depend on temp data from eina WORKDIR
RESTRICT=test
src_configure() {
local SSL_FLAGS="" EVAS_FLAGS="" X_FLAGS=""
if use gnutls; then
if use ssl; then
einfo "You have enabled both 'ssl' and 'gnutls', so we will use"
einfo "gnutls and not openssl for ecore-con support"
fi
SSL_FLAGS="
--disable-openssl
--enable-gnutls
"
elif use ssl; then
SSL_FLAGS="
--enable-openssl
--disable-gnutls
"
else
SSL_FLAGS="
--disable-openssl
--disable-gnutls
"
fi
local x_or_xcb=""
if use X; then
x_or_xcb="X"
elif use xcb; then
x_or_xcb="xcb"
fi
if use evas; then
if use opengl && [[ -z "$x_or_xcb" ]]; then
ewarn "Ecore/Evas usage of OpenGL requires X11."
ewarn "Compile dev-libs/ecore with USE=X or xcb."
ewarn "Compiling without opengl support."
EVAS_FLAGS+="
--disable-ecore-evas-software-x11
--disable-ecore-evas-software-16-x11
"
else
EVAS_FLAGS+="
--enable-ecore-evas-software-x11
--enable-ecore-evas-software-16-x11
"
fi
EVAS_FLAGS+="
$(use_enable directfb ecore-evas-directfb)
$(use_enable fbcon ecore-evas-fb)
$(use_enable opengl ecore-evas-opengl-x11)
"
if use wayland ; then
EVAS_FLAGS+="
--enable-ecore-evas-wayland-shm
"
if use gles ; then
EVAS_FLAGS+="
--enable-ecore-evas-wayland-egl
"
else
EVAS_FLAGS+="
--enable-ecore-evas-wayland-egl
"
fi
else
EVAS_FLAGS+="
--disable-ecore-evas-wayland-egl
--disable-ecore-evas-wayland-shm
"
fi
else
EVAS_FLAGS+="
--disable-ecore-evas-directfb
--disable-ecore-evas-fb
--disable-ecore-evas-software-x11
--disable-ecore-evas-software-16-x11
--disable-ecore-evas-opengl-x11
--disable-ecore-evas-wayland-egl
--disable-ecore-evas-wayland-shm
"
if use opengl; then
ewarn "Ecore usage of OpenGL is dependent on media-libs/evas."
ewarn "Compile dev-libs/ecore with USE=evas."
fi
fi
if use X; then
if use xcb; then
ewarn "You have enabled both 'X' and 'xcb', so we will use"
ewarn "X as it's considered the most stable for ecore-x"
fi
X_FLAGS="
--enable-ecore-x
--disable-ecore-x-xcb
"
elif use xcb; then
X_FLAGS="
--enable-ecore-x
--enable-ecore-x-xcb
"
else
X_FLAGS="
--disable-ecore-x
--disable-ecore-x-xcb
"
fi
if [[ ! -z "$x_or_xcb" ]]; then
X_FLAGS+="
$(use_enable xinerama ecore-x-xinerama)
$(use_enable xprint ecore-x-xprint)
$(use_enable xscreensaver ecore-x-screensaver)
"
else
X_FLAGS+="
--disable-ecore-x-xinerama
--disable-ecore-x-xprint
--disable-ecore-x-screensaver
"
fi
if use tslib && ! use fbcon; then
ewarn "Ecore just uses tslib for framebuffer input."
ewarn "Compile dev-libs/ecore with USE=fbcon."
fi
MY_ECONF="
--enable-ecore-con
--enable-ecore-ipc
--enable-ecore-file
--enable-ecore-imf
--enable-ecore-input
--disable-ecore-win32
--disable-ecore-wince
--disable-ecore-evas-software-gdi
--disable-ecore-evas-software-ddraw
--disable-ecore-evas-direct3d
--disable-ecore-evas-opengl-glew
--disable-ecore-evas-software-16-ddraw
--disable-ecore-evas-software-16-wince
--disable-ecore_imf_scim
$(use_enable ares cares)
$(use_enable curl)
$(use_enable directfb ecore-directfb)
$(use_enable doc)
$(use_enable examples build-examples)
$(use_enable examples install-examples)
$(use_enable evas ecore-evas)
$(use_enable evas ecore-input-evas)
$(use_enable evas ecore-imf-evas)
$(use_enable evas ecore-evas-software-buffer)
$(use_enable fbcon ecore-fb)
$(use_enable glib)
$(use_enable inotify)
$(use_enable ipv6)
$(use_enable sdl ecore-sdl)
$(use_enable test tests)
$(use_enable threads posix-threads)
$(use_enable tslib)
$(use_enable wayland ecore-wayland)
$(use_enable X xim)
${SSL_FLAGS}
${EVAS_FLAGS}
${X_FLAGS}
"
enlightenment_src_configure
}
src_test() {
Xemake check
}

@ -1,3 +1 @@
DIST efreet-1.7.10.tar.bz2 450761 SHA256 1d818fae5ff3ce040842dddf49376ebdf056222b8e1835f5b6871ea1ce18400e SHA512 2bfc79de3c6f4d61cd4dfab567bfecc207afd413248d1a1edd7cc21378ec670420d4ffef20ae7ba5e33c72e49da0ad3c810d0086431fb3c9909c361a12586698 WHIRLPOOL aa207eafdf7dd73986926d04bf6b8542e55f3018e4030823f2e8ca0a0f266692e7926c8f0a22f48407f72d18e4cc3fe2de6efcfbc0533bdb39d70a9ed63ccd57
DIST efreet-1.7.8.tar.bz2 451036 SHA256 b26a7988960ef4d2286b38a4110b5f6732b97b97e485ad86d7db34e982cc56a9 SHA512 056d4b2d5c68e6c38cde3d07a2ae42452a82cdc41e87ece45727a611e6dd3422734500b36f54d3460a00d3dea1c671abea52e89baf859115cb9d51595fb7c978 WHIRLPOOL a6c1829ac0c4db374fe5d317dd1ff8b45636080b1e76b71723b820d662b9c424e36c65b9111ef25194e75537afaae40a1a54ea60344ed6b8a830abe09e340ff0
DIST efreet-1.7.9.tar.bz2 450920 SHA256 3595bbed3f88152713581755594a9f4a3bc4d131111fb003bb6a3c15e597f3f5 SHA512 2db596a669520889de9fde093ee2abfe81e7f0dc80f6fc15d5417c49416ce3fd829c54c8b03b36b2d39c61d6e4ef61cc16464e723651efded8380db1430568d6 WHIRLPOOL 6db8c704bec375256f843ce1ce1bcc84aa4b759c5c618b3c336416c5194eeaf4c7ec523750e9b66876c7524f6bd90dff8ac09f0c589d040bd1223ccf47443c63

@ -1,33 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/efreet/efreet-1.7.8.ebuild,v 1.1 2013/08/06 19:47:07 tommy Exp $
EAPI=2
inherit enlightenment
DESCRIPTION="library for handling of freedesktop.org specs (desktop/icon/theme/etc...)"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
RDEPEND=">=dev-libs/ecore-1.7.8
>=dev-libs/eet-1.7.8
>=dev-libs/eina-1.7.8
x11-misc/xdg-utils"
DEPEND="${RDEPEND}"
#src_prepare() {
# sed -i "s:1.7.5:1.7.4:g" configure.ac
# eautoreconf
#}
src_configure() {
MY_ECONF="
$(use_enable doc)
"
enlightenment_src_configure
}

@ -1,28 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/efreet/efreet-1.7.9.ebuild,v 1.1 2013/11/12 18:24:13 tommy Exp $
EAPI=3
inherit enlightenment
DESCRIPTION="library for handling of freedesktop.org specs (desktop/icon/theme/etc...)"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
RDEPEND=">=dev-libs/ecore-1.7.9
>=dev-libs/eet-1.7.9
>=dev-libs/eina-1.7.9
x11-misc/xdg-utils"
DEPEND="${RDEPEND}"
src_configure() {
MY_ECONF="
$(use_enable doc)
"
enlightenment_src_configure
}

@ -1,26 +1,3 @@
DIST elfutils-0.146.tar.bz2 1791373 SHA256 dacd9419cc9ef36463f22cd7d7204ee7490904000045a8cdcbf3569907ecf2c8 SHA512 8c93d882b261502576051e3fc41f1469a7d2195813690792fdc104ce87dd39755f867802de0f1c2e224177a1a52671572178fcd4779287c0f5565b186fa598c5 WHIRLPOOL 5583c968dbe19e4efab6e870c8b3cf3576ae171ab241e52948a6cd850e12ba6c3b11560b931559e056fcac0217d6d62ebfcb56afadd19d916f7a2997116916be
DIST elfutils-0.148.tar.bz2 1811640 SHA256 8aebfa4a745db21cf5429c9541fe482729b62efc7e53e9110151b4169fe887da SHA512 9282945c19a98e14dbfbd50f9fd35b3575d1361c64c865c7205a3207bd23d982ee8288b26de3d627430a7cd4b0594e67b4ce956ec482d91a4f4d03dcda01de14 WHIRLPOOL fe9ffdb4934c3d3d7bfad4df6813d913020a01c231ef788a5bfec4a45cdb89f5df1abc64a211383a3a3fee66f41efad03a7607d8892a02aba5c8bbba3bf767cc
DIST elfutils-0.149.tar.bz2 1821994 SHA256 b81f73db935cdb5c0ddfdb4fd36aa0597b691b9204c62e5ee6bcb8c8ffabc808 SHA512 4ad5d9bc64575c7f7b397b129c197639c690957b0556cec628d97d9b12eb353a49fb27b6df3df23a4a90e7a783ab6457d44d0c27e5bb657ba87514b0600c4aeb WHIRLPOOL df5cb7e73a741177b18aca4c5573eae9b6f01cd17400f482c79b89868af4d76e8192d7a210fe17f4165d99387410dc5bca8faa06464a488934e2efa1534a8894
DIST elfutils-0.150.tar.bz2 1822030 SHA256 f414c8f3cdc8b12dfa34b671d9897582be7f9b546436f29bc5a2a6b442011d45 SHA512 8855ab344c6e3c0d71657d1f6a70d6a7fd96cf40b278afa403a99f8644e023eb9927311d81a7244256701cb10066fd3d55b6cee11ab745940a3b21cd7d809388 WHIRLPOOL 9b4c7e746126ecea4c1b58376d51f90620932ef939ee82f32902ad41ab895074de79734a0b7eb9f6c974e3bededde0ca6f4b241782d35c264deb164b6b8cfb96
DIST elfutils-0.151.tar.bz2 1861829 SHA256 44b23049fa5999b7fd1f135e307b87efb17f5b2492702f7fd4ebecc3a0a51cfe SHA512 5210382dd50a54be1de3e84daaa766073f43fa88e9eb285f95125da80dab39fc2c21ae3e8f9eda1550f639db40d3c642c6d45df81251f1db8dcd0f715937ad03 WHIRLPOOL 5318a5d07669510dfbbe6d2cee17048d8a518a6a8f9f7f62b56cbbaeb74f0247773129844982d17651346c934337ae3b463411fbe784e5873499ea8c0cbaa9d7
DIST elfutils-0.152-portability.patch 39623 SHA256 e006639191589caa9327ca7bf9740c83be20af8297b34ef44d1befcd08476160 SHA512 623ed1b4ddcbe973fa4a8b7a6432335af8348cfe10d64ffc64b0f3893ad655d5514459d4850436f07b0b083c869bdb05b539bf8ac124745d100e21e3cf1145ef WHIRLPOOL 5982fccda179a6b4a62634d741dc9f27a1f4b0dfe0d6220fa398b0536fa7e0f7167dfd86e74596a204e7fa53b9b7d8ff2d17bfb3f1e3149cef3bde0bd59a3b7d
DIST elfutils-0.152-robustify.patch 58762 SHA256 f7e352b503dd2d84aca5794a4b6c273d026b64d64154132dbee9db2c89e22b23 SHA512 35d117eb9b073a7b88003615f4fcf3dfc225a1d987108c8b4d49cbda58c7004b4db3430a40a04f2e1a47fa4f1c73bdb53a889a7b16b94043514d8c64d61b4c4a WHIRLPOOL fe51e9205ced2f511a73520e2ee53ca8a961a2898dd147b48be58a46436594a76855aff9a0fee2ed60b23b2edffd162e6659a7b107e3e06d3620feacaf27406b
DIST elfutils-0.152.tar.bz2 1876711 SHA256 78798715adba95528cdf3fce33eca813131ee75b9109693d313b72f67d7fb4a6 SHA512 e680c3ae4270b517bbd27de0d3aa3885bbbc935cc716cdddf45a2adb4a1ad5019a791d56348390cc802cf72e45f50f00287ed5c9b6621c211976855263a8ead9 WHIRLPOOL 963567d8954f8d65001d31ca32250b1bff741528f6a41e086c16ea074692ab87e1edee89f6c58860a7d711fff1f73b19aaf784687844265542657d3595b5361c
DIST elfutils-0.153-portability.patch 57102 SHA256 26847f1641d1c8013d39ffdbd2c7167b941eddf64a782f5be366a69eb277c25d SHA512 a9a67f7f54be96872c8bfa1a9f2b4ee34cd24840970a80bbef30f35f075052b3305ccd5543704bd1e1e413e98fb463b78fbe463f05065994b51b9a82cc07a4be WHIRLPOOL 5681c4d9242d572c46d0e3da9b2eeb63d3b85f54553ac18a890d4764828267df1fc904372ebb4c86b1b0b17e1c48b8f1be7bcf5f82a794b9fbe74855997a2242
DIST elfutils-0.153-robustify.patch 63255 SHA256 f5ac4f4213466700bed7c669172ad4b1dbad38e0091d44838ad9ae836a09705b SHA512 ac9d0d38c48cb6be454b6769bf210ca559768daa4e4b8fb4c917416ba823df0434be76aa7188f9acb7f9e5969f391471e47fa4831fd8576fd76c9c2126ba36c3 WHIRLPOOL 52a524523dd90ecde2073da4d3e960ea3d6b0cdc111143fcb1807305356b4a75844fbad636964645612e6d62c86c23bf052ffdfe993a5c3fa7f620e025ab64e1
DIST elfutils-0.153.tar.bz2 2179242 SHA256 b6cd7d1fe81d5f874061b7d753f5b5a0546ccc5fd83af843201330479332bef0 SHA512 03ae0e6dedb13218192d2ae57cd0d980388bf2bfe777ca18b328b4d5743f4072d1f97a5b4fe3a9f965e1d57f81f7cd8eefcafd4d23bc2065deafa48ec6bfb7f6 WHIRLPOOL dd675d2f7d8f2f4343a20b88ec7967f0c50b69357f199d53c2a6363e109a98d52d0b6be71242781d2612f75af43a0e48383495c22c963966db28d52c3569bd6d
DIST elfutils-0.154-portability.patch 57336 SHA256 156a30541c8d478354c9e42ee5282fe7d0af65be6b10c829f13ec9ce68e5298e SHA512 33ca17d9e01e8112818a762b8066391d31f09bfe7117a22d99bd6820b881512e240e7355efaa3807b5e2faeefcb60c4b4f3d0d13d12585fa71d0d69d9ef26b99 WHIRLPOOL 3c7aac62bde726c7522d37911c1411a014830c8a6ee1ce076f9e98250d9ee0800163f51bef3a0a7ef3d8b20938744914567692beaeab869fcb136c14e61611dc
DIST elfutils-0.154-robustify.patch 63063 SHA256 a0e0a81b8bdb7d0622715564d6863be2f2208848feb2e529741c3cb7c01cc6d2 SHA512 c07a23756b5f389473d70f70d62221a003c88b637faaa6ed20cf63758dea5ecaed5cedbddd554b372feb3613fd709ba1f0d849a27d6f703165a161f7d3cc1cc8 WHIRLPOOL a098cf5123e75812ec75392063991007b12334b7bd5244d8a38d55020932cc32d5794f27614076dda47e304a3d0e9b9fd646b5dcc45eeefcc787cd952474ce93
DIST elfutils-0.154.tar.bz2 2205145 SHA256 3ef06dc0b599874bde09a529a05809dac656204ed1181eea9e89d531cea94af1 SHA512 4d8a7fc7062d433d789f5a71d8b4428ae183302ad8049e5a6e7e1a58f83488f0842c0166bf7e19a19d2571ae36c296d8b81306efaa3c78a1de128819ab06df9e WHIRLPOOL 06c9ffa64d9773c585148eb7d631b6494f88032c44422d5a516a3a5b8084c00205bc33a4b6c373bc69d2e3594ccf3d97cd6971b58c361f2d11bb127919bc8468
DIST elfutils-0.155-portability.patch 57540 SHA256 b101c8360abc746a5a66cf0549e0d6259fa3cd78a1314e857e3962983a491171 SHA512 7a498f28134134ce81e25f39ea42ce36fac7a2cae79f6b2eda9c7d384f6dfb2907a013b4800da36ba9ab6ad18fac63eacf8a5847cf94248962d5580650d4b501 WHIRLPOOL f69852a6281203bff90934cd1c21e7507da1c0c217f88e6c158b2e5a59fc685a813a8f5ae138004f674918c7787425ab625e454f323ee65563b4893a0c57131f
DIST elfutils-0.155-robustify.patch 62788 SHA256 062a7940757aea1fedec4c9943bdd34b853c97458f229569777d65541b77c174 SHA512 d18fcdd6b57266805d3934ff07123b19f5da7df5ab72b8673d77e35929b34e14a33a08ec0940b06d763a0279d98d677892ccf89717bc995be6a839cab19acd97 WHIRLPOOL 30d3b3c96b03647dadb7860b15dc486147f20f6199fe4c7bb9b88c7fd20fa76d0fb3882e037caac54a40591f5aa9c155b6a86df16813542254dcbc2fc1cff86a
DIST elfutils-0.155.tar.bz2 2477883 SHA256 68444a4526416ffd68852ec3c6a40ceddcca46538297322405319884c5d30ed8 SHA512 4f434c7a01c768df00499cac4e02c2316077eab9a6b6f0e6f3ce5194e6cfd2258fa30f9a163febce15278e1fbbbab9c7238c0cf56bf7dbcb5363b42a1a947b8e WHIRLPOOL 30647d492eff02c92ac1c7b0e9d5090cde3cbf4541bcc61fbc38f9fdd40ade08763e5e8ff23e0874f77955dcd71bd73e8b1e9f77460dd453c74fa1643efe0156
DIST elfutils-0.156-portability.patch 57939 SHA256 b3fb726c092bd99895ffe0697597c8ffd232ed35c3f5b85e3977739a261dc113 SHA512 21fc70160b13a2506807301f584927b9012734abad3c466d3041a38774affa8393e02afdf852097a0437a4453cb3a7db904e8811598203693b3c4387843565e1 WHIRLPOOL 3d327883028beb9bc7611117c74f7080eb8eabafb44f96112ccb07b3959ee862d8f3dd4e93f48a93c37086d252e90e02990d8279ca8c9cfe9bb22387feb58b7d
DIST elfutils-0.156-robustify.patch 62790 SHA256 6dbefcef2046665d7007b68a7f1a93bc97ad46278aa7814ebc4c9d73f239b442 SHA512 843c9582bb7fbe2ea82a63d1709b5fa2f78be2c79f824fd9fd65c9349c7dc0ccb335e020b3bed0e2aceeaf02eac2d5db2649d83e4b93c2ff02be7b1ce15f24f0 WHIRLPOOL 6c97f8bc310e956da997c8ca377e480f10e3aaba569da52ce4cf66ac979fb148a587bc9bef86eae21768276745f9f8e0dfb9b5aed355bd4fa89a27a4da28e612
DIST elfutils-0.156.tar.bz2 2637114 SHA256 d2f54dd17a270ca947f831b083a6cde06e8b4fbb230cf87d23afa1530d20a4c2 SHA512 8fdbbb42e750fca0cd6d4342be86ab522434f2eb91414989f8afe1ffcada211d85c5d059dc5ff04a6cfd17fd3d37b6e1428617ad7c9ed9de3da6d7f14e090527 WHIRLPOOL 9f9e70776dee0ebe30f1ddd3ddd81cfa3747d679767c04d081553bf336322f7cb85d3c07d5cda8ebf1515b1ceae01522209860faa64a867771c25394fb073d17
DIST elfutils-0.157-portability.patch 57996 SHA256 02aa1cbc8e84c7a21cf751c12d70ae03953ce5ec80e86f99521e16029e87fc0e SHA512 7a23231d037b61caa235e3ea9ca08c211b7ad5409e51fa6a3acbd24986302ca0ac6034dea50c1f7568cba3890b959d5576e6c3358c32c3c0b7be00c6ba30375c WHIRLPOOL 2acf13b649bfe2056c4900b35bc49519a7457bb7dd09a8db8491c5accffbcde7dd2e5ac15bc1c0f40a35082df8032966c0dbb5a13e8cb0bf4801784ad454208f
DIST elfutils-0.157-robustify.patch 62790 SHA256 98f6cfb9d733b2429f9b7e33d81e8eafcc222e3a1d257fb417ecc5df54024240 SHA512 e9e96db55dfbd5c1226b3beb9de847007393f1e243f98e950eb1b6b149176a842fac7704ff395d05069c6a4c61fcd4f978c020bfb3361ce2cc144fc6e36f0405 WHIRLPOOL cfd49d33247af8ecfb4f50c94ef6588d24a886ac9f85adec3b1b5a225615767fe902ae4d061169fb1c0d04fa28efb7293eb20adc131839be9ba1bb194e565c00
DIST elfutils-0.157.tar.bz2 2624207 SHA256 4fadc9c0c19d02fb6d2bdfee65f20ddbecba398d3f714e2b6c42ffc4615cce85 SHA512 ffe7b425435203ea8932ba8f977ed258d6cb869ec140f24aebb62325e8fa47856dca9130a4dc66daa3ba2a99d82b35643970471db195ae5c6414c1a6aa21ab91 WHIRLPOOL 09defd9cc18c7a5efaab7a6ca60200433a4a9d36941aa908c60ae5ef59522e129b1be2d169b066c3dc5041a605f909438b96145eab184ec7bf5147c002daedd3
DIST elfutils-0.158-portability.patch 61898 SHA256 edc5e367b90dc3b179439c1c56ac28b04e810b09952d76c51b2df7a2a3f44e78 SHA512 3710f5b9e43a7ae230d8f3b7058addc667e34841fcbb85e3e6e289851b5daf1d82d8f6e592cfa62be127588ae1e274f5b04499156dec3e9c5922f1a06a0e845b WHIRLPOOL 7bc95985ed12c8b356fb6a8d7f92fd0d6aa2d5a8aedb157f85b894199ebb0ae63b2d7baebe759489895bb9db2b552a84647add04f0c02168d9ebfd598ab8fd69
DIST elfutils-0.158-robustify.patch 62790 SHA256 dde94387e6565803d7c8d5b4351e4224e0fdeccfb9ef4a2080f15fabf43fe8bf SHA512 cdafe50d93ca74a38e62728f52965a48b37ef6dc05ca949893381c917549e498a2b007580ceb5de81c7292d86fbb11fd62315001216c12baffc243e2e6fd1015 WHIRLPOOL b3d0440230e23d66fc4862083ca9a9b2f3d58619c8789d086e6c9933af5c27b9b1c55dd8fa714acd708757bdee0707041cf6c8b09b804d7c6a4932f77a2648e4
DIST elfutils-0.158.tar.bz2 4931570 SHA256 be27af5c21352f53e010342bf1c68e0b9e18232dbf3adec7e2f9b41f6bbe397d SHA512 6f27c07ad2b146d2ff857ad596f0d9150b0a041b4667f9174880a7766250ba2e52103bed9c4295e005255b683346d33d82efcda8f18f66c343df2722ca5d2ca2 WHIRLPOOL ff0c2224f9a514b83995c6f5a628e1331887e3906d3678c237c551d5572371b5a4c8bcf705f8e1389bff02bdab257460b26d8cfd3b3de2cbbc84e3f5a55445ac

@ -1,58 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.146.ebuild,v 1.10 2012/10/09 15:49:14 vapier Exp $
inherit eutils
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="http://people.redhat.com/drepper/"
#SRC_URI="ftp://sources.redhat.com/pub/systemtap/${PN}/${P}.tar.gz"
#SRC_URI="mirror://debian/pool/main/e/elfutils/elfutils_${PV}.orig.tar.gz"
SRC_URI="https://fedorahosted.org/releases/e/l/elfutils/${P}.tar.bz2"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls test zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4
!dev-libs/libelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${FILESDIR}"/${PN}-0.143-configure.patch #287130
find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
use test || sed -i -e 's: tests::' Makefile.in #226349
}
src_compile() {
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
emake || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,58 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.148.ebuild,v 1.3 2012/10/09 15:49:14 vapier Exp $
inherit eutils
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="http://people.redhat.com/drepper/"
#SRC_URI="ftp://sources.redhat.com/pub/systemtap/${PN}/${P}.tar.gz"
#SRC_URI="mirror://debian/pool/main/e/elfutils/elfutils_${PV}.orig.tar.gz"
SRC_URI="https://fedorahosted.org/releases/e/l/elfutils/${P}.tar.bz2"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls test zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4
!dev-libs/libelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${FILESDIR}"/${PN}-0.148-bashifications.patch #287130
find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
use test || sed -i -e 's: tests::' Makefile.in #226349
}
src_compile() {
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
emake || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,56 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.149.ebuild,v 1.10 2012/10/09 15:49:14 vapier Exp $
inherit eutils
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils"
SRC_URI="https://fedorahosted.org/releases/e/l/elfutils/${PV}/${P}.tar.bz2"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4
!dev-libs/libelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${FILESDIR}"/${PN}-0.148-bashifications.patch #287130
find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
use test || sed -i -e 's: tests::' Makefile.in #226349
}
src_compile() {
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
emake || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,57 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.150.ebuild,v 1.3 2012/10/09 15:49:14 vapier Exp $
inherit eutils
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils"
SRC_URI="https://fedorahosted.org/releases/e/l/elfutils/${PV}/${P}.tar.bz2"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4
!dev-libs/libelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${FILESDIR}"/${PN}-0.150-bashifications.patch #287130
find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
use test || sed -i -e 's: tests::' Makefile.in #226349
}
src_compile() {
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
emake || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,57 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.151.ebuild,v 1.3 2012/10/09 15:49:14 vapier Exp $
inherit eutils
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils"
SRC_URI="https://fedorahosted.org/releases/e/l/elfutils/${PV}/${P}.tar.bz2"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4
!dev-libs/libelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${FILESDIR}"/${PN}-0.150-bashifications.patch #287130
find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
use test || sed -i -e 's: tests::' Makefile.in #226349
}
src_compile() {
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
emake || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,93 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.152-r1.ebuild,v 1.5 2012/10/09 15:49:14 vapier Exp $
EAPI="3"
inherit eutils toolchain-funcs
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
!dev-libs/libelf"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
mkdir -p ${CBUILD} ${CHOST}
}
econf_build() {
CFLAGS=${BUILD_CFLAGS:--O1 -pipe} \
CXXFLAGS=${BUILD_CXXFLAGS:--O1 -pipe} \
CPPFLAGS=${BUILD_CPPFLAGS} \
LDFLAGS=${BUILD_LDFLAGS} \
CC=$(tc-getBUILD_CC) \
LD=$(tc-getBUILD_LD) \
econf --host=${CBUILD} "$@"
}
src_configure() {
ECONF_SOURCE=${S}
if tc-is-cross-compiler ; then
pushd ${CBUILD} >/dev/null
econf_build --disable-nls --without-{zlib,bzlib,lzma}
popd >/dev/null
fi
pushd ${CHOST} >/dev/null
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
popd >/dev/null
}
src_compile() {
if tc-is-cross-compiler ; then
pushd ${CBUILD} >/dev/null
emake -C lib || die
emake -C libcpu || die
popd >/dev/null
ln ${CBUILD}/libcpu/i386_gendis ${CHOST}/libcpu/ || die
sed -i -e '/^%_dis.h: %_defs/s: i386_gendis::' ${CHOST}/libcpu/Makefile || die
fi
emake -C ${CHOST} || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake -C ${CHOST} -j1 check || die "test failed"
}
src_install() {
emake -C ${CHOST} DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,57 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.152.ebuild,v 1.3 2012/10/09 15:49:14 vapier Exp $
inherit eutils
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils"
SRC_URI="https://fedorahosted.org/releases/e/l/elfutils/${PV}/${P}.tar.bz2"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4
!dev-libs/libelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${FILESDIR}"/${PN}-0.150-bashifications.patch #287130
find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
use test || sed -i -e 's: tests::' Makefile.in #226349
}
src_compile() {
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
emake || die
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,60 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.153.ebuild,v 1.4 2012/10/09 15:49:14 vapier Exp $
EAPI="3"
inherit eutils flag-o-matic
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls test zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
!dev-libs/libelf"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,66 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.154-r1.ebuild,v 1.3 2012/10/09 15:49:14 vapier Exp $
EAPI="4"
inherit eutils flag-o-matic
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
!dev-libs/libelf"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
econf \
--disable-werror \
$(use_enable nls) \
$(use_enable threads thread-safety) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake check || die
}
src_install() {
default
dodoc NOTES
# These build quick, and are needed for most tests, so don't
# disable their building when the USE flag is disabled.
use utils || rm -rf "${ED}"/usr/bin
}

@ -1,60 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.154.ebuild,v 1.2 2012/10/09 15:49:14 vapier Exp $
EAPI="3"
inherit eutils flag-o-matic
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 lzma nls test zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
!dev-libs/libelf"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
econf \
$(use_enable nls) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake -j1 check || die "test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
}

@ -1,74 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.155-r1.ebuild,v 1.3 2014/06/18 19:10:28 mgorny Exp $
EAPI="4"
inherit eutils flag-o-matic multilib-minimal
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
!dev-libs/libelf
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r11
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
multilib-minimal_src_configure
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-werror \
$(use_enable nls) \
$(use_enable threads thread-safety) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
multilib_src_test() {
env LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm" \
LC_ALL="C" \
emake check || die
}
multilib_src_install_all() {
einstalldocs
dodoc NOTES
# These build quick, and are needed for most tests, so don't
# disable their building when the USE flag is disabled.
use utils || rm -rf "${ED}"/usr/bin
}

@ -1,66 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.155.ebuild,v 1.3 2013/02/19 04:50:03 zmedico Exp $
EAPI="4"
inherit eutils flag-o-matic
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.2.3 )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
!dev-libs/libelf"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
econf \
--disable-werror \
$(use_enable nls) \
$(use_enable threads thread-safety) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
src_test() {
env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
LC_ALL="C" \
emake check || die
}
src_install() {
default
dodoc NOTES
# These build quick, and are needed for most tests, so don't
# disable their building when the USE flag is disabled.
use utils || rm -rf "${ED}"/usr/bin
}

@ -1,74 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.156.ebuild,v 1.5 2014/06/18 19:10:28 mgorny Exp $
EAPI="4"
inherit eutils flag-o-matic multilib-minimal
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
!dev-libs/libelf
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r11
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
sed -i -e 's:-Werror::g' $(find -name Makefile.in) || die
use test || sed -i -e 's: tests::' Makefile.in #226349
use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
multilib-minimal_src_configure
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-werror \
$(use_enable nls) \
$(use_enable threads thread-safety) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
multilib_src_test() {
env LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm" \
LC_ALL="C" \
emake check || die
}
multilib_src_install_all() {
einstalldocs
dodoc NOTES
# These build quick, and are needed for most tests, so don't
# disable their building when the USE flag is disabled.
use utils || rm -rf "${ED}"/usr/bin
}

@ -1,72 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.157.ebuild,v 1.3 2014/06/18 19:10:28 mgorny Exp $
EAPI="4"
inherit eutils flag-o-matic multilib-minimal
DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
HOMEPAGE="https://fedorahosted.org/elfutils/"
SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-portability.patch -> ${P}-portability.patch
https://fedorahosted.org/releases/e/l/${PN}/${PV}/${PN}-robustify.patch -> ${P}-robustify.patch"
LICENSE="GPL-2-with-exceptions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="bzip2 lzma nls static-libs test +threads +utils zlib"
# This pkg does not actually seem to compile currently in a uClibc
# environment (xrealloc errs), but we need to ensure that glibc never
# gets pulled in as a dep since this package does not respect virtual/libc
RDEPEND="zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
!dev-libs/libelf
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20130224-r11
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-devel/flex-2.5.4a
sys-devel/m4"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
epatch "${DISTDIR}"/${P}-{portability,robustify}.patch
use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in
# some patches touch both configure and configure.ac
find -type f -exec touch -r configure {} +
}
src_configure() {
use test && append-flags -g #407135
multilib-minimal_src_configure
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-werror \
$(use_enable nls) \
$(use_enable threads thread-safety) \
--program-prefix="eu-" \
$(use_with zlib) \
$(use_with bzip2 bzlib) \
$(use_with lzma)
}
multilib_src_test() {
env LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm" \
LC_ALL="C" \
emake check || die
}
multilib_src_install_all() {
einstalldocs
dodoc NOTES
# These build quick, and are needed for most tests, so don't
# disable their building when the USE flag is disabled.
use utils || rm -rf "${ED}"/usr/bin
}

@ -1,3 +1 @@
DIST embryo-1.7.10.tar.bz2 456473 SHA256 ed98018f6ef394eda29fe5f0abc040a4fea191b60ea05b50ef09e21fcb5b65c2 SHA512 7be2171b9035d560a21aa232027d2afc46db44293e0d0ab0fdc6d3451a8a750956f09043edf851823ecc9de8c03c554205d84eddabd52f4fbe5938f5fd94d254 WHIRLPOOL 93a0f6a9084fa4869a03bf35e9fd0655820a618b43654a215e0b62c334581c49caa2222b6735335fb5fe4b18e876bca2fcbc0c69596c438450e650a680c848d9
DIST embryo-1.7.8.tar.bz2 456623 SHA256 40cadc61eb1aded84a60da39879bc768516241de81b0fba0b37118beddbe3ea7 SHA512 a0625bfa7385673a129958d594689e9e397705eb61610aaf981c1dd27f076f2ca8fdc21a66e9ae798d25fe74392808325721bda0b00370bad889f7429b81c00e WHIRLPOOL 520466202654a693653c05c1344758fb07782e4ac9681fc01aba0a4b477982f17d375af520fe69565b5cf4808ddb56f98c4957964c9d97e1af592ce2be3d9269
DIST embryo-1.7.9.tar.bz2 456577 SHA256 4e796e8f30bffedf2a11884c46de025fbf7f10440008be71339deed8e6be6b64 SHA512 b323d4c270521d579586ea7ddaa1fbc2a66c9008130ec75797a900b380ee4fa68204f5e490db31173cf675ff235c13ec1f7e9774a6b8cfe6c00d785bb9679ad8 WHIRLPOOL 034b60b2c5d89b0f80fc1fbdda679c1ad5b7c580d744fb198a7230c72a2d6559d90d9340bae04457bcdd4bbcb811fa0405497bea3ca73f4ea49057650a1f7e41

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/embryo/embryo-1.7.8.ebuild,v 1.1 2013/08/28 03:08:00 vapier Exp $
inherit enlightenment
DESCRIPTION="load and control programs compiled in embryo language (small/pawn variant)"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2 ZLIB"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
DEPEND=">=dev-libs/eina-1.7.8"
RDEPEND=${DEPEND}

@ -1,15 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/embryo/embryo-1.7.9.ebuild,v 1.1 2013/11/12 18:17:01 tommy Exp $
inherit enlightenment
DESCRIPTION="load and control programs compiled in embryo language (small/pawn variant)"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2 ZLIB"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
DEPEND=">=dev-libs/eina-1.7.9"
RDEPEND=${DEPEND}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gumbo/gumbo-0.10.1.ebuild,v 1.1 2015/05/16 06:29:31 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gumbo/gumbo-0.10.1.ebuild,v 1.2 2015/07/22 18:41:33 zlogene Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="https://github.com/google/gumbo-parser/archive/v${PV}.tar.gz -> ${P}.ta
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/hyphen/hyphen-2.8.8.ebuild,v 1.1 2014/12/27 21:45:19 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/hyphen/hyphen-2.8.8.ebuild,v 1.3 2015/07/22 19:33:40 ago Exp $
EAPI=4
@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/hunspell/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
RDEPEND="app-text/hunspell"

@ -1,23 +0,0 @@
# 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.9.ebuild,v 1.15 2013/01/28 07:58:55 jlec Exp $
EAPI="2"
DESCRIPTION="A JSON implementation in C"
HOMEPAGE="http://oss.metaparadigm.com/json-c/"
SRC_URI="http://oss.metaparadigm.com/json-c/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
RDEPEND="!dev-libs/jsoncpp"
DEPEND=""
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc README || die "dodoc failed"
dohtml README.html || die "dohtml failed"
}

@ -1,19 +1,15 @@
DIST kpathsea-texmf.d-3.tar.xz 10540 SHA256 44e407b6daecd1a1943f650d2cb412d784b472fad26d3e9257bac8e8a741c706 SHA512 0b15274ac4d6eaddfac7ecd3396126f0448d29776614fbd8483c2a5cc44183871a17bcf887a42022fe4bf9b93da2d4175b4292bc1b8a516d900d19c5c5b1bc5a WHIRLPOOL a0e77c6b3539133ee60ca10a45c8622222ed92005c3451b3b541933b0dcc24612b0dd1f7947fd255a43cebbe84d77feba452be00fa9b73a30f1b862bd68f9398
DIST kpathsea-texmf.d-4.tar.xz 11148 SHA256 d5cc455db13afb9a229892380f835e57e932aedf8d02c8f12895ce682888b88e SHA512 a2906e4f8ec0fdbe31d618878a0633ab52f8dc71ef31d7608190d1f37bf3003b6d2c204520edc249c0c49b8f7308f24a283ca9510033378442093a8194a7bea5 WHIRLPOOL ba1a9aec8f5c040f7124d0720d2600bdb9253d82c859249c871576ac1c5255b81d0b14c3cd381ff8b2e5aae021e694383f93fee3459603615f7187daef35ec2e
DIST kpathsea-texmf.d-5.tar.xz 11180 SHA256 85d9e1ed697859952a3ba273314f8670454016f3cd1988f0ea17f0cab8630a19 SHA512 23e8134340ae6f10baddef91f642a34c9289d84ccf791bd66779e794cfeed4eeadebd8cb1062e2e545a042e9c64cc9121f893279ddf776aae11c30baffc7f3af WHIRLPOOL b432effa293c410d019b20fa9dc848f3e67b71bb66af27b4e41ed814df688b933ffb30831411358222e170f75c38d2733e671c8224025516cc9c2aed0be8599d
DIST kpathsea-texmf.d-6.tar.xz 11232 SHA256 9aeccecaf9ba51d25147605b10150047e1f8353942e288a4529b6f28bda2bda8 SHA512 7073c7fb25a53414604395ef02f526e556049b4d296d762fe0b78858d82e0122f0b1fa0b8342e8f81c603e1c1f799702235dcdff08bf56797798e29a15581a9e WHIRLPOOL 919281c784c2efe49e7b0b88c2915ebeadda90251718cfa612a98f9dfa4ed01f4e6b5d3de13fc22f22b4b589f77feeb6d3955e461ea54572f283be20f6246ead
DIST kpathsea-texmf.d-7.tar.xz 11292 SHA256 9cc7563b54ffc5f75f88e120e5eae21643eae5e97a804bea2bee1f2e33bb4472 SHA512 972a370bcc3534542a8392f0e0066d277bd83f68e684f7a02cf46fa490bec6f2a1f9dde04081f965178a019adb220cf44bc8e4d5862ac70597de64ea8a7e5902 WHIRLPOOL 2ac681e84ac5818bb2332bf5ed15d74c3a09f6b78dced71158ecd0a5b4f49991c10bf143c44c1766c80e784d39199a84319dbec4ff8e86eba58f71268613f949
DIST texlive-20110705-source.tar.xz 131207904 SHA256 772d19795fd841737f5b00472810b49d98b3b62373fba67c12c757e95c510da2 SHA512 1efb5713bf80379f5104b41576911a4194d378ce35be5afb568c3b4aff6461b2b22e72fb34bc294021cf14a28d07bab083872f17752441f269f36c50f9363cc1 WHIRLPOOL 11cc5b53dedae8977b5d776f9141a849b23b877b836f56469336018e3529ebbf369c99d534c1d645aa99fe0750968f0089034a232dcf9401967e20afb5ce8dd5
DIST texlive-20120701-source.tar.xz 131904044 SHA256 9666617d5dac3e82578e696835cc9f251ee0a56d162d86dff08659ac5dcb6c81 SHA512 0e8653aa21094e079900d17256f0768ac5514690a3725d96923d5fdc7633484d611441df1af8c674b38b9ce6a8845a9004976cd00635742dfc6837aa433caf5f WHIRLPOOL 9d570a1bd58cca8baed399ab53eb767c7c3db607c00363ce563e14dfccdd235703c538e6a651aa7f2934adf21f8477775f1547f9e7f3d957b89af644c89bcb57
DIST texlive-20130530-source.tar.xz 179963948 SHA256 a905832e4c04dd1cb16db4bb7baacb78fbc19682bd33ac2697a3a85ce78d79d4 SHA512 4aa85273a675af2453f09777b7cb348c18add77410d72f562c6586f6814d4e7c34b6f3690e3453020654fb0a265339fcabf590d9155367d52846224499af334c WHIRLPOOL 3affaf25d3936505d971599092964b0f0e97d107d22dbac6a85ad547e1d2726a6a09c5075fecb0c6ff8c88bc1bd09d78f95902f76eb76c608f8a7bc42dd6bc33
DIST texlive-20140525-source.tar.xz 41657688 SHA256 08bb4eb02923ac65ce1183612c6b64da185904f26a1660f5ca4f902d055795be SHA512 09169af15d806abd721e55ffc20ed684c0a7ad60783272d49fabfe9c88857c4abd15b60f30e3f5511ceda1982fdc1d33db8265f97e374bfa5b250dbb5612f8ad WHIRLPOOL fd7fffeeaf319bca5333f6d5d8d9cc6517f76ffe5b2793a73604d844cb7474d83c23826f98d4d11ea5e1a35c0f273e12b2fe6f5945f9880a9577fedad6625014
DIST texlive-20150521-source.tar.xz 45459552 SHA256 ed9bcd7bdce899c3c27c16a8c5c3017c4f09e1d7fd097038351b72497e9d4669 SHA512 9d06bb88c489715787ce619c4c6b5e2d4251e1db8d48ae7fe2d1a253634c76bc6d7282ef9c93c77847845cae01eafb58dfb37ba3fb83a6d223f0d7fe8f5d3855 WHIRLPOOL e19e4cf9c6122e8a2e80d3ad62171591a2d53317792ce69d7b2afdd6978d397c873565d597b1457d23ba6f5b5de33750955690a92fb6c34d814c075397b67a0b
DIST texlive-module-kpathsea-2011.tar.xz 31300 SHA256 465bdbd6b3d47287422e53c185614cd28ef4da33fa375537484456e5bbc617a8 SHA512 5cccf0a38454ff3f917ac81e541913fe34edc4ecd2711cc39c344e64c3ee5659b40030b7b7fd7d3b34976070ebfd87c61135a9bdcf2c3837ce42f344ac6c21c3 WHIRLPOOL 7f31053f7885732250251a04c1d1b41dd2b29ff657a1e6138021badd4c5a65d76e3ecaa61af7e514d3fb7ae12b685f1b201d5302a10809842433046682caf22a
DIST texlive-module-kpathsea-2012.tar.xz 30060 SHA256 528044bcea040d00016c5b22c10a856774368ff4d030907a84647a05dadafc08 SHA512 e89d4a37c0b4555a38f20bf9020355f01416a2483ff2b9535343b678442ec8547663da5e2a2fb84c32d4db621bebf7fb878df52e20fb32123985aaa9d61e44cb WHIRLPOOL 3f332ae9f5409370f9966e29418d22a57af7e1e483c6b24828afaeac8644a73dd658418e1d45d487bf8325770113a3c5593351c39852a7374bf85a481179bfc8
DIST texlive-module-kpathsea-2013.tar.xz 30120 SHA256 1891e7c6b57aca72d2b6d749526ee49bffe62f10736875c886d7bc1e02eeb8a0 SHA512 7642cebecf5ebe916aee0f8f19d1740e3e3f234454429cb5f88d550f41ec93e8fbfebdf7de0a893bd22cec17222adc9f8c2e6756dd22b21a34ad181baf0753a9 WHIRLPOOL 8d7be24abc8485d29e3fed363d43d0da5d657d98f3de4f28e6ee2f632b0609b846f26b9ccb82fa86b42a449ce21b75742f63db7fe264a0fe2befb1a6de62055f
DIST texlive-module-kpathsea-2014.tar.xz 30212 SHA256 41b824f75f885f5ec94996230aac840d10403168200ea681d1bd851aab8c661d SHA512 f66a933201fd9d10a47906a4c19c8a54d36a8a1f7be0e2c25a7014e0a52f094c563b6684a2c639ec96ee51aacfd6d725dd77ff50b7d8c6a7c26f45586803c999 WHIRLPOOL e97afa0286f8c4ffb11239172129c805b6d0f845c8cf9e51d1b08045590a8148b3ae3dadc398ffe8558d1e34dc30221351f07f8caf392b5210d0eee0e4b1e130
DIST texlive-module-kpathsea-2015.tar.xz 30512 SHA256 a026c0880c1884daaeab664cc0e25a6c3325c4d2181cc946b3332716804e4a2a SHA512 7bbb389ce368decdcf8f50a352636e95584e8d6b052cbeb3b0498c88d9147807c37aa0bd81b2860c9cb11d0d0ac4e8a4eef069876fb3ef737c9ac77fac192ab0 WHIRLPOOL 99ae57ca8103eeeaaf38c969a98353fa9dbb7c7edce1389ee7c9a022107157c5193f785b7f8c99f44b66bac6c56b43c0ed06b473b23051db7936fadaa5f6032b
DIST texlive-module-kpathsea.doc-2011.tar.xz 1092812 SHA256 f9588e1ce59dcc434c23ba8b862f6781628ed4c538514cf2070667cf71ff9414 SHA512 42d8091af858a9381449449a30b349e8fae51405d862162682d1f852d7ec49a21caa3e29c907e6261a1843456849bda5a2e2c63988e206d55a92bf002e18c0d0 WHIRLPOOL ccf3ce320231d76cec32f867df39fffbdc88c188a9439798bec01ed86a2c0466c19ac796f40eb8c0b9cb7c708065efc11eb1453c2382560b60d8922fcf32d0c2
DIST texlive-module-kpathsea.doc-2012.tar.xz 1092220 SHA256 df92d722d168a527669e4b093217c6595b1cb30eb65f55bbf80d29745ad9ca3b SHA512 ef455d4cf755bb7aa06f475cfc50dd00343331fb4d985334866121306eda697aed0131b0591efb94bc87710b7eb9bdd9eb0ea4d567779e2684ca33e21e8bf645 WHIRLPOOL 66e76ac53a62e120b3dc39c8e76bac29126d799ba9dc8b5963e6722f6c3c908b2fa04071416d6218f5e4e99ed4852103dc61de7e413d8502f876fecaf7f3ec8d
DIST texlive-module-kpathsea.doc-2013.tar.xz 1086956 SHA256 2697dd13f35e0c51254c0857fecc4cf480d7ab1799325e4996e7a39380b77b38 SHA512 8bab0f70815b0298c62be560974d213c2e29b95bf06181598d976c962e1ecb66da5a3d6facd711adfd70dc1bdb64228b2916cdac568c1165324e348b0adda678 WHIRLPOOL b6ca6dd58b8b4216f4bb256aef4f206b8413afec911d42365ddfc59f10a62b4ef342eeea56ede962236fc90cd4e2a08e27f4705e892b32f8b4b427ecc8d03a4a
DIST texlive-module-kpathsea.doc-2014.tar.xz 998516 SHA256 d3a1829dfaa17955988fe018c84849a2ff9530a313f9394535d97ddd9602a0ae SHA512 12ae3d32930e42f80ff3fa354b3bbce3716cc2cbd682be6d4a72153bff29d28006f1bf1c3d6e945778cd2caf8380fb35cad169da6a0bf1c59f45752d4dcc61cf WHIRLPOOL 159dae0fa66337e22066498ccc3bb79bebaae9b281131921b953a68e728afaa75e13ea999a74db2c6ed981f6eb6073494628c2fe9343bf8e9e96d49eeff06dab

@ -1,103 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.0.1_p20110705.ebuild,v 1.8 2012/04/26 20:44:37 aballier Exp $
EAPI=3
inherit texlive-common eutils
TEXMFD_VERSION="3"
DESCRIPTION="Library implementing generic path searching, configuration, and TeX-specific file searching"
HOMEPAGE="http://tug.org/texlive/"
SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz
mirror://gentoo/${PN}-texmf.d-${TEXMFD_VERSION}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc source static-libs"
DEPEND="!<app-text/texlive-core-2010
!app-text/ptex"
RDEPEND="${DEPEND}"
S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN}
TL_VERSION=2011
EXTRA_TL_MODULES="kpathsea"
EXTRA_TL_DOC_MODULES="kpathsea.doc"
for i in ${EXTRA_TL_MODULES} ; do
SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${TL_VERSION}.tar.xz"
done
SRC_URI="${SRC_URI} doc? ( "
for i in ${EXTRA_TL_DOC_MODULES} ; do
SRC_URI="${SRC_URI} mirror://gentoo/texlive-module-${i}-${TL_VERSION}.tar.xz"
done
SRC_URI="${SRC_URI} ) "
src_prepare() {
epatch "${FILESDIR}/invocname.patch"
}
src_configure() {
# Too many regexps use A-Z a-z constructs, what causes problems with locales
# that don't have the same alphabetical order than ascii. Bug #347798
# So we set LC_ALL to C in order to avoid problems.
export LC_ALL=C
# Disable largefile because it seems to cause problems on big endian 32 bits
# systems...
econf \
--disable-largefile \
$(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" web2cdir="${EPREFIX}/usr/share/texmf/web2c" install || die
find "${D}" -name '*.la' -delete
dodir /usr/share # just in case
cp -pR "${WORKDIR}"/texmf "${ED}/usr/share/" || die "failed to install texmf trees"
if use source ; then
cp -pR "${WORKDIR}"/tlpkg "${ED}/usr/share/" || die "failed to install tlpkg files"
fi
# The default configuration expects it to be world writable, bug #266680
# People can still change it with texconfig though.
dodir /var/cache/fonts
fperms 1777 /var/cache/fonts
# Take care of fmtutil.cnf and texmf.cnf
dodir /etc/texmf/{fmtutil.d,texmf.d}
# Remove default texmf.cnf to ship our own, greatly based on texlive dvd's
# texmf.cnf
# It will also be generated from /etc/texmf/texmf.d files by texmf-update
rm -f "${ED}${TEXMF_PATH}/web2c/texmf.cnf"
insinto /etc/texmf/texmf.d
doins "${WORKDIR}/texmf.d/"*.cnf || die "failed to install texmf.d configuration files"
# Remove fmtutil.cnf, it will be regenerated from /etc/texmf/fmtutil.d files
# by texmf-update
rm -f "${ED}${TEXMF_PATH}/web2c/fmtutil.cnf"
dosym /etc/texmf/web2c/fmtutil.cnf ${TEXMF_PATH}/web2c/fmtutil.cnf
dosym /etc/texmf/web2c/texmf.cnf ${TEXMF_PATH}/web2c/texmf.cnf
# Keep it as that's where the formats will go
keepdir /var/lib/texmf
dodoc BUGS ChangeLog NEWS PROJECTS README || die
}
pkg_postinst() {
etexmf-update
}
pkg_postrm() {
etexmf-update
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild,v 1.3 2015/07/12 17:15:32 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/kpathsea/kpathsea-6.2.0_p20140525.ebuild,v 1.4 2015/07/22 19:14:08 blueness Exp $
EAPI=5
@ -15,7 +15,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz
LICENSE="GPL-2"
SLOT="0/${PV%_p*}"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~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 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="doc source static-libs"
DEPEND="!<app-text/texlive-core-2013

@ -1 +1,2 @@
DIST liberasurecode-1.0.7.tar.gz 352343 SHA256 97d0582bda2a20fb5138affa4927b2c61f3bf34f7d8301158a5ec577f62b9632 SHA512 d88999b746ccad582f7788a844d24d02720f6c77837721b19632ae4709a8b98ac481d3f92b2bd6f96e070efb77771ccf8aac0a8564a4bb9e9dba93bb485aa0b7 WHIRLPOOL 011f833b9ddd00b5e3e7419fc39c1b619b960548ec5042d0faec2895c53792f71f5bf371bcdf65282721ee5ddb69410e36aca92b70440c5070fff2b5e58c905f
DIST liberasurecode-1.0.8.tar.gz 202130 SHA256 d0ce0968f80e772bcabfc44bdf77dd144f4917b485951fbca25e199c439823a8 SHA512 eba22b48063c8ea19cf616a47eaef05565dc9444c464f0c795ed8092997c5d9102c524b69e8692cc696db98db0b9279c308cb99fcb691897a87c6cfb569319ad WHIRLPOOL 739c2992cd844df31397719f1e500472b9d6d53bc60ae3a5e237415615166a224a2c1e360512c33ca1f0bac93cf42d25734c1e8d7937c8b88fdf1dc03c59a018

@ -0,0 +1,32 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liberasurecode/liberasurecode-1.0.8.ebuild,v 1.1 2015/07/23 05:14:28 prometheanfire Exp $
EAPI=5
inherit toolchain-funcs
DESCRIPTION="Erasure Code API library written in C with pluggable Erasure Code backends."
HOMEPAGE="https://bitbucket.org/tsg-/liberasurecode/overview"
SRC_URI="https://bitbucket.org/tsg-/${PN}/get/v${PV}.tar.gz -> ${P}.tar.gz"
CUSTOM_VERSION="f61e907d2bbc"
S="${WORKDIR}/tsg--${PN}-${CUSTOM_VERSION}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="sys-devel/autoconf"
src_prepare() {
autoreconf -i -v || die "autoconf failed"
}
src_configure() {
econf
}
src_install() {
emake DESTDIR="${D}" install
}

@ -1,2 +1 @@
DIST libmemcache-1.2.4.tar.bz2 40861 SHA256 c70f857753998106ac7d3542bd15014438270d261da4b3c24279e1db43f24dca SHA512 3b771685e7ef76697368f43124834e555210252881aa0ba6f79f8da3488abe9eba310378b01f08999498d72cadf24aa53573722ef8f7ea3db19d7bc9554d63fe WHIRLPOOL 12bbd36fc0fa97ff16031e27a3221fec4c043021b1cc9eb2e2803fcf6111d2d716673f3c289de0853b81e8e679632476226096868b819e9d454f01e9e65e457b
DIST libmemcache-1.4.0.rc2.tar.bz2 301136 SHA256 f496d41092c697384a7180720689da6a85d7c6ea2283eca69c8aaff2b58bebbf SHA512 4b8c09c425d48d0ad040d3f01ec3c0d88babefb702b666d5cb3d10eac9993be88d00120b57b6224f7d55ae979d3136de10d5ddc793d9aa7f8b9531b5d79449d0 WHIRLPOOL 89cf5df9b87193ce25b3c76086e59c9879fadb6ba9343e6a97a3982fd50976e4ec69668360ceaf5183e73470a4c3841c19eaa65a38a69a472f15dccc9404b540

@ -1,37 +0,0 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcache/libmemcache-1.2.4-r2.ebuild,v 1.2 2007/12/28 19:15:19 drac Exp $
inherit toolchain-funcs
DESCRIPTION="C API for memcached"
HOMEPAGE="http://people.freebsd.org/~seanc/libmemcache/"
SRC_URI="http://people.freebsd.org/~seanc/libmemcache/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc ~sparc-fbsd x86"
IUSE=""
doit() {
echo "$@"
$@
}
src_compile() {
doit $(tc-getCC) ${CFLAGS} -fPIC -c memcache.c || die
doit $(tc-getCC) ${LDFLAGS} -Wl,-soname -Wl,libmemcache.so.${PV%%.*} -shared -o libmemcache.so.${PV%.*} \
memcache.o || die
}
src_install() {
insinto /usr/include
doins memcache.h || die
dolib.so libmemcache.so.${PV%.*} || die
dosym /usr/lib/libmemcache.so.${PV%.*} /usr/lib/libmemcache.so
doman memcache.4
dodoc ChangeLog INSTALL
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-3.1.2_p10.ebuild,v 1.9 2015/07/22 15:20:46 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-3.1.2_p10.ebuild,v 1.10 2015/07/23 02:45:16 vapier Exp $
EAPI="4"
@ -16,7 +16,7 @@ SRC_URI="http://www.mpfr.org/mpfr-${MY_PV}/${MY_P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="static-libs"
RDEPEND=">=dev-libs/gmp-4.1.4-r2[${MULTILIB_USEDEP},static-libs?]"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild,v 1.3 2015/07/12 17:20:20 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ptexenc/ptexenc-1.3.2_p20140525-r1.ebuild,v 1.4 2015/07/22 19:15:54 blueness Exp $
EAPI=3
@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos"
IUSE="iconv static-libs"
DEPEND="iconv? ( virtual/libiconv )

@ -1,2 +1,3 @@
DIST oslo.vmware-0.11.1.tar.gz 103846 SHA256 594231dfeb2294d2cee627da9c4ec8438d985c03e4e711f8d10c073641cde293 SHA512 04c27708e5da05710ef7f86e0a2dace7c3400e27728947d02d2d5fe4362811baa42b0e1c5298709b1bb416e45327129345276dce0c34bc9b2fa6f3d338f8d0ba WHIRLPOOL 6f6337ab64a0de5773791b1f282c1c9cef221705c4ea346a067d4b450b4e6e17ae27990244f2f8051996cf7e739e4c027f96c01e6cc3b3381e17d5c0bf985a3b
DIST oslo.vmware-0.11.2.tar.gz 102933 SHA256 036cf0ad6ab0d4defd743678999851d570c2ca1ff34eba916920ce54d9a5d348 SHA512 632635adcc09749d0fe8bd204e1b06374e9790cec4d53cbaa06b2afa6745460cd417d60df26cb1e287d6e9de98eaa09788c6797993a06d8649b765a9298d0f39 WHIRLPOOL dd77312f307e5f65a969bae52e52dbab175e4a25f627d3ccf35435ac64c551093b8b67b707388d46175d93f344e2731ebdfa2ba6062ac3b562a00877cc98b880
DIST oslo.vmware-0.7.0.tar.gz 69513 SHA256 c4c7f3b0a3734d357122beec977fea3cb48988c09c34ad4c5cfcd8211853484f SHA512 02e899613c23f4d7b2f46b7388a5a15aceae2537af0d9bf311b0b2a4b22d3afd534b07d0d444e1bfe2a0c0ae481924970a2b9b0274ca496dce1b6ff909f8eaab WHIRLPOOL 049cd90379a11b0e59884a25c5f8224bca40b8cdd28aaa5d8c2cc9da2c83850fb6ace2bd92cf04e665c4658831eb94bbaa3ffcbd702bb4e1e6663624d154bbd7

@ -0,0 +1,72 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-vmware/oslo-vmware-0.11.2.ebuild,v 1.1 2015/07/23 03:33:58 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 python3_4 )
inherit distutils-r1
DESCRIPTION="Oslo VMware library for OpenStack projects"
HOMEPAGE="https://pypi.python.org/pypi/oslo.vmware"
SRC_URI="mirror://pypi/${PN:0:1}/oslo.vmware/oslo.vmware-${PV}.tar.gz"
S="${WORKDIR}/oslo.vmware-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pbr-0.8[${PYTHON_USEDEP}]
<dev-python/pbr-1.0[${PYTHON_USEDEP}]
test? (
>=dev-python/hacking-0.9.2[${PYTHON_USEDEP}]
<dev-python/hacking-0.10[${PYTHON_USEDEP}]
>=dev-python/pylint-1.3.0[${PYTHON_USEDEP}]
>=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
>=dev-python/mock-1.0[${PYTHON_USEDEP}]
<dev-python/mock-1.1.0[${PYTHON_USEDEP}]
>=dev-python/mox3-0.7.0[${PYTHON_USEDEP}]
>=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
>=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
>=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
>=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
!~dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.5.0[${PYTHON_USEDEP}]
<dev-python/oslo-sphinx-2.6.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
<dev-python/sphinx-1.3[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
)"
RDEPEND="
>=dev-python/stevedore-1.3.0[${PYTHON_USEDEP}]
<dev-python/stevedore-1.4.0[${PYTHON_USEDEP}]
>=dev-python/netaddr-0.7.12[${PYTHON_USEDEP}]
>=dev-python/iso8601-0.1.9[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
>=dev-python/oslo-i18n-1.5.0[${PYTHON_USEDEP}]
<dev-python/oslo-i18n-1.6.0[${PYTHON_USEDEP}]
>=dev-python/oslo-serialization-1.4.0[${PYTHON_USEDEP}]
<dev-python/oslo-serialization-1.5.0[${PYTHON_USEDEP}]
>=dev-python/oslo-utils-1.4.0[${PYTHON_USEDEP}]
<dev-python/oslo-utils-1.5.0[${PYTHON_USEDEP}]
>=dev-python/Babel-1.3[${PYTHON_USEDEP}]
>=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}]
>=dev-python/suds-0.4[$(python_gen_usedep 'python2*')]
>=dev-python/suds-jurko-0.6[$(python_gen_usedep 'python3*')]
>=dev-python/eventlet-0.16.1[${PYTHON_USEDEP}]
!~dev-python/eventlet-0.17.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.2.0[${PYTHON_USEDEP}]
!~dev-python/requests-2.4.0[${PYTHON_USEDEP}]
>=dev-python/urllib3-1.8.3[${PYTHON_USEDEP}]
<dev-python/urllib3-1.11[${PYTHON_USEDEP}]
>=dev-python/oslo-concurrency-1.8.0[${PYTHON_USEDEP}]
<dev-python/oslo-concurrency-1.9.0[${PYTHON_USEDEP}]
"
python_test() {
nosetests tests/ || die "test failed under ${EPYTHON}"
}

@ -1,4 +1,5 @@
DIST python-novaclient-2.17.0.tar.gz 230712 SHA256 af6f46890715eb5f4e0d25a714effbbac8da020715f81b1572a301c5e9887197 SHA512 6493aadab5589fb2a02c4a1440cd3f71e6918688ba634a89101c7c7b10aaa6600d8511097b07679f5927746c3463584287a0d7602a47397f169697a944b6a731 WHIRLPOOL d7523bee3ad59e40e021177cd98dff5a91136ea3ee56e2844857dced5b9af7a2bb47c5880d9fe0d35e4de9a022864c88e009b71ca762dea84eb139ff5b99cad1
DIST python-novaclient-2.20.0.tar.gz 267956 SHA256 73fc8169d58e910340aae1ac5370c3b63a9943f748e2a20e4a1dfd7277525c86 SHA512 a1ff87b46d1520346380bf5396383d84e036892f1568d2eb201eb667837919e1cd8db3267a1ea9f6dfc616de0714374c81465de76b8a9bfec32c4742eeee3807 WHIRLPOOL 1fb3052d3fa457524c65b3de087a7cf7377d274b7a9d924529289e2e2b02992c5182cd1ec5aeef443a81c8e1d08fa1202caf6c5e12e3df40b5011f75df0837f8
DIST python-novaclient-2.23.0.tar.gz 224690 SHA256 0f82e723b1cef48df75d4b47ece7dd6ee980563628d8cfbef10cd35707193e07 SHA512 38f7aa5747c9cea2e8e98ec91e18ada70c1cd61b0236285a6335cff2a90ff465963d648489fec8c4bb96e55e4c8f2c77ddbae58d42e43807e1d0d70f4bdfe9fe WHIRLPOOL 883b5e04ec39e525fea8c22969a72a8fc334c741b2419e3a4cab9f2f6563286dc6968615b7df7a17d2ab4e17de5d182163eb60682fd69bfa84312629d2ea731d
DIST python-novaclient-2.23.1.tar.gz 225659 SHA256 8a8b0ace401099518ab852b294f89199a9358085b51ffa0e52dfd05c2332e09e SHA512 a3ac753a4cac5e769cef59e6ae8d182f0abfe03b9ff10fa8a34b1d395fd5a83e92e999af644d1248417700654a6e3b3cb3d9818044c4c258d06304d99738a978 WHIRLPOOL 99a38df0e76f8c18c7bea23154c9b4641fe1b9a2086493a0ee2807c151173be21b8f18b27a48231991cca10ffbc32f2fa26bf265d30baa8c310a654c7557c30d
DIST python-novaclient-2.25.0.tar.gz 228156 SHA256 433e314223218031e7ea6e71baa54c1b13485d47fbb128ed3752e2a72ad7cb83 SHA512 b65495e94da9d42aa6eb51090ea7c2af6784e74121ea96c7021d013b8570af1df90d993df332b92274d5f92bc634149ad14616804e68e93fb4529b6b15dbb5c4 WHIRLPOOL 7401147c278a23768e18998b90842c6c17fe2c9dfb28cd320dfe0dc6ce7afd2e0481d6275deb82a4ce5c3ac826b8303390a8d80c011a242c4bed0fff2e446615

@ -0,0 +1,67 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.23.1.ebuild,v 1.1 2015/07/23 03:39:23 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 python3_4 )
inherit distutils-r1
DESCRIPTION="A client for the OpenStack Nova API"
HOMEPAGE="https://github.com/openstack/python-novaclient"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pbr-0.8[${PYTHON_USEDEP}]
<dev-python/pbr-1.0[${PYTHON_USEDEP}]
test? (
>=dev-python/hacking-0.10.0[${PYTHON_USEDEP}]
<dev-python/hacking-0.11[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
>=dev-python/keyring-2.1[${PYTHON_USEDEP}]
!~dev-python/keyring-3.3[${PYTHON_USEDEP}]
>=dev-python/mock-1.0[${PYTHON_USEDEP}]
<dev-python/mock-1.1.0[${PYTHON_USEDEP}]
>=dev-python/requests-mock-0.5.1[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
<dev-python/sphinx-1.3[${PYTHON_USEDEP}]
>=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]
>=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
>=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
>=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
!~dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
>=dev-python/tempest-lib-0.3.0[${PYTHON_USEDEP}]
)"
RDEPEND="
>=dev-python/iso8601-0.1.9[${PYTHON_USEDEP}]
>=dev-python/oslo-i18n-1.5.0[${PYTHON_USEDEP}]
<dev-python/oslo-i18n-1.6.0[${PYTHON_USEDEP}]
>=dev-python/oslo-serialization-1.4.0[${PYTHON_USEDEP}]
<dev-python/oslo-serialization-1.5.0[${PYTHON_USEDEP}]
>=dev-python/oslo-utils-1.2.0[${PYTHON_USEDEP}]
>=dev-python/prettytable-0.7[${PYTHON_USEDEP}]
<dev-python/prettytable-0.8[${PYTHON_USEDEP}]
>=dev-python/requests-2.2.0[${PYTHON_USEDEP}]
!~dev-python/requests-2.4.0[${PYTHON_USEDEP}]
>=dev-python/simplejson-2.2.0[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
>=dev-python/Babel-1.3[${PYTHON_USEDEP}]
>=dev-python/python-keystoneclient-1.1.0[${PYTHON_USEDEP}]"
python_prepare_all() {
# built in...
sed -i '/argparse/d' requirements.txt
distutils-r1_python_prepare_all
}
python_test() {
testr init
testr run --parallel || die "testsuite failed under python2.7"
}

@ -0,0 +1 @@
DIST suds-jurko-0.6.tar.bz2 143985 SHA256 29edb72fd21e3044093d86f33c66cf847c5aaab26d64cb90e69e528ef014e57f SHA512 ec078b159bd83c5799e293d9607138ee1da90fdc64da203999555a4324ce7be0235156d3c7ad28e46f84180a6e51e2f3f82228e5e77ae41c61ee20f3db2c916b WHIRLPOOL 9c62762f1c865cf7763d9a7332dfa9927dcb693a99414de063451a11581a7e303b19c3c0f840db339829bd59c116565fba26d98aaa520739a6aa84edaabc90aa

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
This is hopefully just a temporary fork of the original suds Python library project created because the original project development seems to have stalled. Should be reintegrated back into the original project if it ever gets revived again.
</longdescription>
</pkgmetadata>

@ -0,0 +1,24 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/suds-jurko/suds-jurko-0.6.ebuild,v 1.2 2015/07/23 03:33:20 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 python3_4 )
inherit distutils-r1
DESCRIPTION="Lightweight SOAP client (Jurko's fork) (py3 support)"
HOMEPAGE="http://bitbucket.org/jurko/suds"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
python_prepare() {
rm -R tests
}

@ -1,2 +1,3 @@
DIST torment-1.0.0.tar.gz 20157 SHA256 3c0e48e4736fa7de90a1088a66f1cbadc8c1dc6217e33fe7c4ec72aabbee2dfc SHA512 76e5c94f196131f5d9c2373837ef65bff25affa1c2bbbb03c1ea3137c303ab1b4ab50cdd453e318a7705011b6135cc5777d1860b74bae6cf51f8e1bd474255c4 WHIRLPOOL b49bd27bba0f988de40d982bc970b922e7ea40a940a608c531cca2d901dbeae189c44be820ba1cbe4fa8b516c7bca7e1d49673a4bb49682603a63d8f6287e4bf
DIST torment-1.0.1.tar.gz 20391 SHA256 386e7d58d53ae1dec51e11a503a848aa2fdafda3200161137eb6826461948a0c SHA512 40658c17b0435c6601b61f12cb9b58c749f8c7b423b8c29f1da5a514956bb6b7c2e87ce71c833447c2627757bb91e50b1b25bdd475d287fcb14169e0d7ea127a WHIRLPOOL 2a6ecd12a98d9984f0a652e09c44b19dcb6ec503bcbe838acfdc7da8d885f1831771bd3d0c676432974b679921555c1857b339521b60facd97bacd35b1113dda
DIST torment-2.0.0.tar.gz 23235 SHA256 6224b8d426245b9d7764157807587d65fcf41a9b5cebbd1cf8f0f7e617ff1169 SHA512 dddf6e4a2d40333b66a50e45f7acd1fb8f7d89e9db750a9e4b5fd10c8e79b67542b6f352d89e6fa81280954c152dde732304b1af3e6f63cee3ecd2bfa68fc100 WHIRLPOOL 0276fefa72ba3a84a14983ad687ba26128af30b4daf7413e0ad505b761bd65e980bee07ae3d4bd17ffb14e06a219d2086ceff80cde9295838bfff025acde9175

@ -0,0 +1,46 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/torment/torment-2.0.0.ebuild,v 1.1 2015/07/22 23:52:56 alunduil Exp $
EAPI=5
PYTHON_COMPAT=( python3_3 python3_4 )
inherit distutils-r1
DESCRIPTION="A Study in Fixture Based Testing Frameworking"
HOMEPAGE="https://github.com/kumoru/torment"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc test"
CDEPEND="dev-python/mypy[${PYTHON_USEDEP}]"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
)
test? (
${CDEPEND}
dev-python/coverage[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
)
"
RDEPEND="${CDEPEND}"
python_compile_all() {
use doc && esetup.py build_sphinx
}
python_test() {
nosetests || die "Tests failed on ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/contracts/contracts-0.10.1.ebuild,v 1.1 2015/07/18 06:22:47 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/contracts/contracts-0.10.1.ebuild,v 1.2 2015/07/22 18:33:45 zlogene Exp $
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@ -17,5 +17,5 @@ HOMEPAGE="http://github.com/egonSchiele/contracts.ruby"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~x86"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crass/crass-1.0.2.ebuild,v 1.1 2015/04/19 05:36:04 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crass/crass-1.0.2.ebuild,v 1.2 2015/07/22 18:52:49 zlogene Exp $
EAPI=5
@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/rgrove/crass/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_bdepend ">=dev-ruby/minitest-5.0.8:5"

@ -2,3 +2,4 @@ DIST facter-2.4.1.gem 236544 SHA256 4c8836066378d387c0561e4c3574865fa10d85d7474d
DIST facter-2.4.3.gem 245760 SHA256 3c1e49c32e6b07c1f802ec120e860f882938a5057c6f3733594b7ff8a80ee58f SHA512 a834c50d0ac14a751ccd0d5da3f8d64a83173e82991e2a3cd70bf47c023ee0b0517baed3726398a1075043b1237a91cc8389d58acbb2bbf79c76b5e2ecd3aedb WHIRLPOOL daa82ef6b2f6eb2f640a106528e67f5631748ee4232fbe9c595146b25ac6ca01048d3fc7a5cf519469bec597b6cc6dc6a4d6b2b779b7c77972fbb8efc952c32b
DIST facter-2.4.4.gem 245760 SHA256 4f7b592f9b6bc6ad8a9789e3ca0953fae07e6d06b10a9cb7599eb1e71a03646b SHA512 9d485d147cf726cd4a2943d1ee3475d2593067953102c11487e2916d59464407016a074b6eb31af4da37a3914588937d827d2cf4c64196650baefa2fb097bb89 WHIRLPOOL 574afae52fc7ad3cf8619abcd89eee4ca38e5ecc903e316bfc18aef708fa32e8b3487f315605a21ac9faf0ba66989c8d108d77a9104f74f79fc5e953dd8ccdd7
DIST facter-3.0.1.tar.gz 503567 SHA256 0b4bcad97bdee64e0c329a124a48dccc7c684781161c7f05ca45b1978a34ba94 SHA512 ab72081f88fe420628c4c9402e359769498ad1ed6995d70a2af06a0449503ee7a2dd77f5bcc41c3b6d8dbb458fa76c1e4d382e97ddb61cb65f4ec4590e6e13e5 WHIRLPOOL 51aa812dcd625955c4bc8cc0a5dbe60bb7669b8ad05ed65f2e923e91e90ace99735fdb892efe323d8cb0c8671c09fb387cd0b8fe8f17a5a22c31d4526533f59f
DIST facter-3.0.2.tar.gz 508583 SHA256 2fee1ee938196790f24b7b876ff04a5d69c0ac1492ff6935b003ae23500eced7 SHA512 57a5c40d2ad07911a2b9c242b22bcffbbf8eedc88e12d7d6e8f6cf044ef30034cae7230468a7b414c93d6008d8805be1621a8c6b1af2543539d979bd3df7d1e8 WHIRLPOOL 6b89ca76ba7d993e1b87fe840b76dda9b1d8534df06f9f45e3c24752b95b441e471899446018f66bb6db0d490bb4a76cd4ab146a5060755333072ab5a5767bd3

@ -0,0 +1,63 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/facter/facter-3.0.2.ebuild,v 1.1 2015/07/23 02:42:27 prometheanfire Exp $
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21 ruby22"
inherit cmake-utils ruby-ng
DESCRIPTION="A cross-platform Ruby library for retrieving facts from operating systems"
HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/"
SRC_URI="https://downloads.puppetlabs.com/facter/${P}.tar.gz"
S="${S}/all/${P}"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="debug test"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
CDEPEND="
>=sys-devel/gcc-4.8:*
>=dev-libs/boost-1.54
>=dev-cpp/yaml-cpp-0.5.1
dev-libs/openssl:*
sys-apps/util-linux
app-emulation/virt-what
net-misc/curl"
RDEPEND+=" ${CDEPEND}"
DEPEND+=" test? ( ${CDEPEND} )"
src_prepare() {
sed -i 's/\-Werror\ //g' "vendor/leatherman/cmake/cflags.cmake" || die
# Remove the code that installs facter.rb to the wrong directory.
sed -i '/RUBY_VENDORDIR/d' lib/CMakeLists.txt || die
# make it support multilib
sed -i 's/\ lib)/\ lib${LIB_SUFFIX})/g' lib/CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_SYSCONFDIR=/etc
-DCMAKE_INSTALL_LOCALSTATEDIR=/var
)
if use debug; then
mycmakeargs+=(
-DCMAKE_BUILD_TYPE=Debug
)
fi
cmake-utils_src_configure
}
each_ruby_install() {
doruby "${BUILD_DIR}"/lib/facter.rb
}
src_install() {
cmake-utils_src_install
ruby-ng_src_install
}

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.2.ebuild,v 1.5 2015/07/18 11:24:25 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gherkin/gherkin-2.12.2.ebuild,v 1.6 2015/07/22 18:28:10 zlogene Exp $
EAPI=5
USE_RUBY="ruby19 ruby20 ruby21 ruby22"
@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/cucumber/gherkin"
LICENSE="MIT"
SRC_URI="https://github.com/cucumber/gherkin/archive/v${PV}.tar.gz -> ${P}-git.tgz"
KEYWORDS="~amd64 ~arm ~hppa ~ppc64"
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
SLOT="0"
IUSE="doc test"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogumbo/nokogumbo-1.4.1.ebuild,v 1.1 2015/05/16 06:41:57 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogumbo/nokogumbo-1.4.1.ebuild,v 1.2 2015/07/22 18:42:53 zlogene Exp $
EAPI=5
@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/rubys/nokogumbo"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND+=">=dev-libs/gumbo-0.10"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogumbo/nokogumbo-1.4.2.ebuild,v 1.1 2015/05/23 21:14:30 mrueg Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogumbo/nokogumbo-1.4.2.ebuild,v 1.2 2015/07/22 18:42:53 zlogene Exp $
EAPI=5
@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/rubys/nokogumbo"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND+=">=dev-libs/gumbo-0.10"

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

Loading…
Cancel
Save