Sync with portage [Tue Sep 16 11:07:38 MSK 2014].

mhiretskiy
root 10 years ago
parent 5ae68fb79e
commit 2f8bf6c472

@ -1,2 +1,4 @@
DIST xz-5.0.5.tar.gz 1305685 SHA256 5dcffe6a3726d23d1711a65288de2e215b4960da5092248ce63c99d50093b93a SHA512 dc36f305bc2abf97da8c86e44b661d9ac2d5ed58e89e83f007f49e0d7cf4871d7b6defa51b9348d3f725793517f7ac47de572f6d23212e074c32032dd8357772 WHIRLPOOL 7e95d6d064239ebe6f1231ec8a5a1390e3c5d71863d7e8d1339bed5f20255d750e3f9df953ed7e95ae2b43607aab93747a5a2d948e4bb6745d3adcf7ea25c455
DIST xz-5.0.6.tar.gz 1317873 SHA256 b6cf4cdc1313556a00848e722625bce40d2cd552c052b0465791c64c9202c3f1 SHA512 6c79102219f2c555718f4c7a646d12b944444a41adc9ffd247082daf30c19f69c2bccccfbfdeef87a3eac871af27543cf774d0159e692494d90b7152678ccb09 WHIRLPOOL 3c4b318f4ffdf4a6d91d9be505737978cfca5617dcb57ca9f82f188f3c8c58bff41d6da498a106ace34b02772d9745146b2c6beee806d0333044c270bfe44c4a
DIST xz-5.1.3alpha.tar.gz 1262328 SHA256 9f94506e301d5b6863921bba861a99ba00de384dafb4e5f409679a93e41613d4 SHA512 839c999e1eee273a3120e76d5096f8a523c157a2dacd83f6d554e3f2a4f790f3f7360cfbc7749c1c42cb213d0a55eb74216ed2236a6568f49027e119a3184687 WHIRLPOOL 3c1227c899dcab955b2db10ed94432fff6a5025d0da957dfab14b8129d25cc8478b372bcae6b9b089769b732d19d570ad42c187fa568e257ad5fd5bf15eb8743
DIST xz-5.1.4beta.tar.gz 1295305 SHA256 7c47b9e2cfb5be93245d9fcf2bec5b459412b7628c333896dded373dcd0cf0e0 SHA512 425fa74b8c7827162f94448eb22f812a5525691714e7e139fffa08ec9163d7917c7eca113ac333732e4ed4d1fa76ec039fdad2c78ac2ddebfc2acc1f2dec0f30 WHIRLPOOL 38c785fabb97767bf583358a9284fc1cd907e923168ba3e9d298ffd63257ab4705be459cf9acbc725bafba753fd9c14e2c556b3fc7d328ed5fff2f14fb8d68d8

@ -0,0 +1,73 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/xz-utils/xz-utils-5.0.6.ebuild,v 1.1 2014/09/15 15:31:22 polynomial-c Exp $
# Remember: we cannot leverage autotools in this ebuild in order
# to avoid circular deps with autotools
EAPI="4"
inherit eutils multilib toolchain-funcs libtool multilib-minimal
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="http://git.tukaani.org/xz.git"
inherit git-2 autotools
SRC_URI=""
EXTRA_DEPEND="sys-devel/gettext dev-vcs/cvs >=sys-devel/libtool-2" #272880 286068
else
MY_P="${PN/-utils}-${PV/_}"
SRC_URI="http://tukaani.org/xz/${MY_P}.tar.gz"
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 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S=${WORKDIR}/${MY_P}
EXTRA_DEPEND=
fi
DESCRIPTION="utils for managing LZMA compressed files"
HOMEPAGE="http://tukaani.org/xz/"
# See top-level COPYING file as it outlines the various pieces and their licenses.
LICENSE="public-domain LGPL-2.1+ GPL-2+"
SLOT="0"
IUSE="nls static-libs +threads"
RDEPEND="!<app-arch/lzma-4.63
!app-arch/lzma-utils
!<app-arch/p7zip-4.57"
DEPEND="${RDEPEND}
${EXTRA_DEPEND}"
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
eautopoint
eautoreconf
else
elibtoolize # to allow building shared libs on Solaris/x64
fi
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable nls) \
$(use_enable threads) \
$(use_enable static-libs static) \
$(multilib_is_native_abi || echo --disable-{xz,xzdec,lzmadec,lzmainfo,lzma-links,scripts})
}
multilib_src_install() {
default
multilib_is_native_abi && gen_usr_ldscript -a lzma
}
multilib_src_install_all() {
prune_libtool_files --all
rm "${ED}"/usr/share/doc/xz/COPYING* || die
mv "${ED}"/usr/share/doc/{xz,${PF}} || die
}
pkg_preinst() {
preserve_old_lib /usr/$(get_libdir)/liblzma$(get_libname 0)
}
pkg_postinst() {
preserve_old_lib_notify /usr/$(get_libdir)/liblzma$(get_libname 0)
}

@ -0,0 +1,73 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/xz-utils/xz-utils-5.1.4_beta.ebuild,v 1.1 2014/09/15 15:31:22 polynomial-c Exp $
# Remember: we cannot leverage autotools in this ebuild in order
# to avoid circular deps with autotools
EAPI="4"
inherit eutils multilib toolchain-funcs libtool multilib-minimal
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="http://git.tukaani.org/xz.git"
inherit git-2 autotools
SRC_URI=""
EXTRA_DEPEND="sys-devel/gettext dev-vcs/cvs >=sys-devel/libtool-2" #272880 286068
else
MY_P="${PN/-utils}-${PV/_}"
SRC_URI="http://tukaani.org/xz/${MY_P}.tar.gz"
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 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S=${WORKDIR}/${MY_P}
EXTRA_DEPEND=
fi
DESCRIPTION="utils for managing LZMA compressed files"
HOMEPAGE="http://tukaani.org/xz/"
# See top-level COPYING file as it outlines the various pieces and their licenses.
LICENSE="public-domain LGPL-2.1+ GPL-2+"
SLOT="0"
IUSE="nls static-libs +threads"
RDEPEND="!<app-arch/lzma-4.63
!app-arch/lzma-utils
!<app-arch/p7zip-4.57"
DEPEND="${RDEPEND}
${EXTRA_DEPEND}"
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
eautopoint
eautoreconf
else
elibtoolize # to allow building shared libs on Solaris/x64
fi
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable nls) \
$(use_enable threads) \
$(use_enable static-libs static) \
$(multilib_is_native_abi || echo --disable-{xz,xzdec,lzmadec,lzmainfo,lzma-links,scripts})
}
multilib_src_install() {
default
multilib_is_native_abi && gen_usr_ldscript -a lzma
}
multilib_src_install_all() {
prune_libtool_files --all
rm "${ED}"/usr/share/doc/xz/COPYING* || die
mv "${ED}"/usr/share/doc/{xz,${PF}} || die
}
pkg_preinst() {
preserve_old_lib /usr/$(get_libdir)/liblzma$(get_libname 0)
}
pkg_postinst() {
preserve_old_lib_notify /usr/$(get_libdir)/liblzma$(get_libname 0)
}

@ -1,3 +1,4 @@
DIST duply_1.7.3.tgz 34684 SHA256 e0ae298b06125bb6665a3f4822828d36e9f56c93755b45e2240fd1643e7f05d3 SHA512 e71d4bd03828a47cb7b5af164d9f49c911a837c1a016efe8832a56f9ec9913a5237bee0c89cd4a1aece6db454873e8c39e70224ab4c725e7a5ce5eae73e556ff WHIRLPOOL 6881a80c62537ed77e877fbe9c6700aa16e4efe14d4d851c12c31411f2c332ef7d79f85a6815aafbc57e27e6a397d9fa54360e7783bd12435e961b1f4f211bde
DIST duply_1.7.4.tgz 34887 SHA256 2bbcd6e55fcaa7ae2c416a6ce2d3ae0bc219dd05049d8708ff0e79a3349599e7 SHA512 82b722af95d48e231c6540254fe659fc2ed2cdee5ebde3b1f7b192feac0b88ae44c834dde34417324ae0113bf5f8d621602f9587d1356347d606892da7b46405 WHIRLPOOL 6fbe7e1524feb482b796b2db5d39d7276f291f7107ea26db735716f3cbfedd9613b450dd2f06907a54b156d82140584ece2e58a850bca82fe2a7831cac90cc8b
DIST duply_1.8.0.tgz 35252 SHA256 6642d812a741186d2e995289a682ba5f45149127f957da4c8ebd54fb5ac1f5e5 SHA512 8bb10fc98c44ce325f738fea8b46fd7c03132b681d1e98f8efc2e0b985b895a255a884ce5c99fcb9d1591fb37b5a7f2994ec309ef5ca9b9d2116816641d05d9b WHIRLPOOL 5281b624261aa586a8fc156ea498c3ab3579ccf47588af47d0c0678610b960cb29390359e5870e9817a7ac459e47eebc1fa555d1f1aae29d0cb4ad96914310e0
DIST duply_1.9.0.tgz 35692 SHA256 28dd73f7987507a11abdec4f89698f059d7165e8519b9c26f542fec43060b492 SHA512 fa78661992822fc4639bba1e3f86f1542366d07d7aa08b8bff1b5b18b3e3cba3f97b9344792db4cc3ca06881fdb215f934cecfea774d8394dc2451f23aa8e19a WHIRLPOOL 28c5cccdff1488e2e02a08a1b6380e93d7d1b9091b4fe62a58aba4dbd04af132e93a26c67520700c37040baeb729d2d612b8cc8fb70e13bd8422b3794123fbc0

@ -0,0 +1,37 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/duply/duply-1.9.0.ebuild,v 1.1 2014/09/15 18:39:41 jlec Exp $
EAPI=5
inherit readme.gentoo
DESCRIPTION="A shell frontend for duplicity"
HOMEPAGE="http://duply.net"
SRC_URI="mirror://sourceforge/ftplicity/${PN}_${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-text/txt2man"
RDEPEND="app-backup/duplicity"
S=${WORKDIR}/${PN}_${PV}
DOC_CONTENTS="
If you use ${PN} at the first time please have a
look at the the usage help text \"${PN} usage\"
for further information."
src_install() {
dobin ${PN}
./${PN} txt2man > ${PN}.1
doman ${PN}.1
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
}

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.26-r1.ebuild,v 1.2 2014/08/29 21:14:37 alonbl Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.0.26-r2.ebuild,v 1.1 2014/09/15 17:15:24 alonbl Exp $
EAPI="5"
@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/gnupg/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="bzip2 doc ldap nls mta readline static selinux smartcard usb"
IUSE="bzip2 doc ldap nls mta readline static selinux smartcard tools usb"
COMMON_DEPEND_LIBS="
>=dev-libs/libassuan-2
@ -111,8 +111,20 @@ src_compile() {
src_install() {
default
# bug#192151
dobin tools/gpgsplit tools/gpg-zip
if use tools; then
for f in \
convert-from-106 \
gpg-check-pattern \
gpg-zip \
gpgconf \
gpgsplit \
lspgpot \
mail-signed-keys \
make-dns-cert \
; do
dobin "tools/${f}" tools/gpg-zip
done
fi
emake DESTDIR="${D}" -f doc/Makefile uninstall-nobase_dist_docDATA
rm "${ED}"/usr/share/gnupg/help* || die

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.0_beta783.ebuild,v 1.2 2014/08/29 21:14:37 alonbl Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.0_beta783.ebuild,v 1.3 2014/09/15 17:15:24 alonbl Exp $
EAPI="5"
@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/gnupg/unstable/${MY_P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="bzip2 doc nls readline static selinux smartcard usb"
IUSE="bzip2 doc nls readline static selinux smartcard tools usb"
COMMON_DEPEND_LIBS="
dev-libs/npth
@ -111,8 +111,20 @@ src_compile() {
src_install() {
default
# bug#192151
dobin tools/gpgsplit tools/gpg-zip
if use tools; then
for f in \
convert-from-106 \
gpg-check-pattern \
gpg-zip \
gpgconf \
gpgsplit \
lspgpot \
mail-signed-keys \
make-dns-cert \
; do
dobin "tools/${f}" tools/gpg-zip
done
fi
emake DESTDIR="${D}" -f doc/Makefile uninstall-nobase_dist_docDATA
rm "${ED}"/usr/share/gnupg/help* || die

@ -24,5 +24,8 @@
Build mta support using
<pkg>virtual/mta</pkg>.
</flag>
<flag name='tools'>
Install extra tools.
</flag>
</use>
</pkgmetadata>

@ -0,0 +1,318 @@
Description: Fix potential race condition when building in parallel mode
Origin: upstream, http://cvs.sourceforge.jp/cvs/view/freewnn/FreeWnn/Wnn/pubdicplus/Makefile.in?r1=1.7&r2=1.8&view=patch
Bug-Debian: http://bugs.debian.org/724058
--- a/Wnn/pubdicplus/Makefile.in 2010/02/22 17:06:54 1.7
+++ b/Wnn/pubdicplus/Makefile.in 2013/11/08 18:54:44 1.8
@@ -1,5 +1,5 @@
#
-# $Id: freewnn-1.1.1_alpha22-parallel-build.patch,v 1.1 2014/09/15 23:05:14 naota Exp $
+# $Id: freewnn-1.1.1_alpha22-parallel-build.patch,v 1.1 2014/09/15 23:05:14 naota Exp $
#
#
@@ -10,7 +10,7 @@
# 1987, 1988, 1989, 1990, 1991, 1992
# Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
# Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
-# Copyright FreeWnn Project 1999, 2000, 2001, 2002, 2004, 2010
+# Copyright FreeWnn Project 1999, 2000, 2001, 2002, 2004, 2010, 2013
#
# Maintainer: FreeWnn Project
#
@@ -42,13 +42,12 @@
ATOF = $(WNNJUTILOBJ)/atof
WNNTOUCH = $(WNNJUTILOBJ)/wnntouch
HINSI = @HINSI_DATA@
- FZK_FLAG =
LINKS = Version bio.hd chimei.hd computer.hd fzk.attr fzk.con fzk.fzkattr fzk.jirattr fzk.jircon fzk.master fzk.shuutan jinmei.hd kihon.hd koyuu.hd setsuji.hd special.hd special.u symbol.hd tankan.hd
WNNDICS = bio.u chimei.u computer.u jinmei.u kihon.u koyuu.u setsuji.u symbol.u tankan.u
-FZK_SRC= fzk.master fzk.attr fzk.jirattr fzk.fzkattr fzk.jircon fzk.con fzk.shuutan
+FZK_SRC= fzk.master-.c fzk.attr fzk.jirattr fzk.fzkattr fzk.jircon fzk.con fzk.shuutan
DIC= bio.dic chimei.dic computer.dic jinmei.dic kihon.dic koyuu.dic setsuji.dic special.dic symbol.dic tankan.dic
@@ -68,24 +67,14 @@
$(RM) $@
$(LN) $? $@
-includes:: Version
-
depend:: Version
-clean::
- $(RM) Version
-
bio.hd: $(PUBDICPLUSSRC)/bio.hd
$(RM) $@
$(LN) $? $@
-includes:: bio.hd
-
depend:: bio.hd
-clean::
- $(RM) bio.hd
-
# bio.u: $(PUBDICPLUSSRC)/bio.u
# $(RM) $@
# $(LN) $? $@
@@ -101,13 +90,8 @@
$(RM) $@
$(LN) $? $@
-includes:: chimei.hd
-
depend:: chimei.hd
-clean::
- $(RM) chimei.hd
-
# chimei.u: $(PUBDICPLUSSRC)/chimei.u
# $(RM) $@
# $(LN) $? $@
@@ -123,13 +107,8 @@
$(RM) $@
$(LN) $? $@
-includes:: computer.hd
-
depend:: computer.hd
-clean::
- $(RM) computer.hd
-
# computer.u: $(PUBDICPLUSSRC)/computer.u
# $(RM) $@
# $(LN) $? $@
@@ -145,90 +124,50 @@
$(RM) $@
$(LN) $? $@
-includes:: fzk.attr
-
depend:: fzk.attr
-clean::
- $(RM) fzk.attr
-
fzk.con: $(PUBDICPLUSSRC)/fzk.con
$(RM) $@
$(LN) $? $@
-includes:: fzk.con
-
depend:: fzk.con
-clean::
- $(RM) fzk.con
-
fzk.fzkattr: $(PUBDICPLUSSRC)/fzk.fzkattr
$(RM) $@
$(LN) $? $@
-includes:: fzk.fzkattr
-
depend:: fzk.fzkattr
-clean::
- $(RM) fzk.fzkattr
-
fzk.jirattr: $(PUBDICPLUSSRC)/fzk.jirattr
$(RM) $@
$(LN) $? $@
-includes:: fzk.jirattr
-
depend:: fzk.jirattr
-clean::
- $(RM) fzk.jirattr
-
fzk.jircon: $(PUBDICPLUSSRC)/fzk.jircon
$(RM) $@
$(LN) $? $@
-includes:: fzk.jircon
-
depend:: fzk.jircon
-clean::
- $(RM) fzk.jircon
-
fzk.master: $(PUBDICPLUSSRC)/fzk.master
$(RM) $@
$(LN) $? $@
-includes:: fzk.master
-
depend:: fzk.master
-clean::
- $(RM) fzk.master
-
fzk.shuutan: $(PUBDICPLUSSRC)/fzk.shuutan
$(RM) $@
$(LN) $? $@
-includes:: fzk.shuutan
-
depend:: fzk.shuutan
-clean::
- $(RM) fzk.shuutan
-
jinmei.hd: $(PUBDICPLUSSRC)/jinmei.hd
$(RM) $@
$(LN) $? $@
-includes:: jinmei.hd
-
depend:: jinmei.hd
-clean::
- $(RM) jinmei.hd
-
# jinmei.u: $(PUBDICPLUSSRC)/jinmei.u
# $(RM) $@
# $(LN) $? $@
@@ -244,13 +183,8 @@
$(RM) $@
$(LN) $? $@
-includes:: kihon.hd
-
depend:: kihon.hd
-clean::
- $(RM) kihon.hd
-
# kihon.u: $(PUBDICPLUSSRC)/kihon.u
# $(RM) $@
# $(LN) $? $@
@@ -266,13 +200,8 @@
$(RM) $@
$(LN) $? $@
-includes:: koyuu.hd
-
depend:: koyuu.hd
-clean::
- $(RM) koyuu.hd
-
# koyuu.u: $(PUBDICPLUSSRC)/koyuu.u
# $(RM) $@
# $(LN) $? $@
@@ -288,13 +217,8 @@
$(RM) $@
$(LN) $? $@
-includes:: setsuji.hd
-
depend:: setsuji.hd
-clean::
- $(RM) setsuji.hd
-
# setsuji.u: $(PUBDICPLUSSRC)/setsuji.u
# $(RM) $@
# $(LN) $? $@
@@ -310,35 +234,20 @@
$(RM) $@
$(LN) $? $@
-includes:: special.hd
-
depend:: special.hd
-clean::
- $(RM) special.hd
-
special.u: $(PUBDICPLUSSRC)/special.u
$(RM) $@
$(LN) $? $@
-includes:: special.u
-
depend:: special.u
-clean::
- $(RM) special.u
-
symbol.hd: $(PUBDICPLUSSRC)/symbol.hd
$(RM) $@
$(LN) $? $@
-includes:: symbol.hd
-
depend:: symbol.hd
-clean::
- $(RM) symbol.hd
-
# symbol.u: $(PUBDICPLUSSRC)/symbol.u
# $(RM) $@
# $(LN) $? $@
@@ -354,13 +263,8 @@
$(RM) $@
$(LN) $? $@
-includes:: tankan.hd
-
depend:: tankan.hd
-clean::
- $(RM) tankan.hd
-
# tankan.u: $(PUBDICPLUSSRC)/tankan.u
# $(RM) $@
# $(LN) $? $@
@@ -421,16 +325,14 @@
$(RM) $@
$(LN) $? $@
-std.fzk: fzk.master-.c $(FZK_SRC)
- $(FZK_PP) $(FZK_FLAG) fzk.master-.c | egrep -v '^(# |#line |#pragma |$$)' | $(ATOF) -h $(HINSI) $@
+std.fsrc: $(FZK_SRC)
+ $(FZK_PP) fzk.master-.c > $@
+
+full.fsrc: $(FZK_SRC)
+ $(FZK_PP) -DKANSAI fzk.master-.c > $@
-full.fzk: $(FZK_SRC)
- $(MAKE) FZK_FLAG=-DKANSAI std.fzk
- $(MV) std.fzk $@
-
-kougo.fzk: $(FZK_SRC)
- $(MAKE) FZK_FLAG=-DKOUGO std.fzk
- $(MV) std.fzk $@
+kougo.fsrc: $(FZK_SRC)
+ $(FZK_PP) -DKOUGO fzk.master-.c > $@
# additional rule from PubdicPlus/Makefile.in : by aono
pod.o: $(PUBDICPLUSSRC)/pod.c
@@ -442,7 +344,7 @@
$(WNNDICS): pod $(PUBDICPLUSSRC)/pubdic.p
./pod $(PUBDICPLUSSRC)/pubdic.p -w -1 -k `basename $@ .u` > $@
-.SUFFIXES: .hd .u .dic .more
+.SUFFIXES: .hd .u .dic .more .fsrc .fzk
.u.dic:
cat $*.hd $< | $(ATOD) -p $(VERSION) -P $(VERSION) -h $(HINSI) $@
@@ -450,7 +352,10 @@
.hd.more:
$(ATOD) -h $(HINSI) $@ < $<
+.fsrc.fzk:
+ egrep -v '^(# |#line |#pragma |$$)' $< | $(ATOF) -h $(HINSI) $@
+
$(DIC): $(HINSI)
clean::
- $(RM) -f *.fzk *.dic *.more fzk.master-.c pod $(LINKS)
+ $(RM) -f *.fsrc *.dic *.more fzk.master-.c pod $(LINKS) $(FZKDATA)

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/freewnn/freewnn-1.1.1_alpha22.ebuild,v 1.2 2014/07/07 05:20:56 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/freewnn/freewnn-1.1.1_alpha22.ebuild,v 1.3 2014/09/15 23:05:14 naota Exp $
EAPI=5
@ -31,6 +31,8 @@ src_prepare() {
-e "s/@LN_S@/ln -sf/" || die
#bug #318593
epatch "${FILESDIR}"/${P}-parallel-build.patch #517916
}
src_configure() {

@ -1,3 +1 @@
DIST unfoo-1.0.6.sh 3083 SHA256 d74bf03d39378d6b5071af83f955fc48c2208d93410f45f1882c77061d952bfa SHA512 184b72909bed3f3c7a1f9768f4146b8cbc88f1cdfeb17576a88c114e73ae13e5e712cff51c1a40076b37541d16d9df9573667ec9a0b25abb84fb8f588cabe9e0 WHIRLPOOL eb4ef194245930caa766f177ff23867614fe23c43afdf556f9f41790a02db74121fb272ab842469aed10ac7fec9c632bbb7f5e2b0d318e0316d7f5037b0767b5
DIST unfoo-1.0.7.tar.gz 31808 SHA256 0c0c1692c66a78ef673a5b1b5248184923782e375184a1d532330501e512f6ff SHA512 113126ead9a704c3efcd7f93ab2aa61536e6b5981e3a9f72d17d2e75f1f88d33b05976f6cf54b3ec4257b3f5e5f49b645643c2223e1f10cd499dcd272c4cb1f0 WHIRLPOOL 492536b29c2e0986e2fb1071cde7485807ba63456f3b3d9bb8426abf700347323a0d6d9ad013164895a7f88b90c858853f03e7229e394be4179a3fb3b3048242
DIST unfoo-1.0.8.tar.gz 31862 SHA256 badc62603f1f7293032b36a1a3f1051b715b31895700d116d74cba4cb68af1e5 SHA512 b4a2489ca4ae5a81feacc57aa7c9c6437e3fbb0cec997d1b5e182e9ea7e19c13998968f23094e78908e6d41e699d50a1353ae475ec32146c63298eff06182281 WHIRLPOOL a6ab9fe60f73d07753760cba5d6d9d9ed7694fc1fba233c0510b823e1ad6f8e539207815543c690072545178841336d853ae6378fa88dc63e7668d1c3d266205

@ -1,30 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/unfoo/unfoo-1.0.6.ebuild,v 1.10 2014/08/05 11:33:16 armin76 Exp $
DESCRIPTION="A simple bash driven frontend to simplify decompression of files"
HOMEPAGE="http://obsoleet.org/code/unfoo"
SRC_URI="${HOMEPAGE}/${P}.sh"
LICENSE="BSD"
SLOT="0"
KEYWORDS=" amd64 ppc ppc64 s390 x86 ~x86-fbsd"
IUSE=""
S="${WORKDIR}"
src_unpack() {
cp "${DISTDIR}"/${A} "${WORKDIR}"
}
src_install() {
newbin ${P}.sh unfoo || die
}
pkg_postinst() {
echo
elog "unfoo can handle far more than just .tar*, but it requires some"
elog "optional packages to do so. For a list, either consult the source"
elog "(less /usr/bin/unfoo), or see http://obsoleet.org/code/unfoo"
echo
}

@ -1,52 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/unfoo/unfoo-1.0.7.ebuild,v 1.3 2013/03/28 04:16:32 vapier Exp $
EAPI=5
DESCRIPTION="A simple bash driven frontend to simplify decompression of files"
HOMEPAGE="http://obsoleet.org/code/unfoo"
SRC_URI="https://github.com/vitaminmoo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux"
IUSE="+minimal test"
COMMON_DEPS="
|| (
app-arch/bzip2
app-arch/lbzip2[symlink]
app-arch/pbzip2[symlink] )
|| (
app-arch/gzip
app-arch/pigz[symlink] )
app-arch/p7zip
|| (
app-arch/rar
app-arch/unrar-gpl
app-arch/unrar )
app-arch/unace
app-arch/unzip
app-arch/xz-utils"
RDEPEND="!minimal? ( ${COMMON_DEPS} )"
DEPEND="test? ( ${COMMON_DEPS} )"
src_compile() { :; }
src_install() {
dodoc README*
dobin ${PN}
}
pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]]; then
echo
elog "unfoo can handle far more than just .tar*, but it requires some"
elog "optional packages to do so. For a list, either consult the source"
elog "(less /usr/bin/unfoo), or see http://obsoleet.org/code/unfoo"
elog "To get full support please use USE=-minimal"
elif [[ ${REPLACING_VERSIONS} < 1.0.7 ]]; then
elog "To get full support please use USE=-minimal"
fi
}

@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/files/init.d-2.0,v 1.1 2014/08/21 03:08:13 grknight Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/files/init.d-2.0,v 1.2 2014/09/15 14:17:12 grknight Exp $
extra_commands="checkconfig"
@ -134,19 +134,26 @@ stop() {
}
checkconfig() {
local basedir=$(get_config "${MY_CNF}" basedir | tail -n1)
ebegin "Checking mysqld configuration"
# Suppress output to check the return value
"${basedir}"/sbin/mysqld --help --verbose &> /dev/null
# If the above command does not return 0,
# then there is an error to echo to the user
if [ $? -ne 0 ] ; then
"${basedir}"/sbin/mysqld --help --verbose > /dev/null
local my_cnf="${MY_CNF:-/etc/${SVCNAME}/my.cnf}"
local basedir=$(get_config "${my_cnf}" basedir | tail -n1)
local svc_name=$(mysql_svcname)
ebegin "Checking mysqld configuration for ${svc_name}"
if [ ${RC_CMD} == "checkconfig" ] ; then
# We are calling checkconfig specifically. Print warnings regardless.
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
else
# Suppress output to check the return value
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null 2>&1
# If the above command does not return 0,
# then there is an error to echo to the user
if [ $? -ne 0 ] ; then
"${basedir}"/sbin/mysqld --defaults-file="${my_cnf}" --help --verbose > /dev/null
fi
fi
eend $? "MySQL config check failed"
eend $? "${svc_name} config check failed"
}
# vim: filetype=gentoo-init-d sw=2 ts=2 sts=2 noet:

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/mysql-init-scripts-2.0.ebuild,v 1.1 2014/08/21 03:08:13 grknight Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-init-scripts/mysql-init-scripts-2.0-r1.ebuild,v 1.1 2014/09/15 14:17:12 grknight Exp $
EAPI=5

@ -1 +1,2 @@
DIST pgAgent-3.3.0-Source.tar.gz 43722 SHA256 110f2fd811a05ea8a420a79fcbb25b971e60f10f8abb8ab2bede8419c58b7321 SHA512 928d72d578beacc7725cfd3e206d81a732baf6d654a681dd1d603b68e54c0d20e54fad793759924fdad7efc5c6b2047d372e6cd8ae7539c76c06db3a8963657a WHIRLPOOL ce44d26ef314ff0076ab376377c1f2b4e826366da346f4aac77e0e877a49fbbf9f6018869b8dc6db24b7ef519bb4d6499d6436da3a4a5053e1cd787028003856
DIST pgAgent-3.4.0-Source.tar.gz 45081 SHA256 0da0ac8f453cf34ab6f708eee036bed0fd0e5fa311de283b92d2ff06600bbb3d SHA512 3b068fc6f5e51ff20604f8cec3e067d04b5b1537229da15ee442000f5fe834697a4eae86be0e9a58b8ee5da24cc985c8c9804d71cb2a50e93ec4cf9a424a4ff0 WHIRLPOOL df619ddbfd5c01cf9e17b22becf74742ea7caa783504fd5942d63992bc80913b36f1c85d7ce2d3dd31634b524617a943ed07a3eba675caddc7cd7f3fc79d8c1c

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

@ -1,4 +1,5 @@
DIST pgmemcache-2.1.2.tar.gz 16685 SHA256 015bf72efd6e7bc392814e9ae49bc9c486e699e9dc80f0c437b42408b7155d67 SHA512 2be9aeef214f569473efcb849611e10c4fdb179e5cb8b1105f63fe0ab7bd829648a7891fd4e21109afc1b6375aeae0c2449a977a67631ee4d505e3faf83bc3f3 WHIRLPOOL 7f7c62400316da6c8ed2da0e1909ab8034e8f845d4b3d439fbdf54b310d8fe1100e7c487a3d7485a3e86358fe493bf1bb5107b4d0f4ab1091bf6467a04fe6eac
DIST pgmemcache-2.2.0.tar.gz 17742 SHA256 c16e062f6ae4ad9345b26ae0caf70e7169eb2a4fa316197b578a76095df5c5a2 SHA512 8d63aa25fec9c5f1895cf5107bbb261be2b35d5e05ac03e8fa59597ed18cf123c45aa0690eafeca4a26bdfabf61088bd1e2518c3fa13b683333b1ca0b5d8446f WHIRLPOOL a8a01bb98cb56ee3d0d19b2d7aeeeee38953c3310bafc2cd6737eb3114ceb78cd11d28626abb14114d92429cf1812a377b65470696fd4141a25253b0b9a92e0a
DIST pgmemcache_2.0.4.tar.bz2 14359 SHA256 4f203116101f1836c238506e8b8f40be506f1737577630f4d10d8b9b43fc00ac SHA512 c3bc609cdd38eb0df88d7fe293258a6aede96d296e6dce63e99a5d3c78fece534a389afdcc99510e83a7572669421c8d61d2588949e4df9cbaf6d93fcd45f0c5 WHIRLPOOL 2f34e096dd4dd80c0ddd9166b724d3ed884d86ecd0117417098a4a9173c657c0eb3b0df1c68323dffd4222b12ab9cb9adebf14ee9c2a1ff563a0fbb81cd7b3b2
DIST pgmemcache_2.0.6.tar.bz2 18630 SHA256 eb64059bbb2b7659768f2c654580a972b39e4bc8842dc8fc960e7d97c582a78c SHA512 35661ab90bc866820be370c7a65d951b7ea0fc63e9872b38fdfa0dc82d368974de9f044b74399747e2f11a2d26dd0309c0814d2f38636681d18abe67885134ff WHIRLPOOL e86618906807d770fa4c63b705f88c9e249bce428df3d8e8892113cbfb31a57c9c8a4f442aa54e3304dfa5dae07cfc236d50c077b16ce1e64a4c3b1f81d13513
DIST pgmemcache_2.1.1.tar.bz2 18630 SHA256 eb64059bbb2b7659768f2c654580a972b39e4bc8842dc8fc960e7d97c582a78c SHA512 35661ab90bc866820be370c7a65d951b7ea0fc63e9872b38fdfa0dc82d368974de9f044b74399747e2f11a2d26dd0309c0814d2f38636681d18abe67885134ff WHIRLPOOL e86618906807d770fa4c63b705f88c9e249bce428df3d8e8892113cbfb31a57c9c8a4f442aa54e3304dfa5dae07cfc236d50c077b16ce1e64a4c3b1f81d13513

@ -0,0 +1,24 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgmemcache/pgmemcache-2.2.0.ebuild,v 1.1 2014/09/16 02:53:10 patrick Exp $
EAPI=5
DESCRIPTION="A PostgreSQL API based on libmemcached to interface with memcached"
HOMEPAGE="http://pgfoundry.org/projects/pgmemcache https://github.com/ohmu/pgmemcache"
SRC_URI="https://github.com/ohmu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-db/postgresql-base
dev-libs/cyrus-sasl
>=dev-libs/libmemcached-1.0.18[sasl]"
RDEPEND="${DEPEND}"
DOCS=( NEWS README TODO )
src_install() {
emake -j1 DESTDIR="${D}" install
}

@ -17,3 +17,4 @@ DIST parallel_studio_xe_2013_update3_intel64.tgz 1508395753 SHA256 081bc3d617f04
DIST parallel_studio_xe_2013_update4.tgz 2184817121 SHA256 55d549fc34f7a9eb96951c7be3216b68f9f960edfdc0997cf8dcffe5c78d66c8 SHA512 84ea227fdca2c427996b0c4d17a0bad6c289a6fbfc267c19f54ebee875e11e6e8d14bb3103599e3b89331c34a153b0a63a5ca8c12f4619420f78f8c4b0c2da96 WHIRLPOOL 6bedfdbcad7f0d7ad4681d51ad865db247d5f264f5fa33e7136fc64c5e83eee30bb2611f39bd7f31b790432e314a7dbea755297ae3fd2b90ccecb7beffb20d79
DIST parallel_studio_xe_2013_update4_ia32.tgz 1220177902 SHA256 5bd75b2747f4b787b8128a83914b060d156ecdc41236f4100363b7ab4f9f6859 SHA512 968db307e08cd31450200abd41ade1f2b2855f4b5cb19911d03c1cd357cab11cbba814db354452496fcf66fc3fad1423b24f428bd4db07402f12bd63e4d34247 WHIRLPOOL f2b03ebb78960718a15fc69be814eeb7996fdd7575720f4b09cb915086cc757fea188ef5ceb7e37ed00c995e11ae544d8bd55aba8ab2d12530e26b3d23362f3e
DIST parallel_studio_xe_2013_update4_intel64.tgz 1520767493 SHA256 31383f357b9b7d9c76e727e63427387d9ee42358f5b5df75a0d8766cd318a11d SHA512 497ad8f3473e1d11cdd31dff340a8e6ec1f012e731def084b2072146b5d11db906f85ace53b2223c3fbef949222f73f36783fd697eb7809464f4403c0ac8744a WHIRLPOOL d08447f27aee0f088797968d541fe98e3813a1daf5b87024d37493663238594c3e4e75a8d9636a4059191782f5eae9065d45b7ad2c27e1f73fc74eb110ad399f
DIST parallel_studio_xe_2015.tgz 3819862086 SHA256 31abe447b1db457b38547dfbf0fd7e434cb45d5734892ec3ef95ef5f4d2f8ae2 SHA512 889844fe067d1b1095283686f1b1657aab2bbda2a7e9014aec88a0ef1af8c8a0e1da3a4414600d4b450b2a1b4b13496b5165e495ccdf3187c27f58eaff07b13b WHIRLPOOL c2be966c8910d8995b845e25d60ceb700bfe9bc78daf60e97fd016de6e1abc60bb0f4fe33e2cd7c8960ebbf1540d418524414a351ed9256a80cdee4e29166961

@ -0,0 +1,37 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/icc-15.0.0.090.ebuild,v 1.1 2014/09/15 16:47:25 jlec Exp $
EAPI=5
INTEL_DPN=parallel_studio_xe
INTEL_DID=4584
INTEL_DPV=2015
INTEL_SUBDIR=composerxe
INTEL_SINGLE_ARCH=false
inherit intel-sdp
DESCRIPTION="Intel C/C++ Compiler"
HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/"
IUSE="eclipse linguas_ja"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
DEPEND="
!dev-lang/ifc[linguas_ja]
eclipse? ( dev-util/eclipse-sdk )"
RDEPEND="${DEPEND}
~dev-libs/intel-common-${PV}[compiler,multilib=]"
INTEL_BIN_RPMS="compilerproc compilerproc-devel"
INTEL_DAT_RPMS="compilerproc-common compilerproc-vars"
CHECKREQS_DISK_BUILD=325M
src_install() {
if ! use linguas_ja; then
find "${S}" -type d -name ja_JP -exec rm -rf '{}' + || die
fi
intel-sdp_src_install
}

@ -17,3 +17,4 @@ DIST parallel_studio_xe_2013_update3_intel64.tgz 1508395753 SHA256 081bc3d617f04
DIST parallel_studio_xe_2013_update4.tgz 2184817121 SHA256 55d549fc34f7a9eb96951c7be3216b68f9f960edfdc0997cf8dcffe5c78d66c8 SHA512 84ea227fdca2c427996b0c4d17a0bad6c289a6fbfc267c19f54ebee875e11e6e8d14bb3103599e3b89331c34a153b0a63a5ca8c12f4619420f78f8c4b0c2da96 WHIRLPOOL 6bedfdbcad7f0d7ad4681d51ad865db247d5f264f5fa33e7136fc64c5e83eee30bb2611f39bd7f31b790432e314a7dbea755297ae3fd2b90ccecb7beffb20d79
DIST parallel_studio_xe_2013_update4_ia32.tgz 1220177902 SHA256 5bd75b2747f4b787b8128a83914b060d156ecdc41236f4100363b7ab4f9f6859 SHA512 968db307e08cd31450200abd41ade1f2b2855f4b5cb19911d03c1cd357cab11cbba814db354452496fcf66fc3fad1423b24f428bd4db07402f12bd63e4d34247 WHIRLPOOL f2b03ebb78960718a15fc69be814eeb7996fdd7575720f4b09cb915086cc757fea188ef5ceb7e37ed00c995e11ae544d8bd55aba8ab2d12530e26b3d23362f3e
DIST parallel_studio_xe_2013_update4_intel64.tgz 1520767493 SHA256 31383f357b9b7d9c76e727e63427387d9ee42358f5b5df75a0d8766cd318a11d SHA512 497ad8f3473e1d11cdd31dff340a8e6ec1f012e731def084b2072146b5d11db906f85ace53b2223c3fbef949222f73f36783fd697eb7809464f4403c0ac8744a WHIRLPOOL d08447f27aee0f088797968d541fe98e3813a1daf5b87024d37493663238594c3e4e75a8d9636a4059191782f5eae9065d45b7ad2c27e1f73fc74eb110ad399f
DIST parallel_studio_xe_2015.tgz 3819862086 SHA256 31abe447b1db457b38547dfbf0fd7e434cb45d5734892ec3ef95ef5f4d2f8ae2 SHA512 889844fe067d1b1095283686f1b1657aab2bbda2a7e9014aec88a0ef1af8c8a0e1da3a4414600d4b450b2a1b4b13496b5165e495ccdf3187c27f58eaff07b13b WHIRLPOOL c2be966c8910d8995b845e25d60ceb700bfe9bc78daf60e97fd016de6e1abc60bb0f4fe33e2cd7c8960ebbf1540d418524414a351ed9256a80cdee4e29166961

@ -0,0 +1,35 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ifc-15.0.0.090.ebuild,v 1.1 2014/09/15 14:01:45 jlec Exp $
EAPI=5
INTEL_DPN=parallel_studio_xe
INTEL_DID=4584
INTEL_DPV=2015
INTEL_SUBDIR=composerxe
INTEL_SINGLE_ARCH=false
inherit intel-sdp
DESCRIPTION="Intel FORTRAN Compiler"
HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/"
IUSE="linguas_ja"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
DEPEND="!dev-lang/ifc[linguas_jp]"
RDEPEND="${DEPEND}
~dev-libs/intel-common-${PV}[compiler,multilib=]"
INTEL_BIN_RPMS="compilerprof compilerprof-devel"
INTEL_DAT_RPMS="compilerprof-common compilerprof-vars"
CHECKREQS_DISK_BUILD=375M
src_install() {
if ! use linguas_ja; then
find "${S}" -type d -name ja_JP -exec rm -rf '{}' + || die
fi
intel-sdp_src_install
}

@ -1,3 +1,5 @@
DIST tcl-core8.6.1-src.tar.gz 5773335 SHA256 00a25fcd70e0be65f85e996353c2a0717eaaf51dc547cf6e499bb05257e20764 SHA512 d3f4c3200017f3afcc50c19619d79a31cac5441b4aac341524a6dfdda3e6f2eada1e0a70875d24f29afc733998aedf6fa14826cba61fceda496aaf2a2a4a3c5b WHIRLPOOL dbd53216ee28bb9a3fbaa7aa5c07ca5931f098d6761eaa859d74ab5dda409e6dc77a28ee43a312267ceff74d04fb723484b6ea8afccf429c28cea5fd6c64521e
DIST tcl-core8.6.2-src.tar.gz 5808780 SHA256 8c5142fb275284f7678462a95895b892e64260a76d5fbdc690a6365de72b2667 SHA512 7ff3d3dd4884bb9470a2736b4c0348b957772902f3e6a69ff4a5c81b0927aeb3b1b19ab476c965ceca9eb94606b0936e0895747f4e76e04c265b318eade62b89 WHIRLPOOL 933806a400b4725f5f0ed207ab307bd5e20bd0ed2952d587ccf2ebe8ab041150e830b66450698a8938e3096242298e9191f6b3537b20d0426e9aa18438dda52c
DIST tcl8.5.13-src.tar.gz 4513204 SHA256 9b868dd563e65671a26fcf518b6b86c1bb1b6756f48fdc90f04301d4f3a6596a SHA512 e1c9f36dd0e1afd81f42d249fe0191f10d6e0eab73042e32c9c0af09063ebf19bc2a24364743fa7b6798c588e77fa81654e6e7eb7591e1aaf4b222e20ecc6c84 WHIRLPOOL f1c1b67508c5d5c85de7d76d075a577ef14b5df05ca5bb0a0d0d78261134e8d85accb82a27f135877585820d52f0d363ebde74cfd890dbfafbf3766985315b61
DIST tcl8.5.15-src.tar.gz 4536117 SHA256 f24eaae461795e6b09bf54c7e9f38def025892da55f26008c16413cfdda2884e SHA512 44c8a975ffaeca1f954fbc160fed966064340b5de883e53321691c6c457283716c4ab5c87c7c754ff5c1bd293d46eb14bbf356a0bf6a5ed0078d8789703df3df WHIRLPOOL da369146ccc1a449eae6b2fddc7802457c267b1ed047dba665b2684f27105a0763646b6a985e697891b3da9b3531a89f1ffb78168dc386c27889bcdaaa175e1c
DIST tcl8.5.16-src.tar.gz 4545982 SHA256 a26cbdb0437d05e5a00c993570737e71fa6cc9084e19174d714097b5cbaac1b1 SHA512 58db492fc688c2238db0e8d8fc7d663808e9b7ccf7628b3476e0fac09e7aadd543a5b8dadec1142c485786dec33e308c067a6907902d6454ca01804109542c4f WHIRLPOOL b626399eed2ee7ff53c17eb52f13bfbe230cd8b64199786cdd3e39add8ccfb4d9f928235fd89ad0e9ed0f87b7f8aaf6c2b9537ee3b9fb9e0fdae2c4d15ed2191

@ -0,0 +1,111 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.5.16.ebuild,v 1.1 2014/09/15 18:28:56 jlec Exp $
EAPI=5
inherit autotools eutils flag-o-matic multilib toolchain-funcs versionator multilib-minimal
MY_P="${PN}${PV/_beta/b}"
DESCRIPTION="Tool Command Language"
HOMEPAGE="http://www.tcl.tk/"
SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
LICENSE="tcltk"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="debug threads"
RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}"
SPARENT="${WORKDIR}/${MY_P}"
S="${SPARENT}"/unix
src_prepare() {
epatch "${FILESDIR}"/${PN}-8.5.13-multilib.patch
# Bug 125971
epatch "${FILESDIR}"/${PN}-8.5.14-conf.patch
# workaround stack check issues, bug #280934
use hppa && append-cflags "-DTCL_NO_STACK_CHECK=1"
tc-export CC
eautoconf
multilib_copy_sources
}
multilib_src_configure() {
# We went ahead and deleted the whole compat/ subdir which means
# the configure tests to detect broken versions need to pass (else
# we'll fail to build). This comes up when cross-compiling, but
# might as well get a minor configure speed up normally.
export ac_cv_func_memcmp_working="yes"
export tcl_cv_str{str,toul,tod}_unbroken="ok"
export tcl_cv_strtod_buggy="no"
econf \
$(use_enable threads) \
$(use_enable debug symbols)
}
multilib_src_install() {
#short version number
local v1=$(get_version_component_range 1-2)
local mylibdir=$(get_libdir)
S= default
# fix the tclConfig.sh to eliminate refs to the build directory
# and drop unnecessary -L inclusion to default system libdir
sed \
-e "/^TCL_BUILD_LIB_SPEC=/s:-L$(pwd) *::g" \
-e "/^TCL_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TCL_SRC_DIR=/s:${SPARENT}:${EPREFIX}/usr/${mylibdir}/tcl${v1}/include:g" \
-e "/^TCL_BUILD_STUB_LIB_SPEC=/s:-L$(pwd) *::g" \
-e "/^TCL_STUB_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TCL_BUILD_STUB_LIB_PATH=/s:$(pwd):${EPREFIX}/usr/${mylibdir}:g" \
-e "/^TCL_LIB_FILE=/s:'libtcl${v1}..TCL_DBGX..so':\"libtcl${v1}\$\{TCL_DBGX\}.so\":g" \
-i "${ED}"/usr/${mylibdir}/tclConfig.sh || die
if use prefix && [[ ${CHOST} != *-darwin* && ${CHOST} != *-mint* ]] ; then
sed \
-e "/^TCL_CC_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|g" \
-e "/^TCL_LD_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|" \
-i "${ED}"/usr/${mylibdir}/tclConfig.sh || die
fi
# install private headers
insinto /usr/${mylibdir}/tcl${v1}/include/unix
doins *.h
insinto /usr/${mylibdir}/tcl${v1}/include/generic
doins "${SPARENT}"/generic/*.h
rm -f "${ED}"/usr/${mylibdir}/tcl${v1}/include/generic/{tcl,tclDecls,tclPlatDecls}.h || die
# install symlink for libraries
dosym libtcl${v1}$(get_libname) /usr/${mylibdir}/libtcl$(get_libname)
dosym libtclstub${v1}.a /usr/${mylibdir}/libtclstub.a
if multilib_is_native_abi; then
dosym tclsh${v1} /usr/bin/tclsh
dodoc "${SPARENT}"/{ChangeLog*,README,changes}
fi
}
pkg_postinst() {
for version in ${REPLACING_VERSIONS}; do
if ! version_is_at_least 8.5 ${version}; then
echo
ewarn "You're upgrading from <${P}, you must recompile the other"
ewarn "packages on your system that link with tcl after the upgrade"
ewarn "completes. To perform this action, please run revdep-rebuild"
ewarn "in package app-portage/gentoolkit."
ewarn "If you have dev-lang/tk and dev-tcltk/tclx installed you should"
ewarn "upgrade them before this recompilation, too,"
echo
fi
done
}

@ -0,0 +1,120 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.6.2.ebuild,v 1.1 2014/09/15 18:28:56 jlec Exp $
EAPI=5
inherit autotools eutils flag-o-matic multilib toolchain-funcs versionator multilib-minimal
MY_P="${PN}${PV}"
DESCRIPTION="Tool Command Language"
HOMEPAGE="http://www.tcl.tk/"
SRC_URI="mirror://sourceforge/tcl/${PN}-core${PV}-src.tar.gz"
LICENSE="tcltk"
SLOT="0/8.6"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="debug +threads"
RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}"
SPARENT="${WORKDIR}/${MY_P}"
S="${SPARENT}"/unix
src_prepare() {
find \
"${SPARENT}"/compat/* \
"${SPARENT}"/doc/try.n \
-delete || die
epatch "${FILESDIR}"/${PN}-8.5.13-multilib.patch
# Bug 125971
epatch "${FILESDIR}"/${PN}-8.6.1-conf.patch
# workaround stack check issues, bug #280934
use hppa && append-cflags "-DTCL_NO_STACK_CHECK=1"
tc-export CC
sed \
-e 's:-O[2s]\?::g' \
-i tcl.m4 || die
eautoconf
multilib_copy_sources
}
multilib_src_configure() {
# We went ahead and deleted the whole compat/ subdir which means
# the configure tests to detect broken versions need to pass (else
# we'll fail to build). This comes up when cross-compiling, but
# might as well get a minor configure speed up normally.
export ac_cv_func_memcmp_working="yes"
export tcl_cv_str{str,toul,tod}_unbroken="ok"
export tcl_cv_strtod_buggy="no"
econf \
$(use_enable threads) \
$(use_enable debug symbols)
}
multilib_src_install() {
#short version number
local v1=$(get_version_component_range 1-2)
local mylibdir=$(get_libdir)
S= default
# fix the tclConfig.sh to eliminate refs to the build directory
# and drop unnecessary -L inclusion to default system libdir
sed \
-e "/^TCL_BUILD_LIB_SPEC=/s:-L$(pwd) *::g" \
-e "/^TCL_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TCL_SRC_DIR=/s:${SPARENT}:${EPREFIX}/usr/${mylibdir}/tcl${v1}/include:g" \
-e "/^TCL_BUILD_STUB_LIB_SPEC=/s:-L$(pwd) *::g" \
-e "/^TCL_STUB_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TCL_BUILD_STUB_LIB_PATH=/s:$(pwd):${EPREFIX}/usr/${mylibdir}:g" \
-e "/^TCL_LIB_FILE=/s:'libtcl${v1}..TCL_DBGX..so':\"libtcl${v1}\$\{TCL_DBGX\}.so\":g" \
-i "${ED}"/usr/${mylibdir}/tclConfig.sh || die
if use prefix && [[ ${CHOST} != *-darwin* && ${CHOST} != *-mint* ]] ; then
sed \
-e "/^TCL_CC_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|g" \
-e "/^TCL_LD_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|" \
-i "${ED}"/usr/${mylibdir}/tclConfig.sh || die
fi
# install private headers
insinto /usr/${mylibdir}/tcl${v1}/include/unix
doins *.h
insinto /usr/${mylibdir}/tcl${v1}/include/generic
doins "${SPARENT}"/generic/*.h
rm -f "${ED}"/usr/${mylibdir}/tcl${v1}/include/generic/{tcl,tclDecls,tclPlatDecls}.h || die
# install symlink for libraries
dosym libtcl${v1}$(get_libname) /usr/${mylibdir}/libtcl$(get_libname)
dosym libtclstub${v1}.a /usr/${mylibdir}/libtclstub.a
if multilib_is_native_abi; then
dosym tclsh${v1} /usr/bin/tclsh
dodoc "${SPARENT}"/{ChangeLog*,README,changes}
fi
}
pkg_postinst() {
for version in ${REPLACING_VERSIONS}; do
if ! version_is_at_least 8.6 ${version}; then
echo
ewarn "You're upgrading from <${P}, you must recompile the other"
ewarn "packages on your system that link with tcl after the upgrade"
ewarn "completes. To perform this action, please run revdep-rebuild"
ewarn "in package app-portage/gentoolkit."
ewarn "If you have dev-lang/tk and dev-tcltk/tclx installed you should"
ewarn "upgrade them before this recompilation, too,"
echo
fi
done
}

@ -1,3 +1,5 @@
DIST tk8.5.13-src.tar.gz 4086092 SHA256 9e83ba2704ad73a65986eb7cdc51e432a5db6eca8d8691e33caceef40ed0c563 SHA512 5b705026d3d80c35bd60311c3df5489a7970c1648f98d843d6ee57c9336de5e63aed488f670f15f2c0bffccbc2402cc98c383c057b7d86f1db4c36340e34e209 WHIRLPOOL e523bfa0ce407f4d5157df7fee93c6d60012bf5b46a4cbd4e4692ad0ce872650563d12db11bfa94ba19b0a5aad1ef9fdd4b02dfb11f0de253839c69adb26a718
DIST tk8.5.15-src.tar.gz 4086650 SHA256 815c6706d0b4fdd432fe16b82e7b9adfa1f057c44edd11d28f7c4b0ac104323f SHA512 9c8c42135b918f551e3e5ce479f2c8583749d34db5985a21e583c8f0aa2637eaa4ae0f47ce7b395f72ec929edd758c53326c96a23dac5f70a6f86eb63584dca5 WHIRLPOOL 6aca2bfab54155f573bfa9b07ce0767ff8f6da227e2845c03a81d964808e25b9a6483301692934a40ea2d9ddfc7d7193c2131ef775f84c9b164f35a6a0900008
DIST tk8.5.16-src.tar.gz 4095839 SHA256 fbcbe74d665df7cb286d042552323a051c611c50683beb18fc6fb59ebe293993 SHA512 1a43921a0ea784b562be46f7761853df8f145557016bce477d3957673a4d174f1be2d68409c370bbb23ca9e591df8502170cbd39592e0cdb745e25a09b7ff4cc WHIRLPOOL 64a8f63800b7622aaa3e86954ad0a13c1ad9e2b105124e0fb17cbdad8623ca4ebc7df927a880bbf9c0e14ba76d27113b5cc5b7f06c682cc80a4e6dd3b32192da
DIST tk8.6.1-src.tar.gz 4244010 SHA256 b691a2e84907392918665fe03a0deb913663a026bed2162185b4a9a14898162c SHA512 f05879924371bae7059ccf84b49b16748b3c2c1438ddcfbc4797a7552779947b0c733ada8c9abd739b3b00d16e9e76b407269213f87b6fc81bb29796581a8447 WHIRLPOOL 5d95b5ec0d9c778b445c60ac24b056306e7c32086cd073ecaef000327c9c5d6f639ce1c3762b3047192a3859249714f434a0e05ce9275624b1a3f6d5127c905c
DIST tk8.6.2-src.tar.gz 4246617 SHA256 afb6639043ec38905afe22b61ca54820217f4d4e81e0ad49f839c16d2bf98579 SHA512 bf07fb15972de9e04921a016c8e4a870526b217432b50e64b65365036a5aff2182178f5e3eb1f64dc27eb27b6bf2d5c57bd691307cda79290b2bc42ceca57017 WHIRLPOOL dc526dead634ac825fa1858d5f610332fca0b410234555cc76f473a8ce6144d1816b9e1b0ce0768a6ae38e70eee80670dd5a7c202eba9308d5e0cbfed067e26d

@ -0,0 +1,120 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.16.ebuild,v 1.1 2014/09/15 18:31:13 jlec Exp $
EAPI=5
inherit autotools eutils multilib prefix toolchain-funcs versionator virtualx
MY_P="${PN}${PV/_beta/b}"
DESCRIPTION="Tk Widget Set"
HOMEPAGE="http://www.tcl.tk/"
SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
LICENSE="tcltk"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug threads truetype aqua xscreensaver"
RDEPEND="
!aqua? (
media-libs/fontconfig
media-libs/freetype:2
x11-libs/libX11
x11-libs/libXt
truetype? ( x11-libs/libXft )
xscreensaver? ( x11-libs/libXScrnSaver )
)
~dev-lang/tcl-${PV}"
DEPEND="${RDEPEND}
!aqua? ( x11-proto/xproto )"
SPARENT="${WORKDIR}/${MY_P}"
S="${SPARENT}"/unix
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-8.5.11-fedora-xft.patch \
"${FILESDIR}"/${PN}-8.5.13-multilib.patch
epatch "${FILESDIR}"/${PN}-8.4.15-aqua.patch
eprefixify Makefile.in
# Bug 125971
epatch "${FILESDIR}"/${PN}-8.5.14-conf.patch
# Make sure we use the right pkg-config, and link against fontconfig
# (since the code base uses Fc* functions).
sed \
-e 's/FT_New_Face/XftFontOpen/g' \
-e "s:\<pkg-config\>:$(tc-getPKG_CONFIG):" \
-e 's:xft freetype2:xft freetype2 fontconfig:' \
-i configure.in || die
rm -f configure || die
tc-export CC
eautoconf
}
src_configure() {
local mylibdir=$(get_libdir)
econf \
--with-tcl="${EPREFIX}/usr/${mylibdir}" \
$(use_enable threads) \
$(use_enable aqua) \
$(use_enable truetype xft) \
$(use_enable xscreensaver xss) \
$(use_enable debug symbols)
}
src_test() {
Xemake test
}
src_install() {
#short version number
local v1=$(get_version_component_range 1-2)
local mylibdir=$(get_libdir)
S= default
# normalize $S path, bug #280766 (pkgcore)
local nS="$(cd "${S}"; pwd)"
# fix the tkConfig.sh to eliminate refs to the build directory
# and drop unnecessary -L inclusion to default system libdir
sed \
-e "/^TK_BUILD_LIB_SPEC=/s:-L${SPARENT}.*unix *::g" \
-e "/^TK_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TK_SRC_DIR=/s:${SPARENT}:${EPREFIX}/usr/${mylibdir}/tk${v1}/include:g" \
-e "/^TK_BUILD_STUB_LIB_SPEC=/s:-L${SPARENT}.*unix *::g" \
-e "/^TK_STUB_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TK_BUILD_STUB_LIB_PATH=/s:${SPARENT}.*unix:${EPREFIX}/usr/${mylibdir}:g" \
-e "/^TK_LIB_FILE=/s:'libtk${v1}..TK_DBGX..so':\"libk${v1}\$\{TK_DBGX\}.so\":g" \
-i "${ED}"/usr/${mylibdir}/tkConfig.sh || die
if use prefix && [[ ${CHOST} != *-darwin* && ${CHOST} != *-mint* ]] ; then
sed \
-e "/^TK_CC_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|g" \
-e "/^TK_LD_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|" \
-i "${ED}"/usr/${mylibdir}/tkConfig.sh || die
fi
# install private headers
insinto /usr/${mylibdir}/tk${v1}/include/unix
doins "${S}"/*.h
insinto /usr/${mylibdir}/tk${v1}/include/generic
doins "${SPARENT}"/generic/*.h
rm -f "${ED}"/usr/${mylibdir}/tk${v1}/include/generic/{tk,tkDecls,tkPlatDecls}.h || die
# install symlink for libraries
dosym libtk${v1}$(get_libname) /usr/${mylibdir}/libtk$(get_libname)
dosym libtkstub${v1}.a /usr/${mylibdir}/libtkstub.a
dosym wish${v1} /usr/bin/wish
dodoc "${SPARENT}"/{ChangeLog*,README,changes}
}

@ -0,0 +1,130 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.6.2.ebuild,v 1.1 2014/09/15 18:31:13 jlec Exp $
EAPI=5
inherit autotools eutils multilib prefix toolchain-funcs versionator virtualx
MY_P="${PN}${PV/_beta/b}"
DESCRIPTION="Tk Widget Set"
HOMEPAGE="http://www.tcl.tk/"
SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
LICENSE="tcltk"
SLOT="0/8.6"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug +threads truetype aqua xscreensaver"
RDEPEND="
!aqua? (
media-libs/fontconfig
x11-libs/libX11
x11-libs/libXt
truetype? ( x11-libs/libXft )
xscreensaver? ( x11-libs/libXScrnSaver )
)
~dev-lang/tcl-${PV}"
DEPEND="${RDEPEND}
!aqua? ( x11-proto/xproto )"
# Not bumped to 8.6
#RESTRICT=test
SPARENT="${WORKDIR}/${MY_P}"
S="${SPARENT}"/unix
src_prepare() {
find \
"${SPARENT}"/compat/* \
-delete || die
epatch \
"${FILESDIR}"/${PN}-8.5.11-fedora-xft.patch \
"${FILESDIR}"/${PN}-8.5.13-multilib.patch
epatch "${FILESDIR}"/${PN}-8.4.15-aqua.patch
eprefixify Makefile.in
# Bug 125971
epatch "${FILESDIR}"/${PN}-8.5.14-conf.patch
# Make sure we use the right pkg-config, and link against fontconfig
# (since the code base uses Fc* functions).
sed \
-e 's/FT_New_Face/XftFontOpen/g' \
-e "s:\<pkg-config\>:$(tc-getPKG_CONFIG):" \
-e 's:xft freetype2:xft freetype2 fontconfig:' \
-i configure.in || die
rm -f configure || die
tc-export CC
sed \
-e 's:-O[2s]\?::g' \
-i tcl.m4 || die
eautoconf
}
src_configure() {
local mylibdir=$(get_libdir)
econf \
--with-tcl="${EPREFIX}/usr/${mylibdir}" \
$(use_enable threads) \
$(use_enable aqua) \
$(use_enable truetype xft) \
$(use_enable xscreensaver xss) \
$(use_enable debug symbols)
}
src_test() {
Xemake test
}
src_install() {
#short version number
local v1=$(get_version_component_range 1-2)
local mylibdir=$(get_libdir)
S= default
# normalize $S path, bug #280766 (pkgcore)
local nS="$(cd "${S}"; pwd)"
# fix the tkConfig.sh to eliminate refs to the build directory
# and drop unnecessary -L inclusion to default system libdir
sed \
-e "/^TK_BUILD_LIB_SPEC=/s:-L${SPARENT}.*unix *::g" \
-e "/^TK_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TK_SRC_DIR=/s:${SPARENT}:${EPREFIX}/usr/${mylibdir}/tk${v1}/include:g" \
-e "/^TK_BUILD_STUB_LIB_SPEC=/s:-L${SPARENT}.*unix *::g" \
-e "/^TK_STUB_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
-e "/^TK_BUILD_STUB_LIB_PATH=/s:${SPARENT}.*unix:${EPREFIX}/usr/${mylibdir}:g" \
-e "/^TK_LIB_FILE=/s:'libtk${v1}..TK_DBGX..so':\"libk${v1}\$\{TK_DBGX\}.so\":g" \
-i "${ED}"/usr/${mylibdir}/tkConfig.sh || die
if use prefix && [[ ${CHOST} != *-darwin* && ${CHOST} != *-mint* ]] ; then
sed \
-e "/^TK_CC_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|g" \
-e "/^TK_LD_SEARCH_FLAGS=/s|'$|:${EPREFIX}/usr/${mylibdir}'|" \
-i "${ED}"/usr/${mylibdir}/tkConfig.sh || die
fi
# install private headers
insinto /usr/${mylibdir}/tk${v1}/include/unix
doins "${S}"/*.h
insinto /usr/${mylibdir}/tk${v1}/include/generic
doins "${SPARENT}"/generic/*.h
rm -f "${ED}"/usr/${mylibdir}/tk${v1}/include/generic/{tk,tkDecls,tkPlatDecls}.h || die
# install symlink for libraries
dosym libtk${v1}$(get_libname) /usr/${mylibdir}/libtk$(get_libname)
dosym libtkstub${v1}.a /usr/${mylibdir}/libtkstub.a
dosym wish${v1} /usr/bin/wish
dodoc "${SPARENT}"/{ChangeLog*,README,changes}
}

@ -17,3 +17,4 @@ DIST parallel_studio_xe_2013_update3_intel64.tgz 1508395753 SHA256 081bc3d617f04
DIST parallel_studio_xe_2013_update4.tgz 2184817121 SHA256 55d549fc34f7a9eb96951c7be3216b68f9f960edfdc0997cf8dcffe5c78d66c8 SHA512 84ea227fdca2c427996b0c4d17a0bad6c289a6fbfc267c19f54ebee875e11e6e8d14bb3103599e3b89331c34a153b0a63a5ca8c12f4619420f78f8c4b0c2da96 WHIRLPOOL 6bedfdbcad7f0d7ad4681d51ad865db247d5f264f5fa33e7136fc64c5e83eee30bb2611f39bd7f31b790432e314a7dbea755297ae3fd2b90ccecb7beffb20d79
DIST parallel_studio_xe_2013_update4_ia32.tgz 1220177902 SHA256 5bd75b2747f4b787b8128a83914b060d156ecdc41236f4100363b7ab4f9f6859 SHA512 968db307e08cd31450200abd41ade1f2b2855f4b5cb19911d03c1cd357cab11cbba814db354452496fcf66fc3fad1423b24f428bd4db07402f12bd63e4d34247 WHIRLPOOL f2b03ebb78960718a15fc69be814eeb7996fdd7575720f4b09cb915086cc757fea188ef5ceb7e37ed00c995e11ae544d8bd55aba8ab2d12530e26b3d23362f3e
DIST parallel_studio_xe_2013_update4_intel64.tgz 1520767493 SHA256 31383f357b9b7d9c76e727e63427387d9ee42358f5b5df75a0d8766cd318a11d SHA512 497ad8f3473e1d11cdd31dff340a8e6ec1f012e731def084b2072146b5d11db906f85ace53b2223c3fbef949222f73f36783fd697eb7809464f4403c0ac8744a WHIRLPOOL d08447f27aee0f088797968d541fe98e3813a1daf5b87024d37493663238594c3e4e75a8d9636a4059191782f5eae9065d45b7ad2c27e1f73fc74eb110ad399f
DIST parallel_studio_xe_2015.tgz 3819862086 SHA256 31abe447b1db457b38547dfbf0fd7e434cb45d5734892ec3ef95ef5f4d2f8ae2 SHA512 889844fe067d1b1095283686f1b1657aab2bbda2a7e9014aec88a0ef1af8c8a0e1da3a4414600d4b450b2a1b4b13496b5165e495ccdf3187c27f58eaff07b13b WHIRLPOOL c2be966c8910d8995b845e25d60ceb700bfe9bc78daf60e97fd016de6e1abc60bb0f4fe33e2cd7c8960ebbf1540d418524414a351ed9256a80cdee4e29166961

@ -0,0 +1,59 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/intel-common-15.0.0.090-r1.ebuild,v 1.1 2014/09/15 12:34:28 jlec Exp $
EAPI=5
INTEL_DPN=parallel_studio_xe
INTEL_DID=4584
INTEL_DPV=2015
INTEL_SUBDIR=composerxe
INTEL_SINGLE_ARCH=false
inherit intel-sdp
DESCRIPTION="Common libraries and utilities needed for Intel compilers and libraries"
HOMEPAGE="http://software.intel.com/en-us/articles/intel-compilers/"
IUSE="+compiler"
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
CHECKREQS_DISK_BUILD=375M
pkg_setup() {
einfo ${INTEL_SDP_EDIR}
INTEL_BIN_RPMS="openmp openmp-devel"
INTEL_DAT_RPMS="compilerpro-common compilerpro-common-pset"
if use compiler; then
INTEL_BIN_RPMS+=" compilerpro-devel sourcechecker-devel"
INTEL_DAT_RPMS+=" compilerpro-vars sourcechecker-common ccompxe compxe fcompxe"
fi
intel-sdp_pkg_setup
}
src_install() {
intel-sdp_src_install
local path rootpath ldpath arch fenv=35intelsdp
cat > ${fenv} <<-EOF
NLSPATH=${INTEL_SDP_EDIR}/lib/locale/en_US/%N
INTEL_LICENSE_FILE="${INTEL_SDP_EDIR}"/licenses:"${EPREFIX}/opt/intel/license"
EOF
for arch in ${INTEL_ARCH}; do
path=${path}:${INTEL_SDP_EDIR}/bin/${arch}:${INTEL_SDP_EDIR}/mpirt/bin/${arch}
rootpath=${rootpath}:${INTEL_SDP_EDIR}/bin/${arch}:${INTEL_SDP_EDIR}/mpirt/bin/${arch}
ldpath=${ldpath}:${INTEL_SDP_EDIR}/compiler/lib/${arch}:${INTEL_SDP_EDIR}/mpirt/lib/${arch}
done
cat >> ${fenv} <<-EOF
PATH=${path#:}
ROOTPATH=${rootpath#:}
LDPATH=${ldpath#:}
EOF
doenvd ${fenv}
cat >> "${T}"/40-${PN} <<- EOF
SEARCH_DIRS_MASK="${INTEL_SDP_EDIR}"
EOF
insinto /etc/revdep-rebuild/
doins "${T}"/40-${PN}
}

@ -0,0 +1,2 @@
DIST libbase58-0.1.1.tar.gz 6564 SHA256 51f665b52efc99b7a8205101569a0580a7d7defda1c4597e6e467c164f86a206 SHA512 c47cb7f891c54a8b07a01f033312baa97b7722965cc0c5003fb8591dedc304dd3ff408e8b31ee4b0634b58f6a7f0be55bee039a1fd8e24fdb62f7a72c4be7c3b WHIRLPOOL ec72557af9269a47a33c4d75260821b606b75a644ded2f4f30f02657fc3a6586240f91d76718b219e7cbde8a636987f5145405faa9603c2c19022aeeac1be878
DIST v0.1.0.tar.gz 5807 SHA256 43ac21173353c3d284406986501d15972f589b6d9247f61766b7acbf1f5a7a4a SHA512 8bfeeb194736cae291308b281f23f49774943dc0151863ddf99b92b657c0151a9873a110f79679e81f14bf0ecf3cf00bf43f517a24d5e89d032a0a5ebed1a358 WHIRLPOOL ba3baed348e4e7265ad14c04f7fca9b728ebd026a61275e4aaa852268f2513bc001610f013159b72c0367255a4c2d3d69b18c7b693c5e6eab6269c4894b6667c

@ -0,0 +1,27 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbase58/libbase58-0.1.0.ebuild,v 1.1 2014/09/15 23:20:35 blueness Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils
DESCRIPTION="C implementation of Bitcoin's base58 encoding"
HOMEPAGE="https://github.com/luke-jr/libbase58"
LICENSE="MIT"
SRC_URI="https://github.com/luke-jr/${PN}/archive/v${PV}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
IUSE="tools"
DEPEND=""
RDEPEND="${DEPEND}"
src_configure() {
local myeconfargs=(
--disable-static
$(use_enable tools tool)
)
autotools-utils_src_configure
}

@ -0,0 +1,27 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbase58/libbase58-0.1.1.ebuild,v 1.1 2014/09/15 23:20:35 blueness Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils
DESCRIPTION="C implementation of Bitcoin's base58 encoding"
HOMEPAGE="https://github.com/luke-jr/libbase58"
LICENSE="MIT"
SRC_URI="https://github.com/luke-jr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
IUSE="tools"
DEPEND=""
RDEPEND="${DEPEND}"
src_configure() {
local myeconfargs=(
--disable-static
$(use_enable tools tool)
)
autotools-utils_src_configure
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>blueness@gentoo.org</email>
<name>Anthony G. Basile</name>
</maintainer>
<maintainer>
<email>luke_gentoo_bitcoin@dashjr.org</email>
<name>Luke Dashjr</name>
</maintainer>
<use>
<flag name='tools'>Build command line base58 tool</flag>
</use>
</pkgmetadata>

@ -2,3 +2,4 @@ DIST libtasn1-3.6.tar.gz 1849205 SHA256 19e34766a38abc74cec1863cc30c8a4e13f76331
DIST libtasn1-3.8.tar.gz 1864367 SHA256 0dd0bef1f680066e4eec47e317c6b7015caa3c4ea933ddf25a94f27fba555556 SHA512 db5959f45199028c1ca4e31944ceb4e6beb26fcacc11eb58df07afbc51520d6c025ab1676dc7b50668105c625cb839b61d625a72cc8dda7455b6812fe7dc3236 WHIRLPOOL 6782125e881d7f2a5d82fe1156baebaed2741574099d86df27c430debe220bdb3d262e1cdf35984f03d8a3cdb5352d3fbce3c291fb82f01e27a491e817391648
DIST libtasn1-4.0.tar.gz 1862977 SHA256 41d044f7644bdd1c4f8a5c15ac1885ca1fcbf32f5f6dd4760a19278b979857fe SHA512 f55c0afc5ddd1dedb4c206e215640d551f86feb6436a2097d618d27f0547493a54aa9ebee08ec1271bfcaf45784753d99c6dc90d2dd9d9a0dacfcc30b5e16dee WHIRLPOOL 5e24d66eb2d2178a670561aaa5958f400a9f67233c5ed58821559c59f2dc1ad495ee7e6ad38fc30bc65e03713fecd8853b2d8f029cba52427f87690e20f1df72
DIST libtasn1-4.1.tar.gz 1865697 SHA256 60ee6571dcfa00cf55406404912274d6dc759cbaa80d666b89d819feeff5f301 SHA512 0cecbe691ef24140290152adafe65d612e23e4c7ce2be2079069bcc3e89eb60ed1570c79ac84483cd264931fefedc2f894bb5824dd31156976314d24f16f256b WHIRLPOOL 4fffcd3bdac54738616d66e06091a6fda2848c1e0a61ef5023547ac2be8fd1de0ee7a7722af31735cccee9cdb41a9ca38c3c555c9c955ef1a0eadf25f8f585ac
DIST libtasn1-4.2.tar.gz 1866192 SHA256 693b41cb36c2ac02d5990180b0712a79a591168e93d85f7fcbb75a0a0be4cdbb SHA512 5aac1e51438bdc88e06d8c19bc84bf16ce9e09f02f0858349a6fc7e3c49d32701311a4dd7e6fdcd534b26eae298fbbf063c2e24f6a893ec88eb920a673c21571 WHIRLPOOL 58666653ef0ca5f9f16ab307d4800d86f904f1ae2cb02b715ac52512dae39e298946b61b2a67059afeea978424bd6764570284cd4bb4977c63c939acb7b64b00

@ -0,0 +1,42 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-4.2.ebuild,v 1.1 2014/09/15 19:16:32 alonbl Exp $
EAPI=5
inherit autotools-multilib
DESCRIPTION="ASN.1 library"
HOMEPAGE="http://www.gnu.org/software/libtasn1/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3 LGPL-2.1"
SLOT="0/6" # subslot = libtasn1 soname version
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc static-libs"
DEPEND=">=dev-lang/perl-5.6
sys-apps/help2man
virtual/yacc"
RDEPEND="
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20131008-r16
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DOCS=( AUTHORS ChangeLog NEWS README THANKS )
src_configure() {
local myeconfargs
[[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests )
autotools-multilib_src_configure
}
src_install() {
autotools-multilib_src_install
if use doc ; then
dodoc doc/libtasn1.pdf
dohtml doc/reference/html/*
fi
}

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>sci</herd>
<herd>perl</herd>
<longdescription lang="en">
<herd>sci</herd>
<herd>perl</herd>
<longdescription lang="en">
The Perl Data Language gives standard perl the ability to compactly
store and speedily manipulate the large N-dimensional data arrays
which are the bread and butter of scientific computing. The idea
@ -12,200 +12,200 @@
can write simple perl expressions to manipulate entire numerical
arrays all at once.
</longdescription>
<use>
<flag name="badval">Enable bad values support</flag>
<flag name="hdf">Enable HDF (version 4) format support</flag>
<flag name="netpbm">Enable NETPBM and MPEG support</flag>
<flag name="pdl2">Build pdf2 shell (requires Devel-REPL)</flag>
<flag name="pgplot">Enable PGPLOT plotting capabilities</flag>
<flag name="plplot">Enable plplot plotting capabilities</flag>
</use>
<upstream>
<remote-id type="cpan">PDL</remote-id>
<remote-id type="cpan-module">C::StructObj</remote-id>
<remote-id type="cpan-module">C::StructType</remote-id>
<remote-id type="cpan-module">C::Type</remote-id>
<remote-id type="cpan-module">C::Var</remote-id>
<remote-id type="cpan-module">Inline::MakePdlppInstallable</remote-id>
<remote-id type="cpan-module">Inline::Pdlpp</remote-id>
<remote-id type="cpan-module">NullHandle</remote-id>
<remote-id type="cpan-module">PDL</remote-id>
<remote-id type="cpan-module">PDL::Basic</remote-id>
<remote-id type="cpan-module">PDL::Bench</remote-id>
<remote-id type="cpan-module">PDL::CallExt</remote-id>
<remote-id type="cpan-module">PDL::Char</remote-id>
<remote-id type="cpan-module">PDL::Constants</remote-id>
<remote-id type="cpan-module">PDL::Core::Dev</remote-id>
<remote-id type="cpan-module">PDL::Dbg</remote-id>
<remote-id type="cpan-module">PDL::Demos::Cartography_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::General</remote-id>
<remote-id type="cpan-module">PDL::Demos::PGPLOT_OO_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::PGPLOT_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::Routines</remote-id>
<remote-id type="cpan-module">PDL::Demos::Transform_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::TriD1</remote-id>
<remote-id type="cpan-module">PDL::Demos::TriD2</remote-id>
<remote-id type="cpan-module">PDL::Demos::TriDGallery</remote-id>
<remote-id type="cpan-module">PDL::DiskCache</remote-id>
<remote-id type="cpan-module">PDL::Doc</remote-id>
<remote-id type="cpan-module">PDL::Doc::Perldl</remote-id>
<remote-id type="cpan-module">PDL::Exporter</remote-id>
<remote-id type="cpan-module">PDL::Filter::Gaussian</remote-id>
<remote-id type="cpan-module">PDL::Filter::LinPred</remote-id>
<remote-id type="cpan-module">PDL::Filter::LinSmooth</remote-id>
<remote-id type="cpan-module">PDL::Filter::Linear</remote-id>
<remote-id type="cpan-module">PDL::Filter::SavGol</remote-id>
<remote-id type="cpan-module">PDL::Fit::LM</remote-id>
<remote-id type="cpan-module">PDL::Fit::Linfit</remote-id>
<remote-id type="cpan-module">PDL::Fit::Polynomial</remote-id>
<remote-id type="cpan-module">PDL::Func</remote-id>
<remote-id type="cpan-module">PDL::GraphEvolver</remote-id>
<remote-id type="cpan-module">PDL::GraphEvolverOLD</remote-id>
<remote-id type="cpan-module">PDL::Graphics2D</remote-id>
<remote-id type="cpan-module">PDL::Graphics::LUT</remote-id>
<remote-id type="cpan-module">PDL::Graphics::Limits</remote-id>
<remote-id type="cpan-module">PDL::Graphics::Limits::DSet</remote-id>
<remote-id type="cpan-module">PDL::Graphics::OpenGL::OO</remote-id>
<remote-id type="cpan-module">PDL::Graphics::OpenGL::Perl::OpenGL</remote-id>
<remote-id type="cpan-module">PDL::Graphics::PGPLOT</remote-id>
<remote-id type="cpan-module">PDL::Graphics::PGPLOT::Window</remote-id>
<remote-id type="cpan-module">PDL::Graphics::PGPLOTOptions</remote-id>
<remote-id type="cpan-module">PDL::Graphics::State</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ArcBall</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ArcBowl</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ArcCone</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Basic</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::BoundingBox</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ButtonControl</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ContourPolygonize</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Contours</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Control3D</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::CylindricalEquidistantAxes</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Description</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::EuclidAxes</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::EventHandler</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GL::Window</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GObject</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GObject_Lattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GPObject</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GoBoard</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Graph</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Image</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Labels</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Lattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::LineStrip</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Lines</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::LinesFOOOLD</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Logo</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Material</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::MathGraph</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Mesh</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::OOGL</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Object</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::OneTransformation</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Points</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::PolarStereoAxes</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Polygonize</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::QuaterController</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Quaternion</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SCLattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SLattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SLattice_S</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::STrigrid</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::STrigrid_S</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Scale</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ScaleController</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SimpleController</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SimpleScaler</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Spheres</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::StupidPolygonize</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Surface</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Transformation</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Translation</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRML</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRML::Parameter</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRML::URL</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRMLObject</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ViewPort</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Window</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRML</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRML::Protos</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRMLNode</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRMLPdlNode</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRMLProto</remote-id>
<remote-id type="cpan-module">PDL::IO::Dicom</remote-id>
<remote-id type="cpan-module">PDL::IO::Dumper</remote-id>
<remote-id type="cpan-module">PDL::IO::FITS</remote-id>
<remote-id type="cpan-module">PDL::IO::FastRaw</remote-id>
<remote-id type="cpan-module">PDL::IO::FlexRaw</remote-id>
<remote-id type="cpan-module">PDL::IO::HDF</remote-id>
<remote-id type="cpan-module">PDL::IO::Pic</remote-id>
<remote-id type="cpan-module">PDL::Interpolate</remote-id>
<remote-id type="cpan-module">PDL::Interpolate::Slatec</remote-id>
<remote-id type="cpan-module">PDL::Lite</remote-id>
<remote-id type="cpan-module">PDL::LiteF</remote-id>
<remote-id type="cpan-module">PDL::Lvalue</remote-id>
<remote-id type="cpan-module">PDL::Matrix</remote-id>
<remote-id type="cpan-module">PDL::MyInlineMod</remote-id>
<remote-id type="cpan-module">PDL::NiceSlice</remote-id>
<remote-id type="cpan-module">PDL::Opt::Simplex</remote-id>
<remote-id type="cpan-module">PDL::Options</remote-id>
<remote-id type="cpan-module">PDL::PP</remote-id>
<remote-id type="cpan-module">PDL::PP::Access</remote-id>
<remote-id type="cpan-module">PDL::PP::BackCodeThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::BadAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::BadSwitch</remote-id>
<remote-id type="cpan-module">PDL::PP::BadVarAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::Block</remote-id>
<remote-id type="cpan-module">PDL::PP::Code</remote-id>
<remote-id type="cpan-module">PDL::PP::ComplexThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::GenericLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::GentypeAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::Ind</remote-id>
<remote-id type="cpan-module">PDL::PP::Loop</remote-id>
<remote-id type="cpan-module">PDL::PP::MacroAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::NaNSupport</remote-id>
<remote-id type="cpan-module">PDL::PP::OtherAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PDLStateBadAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PPBadAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PdlAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PdlDimsObj</remote-id>
<remote-id type="cpan-module">PDL::PP::PdlParObj</remote-id>
<remote-id type="cpan-module">PDL::PP::PhysPointerAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PointerAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::ReSizeAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::InsertName</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::MakeComp</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::EmptyString</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::NULL</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::One</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::Zero</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Substitute</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Substitute::Usual</remote-id>
<remote-id type="cpan-module">PDL::PP::Signature</remote-id>
<remote-id type="cpan-module">PDL::PP::SimpleThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::SizeAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::ThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::TypeConv</remote-id>
<remote-id type="cpan-module">PDL::PP::Types</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::CleanErrors</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::NiceSlice</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::PDLCommands</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::PrintControl</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Profile::Perldl2</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Script</remote-id>
<remote-id type="cpan-module">PDL::Pod::Parser</remote-id>
<remote-id type="cpan-module">PDL::Pod::Select</remote-id>
<remote-id type="cpan-module">PDL::Pod::Usage</remote-id>
<remote-id type="cpan-module">PDL::PodParser</remote-id>
<remote-id type="cpan-module">PDL::Reduce</remote-id>
<remote-id type="cpan-module">PDL::Transform::Cartography</remote-id>
<remote-id type="cpan-module">StrHandle</remote-id>
<remote-id type="cpan-module">SymTab</remote-id>
<remote-id type="cpan-module">Win32::DDE::Netscape</remote-id>
<remote-id type="cpan-module">XS</remote-id>
</upstream>
<use>
<flag name="badval">Enable bad values support</flag>
<flag name="hdf">Enable HDF (version 4) format support</flag>
<flag name="netpbm">Enable NETPBM and MPEG support</flag>
<flag name="pdl2">Build pdf2 shell (requires Devel-REPL)</flag>
<flag name="pgplot">Enable PGPLOT plotting capabilities</flag>
<flag name="plplot">Enable plplot plotting capabilities</flag>
</use>
<upstream>
<remote-id type="cpan">PDL</remote-id>
<remote-id type="cpan-module">C::StructObj</remote-id>
<remote-id type="cpan-module">C::StructType</remote-id>
<remote-id type="cpan-module">C::Type</remote-id>
<remote-id type="cpan-module">C::Var</remote-id>
<remote-id type="cpan-module">Inline::MakePdlppInstallable</remote-id>
<remote-id type="cpan-module">Inline::Pdlpp</remote-id>
<remote-id type="cpan-module">NullHandle</remote-id>
<remote-id type="cpan-module">PDL</remote-id>
<remote-id type="cpan-module">PDL::Basic</remote-id>
<remote-id type="cpan-module">PDL::Bench</remote-id>
<remote-id type="cpan-module">PDL::CallExt</remote-id>
<remote-id type="cpan-module">PDL::Char</remote-id>
<remote-id type="cpan-module">PDL::Constants</remote-id>
<remote-id type="cpan-module">PDL::Core::Dev</remote-id>
<remote-id type="cpan-module">PDL::Dbg</remote-id>
<remote-id type="cpan-module">PDL::Demos::Cartography_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::General</remote-id>
<remote-id type="cpan-module">PDL::Demos::PGPLOT_OO_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::PGPLOT_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::Routines</remote-id>
<remote-id type="cpan-module">PDL::Demos::Transform_demo</remote-id>
<remote-id type="cpan-module">PDL::Demos::TriD1</remote-id>
<remote-id type="cpan-module">PDL::Demos::TriD2</remote-id>
<remote-id type="cpan-module">PDL::Demos::TriDGallery</remote-id>
<remote-id type="cpan-module">PDL::DiskCache</remote-id>
<remote-id type="cpan-module">PDL::Doc</remote-id>
<remote-id type="cpan-module">PDL::Doc::Perldl</remote-id>
<remote-id type="cpan-module">PDL::Exporter</remote-id>
<remote-id type="cpan-module">PDL::Filter::Gaussian</remote-id>
<remote-id type="cpan-module">PDL::Filter::LinPred</remote-id>
<remote-id type="cpan-module">PDL::Filter::LinSmooth</remote-id>
<remote-id type="cpan-module">PDL::Filter::Linear</remote-id>
<remote-id type="cpan-module">PDL::Filter::SavGol</remote-id>
<remote-id type="cpan-module">PDL::Fit::LM</remote-id>
<remote-id type="cpan-module">PDL::Fit::Linfit</remote-id>
<remote-id type="cpan-module">PDL::Fit::Polynomial</remote-id>
<remote-id type="cpan-module">PDL::Func</remote-id>
<remote-id type="cpan-module">PDL::GraphEvolver</remote-id>
<remote-id type="cpan-module">PDL::GraphEvolverOLD</remote-id>
<remote-id type="cpan-module">PDL::Graphics2D</remote-id>
<remote-id type="cpan-module">PDL::Graphics::LUT</remote-id>
<remote-id type="cpan-module">PDL::Graphics::Limits</remote-id>
<remote-id type="cpan-module">PDL::Graphics::Limits::DSet</remote-id>
<remote-id type="cpan-module">PDL::Graphics::OpenGL::OO</remote-id>
<remote-id type="cpan-module">PDL::Graphics::OpenGL::Perl::OpenGL</remote-id>
<remote-id type="cpan-module">PDL::Graphics::PGPLOT</remote-id>
<remote-id type="cpan-module">PDL::Graphics::PGPLOT::Window</remote-id>
<remote-id type="cpan-module">PDL::Graphics::PGPLOTOptions</remote-id>
<remote-id type="cpan-module">PDL::Graphics::State</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ArcBall</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ArcBowl</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ArcCone</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Basic</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::BoundingBox</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ButtonControl</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ContourPolygonize</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Contours</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Control3D</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::CylindricalEquidistantAxes</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Description</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::EuclidAxes</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::EventHandler</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GL::Window</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GObject</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GObject_Lattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GPObject</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::GoBoard</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Graph</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Image</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Labels</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Lattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::LineStrip</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Lines</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::LinesFOOOLD</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Logo</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Material</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::MathGraph</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Mesh</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::OOGL</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Object</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::OneTransformation</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Points</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::PolarStereoAxes</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Polygonize</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::QuaterController</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Quaternion</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SCLattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SLattice</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SLattice_S</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::STrigrid</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::STrigrid_S</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Scale</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ScaleController</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SimpleController</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::SimpleScaler</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Spheres</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::StupidPolygonize</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Surface</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Transformation</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Translation</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRML</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRML::Parameter</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRML::URL</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::VRMLObject</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::ViewPort</remote-id>
<remote-id type="cpan-module">PDL::Graphics::TriD::Window</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRML</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRML::Protos</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRMLNode</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRMLPdlNode</remote-id>
<remote-id type="cpan-module">PDL::Graphics::VRMLProto</remote-id>
<remote-id type="cpan-module">PDL::IO::Dicom</remote-id>
<remote-id type="cpan-module">PDL::IO::Dumper</remote-id>
<remote-id type="cpan-module">PDL::IO::FITS</remote-id>
<remote-id type="cpan-module">PDL::IO::FastRaw</remote-id>
<remote-id type="cpan-module">PDL::IO::FlexRaw</remote-id>
<remote-id type="cpan-module">PDL::IO::HDF</remote-id>
<remote-id type="cpan-module">PDL::IO::Pic</remote-id>
<remote-id type="cpan-module">PDL::Interpolate</remote-id>
<remote-id type="cpan-module">PDL::Interpolate::Slatec</remote-id>
<remote-id type="cpan-module">PDL::Lite</remote-id>
<remote-id type="cpan-module">PDL::LiteF</remote-id>
<remote-id type="cpan-module">PDL::Lvalue</remote-id>
<remote-id type="cpan-module">PDL::Matrix</remote-id>
<remote-id type="cpan-module">PDL::MyInlineMod</remote-id>
<remote-id type="cpan-module">PDL::NiceSlice</remote-id>
<remote-id type="cpan-module">PDL::Opt::Simplex</remote-id>
<remote-id type="cpan-module">PDL::Options</remote-id>
<remote-id type="cpan-module">PDL::PP</remote-id>
<remote-id type="cpan-module">PDL::PP::Access</remote-id>
<remote-id type="cpan-module">PDL::PP::BackCodeThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::BadAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::BadSwitch</remote-id>
<remote-id type="cpan-module">PDL::PP::BadVarAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::Block</remote-id>
<remote-id type="cpan-module">PDL::PP::Code</remote-id>
<remote-id type="cpan-module">PDL::PP::ComplexThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::GenericLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::GentypeAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::Ind</remote-id>
<remote-id type="cpan-module">PDL::PP::Loop</remote-id>
<remote-id type="cpan-module">PDL::PP::MacroAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::NaNSupport</remote-id>
<remote-id type="cpan-module">PDL::PP::OtherAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PDLStateBadAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PPBadAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PdlAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PdlDimsObj</remote-id>
<remote-id type="cpan-module">PDL::PP::PdlParObj</remote-id>
<remote-id type="cpan-module">PDL::PP::PhysPointerAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::PointerAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::ReSizeAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::InsertName</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::MakeComp</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::EmptyString</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::NULL</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::One</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Returns::Zero</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Substitute</remote-id>
<remote-id type="cpan-module">PDL::PP::Rule::Substitute::Usual</remote-id>
<remote-id type="cpan-module">PDL::PP::Signature</remote-id>
<remote-id type="cpan-module">PDL::PP::SimpleThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::SizeAccess</remote-id>
<remote-id type="cpan-module">PDL::PP::ThreadLoop</remote-id>
<remote-id type="cpan-module">PDL::PP::TypeConv</remote-id>
<remote-id type="cpan-module">PDL::PP::Types</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::CleanErrors</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::NiceSlice</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::PDLCommands</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Plugin::PrintControl</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Profile::Perldl2</remote-id>
<remote-id type="cpan-module">PDL::Perldl2::Script</remote-id>
<remote-id type="cpan-module">PDL::Pod::Parser</remote-id>
<remote-id type="cpan-module">PDL::Pod::Select</remote-id>
<remote-id type="cpan-module">PDL::Pod::Usage</remote-id>
<remote-id type="cpan-module">PDL::PodParser</remote-id>
<remote-id type="cpan-module">PDL::Reduce</remote-id>
<remote-id type="cpan-module">PDL::Transform::Cartography</remote-id>
<remote-id type="cpan-module">StrHandle</remote-id>
<remote-id type="cpan-module">SymTab</remote-id>
<remote-id type="cpan-module">Win32::DDE::Netscape</remote-id>
<remote-id type="cpan-module">XS</remote-id>
</upstream>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild,v 1.2 2014/07/30 02:08:48 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlalchemy/sqlalchemy-0.9.7.ebuild,v 1.5 2014/09/15 16:55:24 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
@ -21,13 +21,11 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-
IUSE="doc examples +sqlite test"
REQUIRED_USE="test? ( sqlite )"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
sqlite? ( >=dev-db/sqlite-3.3.13 )"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( ( || ( dev-python/pytest[${PYTHON_USEDEP}] >=dev-python/nose-0.10.4[${PYTHON_USEDEP}] ) )
>=dev-db/sqlite-3.3.13
dev-python/mock[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python{2_7,3_2} pypy)
)"
S="${WORKDIR}/${MY_P}"

@ -1,3 +1,4 @@
DIST itcl3.4.1.tar.gz 263316 SHA256 5330832ce72da97610497a58eca904287d0ff91f9ec741a4e4810d5b933c8568 SHA512 288c9b636f1814371bedd33d570a8d46055e136953685a111b76f3b89a6c7aaa1ee9223ceaae1c5ce43198195cb1adc2b178d7c4101d7fd14cb7e756c98bf2b0 WHIRLPOOL c513678bfef5f76b875af68d0bf97fd86b9a9673bb87efbb295dc3faa9a8b011c4c34ed6eddbf648f11b804656e6c99103e8f0ea2c06abc5b1c308b1a5df78cc
DIST itcl3.4b1.tar.gz 306342 SHA256 dc99fcf6c00b00774dbfb94ccc437ea3e6315a198645b6d2acf8acba8fdb4608 SHA512 230776b5d14b57b63fb4e93f7bb5bc5cfa9532a5dba286cefae02d2c5fa58566cea12d8d62303eaa5797e956d3534acc8a9015c18555f925bb72e32362e7e241 WHIRLPOOL 02b32ba77f6e9eb520929abcb4a1dbc11e782793903da757bf4189788224faf218279380d557ed9ba36c24e8e6cd57a9821c4985153bfa9f7281daa19637a476
DIST itcl4.0.0.tar.gz 409850 SHA256 facbe365c6bc769429255e253f456a5c78ad5c13da720fcd43adc1efc2200869 SHA512 130fcc712c7a319b524dfca0e1f622233d8bd93aaea7d19538daa9ad366ae421e9b2c75473ccb22ec02a548afb0c4cbe794536804d68940bcba0cf555f778543 WHIRLPOOL 62ff53beccf567049f83b249b4eb93a380465eb8de52e4c1f7574948d7e348f29479f22704a57993e574f2ef86942abeb004007e0abf3f9aed0502c6d4b4dd82
DIST itcl4.0.1.tar.gz 434455 SHA256 d0a844bc4998a329fb2457f4a1838afb1261bfd27e3f373346e3379a253a6372 SHA512 0e1bf328df96eb51380e4e1e2d4fce2a52703879f760e6d143c73e7d4e5ea7cc738e6592f670cfa8389cbe7ca1c3d9b85200cf06810477cf1a18400b7c970165 WHIRLPOOL 0ae9ac511da786e1c6e944280db5b91d23c480934caf607c08e65c271f3ce119bd657568281391de2083db6c6b4c0b3040c8bbc4369a081d7e8fed6804fa76a4

@ -0,0 +1,65 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/itcl/itcl-4.0.1.ebuild,v 1.1 2014/09/15 18:35:46 jlec Exp $
EAPI=5
inherit eutils multilib versionator
MY_P="${PN}${PV}"
TCL_VER="8.6.2"
DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
HOMEPAGE="http://incrtcl.sourceforge.net/"
#SRC_URI="mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/$(get_version_component_range 1-2)/${MY_P}.tar.gz"
SRC_URI="mirror://sourceforge/project/tcl/Tcl/${TCL_VER}/${MY_P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
RDEPEND=">=dev-lang/tcl-8.6"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}${PV}"
# somehow broken
RESTRICT=test
src_configure() {
econf \
--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
--with-tclinclude="${EPREFIX}"/usr/include \
--disable-rpath
}
src_compile() {
# adjust install_name on darwin
if [[ ${CHOST} == *-darwin* ]]; then
sed -i \
-e 's:^\(SHLIB_LD\W.*\)$:\1 -install_name ${pkglibdir}/$@:' \
"${S}"/Makefile || die 'sed failed'
fi
sed 's:-pipe::g' -i Makefile || die
emake CFLAGS_DEFAULT="${CFLAGS}"
}
src_install() {
default
sed \
-e "/BUILD_LIB_SPEC/s:-L${S}::g" \
-e "/BUILD_STUB_LIB_SPEC/s:-L${S}::g" \
-e "/BUILD_STUB_LIB_PATH/s:${S}:${EPREFIX}/usr/$(get_libdir)/${MY_P}/:g" \
-e "/INCLUDE_SPEC/s:${S}/generic:${EPREFIX}/usr/include:g" \
-e "s:${S}:${EPREFIX}/usr/$(get_libdir)/${MY_P}/:g" \
-i "${ED}"/usr/$(get_libdir)/${MY_P}/itclConfig.sh || die
cat >> "${T}"/34${PN} <<- EOF
LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}$(get_version_component_range 1-3)/"
EOF
doenvd "${T}"/34${PN}
}

@ -1 +1,2 @@
DIST thread2.7.0.tar.gz 293785 SHA256 c10ac6873fdf1e62f55fccb633f4a595fc9924f7a5390a507605943ad7093870 SHA512 bc133a4a6d59bd2608cd3aae15a573d2bc79f3c66bf1c7e33a734779c7c9c4fca568f071af45134fb703f9f037369c8c20655c0ede3d3c1d31f585ab85aff7e3 WHIRLPOOL 929a6fa47383ab4fb56cbe6b49f49a559a39c05cbd751974df01ab5233ca13e62c394c17e1c88b85ffe76cf2a499fd76edba6196543cfc157828c0f4ca56ecf2
DIST thread2.7.1.tar.gz 295134 SHA256 0982027928adcca8a0ea7b47ea41b7d2529b10bb59ccb2d6b9181af7de98bab0 SHA512 18ebd9431b6f6bfb1e6a60797af39db0dee29a16cd457ddab2a18cd5dfd9ef2dea9284ab99238fb05b8284fcc855c2ef8011eb3ed02d7e54d715379d133512dc WHIRLPOOL fde8fb025973666294080a7b9356cb831db4843a09153ca0e810de77e6857ef344e4780816276ed047ec0b0d663fa72a07aeebf9900aa00479b77efd558243db

@ -0,0 +1,50 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/thread/thread-2.7.1.ebuild,v 1.1 2014/09/15 18:37:28 jlec Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils multilib
MY_P="${PN}${PV}"
TCL_VER="8.6.2"
DESCRIPTION="Tcl Thread extension"
HOMEPAGE="http://www.tcl.tk/"
SRC_URI="mirror://sourceforge/project/tcl/Tcl/${TCL_VER}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="debug gdbm"
DEPEND="
dev-lang/tcl[threads]
gdbm? ( sys-libs/gdbm )"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${PN}${PV}
RESTRICT="test"
src_prepare() {
# Search for libs in libdir not just exec_prefix/lib
sed -i -e 's:${exec_prefix}/lib:${libdir}:' \
aclocal.m4 || die "sed failed"
sed -i -e "s/relid'/relid/" tclconfig/tcl.m4 || die
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
--with-tclinclude="${EPREFIX}/usr/include"
--with-tcl="${EPREFIX}/usr/$(get_libdir)"
)
use gdbm && myconf+=( --with-gdbm )
use debug && myconf+=( --enable-symbols )
autotools-utils_src_configure
}

@ -1,2 +1,2 @@
DIST cmake-2.8.12.2.tar.gz 6068231 SHA256 8c6574e9afabcb9fc66f463bb1f2f051958d86c85c37fccf067eb1a44a120e5e SHA512 a0fe8f6305052ba7894a7d58aa30f97b4be1f52eb7de650273a704929a6fbe81c7cebfa6e68a18c9e7d62f7ed02c944f74c2974da9aacc70e2cb186e0a1be44d WHIRLPOOL 3635651a59a93c661db4df8c248e35bfd8a9869eb74faa33fa6d56c12039ef7bb37756fd4c55fb107a9b7c38d2616dc43eb41acc0c565cfad4a24db99c361c29
DIST cmake-3.0.0.tar.gz 5489804 SHA256 99a34b7f74000404feffd82fba9d9e0cd623428c74b6a4851a0dee1c272606c0 SHA512 e8b8098fda7d9db239df0a0151e34eb11f40aa0265386684acfb1aff93b401ad86163c1e13a3197700cf26ab7d284cf0a21caa2e2bfb07a62e9816ba4c15ae90 WHIRLPOOL 4e616cb9bd333d4cdbc72bc98ecf80a7a216fd35cd045a8786c972b35e5c5eaf16b25cfc03fc9c83685b74d54171ac697963b8d6b579449f7868b96ac9343642
DIST cmake-3.0.2.tar.gz 5490501 SHA256 6b4ea61eadbbd9bec0ccb383c29d1f4496eacc121ef7acf37c7a24777805693e SHA512 de267bd6c5b318e48fae64c28947de009fb2413bdc6b4454b5e4bbb7d50b78aaef5d7e9d9655cfb9299aa5704fd3e4bbabc6816d3f378f76856f56ab161efe02 WHIRLPOOL 4c2aa1c72edb700689a8a91bfdfe22977e46a87851d66eb0e187e1e35a1a928be12b477fc39455b877d55420bcb149be6430d6835e01e20f61b84d8d83c752d6

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-3.0.0.ebuild,v 1.1 2014/07/27 11:55:54 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-3.0.2.ebuild,v 1.1 2014/09/15 22:43:29 johu Exp $
EAPI=5
@ -52,9 +52,9 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
"${FILESDIR}"/${PN}-2.8.12.1-FindImageMagick.patch
"${FILESDIR}"/${PN}-3.0.0-FindBLAS.patch
"${FILESDIR}"/${PN}-3.0.0-FindLAPACK.patch
"${FILESDIR}"/${PN}-3.0.0-FindBoost-python.patch
"${FILESDIR}"/${PN}-3.0.0-prefix-dirs.patch
"${FILESDIR}"/${PN}-3.0.2-FindLAPACK.patch
)
cmake_src_bootstrap() {

@ -1,5 +1,5 @@
--- Modules/FindLAPACK.cmake
+++ Modules/FindLAPACK.cmake
--- Modules/FindLAPACK.cmake.orig 2014-09-15 23:50:11.377111987 +0200
+++ Modules/FindLAPACK.cmake 2014-09-15 23:52:54.734388375 +0200
@@ -4,6 +4,10 @@
#
# Find LAPACK library
@ -11,9 +11,9 @@
# This module finds an installed fortran library that implements the
# LAPACK linear-algebra interface (see http://www.netlib.org/lapack/).
#
@@ -72,6 +76,24 @@
# N.B. _prefix is the prefix applied to the names of all cached variables that
# are generated internally and marked advanced by this macro.
@@ -140,6 +144,23 @@
endmacro()
+#
+# first, try PkgConfig
@ -26,17 +26,16 @@
+ if (NOT ${PC_LIB}_LIBRARY)
+ message(FATAL_ERROR "Something is wrong in your pkg-config file - lib ${PC_LIB} not found in ${PC_LAPACK_LIBRARY_DIRS}")
+ endif (NOT ${PC_LIB}_LIBRARY)
+ list(APPEND LAPACK_LIBRARIES ${${PC_LIB}_LIBRARY})
+ list(APPEND LAPACK_LIBRARIES ${${PC_LIB}_LIBRARY})
+ endforeach(PC_LIB)
+ find_package_handle_standard_args(LAPACK DEFAULT_MSG LAPACK_LIBRARIES)
+ mark_as_advanced(LAPACK_LIBRARIES)
+else(PC_LAPACK_FOUND)
+message(STATUS "No PkgConfig configuration for LAPACK found; starting more extensive search.")
+
set(_libraries_work TRUE)
set(${LIBRARIES})
set(_combined_name)
@@ -348,3 +370,5 @@
set(LAPACK_LINKER_FLAGS)
set(LAPACK_LIBRARIES)
@@ -348,3 +369,5 @@
endif()
set(CMAKE_FIND_LIBRARY_SUFFIXES ${_lapack_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES})

@ -1,7 +1,4 @@
DIST debootstrap_1.0.56.tar.gz 59501 SHA256 14b40be6cc807a2013ed05105325638bd56643cd289dfa91321d9d1d7a393e7b SHA512 831bd97cd8fe5338315d812c683055f3879ca55c653d565886faf3d17f2fc9462beecd05e923ea8a9ae713c0398e59c6a4affd9b557cf181c04bc2034641fbac WHIRLPOOL ab5eef9656fe24b335ed75ac99bcc4e45314b9ae9e440efb47f8114f7af3ec1ec114bd112871f801dc1553274b71015c9990bfb390b96e9d3ba86ec600e95068
DIST debootstrap_1.0.57.tar.xz 49244 SHA256 94a9267b3490ac730157561f21a556ca12e7964c8276ede49125c942c0aa2f81 SHA512 dd678cf82e5575509dbb3639b7de8ea58dfe6c113ff21777e2f185999aa4574db5ba60a21417f580ac895e4bbbf1c46a19902acdc5d8633b42f3730238bea63e WHIRLPOOL eabc4d09bd2877a91f3420c8dcac68db98dfc8d374e17a4984248724cac6901d6af7ff6627fbed5da247975a5d0af53e434689e4532d2645585b38ee729fd2d7
DIST debootstrap_1.0.58.tar.xz 49416 SHA256 2f051c46f0722104fd6f856d45f02df2f12e90b5137e5ee8034b49d2648e5e08 SHA512 9838f4e9d7a481f2fe3e9d1955f8edb2769fe71d46c9ca182badd54d848c0e230a1add048b1073c928fbbb33cba55d22a4721960d4503408f76aeb0a25f4447a WHIRLPOOL c40081e0024a52bc1416ab79e21d4cb7cc2a4190a1ceb3e7faf2078af732db95ef55184dba23adf121fe06c2b3782ab40e8128c8b8e221b07d0da17aa0da112a
DIST debootstrap_1.0.59.tar.xz 49500 SHA256 767d151e68b36d80b44c15430d804616fba77046fd6db78c2aac1b9ef0f1ca31 SHA512 283d20fc7c1289ccf4b964345973afad4a75ffbb6732f0eb84593737d5ced077386e4e390a145ecb86eb63c29c389a8840e7d3eace62e2428cf6cd8d02e4e632 WHIRLPOOL e197bcba942ec486ccbec90f353090781f965f80323db9086c68847660d7e5f57ceda8d356f79329211b7c12c1467575cc8e3c612310eb80fb6194eb00407c7a
DIST debootstrap_1.0.60.tar.xz 49612 SHA256 886b140a6801012aba3f502d1f50f5b8e94fc032965400a6c2da19437a75dd4b SHA512 2c939043c24d22a521477685f087977c5e4fed50eab8e0d9e5a40fc590fddf343192eb1a1cab382640c492966462e19c6a9902dd207fac42c8358f84bdd684c8 WHIRLPOOL 185beced94b0c64f179ec48872e42561410b5f20b17e866f21bd494d0df61ce139347e7bc2b40a3aaac342c230804a530eb454fae79f8a7c73cafe1e46c469cc
DIST debootstrap_1.0.61.tar.xz 49724 SHA256 b6e1d3048c8afe7c819be297f9bac24d8820e7cabba0766d2ed2fc5928e71766 SHA512 1e325e30e2bb505f43a94e94d3c5cd3a4cddc3db7f3e21378915bef1209f1e2fb623b5a734416746752a20a9e82a6d7f5f3ac8a4dfb0270712f91bcc23224161 WHIRLPOOL 33bbcb5489bf43cdaf44e10a10e0c6e9c776b82ad0c64a6171d9079bbddaee30fb83629c519dbe6f2293dffd990c1fa7fb36b06d7b18d687b88c7c898e2d0503
DIST debootstrap_1.0.62.tar.xz 50040 SHA256 476d14f048b0c05e0ad02e8b9dd913a02883dad9a8b7080f5be8b9228f35622b SHA512 e02f39a716b74c30bd1a5dcf43eab699a692e48ed69ce377be7b17f1af50b2c9654bb0b62e81942e7d694c5ea45fec6b531d7c46e18b70e370d9178cb9d7b902 WHIRLPOOL ed213f70200fade05e52c774cd8182dbfb7d510e8d144df436b4cc2645a522068ed8e7192a89dd72314c18e3ab4a31b3629f9e0675eb1441b666d534cab221b6
DIST devices.tar.gz 47835 SHA256 0d93f93c8b21160069d14e74f8f990a2e0e1e5a90dc828b29e6b3f5aa5829e48 SHA512 994ec8d72e3d52d2d872f7ff0da2336e4cbd3a5fa73bb6cdb9e06f5e7f5b8c69cea639c738fdba1186f382d6dcf62e7746fface664bfbd744aac24b16f034432 WHIRLPOOL 222963bb920e1311bc2f481bba04e49f386b60cce6ce0576424896277e0c4fc6a339d4403d587744c32b0bfb1db6391f200fa8d66117e3f21e1c12f35365d732

@ -1,48 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.58.ebuild,v 1.1 2014/02/12 01:34:24 jer Exp $
EAPI=5
inherit eutils
DESCRIPTION="Debian/Ubuntu bootstrap scripts"
HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html"
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz
mirror://gentoo/devices.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="
app-arch/xz-utils
"
RDEPEND="
app-arch/dpkg
net-misc/wget
sys-devel/binutils
"
DOCS=( TODO debian/changelog )
src_unpack() {
unpack ${PN}_${PV}.tar.xz
cp "${DISTDIR}"/devices.tar.gz "${S}"
}
src_compile() {
return
}
src_install() {
default
doman debootstrap.8
}
pkg_postinst() {
if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
elog "To check Release files against a keyring"
elog " (--keyring=K), please install app-crypt/gnupg."
fi
}

@ -1,48 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.60.ebuild,v 1.1 2014/05/06 16:24:24 jer Exp $
EAPI=5
inherit eutils
DESCRIPTION="Debian/Ubuntu bootstrap scripts"
HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html"
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz
mirror://gentoo/devices.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="
app-arch/xz-utils
"
RDEPEND="
app-arch/dpkg
net-misc/wget
sys-devel/binutils
"
DOCS=( TODO debian/changelog )
src_unpack() {
unpack ${PN}_${PV}.tar.xz
cp "${DISTDIR}"/devices.tar.gz "${S}"
}
src_compile() {
return
}
src_install() {
default
doman debootstrap.8
}
pkg_postinst() {
if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
elog "To check Release files against a keyring"
elog " (--keyring=K), please install app-crypt/gnupg."
fi
}

@ -1,48 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.61.ebuild,v 1.1 2014/09/03 14:04:27 jer Exp $
EAPI=5
inherit eutils
DESCRIPTION="Debian/Ubuntu bootstrap scripts"
HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html"
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz
mirror://gentoo/devices.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="
app-arch/xz-utils
"
RDEPEND="
app-arch/dpkg
net-misc/wget
sys-devel/binutils
"
DOCS=( TODO debian/changelog )
src_unpack() {
unpack ${PN}_${PV}.tar.xz
cp "${DISTDIR}"/devices.tar.gz "${S}"
}
src_compile() {
return
}
src_install() {
default
doman debootstrap.8
}
pkg_postinst() {
if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
elog "To check Release files against a keyring"
elog " (--keyring=K), please install app-crypt/gnupg."
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.57.ebuild,v 1.1 2014/02/08 13:06:41 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.62.ebuild,v 1.1 2014/09/16 05:21:45 jer Exp $
EAPI=5
inherit eutils

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.14.ebuild,v 1.2 2014/08/21 13:50:16 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-sdk/nvidia-cuda-sdk-6.5.14.ebuild,v 1.3 2014/09/15 18:56:32 jlec Exp $
EAPI=5
@ -25,7 +25,7 @@ RDEPEND="
media-libs/freeimage
media-libs/glew
virtual/mpi
>=x11-drivers/nvidia-drivers-334.16-r7[uvm]
>=x11-drivers/nvidia-drivers-334.32[uvm]
)"
DEPEND="${RDEPEND}"

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild,v 1.1 2014/08/21 08:56:17 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-6.5.14.ebuild,v 1.2 2014/09/15 18:54:05 jlec Exp $
EAPI=5
@ -23,7 +23,7 @@ IUSE="debugger doc eclipse profiler"
DEPEND=""
RDEPEND="${DEPEND}
<sys-devel/gcc-4.9[cxx]
>=x11-drivers/nvidia-drivers-340.24[uvm]
>=x11-drivers/nvidia-drivers-340.32[uvm]
debugger? (
sys-libs/libtermcap-compat
sys-libs/ncurses[tinfo]

@ -1,4 +1,4 @@
DIST git-cola-1.8.2.tar.gz 397346 SHA256 386b29cd70b3c6a14b23790567d2e93168e1eeaaec5d85be37e4f5ce4fd9a977 SHA512 5136749a12d262dd28db4058efd3892a437e5dea18d4fe888248fd7a3891409091e7d36565536fa7d4538354a01f11f8a02e0fd31c2c86ea7159f4e6004b75cc WHIRLPOOL 861af22ba39d6e5a3899fe569c6cfa3651daab6d4d57a4daf07acad133cd2cc1a375da403a94deb943d3a5ddee4e364d5a50b3f7996dbb3310495b57c67a7369
DIST git-cola-1.9.4.tar.gz 434458 SHA256 c7f065bf5557ceba424ee26e5af94d01b37537ef426fffe581efe33526733525 SHA512 aabf1887da1aee2b1ae2c004c8ab29317796c4e21bda7b9937fdf3ad8aa6721e8833b56f143e4cda72bcd631ede3f176592335862e456f69729494332b33264b WHIRLPOOL 2ee639402b2bdab9bc49b11d0bf29696e3607e9218662af72fd6aeafd73da37955ce5dc40ddb03f9664fd15c3ec213681a2ab58b6451ac121a8abaafbb4bc32d
DIST git-cola-2.0.4.tar.gz 634947 SHA256 40d3fa9ec6bb697f111030d54f63cd34e823af6aff4c2d1c43bc4f86bc25cec8 SHA512 c27254bde34db09a54c02c4f3ac5e44ed8a73963bec7d7cadb4690b35753f52d0ac5bbe6445208a6f67ebc30b76f420e30c855b5287aa7a1656603fc78a8a207 WHIRLPOOL c3d74d18a2ff85414b5d4a04d42f574960759d164a0eae9d152b3ef94528c555c6ee847d4b4c66b2c068d71ee62fe16011da18beac8e88fd6d69b9c5b38b8b51
DIST git-cola-2.0.5.tar.gz 665336 SHA256 a3fc3dc5b1010e4c85b75b01346f94823b1b8eb35dd23ef1d9703b7a4c8959ef SHA512 275f66c32792f6c50fa46512aa998ab5b7bcbc51d5c01bd97f864264961f68f71a24c74e2788f7598a91b35087eb7c93c142c2ebd03fe969a66a84752b3f03a2 WHIRLPOOL dfcc01c4a9a629cb32303be02a46787bd0da95eddaf2e7c36c1060ef12af9b9dea34c5aa20067e1c81ce9acefd79a302d967b207d17306862b633cc3c25d3bd8
DIST git-cola-2.0.6.tar.gz 679597 SHA256 5522fbfc2537488ba7d36a79842af33bdbe89a053809f3c90008aff76b8aa3b3 SHA512 e370255cf919ffb1311e32a8d7ef219063d03593d5243dd85a3a6c776c31b9b9fd02da4c5661f98e8b8e6e5190cfeccb726e655575561e096576dec86656f7a5 WHIRLPOOL 374d02e2e2c857f7e4b45c3bcb4a26e05caad67066f0a2b586b1d6ff5be1338335e94b74ef906a18e62178605cd9da819b282ad25e61f0ef405ce8babbe04d71

@ -1,13 +1,13 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/git-cola-2.0.4.ebuild,v 1.1 2014/06/25 13:54:25 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-cola/git-cola-2.0.6.ebuild,v 1.1 2014/09/15 19:23:43 jlec Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3} )
DISTUTILS_SINGLE_IMPL=true
inherit distutils-r1 readme.gentoo
inherit distutils-r1 readme.gentoo virtualx
DESCRIPTION="The highly caffeinated git GUI"
HOMEPAGE="http://git-cola.github.com/"
@ -86,6 +86,9 @@ python_install_all() {
prefix="${EPREFIX}/usr" \
install
python_fix_shebang "${D}/usr/share/git-cola/bin/git-xbase"
python_optimize "${D}/usr/share/git-cola/lib/cola"
if ! use doc ; then
HTML_DOCS=( "${FILESDIR}"/index.html )
fi
@ -96,7 +99,8 @@ python_install_all() {
}
python_test() {
PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" LC_ALL="C" nosetests \
--verbose --with-doctest --with-id --exclude=jsonpickle --exclude=json \
|| die "running nosetests failed"
PYTHONPATH="${S}:${S}/build/lib:${PYTHONPATH}" LC_ALL="C" \
VIRTUALX_COMMAND="nosetests --verbose --with-doctest \
--with-id --exclude=jsonpickle --exclude=json" \
virtualmake
}

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.17 2014/02/21 16:07:25 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.18 2014/09/15 17:54:11 jlec Exp $
# @ECLASS: intel-sdp.eclass
# @MAINTAINER:
@ -348,7 +348,12 @@ intel-sdp_pkg_setup() {
fi
INTEL_RPMS=()
INTEL_RPMS_FULL=()
for p in ${INTEL_BIN_RPMS}; do
if [[ $(declare -p INTEL_BIN_RPMS) = "declare -a "* ]] ; then
_INTEL_BIN_RPMS=( ${INTEL_BIN_RPMS[@]} )
else
read -r -d '' -a _INTEL_BIN_RPMS <<<"${INTEL_BIN_RPMS}"
fi
for p in "${_INTEL_BIN_RPMS[@]}"; do
for a in ${arch}; do
if [ ${p} == $(basename ${p}) ]; then
INTEL_RPMS+=( intel-${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.${a}.rpm )
@ -357,7 +362,12 @@ intel-sdp_pkg_setup() {
fi
done
done
for p in ${INTEL_DAT_RPMS}; do
if [[ $(declare -p INTEL_DAT_RPMS) = "declare -a "* ]] ; then
_INTEL_DAT_RPMS=( ${INTEL_DAT_RPMS[@]} )
else
read -r -d '' -a _INTEL_DAT_RPMS <<<"${INTEL_DAT_RPMS}"
fi
for p in "${_INTEL_DAT_RPMS[@]}"; do
if [ ${p} == $(basename ${p}) ]; then
INTEL_RPMS+=( intel-${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.noarch.rpm )
else
@ -373,12 +383,12 @@ intel-sdp_src_unpack() {
local l r subdir rb t list=() debug_list
for t in ${A}; do
for r in ${INTEL_RPMS[@]}; do
for r in "${INTEL_RPMS[@]}"; do
rpmdir=${t%%.*}/${INTEL_RPMS_DIR}
list+=( ${rpmdir}/${r} )
done
for r in ${INTEL_RPMS_FULL[@]}; do
for r in "${INTEL_RPMS_FULL[@]}"; do
list+=( ${t%%.*}/${r} )
done

@ -0,0 +1,150 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/minetest/minetest-0.4.10-r1.ebuild,v 1.1 2014/09/15 19:43:00 hasufell Exp $
EAPI=5
inherit eutils cmake-utils gnome2-utils vcs-snapshot user games
DESCRIPTION="An InfiniMiner/Minecraft inspired game"
HOMEPAGE="http://minetest.net/"
SRC_URI="http://github.com/minetest/minetest/tarball/${PV} -> ${P}.tar.gz"
LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+curl dedicated leveldb luajit nls redis +server +sound +truetype"
RDEPEND="dev-db/sqlite:3
sys-libs/zlib
curl? ( net-misc/curl )
!dedicated? (
app-arch/bzip2
>=dev-games/irrlicht-1.8-r2
media-libs/libpng:0
virtual/jpeg
virtual/opengl
x11-libs/libX11
x11-libs/libXxf86vm
sound? (
media-libs/libogg
media-libs/libvorbis
media-libs/openal
)
truetype? ( media-libs/freetype:2 )
)
leveldb? ( dev-libs/leveldb )
luajit? ( dev-lang/luajit:2 )
!luajit? ( >=dev-lang/lua-5.1.4[deprecated] )
nls? ( virtual/libintl )
redis? ( dev-libs/hiredis )"
DEPEND="${RDEPEND}
>=dev-games/irrlicht-1.8-r2
nls? ( sys-devel/gettext )"
pkg_setup() {
games_pkg_setup
if use server || use dedicated ; then
enewuser ${PN} -1 -1 /var/lib/${PN} ${GAMES_GROUP}
fi
}
src_unpack() {
vcs-snapshot_src_unpack
}
src_prepare() {
epatch \
"${FILESDIR}"/${P}-shared-irrlicht.patch \
"${FILESDIR}"/${P}-as-needed.patch \
"${FILESDIR}"/${P}-system-lua.patch
# correct gettext behavior
if [[ -n "${LINGUAS+x}" ]] ; then
for i in $(cd po ; echo *) ; do
if ! has ${i} ${LINGUAS} ; then
rm -r po/${i} || die
fi
done
fi
# jthread is modified
# json is modified
rm -r src/{lua,sqlite} || die
# set paths
sed \
-e "s#@BINDIR@#${GAMES_BINDIR}#g" \
-e "s#@GROUP@#${GAMES_GROUP}#g" \
"${FILESDIR}"/minetestserver.confd > "${T}"/minetestserver.confd || die
}
src_configure() {
local mycmakeargs=(
$(usex dedicated "-DBUILD_SERVER=ON -DBUILD_CLIENT=OFF" "$(cmake-utils_use_build server SERVER) -DBUILD_CLIENT=ON")
-DCUSTOM_BINDIR="${GAMES_BINDIR}"
-DCUSTOM_DOCDIR="/usr/share/doc/${PF}"
-DCUSTOM_LOCALEDIR="/usr/share/locale"
-DCUSTOM_SHAREDIR="${GAMES_DATADIR}/${PN}"
$(cmake-utils_use_enable curl CURL)
$(cmake-utils_use_enable truetype FREETYPE)
$(cmake-utils_use_enable nls GETTEXT)
-DENABLE_GLES=0
$(cmake-utils_use_enable leveldb LEVELDB)
$(cmake-utils_use_enable redis REDIS)
$(cmake-utils_use_enable sound SOUND)
$(cmake-utils_use !luajit DISABLE_LUAJIT)
-DRUN_IN_PLACE=0
-DWITH_BUNDLED_LUA=0
$(use dedicated && {
echo "-DIRRLICHT_SOURCE_DIR=/the/irrlicht/source"
echo "-DIRRLICHT_INCLUDE_DIR=/usr/include/irrlicht"
})
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
if use server || use dedicated ; then
newinitd "${FILESDIR}"/minetestserver.initd minetest-server
newconfd "${T}"/minetestserver.confd minetest-server
fi
prepgamesdirs
}
pkg_preinst() {
games_pkg_preinst
gnome2_icon_savelist
}
pkg_postinst() {
games_pkg_postinst
gnome2_icon_cache_update
if ! use dedicated ; then
elog
elog "optional dependencies:"
elog " games-action/minetest_game (official mod)"
elog
fi
if use server || use dedicated ; then
elog
elog "Configure your server via /etc/conf.d/minetest-server"
elog "The user \"minetest\" is created with /var/lib/${PN} homedir."
elog "Default logfile is ~/minetest-server.log"
elog
fi
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/minetest/minetest-0.4.9.ebuild,v 1.3 2014/04/05 11:11:05 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/games-action/minetest/minetest-0.4.9.ebuild,v 1.4 2014/09/15 19:02:47 hasufell Exp $
EAPI=5
inherit eutils cmake-utils gnome2-utils vcs-snapshot user games
@ -127,9 +127,6 @@ pkg_postinst() {
elog
elog "optional dependencies:"
elog " games-action/minetest_game (official mod)"
elog " games-action/minetest_common (official mod)"
elog " games-action/minetest_build (official mod)"
elog " games-action/minetest_survival (official mod)"
elog
fi

@ -1 +1,2 @@
DIST xboard-4.7.2.tar.gz 3415953 SHA256 9b6736994b051499dcbe564051f6d964114a38fe47bbaab6dc7bde71a52ba9ee SHA512 00fada24279165e715426282e38f3f7a8dfd2aa15900ed7edd3c3e8de57ac425c1eb721df7bcf4ec4a980955cb42d69762ddd5e07af899e556820fff20607ad0 WHIRLPOOL 4dc5d9cc18725953509e25a8ba2cb04dd803228f092feb0507a878c66bed86b4072d672470462208532b60f9b9c3736a9f2207427a0bc173642bf0450e1795c2
DIST xboard-4.7.3.tar.gz 3424771 SHA256 7fd0b03f53dad57c587bc3438459612e2455534f715cfb0e637b6290f34cbeaa SHA512 e9da88e48329f88c39ecea0623849706013dedfdd67022d9ff0f7277e339932c8b3890933db0189d80ed552e7ea42f98d2406795f17712a604ecffde2760e6cb WHIRLPOOL 3ac83d327107f565bc8e8e08fc1e1c4df64c5eb07db29e2164f432159722a0ffa62bf80d5029cdb03ff7b0267bae850d1286f6d8a3a730b1c61609975e76c029

@ -7,8 +7,6 @@ Date: Sat Sep 7 12:48:58 2013 +0200
Listing both one after another leads to withXaw being false
if you pass "--with-Xaw3d --without-Xaw".
diff --git a/configure.ac b/configure.ac
index 1664491..6548295 100644
--- a/configure.ac
+++ b/configure.ac
@@ -248,8 +248,7 @@ fi

@ -6,8 +6,6 @@ Date: Fri Sep 6 16:56:15 2013 +0200
https://savannah.gnu.org/bugs/?39971
diff --git a/configure.ac b/configure.ac
index 0a24161..1664491 100644
--- a/configure.ac
+++ b/configure.ac
@@ -138,18 +138,18 @@ FRONTEND_LIBS=""

@ -7,8 +7,6 @@ Date: Fri Sep 6 16:37:22 2013 +0200
https://bugs.gentoo.org/show_bug.cgi?id=418267
https://savannah.gnu.org/bugs/index.php?39970
diff --git a/configure.ac b/configure.ac
index 2a69733..0a24161 100644
--- a/configure.ac
+++ b/configure.ac
@@ -76,7 +76,7 @@ AC_ISC_POSIX

@ -4,8 +4,6 @@ Date: Fri Sep 6 18:15:38 2013 +0200
set gnuchess as default engine
diff --git a/gtk/xboard.h b/gtk/xboard.h
index 5326af8..0fe90ed 100644
--- a/gtk/xboard.h
+++ b/gtk/xboard.h
@@ -118,8 +118,8 @@ typedef struct {
@ -19,8 +17,6 @@ index 5326af8..0fe90ed 100644
#define FIRST_DIRECTORY "."
#define SECOND_DIRECTORY "."
#define SOUND_BELL ""
diff --git a/xaw/xboard.h b/xaw/xboard.h
index 04692b5..508b52f 100644
--- a/xaw/xboard.h
+++ b/xaw/xboard.h
@@ -118,8 +118,8 @@ typedef struct {
@ -34,8 +30,6 @@ index 04692b5..508b52f 100644
#define FIRST_DIRECTORY "."
#define SECOND_DIRECTORY "."
#define SOUND_BELL ""
diff --git a/xboard.conf.in b/xboard.conf.in
index 38186c2..08a4f6e 100644
--- a/xboard.conf.in
+++ b/xboard.conf.in
@@ -67,8 +67,8 @@

@ -10,8 +10,6 @@ Date: Fri Sep 6 16:35:03 2013 +0200
https://savannah.gnu.org/bugs/index.php?39969
diff --git a/Makefile.am b/Makefile.am
index 61aa1d7..25f1138 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -84,24 +84,26 @@ sysconf_DATA = xboard.conf
@ -85,8 +83,6 @@ index 61aa1d7..25f1138 100644
dist_sounds_DATA = \
sounds/cymbal.wav sounds/pop2.wav sounds/slap.wav sounds/ding1.wav sounds/laser.wav \
sounds/woodthunk.wav sounds/gong.wav sounds/penalty.wav sounds/honkhonk.wav sounds/phone.wav
diff --git a/configure.ac b/configure.ac
index d7a6381..2a69733 100644
--- a/configure.ac
+++ b/configure.ac
@@ -151,6 +151,42 @@

@ -0,0 +1,21 @@
commit 7bc79645d4e404d00fee43b5a6cee4e3b6bf7a35
Author: hasufell <hasufell@gentoo.org>
Date: Sat Sep 7 12:48:58 2013 +0200
BUILD: fix withXaw conditional
Listing both one after another leads to withXaw being false
if you pass "--with-Xaw3d --without-Xaw".
--- a/configure.ac
+++ b/configure.ac
@@ -248,8 +248,7 @@ fi
dnl | make results available in Makefile.am
AM_CONDITIONAL([withGTK], [test x"$with_GTK" = x"yes"])
-AM_CONDITIONAL([withXaw], [test x"$with_Xaw3d" = x"yes"])
-AM_CONDITIONAL([withXaw], [test x"$with_Xaw" = x"yes"])
+AM_CONDITIONAL([withXaw], [test x"$with_Xaw3d" = x"yes" || test x"$with_Xaw" = x"yes"])
AC_SUBST(FRONTEND_CFLAGS)

@ -0,0 +1,35 @@
commit adcbc6072fa0d1a9bf84e018f04b1c18dfedab5c
Author: hasufell <hasufell@gentoo.org>
Date: Fri Sep 6 16:56:15 2013 +0200
BUILD: fix configure switches
https://savannah.gnu.org/bugs/?39971
--- a/configure.ac
+++ b/configure.ac
@@ -138,18 +138,18 @@ FRONTEND_LIBS=""
AC_ARG_WITH([gtk],
[AS_HELP_STRING([--with-gtk],[use GTK front-end (experimental)])],
- [with_GTK=yes],
- [with_GTK=no])
+ [with_GTK=$withval],
+ [with_GTK="no"])
AC_ARG_WITH([Xaw3d],
[AS_HELP_STRING([--with-Xaw3d],[use Xaw3d front-end (not fully supported anymore)])],
- [with_Xaw3d=yes],
- [with_Xaw3d=no])
+ [with_Xaw3d="$withval"],
+ [with_Xaw3d="no"])
AC_ARG_WITH([Xaw],
[AS_HELP_STRING([--with-Xaw],[use Xaw front-end (default)])],
- [with_Xaw=yes],
- [with_Xaw=no])
+ [with_Xaw="$withval"],
+ [with_Xaw="no"])
AC_ARG_WITH([iconsdir],
[AS_HELP_STRING([--with-iconsdir=DIR],

@ -0,0 +1,20 @@
commit 7688073f2967bb3438d1a2d8ccffc53f697219fb
Author: hasufell <hasufell@gentoo.org>
Date: Fri Sep 6 16:37:22 2013 +0200
BUILD: fix gettext version
https://bugs.gentoo.org/show_bug.cgi?id=418267
https://savannah.gnu.org/bugs/index.php?39970
--- a/configure.ac
+++ b/configure.ac
@@ -76,7 +76,7 @@ AC_ISC_POSIX
AC_PROG_INSTALL
dnl| add gettext support
-AM_GNU_GETTEXT_VERSION(0.17)
+AM_GNU_GETTEXT_VERSION(0.18)
AM_GNU_GETTEXT([external])
AC_CHECK_PROGS(RSH, remsh rsh, rsh)

@ -0,0 +1,45 @@
commit 0b6d8acf55b4d8721e854cfba025e621f61ff5c2
Author: hasufell <hasufell@gentoo.org>
Date: Fri Sep 6 18:15:38 2013 +0200
set gnuchess as default engine
--- a/gtk/xboard.h
+++ b/gtk/xboard.h
@@ -118,8 +118,8 @@ typedef struct {
#define BORDER_X_OFFSET 3
#define BORDER_Y_OFFSET 27
-#define FIRST_CHESS_PROGRAM "fairymax"
-#define SECOND_CHESS_PROGRAM "fairymax"
+#define FIRST_CHESS_PROGRAM "gnuchess"
+#define SECOND_CHESS_PROGRAM "gnuchess"
#define FIRST_DIRECTORY "."
#define SECOND_DIRECTORY "."
#define SOUND_BELL ""
--- a/xaw/xboard.h
+++ b/xaw/xboard.h
@@ -118,8 +118,8 @@ typedef struct {
#define BORDER_X_OFFSET 3
#define BORDER_Y_OFFSET 27
-#define FIRST_CHESS_PROGRAM "fairymax"
-#define SECOND_CHESS_PROGRAM "fairymax"
+#define FIRST_CHESS_PROGRAM "gnuchess"
+#define SECOND_CHESS_PROGRAM "gnuchess"
#define FIRST_DIRECTORY "."
#define SECOND_DIRECTORY "."
#define SOUND_BELL ""
--- a/xboard.conf.in
+++ b/xboard.conf.in
@@ -67,8 +67,8 @@
;
; Engines & adjudicatons in engine-engine games
;
--firstChessProgram fairymax
--secondChessProgram fairymax
+-firstChessProgram gnuchess
+-secondChessProgram gnuchess
-firstChessProgramNames {fairymax
"Fruit 2.1" -fcp fruit -fUCI
"Crafty" -fcp crafty

@ -0,0 +1,145 @@
commit 3c112927b309889c14f8164a58020d1ddefd58d6
Author: hasufell <hasufell@gentoo.org>
Date: Fri Sep 6 16:35:03 2013 +0200
BUILD: make paths modifiable
This can help with setups where games are installed in their
own location, but system data files like desktopfiles
should still go to /usr/share.
https://savannah.gnu.org/bugs/index.php?39969
--- a/Makefile.am
+++ b/Makefile.am
@@ -84,24 +84,26 @@ sysconf_DATA = xboard.conf
### icon files
-icondir = $(datadir)/icons/hicolor/48x48/apps
+icondir = @ICONSDIR@
dist_icon_DATA = xboard.png
-svgicondir = $(datadir)/icons/hicolor/scalable/apps
+svgicondir = @SVGICONSDIR@
dist_svgicon_DATA = xboard.svg
### desktop files for KDE and gnome
-Applicationsdir = $(datadir)/applications
+Applicationsdir = @DESKTOPDIR@
Applications_DATA = xboard.desktop xboard-fen-viewer.desktop xboard-pgn-viewer.desktop xboard-tourney.desktop xboard-config.desktop
### mime file
-mimedir = $(datadir)/mime/packages
+mimedir = @MIMEDIR@
mime_DATA = xboard.xml
+gamedatadir = @GAMEDATADIR@
+
### directory and files for svgs
-svgdir = $(datadir)/games/xboard/themes/default
+svgdir = $(gamedatadir)/themes/default
dist_svg_DATA = svg/icon_white.svg svg/icon_black.svg \
svg/BlackAdvisor.svg svg/WhiteAdvisor.svg \
svg/BlackArchbishop.svg svg/WhiteArchbishop.svg \
@@ -134,7 +136,7 @@ dist_svg_DATA = svg/icon_white.svg svg/icon_black.svg \
svg/eo_Thinking.svg svg/eo_Unknown.svg \
svg/eo_White.svg
-shogidir = $(datadir)/games/xboard/themes/shogi
+shogidir = $(gamedatadir)/themes/shogi
dist_shogi_DATA = \
themes/shogi/WhiteGold.svg themes/shogi/WhiteCrownedBishop.svg\
themes/shogi/WhiteBishop.svg themes/shogi/WhiteKing.svg\
@@ -151,7 +153,7 @@ dist_shogi_DATA = \
themes/shogi/BlackRook.svg themes/shogi/BlackCrownedRook.svg\
themes/shogi/BlackAdvisor.svg themes/shogi/BlackGoldSilver.svg
-xiangqidir = $(datadir)/games/xboard/themes/xiangqi
+xiangqidir = $(gamedatadir)/themes/xiangqi
dist_xiangqi_DATA = themes/xiangqi/BlackAdvisor.svg themes/xiangqi/WhiteAdvisor.svg \
themes/xiangqi/BlackCanon.svg themes/xiangqi/WhiteCanon.svg \
themes/xiangqi/BlackElephant.svg themes/xiangqi/WhiteElephant.svg \
@@ -162,17 +164,17 @@ dist_xiangqi_DATA = themes/xiangqi/BlackAdvisor.svg themes/xiangqi/WhiteAdvisor
### directory and files for pixmaps
-pixmapsdir = $(datadir)/games/xboard/pixmaps/textures
+pixmapsdir = $(gamedatadir)/pixmaps/textures
dist_pixmaps_DATA = pixmaps/cross32.xpm pixmaps/cross48.xpm pixmaps/board32.xpm pixmaps/board48.xpm pixmaps/ini32.xpm pixmaps/ini48.xpm
### directory and files for pngs
-pngdir = $(datadir)/games/xboard/themes/textures
+pngdir = $(gamedatadir)/themes/textures
dist_png_DATA = png/hatch.png png/wood_d.png png/wood_l.png png/xqboard.png
### directory and files for sound files
-soundsdir = $(datadir)/games/xboard/sounds
+soundsdir = $(gamedatadir)/sounds
dist_sounds_DATA = \
sounds/cymbal.wav sounds/pop2.wav sounds/slap.wav sounds/ding1.wav sounds/laser.wav \
sounds/woodthunk.wav sounds/gong.wav sounds/penalty.wav sounds/honkhonk.wav sounds/phone.wav
--- a/configure.ac
+++ b/configure.ac
@@ -151,6 +151,42 @@
[with_Xaw="$withval"],
[with_Xaw="no"])
+AC_ARG_WITH([iconsdir],
+ [AS_HELP_STRING([--with-iconsdir=DIR],
+ [path where icons get installed (default: $datadir/icons/hicolor/48x48/apps)])],
+ [ICONSDIR="$withval"],
+ [ICONSDIR='$(datadir)/icons/hicolor/48x48/apps'])
+
+AC_ARG_WITH([svgiconsdir],
+ [AS_HELP_STRING([--with-svgiconsdir=DIR],
+ [path where svg icons get installed (default: $datadir/icons/hicolor/scalable/apps)])],
+ [SVGICONSDIR="$withval"],
+ [SVGICONSDIR='$(datadir)/icons/hicolor/scalable/apps'])
+
+AC_ARG_WITH([desktopdir],
+ [AS_HELP_STRING([--with-desktopdir=DIR],
+ [path where desktop files get installed (default: $datadir/applications)])],
+ [DESKTOPDIR="$withval"],
+ [DESKTOPDIR='$(datadir)/applications'])
+
+AC_ARG_WITH([mimedir],
+ [AS_HELP_STRING([--with-mimedir=DIR],
+ [path where mime files get installed (default: $datadir/mime/packages)])],
+ [MIMEDIR="$withval"],
+ [MIMEDIR='$(datadir)/mime/packages'])
+
+AC_ARG_WITH([gamedatadir],
+ [AS_HELP_STRING([--with-gamedatadir=DIR],
+ [path where game data files get installed (default: $datadir/games/xboard)])],
+ [GAMEDATADIR="$withval"],
+ [GAMEDATADIR='$(datadir)/games/xboard'])
+
+AC_SUBST(ICONSDIR)
+AC_SUBST(SVGICONSDIR)
+AC_SUBST(DESKTOPDIR)
+AC_SUBST(MIMEDIR)
+AC_SUBST(GAMEDATADIR)
+
dnl | check for libraries
if test x"$with_GTK" = x"yes" ; then
PKG_CHECK_MODULES([GTK], [ gtk+-2.0 >= 2.16.0 gmodule-2.0 ])
@@ -515,8 +551,12 @@
echo ""
echo " prefix: $prefix "
echo " datarootdir: $datarootdir "
-echo " datadir: $datadir (icons will go in \$datadir/icons/hicolor/...)"
-echo " (bitmaps will go in \$datadir/games/xboard/...)"
+echo " datadir: $datadir "
+echo " gamedatadir: $GAMEDATADIR "
+echo " desktopdir: $DESKTOPDIR "
+echo " mimedir: $MIMEDIR "
+echo " iconsdir: $ICONSDIR "
+echo " svgiconsdir: $SVGICONSDIR "
echo " infodir: $infodir (info files will go here)"
echo " sysconfdir: $sysconfdir (xboard.conf will go here)"
echo ""

@ -0,0 +1,93 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/xboard/xboard-4.7.3.ebuild,v 1.2 2014/09/15 17:00:12 mr_bones_ Exp $
EAPI=5
inherit autotools eutils fdo-mime gnome2-utils games
DESCRIPTION="GUI for gnuchess and for internet chess servers"
HOMEPAGE="http://www.gnu.org/software/xboard/"
SRC_URI="mirror://gnu/xboard/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="Xaw3d +default-font gtk nls zippy"
RESTRICT="test" #124112
RDEPEND="
dev-libs/glib:2
gnome-base/librsvg:2
virtual/libintl
x11-libs/cairo[X]
x11-libs/libXpm
default-font? (
media-fonts/font-adobe-100dpi[nls?]
media-fonts/font-misc-misc[nls?]
)
!gtk? (
x11-libs/libX11
x11-libs/libXt
x11-libs/libXmu
Xaw3d? ( x11-libs/libXaw3d )
!Xaw3d? ( x11-libs/libXaw )
)
gtk? ( x11-libs/gtk+:2 )"
DEPEND="${RDEPEND}
x11-proto/xproto
virtual/pkgconfig
nls? ( sys-devel/gettext )"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-paths.patch \
"${FILESDIR}"/${P}-gettext.patch \
"${FILESDIR}"/${P}-configure-switches.patch \
"${FILESDIR}"/${P}-gnuchess-default.patch \
"${FILESDIR}"/${P}-Xaw3d.patch
eautoreconf
}
src_configure() {
egamesconf \
--datadir=/usr/share \
$(use_enable nls) \
$(use_enable zippy) \
--disable-update-mimedb \
$(use_with gtk) \
$(use_with Xaw3d) \
$(usex gtk "--without-Xaw" "$(use_with !Xaw3d Xaw)") \
--with-gamedatadir="${GAMES_DATADIR}"/${PN}
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS COPYRIGHT ChangeLog NEWS README TODO ics-parsing.txt
use zippy && dodoc zippy.README
dohtml FAQ.html
prepgamesdirs
}
pkg_preinst() {
games_pkg_preinst
gnome2_icon_savelist
}
pkg_postinst() {
games_pkg_postinst
fdo-mime_mime_database_update
fdo-mime_desktop_database_update
gnome2_icon_cache_update
elog "No chess engines are emerged by default! If you want a chess engine"
elog "to play with, you can emerge gnuchess or crafty."
elog "Read xboard FAQ for information."
if ! use default-font ; then
ewarn "Read the xboard(6) man page for specifying the font for xboard to use."
fi
}
pkg_postrm() {
fdo-mime_mime_database_update
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}

@ -0,0 +1,34 @@
From 2cf0d7cb7928aac9ec0e21ceaaf09053434a4947 Mon Sep 17 00:00:00 2001
From: Sebastian Pipping <sebastian@pipping.org>
Date: Tue, 16 Sep 2014 02:58:45 +0200
Subject: [PATCH] Fix for Estonian locale support (bug #522446)
---
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index 6d2a507..17d4bc1 100755
--- a/configure
+++ b/configure
@@ -256,7 +256,7 @@ then
$sed_preconfig_libpng
s|^AR *=.*|AR = $AR|
s|^ARFLAGS *=.*|ARFLAGS = $ARFLAGS|
- s|^AR_\([A-Z]*\) *=.*|AR_\1 = $AR $ARFLAGS|
+ s|^AR_\([[:upper:]]*\) *=.*|AR_\1 = $AR $ARFLAGS|
"
fi
if test "$RANLIB"
@@ -408,7 +408,7 @@ sed_config="
s|@LIBPNG_DISTCLEAN_XCMD@|${LIBPNG_DISTCLEAN_XCMD-true}|g
s|@ZLIB_MK@|${ZLIB_MK-Makefile}|g
s|@ZLIB_DISTCLEAN@|${ZLIB_DISTCLEAN-distclean}|g
- s|@[A-Z]*_MK@|Makefile|g
+ s|@[[:upper:]]*_MK@|Makefile|g
s| *\$||
"
--
2.1.0

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.7.5.ebuild,v 1.1 2014/05/29 16:14:56 sping Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/optipng/optipng-0.7.5.ebuild,v 1.2 2014/09/16 01:04:21 sping Exp $
EAPI=4
@ -21,6 +21,8 @@ DEPEND="${RDEPEND}
sys-apps/findutils"
src_prepare() {
epatch "${FILESDIR}"/${P}-estonian.patch
rm -R src/{libpng,zlib} || die
find . -type d -name build -exec rm -R {} + || die

@ -1 +1,2 @@
DIST gst-plugins-base-0.10.36.tar.xz 2364108 SHA256 1fe45c3894903001d4d008b0713dab089f53726dcb5842d5b40c2595a984e64a SHA512 ea77778e073515df58229a641b4363df31f0b80204a5a43a8feb31f0b03a5a4b9b79d6e07e1615c773a59927a9b649f1b1d782def1120d581d09a090be8363b8 WHIRLPOOL e455f2a1aafd60078080735108e4ac336bc4764ed92b9579d83a453f75491331d16b48e5983f3c9712b6edb28ec379e696f06f6910c93168b019d6077c28fb6d
DIST gst-plugins-base-0.10.36.tar.xz 2364108 SHA256 1fe45c3894903001d4d008b0713dab089f53726dcb5842d5b40c2595a984e64a SHA512 ea77778e073515df58229a641b4363df31f0b80204a5a43a8feb31f0b03a5a4b9b79d6e07e1615c773a59927a9b649f1b1d782def1120d581d09a090be8363b8 WHIRLPOOL e455f2a1aafd60078080735108e4ac336bc4764ed92b9579d83a453f75491331d16b48e5983f3c9712b6edb28ec379e696f06f6910c93168b019d6077c28fb6d

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild,v 1.5 2014/06/14 19:10:05 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-3.5.0.ebuild,v 1.6 2014/09/15 23:30:42 reavertm Exp $
EAPI=5
@ -62,6 +62,7 @@ COMMONDEPEND="
vkontakte? ( net-libs/libkvkontakte )
"
DEPEND="${COMMONDEPEND}
sys-devel/gettext
panorama? (
sys-devel/bison
sys-devel/flex

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild,v 1.2 2014/06/14 19:10:05 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.0.0.ebuild,v 1.3 2014/09/15 23:30:42 reavertm Exp $
EAPI=5
@ -63,6 +63,7 @@ COMMONDEPEND="
vkontakte? ( net-libs/libkvkontakte )
"
DEPEND="${COMMONDEPEND}
sys-devel/gettext
panorama? (
sys-devel/bison
sys-devel/flex

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild,v 1.2 2014/08/20 14:43:48 johu Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/kipi-plugins/kipi-plugins-4.2.0.ebuild,v 1.3 2014/09/15 23:30:42 reavertm Exp $
EAPI=5
@ -63,6 +63,7 @@ COMMONDEPEND="
vkontakte? ( net-libs/libkvkontakte )
"
DEPEND="${COMMONDEPEND}
sys-devel/gettext
panorama? (
sys-devel/bison
sys-devel/flex

@ -1,2 +1,2 @@
DIST ncmpcpp-0.5.10.tar.bz2 381162 SHA256 ff6d5376a2d9caba6f5bb78e68af77cefbdb2f04cd256f738e39f8ac9a79a4a8 SHA512 8ddbc05bd8f3febe80cc5c04992a02f8c86151bb171f8f2e46e8df79210f9445e73fd65bdcaa397b3039ebcf510c6bb6ef61be790a6dcf07d5e35e59f71f3702 WHIRLPOOL 26c5e07e69320963ff67ad29eed4994b72f5f5530d884ac058a2ef9e02acfd1947ec54f557458731b000ba8b6e7a95d5652be4bf7bf53171ceed31127a7b1af6
DIST ncmpcpp-0.6_beta2.tar.bz2 416143 SHA256 f3d15cd3cb277c0ab7bebfcbf6184ee59b74fa1eed82815ad161dc4e867228ce SHA512 315197e8df99073c7af55bb8989159ad6d4e92a06679d8d5516882e8e08c117a903148f1f740522cf7bf56ca6167c5693844d48f11b8bb453e954a245c7da21d WHIRLPOOL ecedd816f749f8530ae6cf56ad589930828289e686937eb09bb5ce1f2eadbe32a0930cd6ddaa46bfa7b865bf3846b6397c07d9056db650c904b96d7867981cf5
DIST ncmpcpp-0.6_beta3.tar.bz2 417087 SHA256 e0b2960f05cf78c1694933590ec2bd29959841c4cfd5d8d251e6cdcd1d591d32 SHA512 cb27ba22652430668e3605a7d64eb723898c8bed6a70ab8cf8d6ab7e71537d786322025f9797b599585252e4b5b74dcb1abddb7ba6829bb4e09d2ea534b2f5b7 WHIRLPOOL 5d54016e0d8cff184a814763900a06a9aa087a814a13c21a4fa4e8e4d559402bbc50f81080bc472b1f6ea74d03d48a1b130733c73a691fff233e9f499d9e6dda

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.6_beta2.ebuild,v 1.1 2014/09/04 00:26:16 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.6_beta3.ebuild,v 1.1 2014/09/16 05:35:38 jer Exp $
EAPI=5

@ -1 +1 @@
Mon, 15 Sep 2014 11:07:02 +0000
Tue, 16 Sep 2014 06:07:02 +0000

@ -1 +1 @@
Mon, 15 Sep 2014 11:07:02 +0000
Tue, 16 Sep 2014 06:07:02 +0000

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst preinst prepare test
DEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
DESCRIPTION=utils for managing LZMA compressed files
EAPI=4
HOMEPAGE=http://tukaani.org/xz/
IUSE=nls static-libs +threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
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 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=public-domain LGPL-2.1+ GPL-2+
RDEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
SLOT=0
SRC_URI=http://tukaani.org/xz/xz-5.0.6.tar.gz
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=183dcc84ea17889bc2fb4bfba57181cf

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst preinst prepare test
DEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
DESCRIPTION=utils for managing LZMA compressed files
EAPI=4
HOMEPAGE=http://tukaani.org/xz/
IUSE=nls static-libs +threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
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 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=public-domain LGPL-2.1+ GPL-2+
RDEPEND=!<app-arch/lzma-4.63 !app-arch/lzma-utils !<app-arch/p7zip-4.57
SLOT=0
SRC_URI=http://tukaani.org/xz/xz-5.1.4beta.tar.gz
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=4c3a6d20d83a60a499c8459364f22eb7

@ -0,0 +1,12 @@
DEFINED_PHASES=install postinst
DEPEND=app-text/txt2man
DESCRIPTION=A shell frontend for duplicity
EAPI=5
HOMEPAGE=http://duply.net
KEYWORDS=~amd64 ~x86
LICENSE=GPL-2
RDEPEND=app-backup/duplicity
SLOT=0
SRC_URI=mirror://sourceforge/ftplicity/duply_1.9.0.tgz
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 multilib 3bf24e6abb9b76d9f6c20600f0b716bf readme.gentoo 106edea5533517715013de909a333abd toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=4c099bf5655328e15c06e1e6678a803d

@ -3,7 +3,7 @@ DEPEND=>=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.4:0= >=dev-libs/libgpg-erro
DESCRIPTION=The GNU Privacy Guard, a GPL pgp replacement
EAPI=5
HOMEPAGE=http://www.gnupg.org/
IUSE=bzip2 doc ldap nls mta readline static selinux smartcard usb
IUSE=bzip2 doc ldap nls mta readline static selinux smartcard tools usb
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=GPL-3
RDEPEND=!static? ( >=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.4:0= >=dev-libs/libgpg-error-1.11 >=dev-libs/libksba-1.0.7 >=dev-libs/pth-1.3.7 >=net-misc/curl-7.10 sys-libs/zlib bzip2? ( app-arch/bzip2 ) readline? ( sys-libs/readline ) smartcard? ( usb? ( virtual/libusb:0 ) ) ldap? ( net-nds/openldap ) ) || ( app-crypt/pinentry app-crypt/pinentry-qt ) mta? ( virtual/mta ) !<=app-crypt/gnupg-2.0.1 selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl )
@ -11,4 +11,4 @@ REQUIRED_USE=smartcard? ( !static )
SLOT=0
SRC_URI=mirror://gnupg/gnupg/gnupg-2.0.26.tar.bz2
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=13df1618306d055551dd7652b3222364
_md5_=364f9bddb77f0cd71b9bdf1458a330c4

@ -3,11 +3,11 @@ DEPEND=dev-libs/npth >=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.6.1 >=dev-lib
DESCRIPTION=The GNU Privacy Guard, a GPL pgp replacement
EAPI=5
HOMEPAGE=http://www.gnupg.org/
IUSE=bzip2 doc nls readline static selinux smartcard usb
IUSE=bzip2 doc nls readline static selinux smartcard tools usb
LICENSE=GPL-3
RDEPEND=!static? ( dev-libs/npth >=dev-libs/libassuan-2 >=dev-libs/libgcrypt-1.6.1 >=dev-libs/libgpg-error-1.13 >=dev-libs/libksba-1.0.7 >=net-misc/curl-7.10 >=net-libs/gnutls-3.0 sys-libs/zlib net-nds/openldap bzip2? ( app-arch/bzip2 ) readline? ( sys-libs/readline ) smartcard? ( usb? ( virtual/libusb:0 ) ) ) || ( app-crypt/pinentry app-crypt/pinentry-qt ) !<=app-crypt/gnupg-2.0.1 selinux? ( sec-policy/selinux-gpg ) nls? ( virtual/libintl )
REQUIRED_USE=smartcard? ( !static )
SLOT=0
SRC_URI=mirror://gnupg/gnupg/unstable/gnupg-2.1.0-beta783.tar.bz2
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=4069b57d151765868955403e6e95c37b
_md5_=6559370b8a78444cfd882e02d52b0330

@ -10,4 +10,4 @@ RDEPEND=X? ( x11-libs/libX11 x11-libs/libXmu x11-libs/libXt )
SLOT=0
SRC_URI=mirror://sourceforge.jp/freewnn/59257/FreeWnn-1.1.1-a022.tar.bz2
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=1a51f99b7729d75a69c480f55b63435d
_md5_=1d7e4a247c016e1e283691dde7861340

@ -1,8 +0,0 @@
DEFINED_PHASES=install postinst unpack
DESCRIPTION=A simple bash driven frontend to simplify decompression of files
HOMEPAGE=http://obsoleet.org/code/unfoo
KEYWORDS=amd64 ppc ppc64 s390 x86 ~x86-fbsd
LICENSE=BSD
SLOT=0
SRC_URI=http://obsoleet.org/code/unfoo/unfoo-1.0.6.sh
_md5_=85abad63cf8b893284fc15ca7d73a079

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install postinst
DEPEND=test? ( || ( app-arch/bzip2 app-arch/lbzip2[symlink] app-arch/pbzip2[symlink] ) || ( app-arch/gzip app-arch/pigz[symlink] ) app-arch/p7zip || ( app-arch/rar app-arch/unrar-gpl app-arch/unrar ) app-arch/unace app-arch/unzip app-arch/xz-utils )
DESCRIPTION=A simple bash driven frontend to simplify decompression of files
EAPI=5
HOMEPAGE=http://obsoleet.org/code/unfoo
IUSE=+minimal test
KEYWORDS=~amd64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux
LICENSE=BSD
RDEPEND=!minimal? ( || ( app-arch/bzip2 app-arch/lbzip2[symlink] app-arch/pbzip2[symlink] ) || ( app-arch/gzip app-arch/pigz[symlink] ) app-arch/p7zip || ( app-arch/rar app-arch/unrar-gpl app-arch/unrar ) app-arch/unace app-arch/unzip app-arch/xz-utils )
SLOT=0
SRC_URI=https://github.com/vitaminmoo/unfoo/archive/v1.0.7.tar.gz -> unfoo-1.0.7.tar.gz
_md5_=9cdab6a501cde23d19f33d9986e6a520

@ -8,4 +8,4 @@ LICENSE=GPL-2
RDEPEND=!<dev-db/mysql-5.1
SLOT=0
_eclasses_=eutils 06133990e861be0fe60c2b428fd025d9 multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402
_md5_=d6dabb111444cab6d71443e428f64da0
_md5_=bcba47926a46f7411746178ef4d03586

@ -0,0 +1,12 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-db/postgresql-base-9.0.0 x11-libs/wxGTK:2.8 >=dev-util/cmake-2.6 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=pgAgent is a job scheduler for PostgreSQL
EAPI=5
HOMEPAGE=http://www.pgadmin.org/download/pgagent.php
KEYWORDS=~amd64 ~x86
LICENSE=POSTGRESQL GPL-2
RDEPEND=>=dev-db/postgresql-base-9.0.0 x11-libs/wxGTK:2.8
SLOT=0
SRC_URI=mirror://postgresql/pgadmin3/release/pgagent/pgAgent-3.4.0-Source.tar.gz
_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 06133990e861be0fe60c2b428fd025d9 flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 wxwidgets 6d6eec2685256d35511e7b6d5461bec9
_md5_=a9a17a49f30039f3eb2f38b6c829f44b

@ -0,0 +1,11 @@
DEFINED_PHASES=install
DEPEND=dev-db/postgresql-base dev-libs/cyrus-sasl >=dev-libs/libmemcached-1.0.18[sasl]
DESCRIPTION=A PostgreSQL API based on libmemcached to interface with memcached
EAPI=5
HOMEPAGE=http://pgfoundry.org/projects/pgmemcache https://github.com/ohmu/pgmemcache
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=dev-db/postgresql-base dev-libs/cyrus-sasl >=dev-libs/libmemcached-1.0.18[sasl]
SLOT=0
SRC_URI=https://github.com/ohmu/pgmemcache/archive/2.2.0.tar.gz -> pgmemcache-2.2.0.tar.gz
_md5_=e1080347a22fa7fe59321ebc8cf522ac

@ -10,5 +10,5 @@ RDEPEND=eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/intel-common-13.0.0.079[comp
RESTRICT=mirror
SLOT=0
SRC_URI=amd64? ( multilib? ( http://registrationcenter-download.intel.com/irc_nas/2749/parallel_studio_xe_2013.tgz ) ) amd64? ( !multilib? ( http://registrationcenter-download.intel.com/irc_nas/2749/parallel_studio_xe_2013_intel64.tgz ) ) x86? ( http://registrationcenter-download.intel.com/irc_nas/2749/parallel_studio_xe_2013_ia32.tgz )
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=acbffa9b3ede9271eb8bb8a063977c18

@ -10,5 +10,5 @@ RDEPEND=eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/intel-common-13.0.1.117[comp
RESTRICT=mirror
SLOT=0
SRC_URI=amd64? ( multilib? ( http://registrationcenter-download.intel.com/irc_nas/2872/parallel_studio_xe_2013_update1.tgz ) ) amd64? ( !multilib? ( http://registrationcenter-download.intel.com/irc_nas/2872/parallel_studio_xe_2013_update1_intel64.tgz ) ) x86? ( http://registrationcenter-download.intel.com/irc_nas/2872/parallel_studio_xe_2013_update1_ia32.tgz )
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=a666e209b3106ea222e6b2f374c9a2d5

@ -10,5 +10,5 @@ RDEPEND=eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/intel-common-13.1.2.146[comp
RESTRICT=mirror
SLOT=0
SRC_URI=amd64? ( multilib? ( http://registrationcenter-download.intel.com/irc_nas/2987/parallel_studio_xe_2013_update2.tgz ) ) amd64? ( !multilib? ( http://registrationcenter-download.intel.com/irc_nas/2987/parallel_studio_xe_2013_update2_intel64.tgz ) ) x86? ( http://registrationcenter-download.intel.com/irc_nas/2987/parallel_studio_xe_2013_update2_ia32.tgz )
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=9ec708037ea5e9c91e9b8977a63739dd

@ -10,5 +10,5 @@ RDEPEND=eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/intel-common-13.1.3.163[comp
RESTRICT=mirror
SLOT=0
SRC_URI=amd64? ( multilib? ( http://registrationcenter-download.intel.com/irc_nas/3078/parallel_studio_xe_2013_update3.tgz ) ) amd64? ( !multilib? ( http://registrationcenter-download.intel.com/irc_nas/3078/parallel_studio_xe_2013_update3_intel64.tgz ) ) x86? ( http://registrationcenter-download.intel.com/irc_nas/3078/parallel_studio_xe_2013_update3_ia32.tgz )
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=24582fee6962d35b9ddf59cd5d5a756c

@ -10,5 +10,5 @@ RDEPEND=!dev-lang/ifc[linguas_ja] eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/in
RESTRICT=mirror
SLOT=0
SRC_URI=amd64? ( multilib? ( http://registrationcenter-download.intel.com/irc_nas/3266/parallel_studio_xe_2013_update4.tgz ) ) amd64? ( !multilib? ( http://registrationcenter-download.intel.com/irc_nas/3266/parallel_studio_xe_2013_update4_intel64.tgz ) ) x86? ( http://registrationcenter-download.intel.com/irc_nas/3266/parallel_studio_xe_2013_update4_ia32.tgz )
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=6603811d1cead26db136601d25ecf611

@ -10,5 +10,5 @@ RDEPEND=!dev-lang/ifc[linguas_ja] eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/in
RESTRICT=mirror
SLOT=0
SRC_URI=http://registrationcenter-download.intel.com/irc_nas/3447/parallel_studio_xe_2013_sp1.tgz
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=438438e58494eab8f996cb037f8c7cfb

@ -10,5 +10,5 @@ RDEPEND=!dev-lang/ifc[linguas_ja] eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/in
RESTRICT=mirror
SLOT=0
SRC_URI=http://registrationcenter-download.intel.com/irc_nas/3644/parallel_studio_xe_2013_sp1_update1.tgz
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=c293343b2865a3cc59147d7fa99f89f5

@ -10,5 +10,5 @@ RDEPEND=!dev-lang/ifc[linguas_ja] eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/in
RESTRICT=mirror
SLOT=0
SRC_URI=http://registrationcenter-download.intel.com/irc_nas/3949/parallel_studio_xe_2013_sp1_update2.tgz
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=a3d35af8e705c8371e89c2af5d8b26ce

@ -10,5 +10,5 @@ RDEPEND=!dev-lang/ifc[linguas_ja] eclipse? ( dev-util/eclipse-sdk ) ~dev-libs/in
RESTRICT=mirror
SLOT=0
SRC_URI=http://registrationcenter-download.intel.com/irc_nas/4220/parallel_studio_xe_2013_sp1_update3.tgz
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp 6728df2965e4480fc74090c8eccf3f71 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_eclasses_=check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 06133990e861be0fe60c2b428fd025d9 intel-sdp df7c76937645536165fa786ef03857fe multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f
_md5_=109fc4e91255f96da786db08bc13aca0

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

Loading…
Cancel
Save