Sync with portage [Mon Apr 1 11:39:48 MSK 2013].

mhiretskiy
root 11 years ago
parent 6ed5269c81
commit 7ef3327230

@ -1 +1,2 @@
DIST SphinxTrain-0.9.1-beta.tar.gz 469617 SHA256 c1a4b74a3e26777b80ddd7a026547aad194040cca8595e6fe1be320a19f99d18 SHA512 1b33a58a6e05069369fe1ba668609e5a25d6a49fbf2fed1f5d86bdc1fc43d4544627c438e61d46003c2dbd8d7fa6f41c686b57cbca215f73b6c4ba0d7682076d WHIRLPOOL 6399233f803f37d8d267a5005a5cb158513cb64b2b7b3727cb9ee93c46781f29e5ed0729c1d7d1e586de49ede098a7d9658c285399bae0d633f34657000074c8
DIST sphinxtrain-1.0.8.tar.gz 8925803 SHA256 548e3e513ceaa1b2fd6fd7ed1724349e0a4bf7bdeb11be9c91787e6f2b865203 SHA512 465d2c4ade9acc7b49c1d975449c38ac01d5a3ff332f9841be66cd8ca9d2f0b68fd36cc8a46384c8b510042efa91c3887a080481e84f2d0deb9775a598835f2b WHIRLPOOL d9ccbe09d125579e15167fa625bb72c86e114f9c394e909488216ae2f4e6af4c7b968d469455b65c4aff2a41a7d97701ac290df2cbc6b0450c64c94b042ae94d

@ -0,0 +1,39 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/SphinxTrain/SphinxTrain-1.0.8.ebuild,v 1.1 2013/03/31 16:40:31 hasufell Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit multilib python-single-r1
DESCRIPTION="Speech Recognition (Training Module)"
HOMEPAGE="http://cmusphinx.sourceforge.net/html/cmusphinx.php"
SRC_URI="mirror://sourceforge/cmusphinx/sphinxtrain-${PV}.tar.gz"
LICENSE="BSD-with-attribution"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="app-accessibility/sphinxbase
dev-lang/perl
${PYTHON_DEPS}"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/sphinxtrain-${PV}
src_install() {
default
dodoc README etc/*cfg
python_fix_shebang "${D}"/usr/bin/sphinxtrain
python_optimize "${D}"/usr/$(get_libdir)/sphinxtrain/python/cmusphinx
}
pkg_postinst() {
elog "Detailed usage and training instructions can be found at"
elog "http://cmusphinx.sourceforge.net/wiki/"
}

@ -0,0 +1 @@
DIST julius-4.2.2.tar.gz 1720888 SHA256 f53caf18be4fb8266b988071855565dccb78c09f00f1d36a8e258b7be6b3cef5 SHA512 c1d6c4016cf326becc2e8945c08cbab9b5acefd0e648b6e35b3078850b1746b5bbdb994fccc66c0adab175fb45fc86c25b8a655047a97c130a2f8e922d3d1c0f WHIRLPOOL 51f25ca9cedafc47239e5645a75ffda3eadc0b4e1053d90bf5c22d366d3557c29e9f496b9d45f1d3c5a5cdc92993710429196a679a29307815cd8e052de6cb99

@ -0,0 +1,344 @@
From: Julian Ospald <hasufell@gentoo.org>
Date: Sun Mar 31 20:38:49 UTC 2013
Subject: respect DESTDIR
--- julius-4.2.2/libsent/Makefile.in
+++ julius-4.2.2/libsent/Makefile.in
@@ -144,16 +144,16 @@
install: install.lib install.include install.bin
install.lib: $(TARGET)
- ${INSTALL} -d ${libdir}
- ${INSTALL_DATA} $(TARGET) ${libdir}
+ ${INSTALL} -d $(DESTDIR)/${libdir}
+ ${INSTALL_DATA} $(DESTDIR)/$(TARGET) ${libdir}
install.include:
- ${INSTALL} -d ${includedir}/sent
- ${INSTALL_DATA} include/sent/*.h ${includedir}/sent
+ ${INSTALL} -d $(DESTDIR)/${includedir}/sent
+ ${INSTALL_DATA} include/sent/*.h $(DESTDIR)/${includedir}/sent
install.bin: libsent-config-dist
- ${INSTALL} -d ${bindir}
- ${INSTALL_PROGRAM} libsent-config-dist ${bindir}/libsent-config
+ ${INSTALL} -d $(DESTDIR)/${bindir}
+ ${INSTALL_PROGRAM} libsent-config-dist $(DESTDIR)/${bindir}/libsent-config
clean:
$(RM) *~ src/*/*~ src/*/*.o src/*/*/*.o src/*/*/*/*.o src/*/*/*/*/*.o include/sent/*~
--- julius-4.2.2/libjulius/Makefile.in
+++ julius-4.2.2/libjulius/Makefile.in
@@ -90,16 +90,16 @@
install: install.lib install.include install.bin
install.lib: $(TARGET)
- ${INSTALL} -d ${libdir}
- ${INSTALL_DATA} $(TARGET) ${libdir}
+ ${INSTALL} -d $(DESTDIR)/${libdir}
+ ${INSTALL_DATA} $(TARGET) $(DESTDIR)/${libdir}
install.include:
- ${INSTALL} -d ${includedir}/julius
- ${INSTALL_DATA} include/julius/*.h ${includedir}/julius
+ ${INSTALL} -d $(DESTDIR)/${includedir}/julius
+ ${INSTALL_DATA} include/julius/*.h $(DESTDIR)/${includedir}/julius
install.bin: libjulius-config-dist
- ${INSTALL} -d ${bindir}
- ${INSTALL_PROGRAM} libjulius-config-dist ${bindir}/libjulius-config
+ ${INSTALL} -d $(DESTDIR)/${bindir}
+ ${INSTALL_PROGRAM} libjulius-config-dist $(DESTDIR)/${bindir}/libjulius-config
depend:
makedepend -- $(CFLAGS) -- $(OBJSENT)
--- julius-4.2.2/julius/Makefile.in
+++ julius-4.2.2/julius/Makefile.in
@@ -61,8 +61,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- ${INSTALL_PROGRAM} $(TARGET) ${bindir}/${INSTALLTARGET}
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ ${INSTALL_PROGRAM} $(TARGET) $(DESTDIR)/${bindir}/${INSTALLTARGET}
depend:
makedepend -- $(CFLAGS) -- $(OBJSENT)
--- julius-4.2.2/mkbingram/Makefile.in
+++ julius-4.2.2/mkbingram/Makefile.in
@@ -32,8 +32,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
$(RM) $(OBJ)
--- julius-4.2.2/mkbinhmm/Makefile.in
+++ julius-4.2.2/mkbinhmm/Makefile.in
@@ -32,8 +32,8 @@
install: install.bin
install.bin: mkbinhmm@EXEEXT@ mkbinhmmlist@EXEEXT@
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ mkbinhmm@EXEEXT@ mkbinhmmlist@EXEEXT@ @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ mkbinhmm@EXEEXT@ mkbinhmmlist@EXEEXT@ $(DESTDIR)/@bindir@
clean:
$(RM) mkbinhmm.o mkbinhmmlist.o
--- julius-4.2.2/adinrec/Makefile.in
+++ julius-4.2.2/adinrec/Makefile.in
@@ -36,8 +36,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/adintool/Makefile.in
+++ julius-4.2.2/adintool/Makefile.in
@@ -36,8 +36,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/mkgshmm/Makefile.in
+++ julius-4.2.2/mkgshmm/Makefile.in
@@ -23,8 +23,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/mkss/Makefile.in
+++ julius-4.2.2/mkss/Makefile.in
@@ -36,8 +36,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/jcontrol/Makefile.in
+++ julius-4.2.2/jcontrol/Makefile.in
@@ -31,19 +31,19 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@/jucontrol
clean:
$(RM) $(OBJ)
$(RM) config.log config.cache
$(RM) *~ core
- $(RM) $(TARGET) $(TARGET).exe
+ $(RM) $(TARGET) $(TARGET).exe jucontrol
distclean:
$(RM) $(OBJ)
$(RM) config.log config.cache
$(RM) *~ core
- $(RM) $(TARGET) $(TARGET).exe
+ $(RM) $(TARGET) $(TARGET).exe jucontrol
$(RM) config.status
$(RM) Makefile
--- julius-4.2.2/gramtools/accept_check/Makefile.in
+++ julius-4.2.2/gramtools/accept_check/Makefile.in
@@ -36,8 +36,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/gramtools/dfa_determinize/Makefile.in
+++ julius-4.2.2/gramtools/dfa_determinize/Makefile.in
@@ -35,8 +35,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/gramtools/dfa_minimize/Makefile.in
+++ julius-4.2.2/gramtools/dfa_minimize/Makefile.in
@@ -34,8 +34,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/gramtools/generate/Makefile.in
+++ julius-4.2.2/gramtools/generate/Makefile.in
@@ -35,8 +35,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/gramtools/gram2sapixml/Makefile.in
+++ julius-4.2.2/gramtools/gram2sapixml/Makefile.in
@@ -17,8 +17,8 @@
install: install.bin
install.bin:
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
echo nothing to do
--- julius-4.2.2/gramtools/mkdfa/Makefile.in
+++ julius-4.2.2/gramtools/mkdfa/Makefile.in
@@ -18,13 +18,13 @@
install:
(cd $(SUBDIR); $(MAKE) install)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
install.bin:
(cd $(SUBDIR); $(MAKE) install.bin)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
(cd $(SUBDIR); $(MAKE) clean)
--- julius-4.2.2/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in
+++ julius-4.2.2/gramtools/mkdfa/mkfa-1.44-flex/Makefile.in
@@ -43,8 +43,8 @@
install: install.bin
install.bin:
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
$(RM) *.o *~ core
--- julius-4.2.2/gramtools/nextword/Makefile.in
+++ julius-4.2.2/gramtools/nextword/Makefile.in
@@ -36,8 +36,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
############################################################
--- julius-4.2.2/gramtools/yomi2voca/Makefile.in
+++ julius-4.2.2/gramtools/yomi2voca/Makefile.in
@@ -17,8 +17,8 @@
install: install.bin
install.bin:
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
echo nothing to do
--- julius-4.2.2/generate-ngram/Makefile.in
+++ julius-4.2.2/generate-ngram/Makefile.in
@@ -33,8 +33,8 @@
install: install.bin
install.bin: $(TARGET)
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
$(RM) $(OBJ) *~ core
--- julius-4.2.2/jclient-perl/Makefile.in
+++ julius-4.2.2/jclient-perl/Makefile.in
@@ -17,8 +17,8 @@
install: install.bin
install.bin:
- ${INSTALL} -d @bindir@
- @INSTALL_PROGRAM@ $(TARGET) @bindir@
+ ${INSTALL} -d $(DESTDIR)/@bindir@
+ @INSTALL_PROGRAM@ $(TARGET) $(DESTDIR)/@bindir@
clean:
echo nothing to do
--- julius-4.2.2/man/Makefile.in
+++ julius-4.2.2/man/Makefile.in
@@ -19,16 +19,16 @@
install: install.man install.man.ja
install.man:
- ${INSTALL} -d @mandir@/man1
+ ${INSTALL} -d $(DESTDIR)/@mandir@/man1
for f in *.1; do \
- @INSTALL_DATA@ $$f @mandir@/man1/$$f; \
+ @INSTALL_DATA@ $$f $(DESTDIR)/@mandir@/man1/$$f; \
done
install.man.ja:
- ${INSTALL} -d @mandir@/ja/man1
+ ${INSTALL} -d $(DESTDIR)/@mandir@/ja/man1
cd ja;
for f in *.1; do \
- @INSTALL_DATA@ $$f @mandir@/ja/man1/$$f; \
+ @INSTALL_DATA@ $$f $(DESTDIR)/@mandir@/ja/man1/$$f; \
done
cd ..

@ -0,0 +1,11 @@
--- julius-4.2.2/jcontrol/Makefile.in
+++ julius-4.2.2/jcontrol/Makefile.in
@@ -14,7 +14,7 @@
CC=@CC@
CFLAGS=@CFLAGS@
CPPFLAGS=@CPPFLAGS@ @DEFS@
-LDFLAGS=@LIBS@ @EXTRALIB@
+LDFLAGS += @LIBS@ @EXTRALIB@
RM=@RM@ -f
prefix=@prefix@
exec_prefix=@exec_prefix@

@ -0,0 +1,63 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/julius/julius-4.2.2.ebuild,v 1.1 2013/03/31 22:45:37 hasufell Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="Large Vocabulary Continuous Speech Recognition Engine"
HOMEPAGE="http://julius.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/julius/56549/${P}.tar.gz"
LICENSE="julius"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+alsa oss portaudio pulseaudio sndfile"
REQUIRED_USE="^^ ( alsa oss portaudio pulseaudio )"
RDEPEND="
dev-lang/perl
dev-perl/Jcode
sys-libs/readline:0
sys-libs/zlib
alsa? ( media-libs/alsa-lib )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-sound/pulseaudio )
sndfile? ( media-libs/libsndfile )"
DEPEND="${RDEPEND}
sys-devel/flex"
pkg_setup() {
tc-export CC CXX
}
src_prepare() {
epatch "${FILESDIR}"/${P}-install.patch \
"${FILESDIR}"/${P}-ldflags.patch
}
src_configure() {
local mymic i
for i in alsa oss portaudio pulseaudio ; do
use ${i} && mymic=${i}
done
econf \
--with-mictype=${mymic} \
$(use_with sndfile)
}
src_install() {
default
if ! has ja ${LINGUAS} ; then
rm -r "${ED}"/usr/share/man/ja || die
fi
}
pkg_postinst() {
eerror "IMPORTANT NOTICE"
elog "/usr/bin/jcontrol has been renamed to /usr/bin/jucontrol"
elog "to avoid file collision with dev-java/java-config."
elog "If this creates a problem with applications, file a gentoo bug."
}

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>accessibility</herd>
<maintainer>
<email>hasufell@gentoo.org</email>
<name>Julian Ospald</name>
</maintainer>
</pkgmetadata>

@ -0,0 +1 @@
DIST pocketsphinx-0.8.tar.gz 23781837 SHA256 874c4c083d91c8ff26a2aec250b689e537912ff728923c141c4dac48662cce7a SHA512 b53ab8883ddbc2c66c6a6af1bac318f3cdfd5a495cb636f33eb649d42f28780b36c43dfd9a61f213d6a1b83f0fba6b114d44b38d9fa091acf62a8e529118e583 WHIRLPOOL 90078dea3bcfeca6f04fb058e9d9d42e505dc3919606ef6f392abaf91251421243a02d6892eafb1c8890ab430b6f87a81b7b0c1c5df73675a737923d384ce674

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>accessibility</herd>
<maintainer>
<email>hasufell@gentoo.org</email>
<name>Julian Ospald</name>
</maintainer>
</pkgmetadata>

@ -0,0 +1,50 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/pocketsphinx/pocketsphinx-0.8.ebuild,v 1.1 2013/03/31 16:35:59 hasufell Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
DISTUTILS_OPTIONAL=1
inherit eutils distutils-r1
DESCRIPTION="Large open source vocabulary, speaker-independent continuous speech recognition engine"
HOMEPAGE="https://sourceforge.net/projects/cmusphinx/"
SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="python static-libs"
RDEPEND="app-accessibility/sphinxbase
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10
python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
run_distutils() {
if use python; then
pushd python > /dev/null || die
distutils-r1_"${@}"
popd > /dev/null || die
fi
}
src_configure() {
econf \
--without-python \
$(use_enable static-libs static)
}
src_compile() {
default
run_distutils ${FUNCNAME}
}
src_install() {
default
run_distutils ${FUNCNAME}
prune_libtool_files
}

@ -0,0 +1 @@
DIST simon-0.4.0.tar.bz2 22139378 SHA256 c7ef35cd28ecf294ceae63f4b0c53384bcf89fc2a6e67916dc9d4116decabc12 SHA512 541c22e09bb4234871707cd73e038a5ab0c68a6cb2a28993571c434edff639e4826554f922a4a188b5c2a70ff9a0d627f53af0954431b561adeedccf9c170c85 WHIRLPOOL c2e0cc8632bf089ed14ef53cae02c51166780692222b7f3c7a3583356e9669cbbcd3222507128b35f282b49de2f10a73c42f63e28596c6e8412ff766bb3febfb

@ -0,0 +1,16 @@
From: Julian Ospald <hasufell@gentoo.org>
Date: Fri Mar 29 22:00:19 UTC 2013
Subject: build system
make libdir modifiable
--- simon-0.4.0/cmake/SimonDirs.cmake
+++ simon-0.4.0/cmake/SimonDirs.cmake
@@ -29,6 +29,6 @@
#IF(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
#set(SIMON_LIB_INSTALL_DIR lib64)
#ELSE(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
- set(SIMON_LIB_INSTALL_DIR lib)
+ set(SIMON_LIB_INSTALL_DIR lib CACHE STRING "libdir")
#ENDIF(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
ENDIF(WIN32)

@ -0,0 +1,84 @@
--- simon-0.4.0/CMakeLists.txt
+++ simon-0.4.0/CMakeLists.txt
@@ -14,6 +14,9 @@
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
+# NLS
+option(ENABLE_NLS "Enable native language support" 1)
+
find_package(KDE4 "4.4" REQUIRED)
find_package(Qt4 COMPONENTS QtCore QtDbus QtGui QtTest QtXml QtScript QtConcurrent REQUIRED)
find_package(Qwt6 REQUIRED)
@@ -143,4 +146,6 @@
macro_display_feature_log()
include(MacroOptionalAddSubdirectory)
-macro_optional_add_subdirectory( po )
+if(ENABLE_NLS)
+ macro_optional_add_subdirectory( po )
+endif(ENABLE_NLS)
--- simon-0.4.0/po/CMakeLists.txt
+++ simon-0.4.0/po/CMakeLists.txt
@@ -11,24 +11,14 @@
if (NOT GETTEXT_MSGFMT_EXECUTABLE)
MESSAGE(FATAL_ERROR "Please install msgmerge binary")
endif (NOT GETTEXT_MSGFMT_EXECUTABLE)
-add_subdirectory(cs)
-add_subdirectory(de)
-add_subdirectory(da)
-add_subdirectory(fr)
-add_subdirectory(nl)
-add_subdirectory(uk)
-add_subdirectory(pt_BR)
-add_subdirectory(pl)
-add_subdirectory(es)
-add_subdirectory(ro)
-add_subdirectory(ca)
-add_subdirectory(sl)
-add_subdirectory(pt)
-add_subdirectory(hu)
-add_subdirectory(gl)
-add_subdirectory(sv)
-add_subdirectory(el)
-add_subdirectory(fi)
-add_subdirectory(it)
-add_subdirectory(zh_TW)
-add_subdirectory(et)
+
+# gettext behavior
+execute_process(COMMAND sh -c "echo -n \${LINGUAS+x}"
+ OUTPUT_VARIABLE UNSETLINGUAS)
+set(langs cs de da fr nl uk pt_BR pl es ro ca sl pt hu gl sv el fi it zh_TW et)
+
+foreach(mylang ${langs})
+ if($ENV{LINGUAS} MATCHES "^.*${mylang}.*$" OR "${UNSETLINGUAS}" STREQUAL "")
+ add_subdirectory(${mylang})
+ endif()
+endforeach()
--- simon-0.4.0/doc/CMakeLists.txt
+++ simon-0.4.0/doc/CMakeLists.txt
@@ -1,9 +1,15 @@
+if(ENABLE_NLS)
+ # gettext behavior
+ execute_process(COMMAND sh -c "echo -n \${LINGUAS+x}"
+ OUTPUT_VARIABLE UNSETLINGUAS)
+set(langs pt_BR ca nl de it pt sv uk)
+
+ foreach(mylang ${langs})
+ if($ENV{LINGUAS} MATCHES "^.*${mylang}.*$" OR "${UNSETLINGUAS}" STREQUAL "")
+ add_subdirectory(${mylang})
+ endif()
+ endforeach()
+endif(ENABLE_NLS)
+
+# default doc
add_subdirectory(en_US)
-add_subdirectory(pt_BR)
-add_subdirectory(ca)
-add_subdirectory(nl)
-add_subdirectory(de)
-add_subdirectory(it)
-add_subdirectory(pt)
-add_subdirectory(sv)
-add_subdirectory(uk)

@ -0,0 +1,11 @@
--- simon-0.4.0/CMakeLists.txt
+++ simon-0.4.0/CMakeLists.txt
@@ -68,7 +68,7 @@
"PocketSphinx is a small-footprint continuous speech recognition system"
"http://cmusphinx.sourceforge.net/" FALSE ""
"Required to build Pocket Sphinx backend")
-find_package(OpenCV)
+macro_optional_find_package(OpenCV)
macro_log_feature(OpenCV_FOUND "OpenCV"
"OpenCV (Open Source Computer Vision) is a library of programming functions for real time computer vision" "http://http://opencv.willowgarage.com/"
FALSE "" "Required for Simon Vision")

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>accessibility</herd>
<maintainer>
<email>hasufell@gentoo.org</email>
<name>Julian Ospald</name>
</maintainer>
<use>
<flag name='kdepim'>Use <pkg>kde-base/kdepimlibs</pkg></flag>
<flag name='opencv'>Use <pkg>media-libs/opencv</pkg></flag>
<flag name='sphinx'>Build sphinx backend (pulls <pkg>app-accessibility/julius</pkg> if disabled</flag>
</use>
</pkgmetadata>

@ -0,0 +1,90 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/simon/simon-0.4.0.ebuild,v 1.3 2013/03/31 23:07:57 hasufell Exp $
# KEEP KDE ECLASSES OUT OF HERE
# TODO: qaccessibilityclient support (not in portage)
# https://projects.kde.org/projects/playground/accessibility/libkdeaccessibilityclient/repository
# TODO: julius
EAPI=5
inherit eutils multilib gnome2-utils cmake-utils
DESCRIPTION="Open-source speech recognition program for replacing mouse and keyboard"
HOMEPAGE="http://simon-listens.org/"
SRC_URI="mirror://kde/stable/simon/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="kdepim libsamplerate nls opencv sphinx"
RDEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qtscript:4
dev-qt/qtsql:4
kde-base/kdelibs:4
media-libs/alsa-lib
x11-libs/libX11
x11-libs/libXtst
x11-libs/qwt:6
kdepim? ( kde-base/kdepimlibs:4 )
libsamplerate? ( media-libs/libsamplerate )
nls? (
kde-base/kde-l10n
virtual/libintl
)
opencv? ( media-libs/opencv )
sphinx? (
>=app-accessibility/pocketsphinx-0.8
>=app-accessibility/sphinxbase-0.8
>=app-accessibility/SphinxTrain-1
)
!sphinx? ( app-accessibility/julius )"
DEPEND="${RDEPEND}
sys-devel/bison
sys-devel/flex
virtual/pkgconfig
nls? ( sys-devel/gettext )"
src_prepare() {
epatch "${FILESDIR}"/${P}-libdir.patch \
"${FILESDIR}"/${P}-linguas.patch \
"${FILESDIR}"/${P}-opencv.patch \
"${FILESDIR}"/${P}-sphinx.patch
}
src_configure() {
local mycmakeargs=(
-DSIMON_LIB_INSTALL_DIR=/usr/$(get_libdir)
-DBackendType=$(usex sphinx "both" "jhtk")
$(cmake-utils_use_with sphinx Sphinxbase)
$(cmake-utils_use_with sphinx Pocketsphinx)
$(cmake-utils_use_with kdepim KdepimLibs)
$(cmake-utils_use_with libsamplerate LibSampleRate)
$(cmake-utils_use_with opencv OpenCV)
$(cmake-utils_use_enable nls NLS)
)
cmake-utils_src_configure
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
elog "optional dependencies:"
elog " kde-base/jovie (support for Jovie TTS system)"
use sphinx && elog " app-accessibility/julius (alternative backend)"
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/localepurge/localepurge-0.5.4-r2.ebuild,v 1.10 2013/03/28 22:34:28 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/localepurge/localepurge-0.5.4-r2.ebuild,v 1.11 2013/03/31 15:03:13 ago Exp $
EAPI=4
@ -13,7 +13,7 @@ SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tbz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos"
IUSE=""
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unace/unace-2.5-r3.ebuild,v 1.5 2013/03/28 16:07:52 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/unace/unace-2.5-r3.ebuild,v 1.6 2013/03/31 15:45:08 jdhore Exp $
EAPI="4"
@ -14,7 +14,7 @@ SRC_URI="mirror://debian/pool/non-free/u/unace-nonfree/unace-nonfree_${PV}.orig.
LICENSE="freedist"
SLOT="1"
KEYWORDS="~alpha amd64 arm hppa ppc ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~sparc-solaris"
KEYWORDS="~alpha amd64 arm hppa ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux ~sparc-solaris"
IUSE=""
src_prepare() {

@ -1,2 +1,3 @@
DIST libsecret-0.12.tar.xz 476552 SHA256 323db75a5e73058d3eb95597d9f798fd715ec7d58f500be84628b8f9a0617c01 SHA512 920da07b8674816b9f139dc71e79721d1767025e799e99dea7458c3c3b54c81ae2f4aa55ad55194e0c151fa23d13eae12928c9bbfac1c67d9ae6eed3d8a1efa4 WHIRLPOOL 1bcc96a175519f2d24ec8c5f8ee61ae0ca851511c540d69230ab05a67d7192ac5827d407c06aa054820ee1ea714efee7ee15927b4fcc152fae73ef66bb768f24
DIST libsecret-0.14.tar.xz 483620 SHA256 58a5b9370c093a7a2788869ed59bc56351797a775e100a9644e637851f9713b5 SHA512 63b8fd947d63f178f48a79aa195f4b6a9eb1e802134779436981ab8aa00b268a449709139704843656f8b4616cc13a2dbc79a4ba4460b09cf250cef3478fd172 WHIRLPOOL 301d88c4fcf35038456800748b349c303edf96323d96cf7b80324d85fe97ca3be22ce4b79ef07dc6d42a7fb6050dedf51d3d409f9e514eac7685d0139e407c63
DIST libsecret-0.15.tar.xz 484532 SHA256 33e728b843efbe099483376ff5a3469260ee4b6ce035c7730909ac3793cb0fb8 SHA512 d89f3b52c5300306b92b222a56c976e5c42f761c2a8691b0dbac9f533853a54f6dd91f9f22f577e336c77e9771dd3cb098963dab086759ead2750f2a8fce5dca WHIRLPOOL 23eb06d6ed09023704b73cd9c1927bed09e38a58ec9694e43f8838879ce4f34ac67efb7a8f0b7770b26260ccb474c2f4e7c398f326b94dd08b63d7fe22e03ff1

@ -0,0 +1,68 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/libsecret-0.15.ebuild,v 1.1 2013/03/31 16:06:16 eva Exp $
EAPI="5"
PYTHON_COMPAT=( python2_{6,7} )
VALA_MIN_API_VERSION=0.18
VALA_USE_DEPEND=vapigen
inherit eutils gnome2 python-any-r1 vala virtualx
DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API"
HOMEPAGE="https://live.gnome.org/Libsecret"
LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only
SLOT="0"
IUSE="+crypt debug +introspection test vala"
REQUIRED_USE="vala? ( introspection )"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
COMMON_DEPEND="
>=dev-libs/glib-2.32.0:2
crypt? ( >=dev-libs/libgcrypt-1.2.2:= )
introspection? ( >=dev-libs/gobject-introspection-1.29 )"
RDEPEND="${COMMON_DEPEND}
>=gnome-base/gnome-keyring-3"
# Add ksecrets to RDEPEND when it's added to portage
DEPEND="${COMMON_DEPEND}
dev-libs/libxslt
dev-util/gdbus-codegen
dev-util/gtk-doc-am
>=dev-util/intltool-0.35.0
sys-devel/gettext
virtual/pkgconfig
test? (
dev-python/mock
introspection? (
${PYTHON_DEPS}
>=dev-libs/gjs-1.32
dev-python/pygobject:3 )
)
vala? ( $(vala_depend) )"
src_prepare() {
# FIXME: disable failing test
sed -e '/test_get_sync);/d' \
-e '/test_get_async);/d' \
-i libsecret/tests/test-service.c || die
use vala && vala_src_prepare
gnome2_src_prepare
}
src_configure() {
DOCS="AUTHORS ChangeLog NEWS README"
gnome2_src_configure \
--enable-manpages \
--disable-strict \
--disable-coverage \
--disable-static \
$(use_enable crypt gcrypt) \
$(use_enable introspection) \
$(use_enable vala)
}
src_test() {
Xemake check
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.9.ebuild,v 1.2 2013/01/12 12:40:14 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.9.ebuild,v 1.3 2013/03/31 15:16:12 flameeyes Exp $
EAPI=5
@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/zile/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="acl test"
RDEPEND="dev-libs/boehm-gc

@ -1,5 +1,5 @@
DIST winetricks-939 618061 SHA256 8b1135644f018c4101a9312cedecbbfdc5413e792506ace4959d39b9f803f06f SHA512 02995b257c582a3d006e7b50c667cb9bd1b2c56a604a1d761fdd0c7049c2ac9d436a040e212cb3598a37ef52968f7aeb23550d6bf95848ed1c38f44aeb2649b9 WHIRLPOOL d375371dff12a6b866001fff9981e0eba3d314c609af2a82c7e4520d3b7994daa4a159efe50ef1ad228e0254a3f30e2be1ef2aeaec04e48636917980e8812165
DIST winetricks-939.1 3469 SHA256 f522f4c991194cbed1044182ca6fbbb7645cd4b98d9557ab7d073ace1af4738d SHA512 2c832a9cc4286f641aeed7a5a47131773b48dd0cf123798f753ffb24799dabca29986b2b740698fbe9efb8034ac874a18147c6bd645bea8e69fdb42f1437fdf2 WHIRLPOOL 0ccb982022189b4d2e134756cadbca3628c33e57be6879b07e84f99182ed5a201379413a32af5d689744b4d7527f6abf56aae7113f34401c4cbe62b902462424
DIST winetricks-941 618195 SHA256 06ce721c0b5e48e4781b5883c39f6ecfa78c010745a75a15d6f4f9638010fc1f SHA512 cabfa5f9486100c37500b054f84b4f887fd530d16c40a9ea000904f1b3f56d7ab7bd7a8237b85885a38d84fe91cdd2942bbffec5430d63c8af017a721c4e6bdd WHIRLPOOL 99c7e7cf79285bcfc52c88efc4b1661d264f67915b6ab1b0f0f94941bb104ae678a33ab1093b0931be3201af6e0e722b32aae8a832e09ca9fc64ab04c3b57093
DIST winetricks-941.1 3469 SHA256 f522f4c991194cbed1044182ca6fbbb7645cd4b98d9557ab7d073ace1af4738d SHA512 2c832a9cc4286f641aeed7a5a47131773b48dd0cf123798f753ffb24799dabca29986b2b740698fbe9efb8034ac874a18147c6bd645bea8e69fdb42f1437fdf2 WHIRLPOOL 0ccb982022189b4d2e134756cadbca3628c33e57be6879b07e84f99182ed5a201379413a32af5d689744b4d7527f6abf56aae7113f34401c4cbe62b902462424
DIST winetricks-947 618224 SHA256 2eda58426b2f11bb1ee444e5dde596b0ceb16c9471947b4ef15d820059ff3954 SHA512 2dda811985b4f7ed801db3739d7911b45e6ac9809e68cdeb81920ad49b1a7b900f347babae64b199118a0c0add2d23502aca4d7f79409b9972bc1cf66f0a9ed4 WHIRLPOOL 7fe91ebad58e1c823527d7d59d00f888b9e71fa4197b3a11f34921e427e041bd488436ef2e8ae5ba645a05800b14e6da4d90d8a566161fb24319a0587f58f7a5
DIST winetricks-947.1 3469 SHA256 f522f4c991194cbed1044182ca6fbbb7645cd4b98d9557ab7d073ace1af4738d SHA512 2c832a9cc4286f641aeed7a5a47131773b48dd0cf123798f753ffb24799dabca29986b2b740698fbe9efb8034ac874a18147c6bd645bea8e69fdb42f1437fdf2 WHIRLPOOL 0ccb982022189b4d2e134756cadbca3628c33e57be6879b07e84f99182ed5a201379413a32af5d689744b4d7527f6abf56aae7113f34401c4cbe62b902462424
DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 SHA256 dded8c294cc5c2e71e4a5d1531ab165178cf3d2d1d890d0656368c2e499bfeb9 SHA512 59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a WHIRLPOOL 268da9e06712a678fbbcfff8eac1fca364b5e46f0a9c48a591eb88f03260b1a55f203eb2908bfe1f0a534b77c866127ff6f7049b0e43fe8abeaaa26fe55de75b

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-939.ebuild,v 1.1 2013/02/02 23:56:33 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-947.ebuild,v 1.1 2013/03/31 21:54:28 tetromino Exp $
EAPI=4

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/astrolog/astrolog-5.40-r2.ebuild,v 1.1 2013/03/27 19:13:57 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/astrolog/astrolog-5.40-r2.ebuild,v 1.2 2013/03/31 16:25:52 jdhore Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
LICENSE="astrolog"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
KEYWORDS="~amd64 ~ppc ~ppc64 x86"
IUSE="X"
DEPEND="X? ( x11-libs/libX11 )"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.2 2013/03/24 18:42:02 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.9.1-r1.ebuild,v 1.4 2013/03/31 16:19:24 ago Exp $
EAPI=4
@ -11,7 +11,7 @@ if [[ $PV = *9999* ]]; then
KEYWORDS=""
else
SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
S="${WORKDIR}/${P/-server/}"
fi

@ -1,3 +1,4 @@
DIST gnumeric-1.10.17.tar.xz 14332716 SHA256 8f105a10dc0dd47e14df2879591d2f28482fd03809fa95977dd4d1470a02f963 SHA512 ec58a3fd7eb8bf81b161dda2220392927388d7aff673212f1d6169f3bd1b5fd3c69b08303927fea03a6cc5c93a39ca7433896880ebbc654fb97b65f22e9952f0 WHIRLPOOL 7d6bdea2ea057c76e089b0eadb8f7f226bf0adfe04198a9f145f86fb27330f0a642decb798bc66090a7e880da3b86cc0b40577a5a4fc3e1212b407129e27e111
DIST gnumeric-1.12.0-annotation-syntax.patch.xz 13408 SHA256 8cc904ced03d1cdb894afa896c7fc8be22bd3cf16f0c8427c965eb813a406a48 SHA512 b1062a75750630e4e0cb479a994db2c98aae4668355a7756bd6ca9f64407571d73af0fd428453e373d4d0d9f77d842869cbe4f7d5ba0054103cd8add0e09d5b6 WHIRLPOOL aec5b51c9af1e6b3806c7f5f22930c41d42ed0dfbcb66407a18ded9cf565b78daae76d2b8a5952ce4f7379b11c9bad68a02982f7248a62d0c5a87e8ae60a71f4
DIST gnumeric-1.12.0.tar.xz 15631708 SHA256 037b53d909e5d1454b2afda8c4fb1e7838e260343e36d4e36245f4a5d0e04111 SHA512 5bcf5e04d3c871d755a560207db2bce9d81bbe24f9c330a8a0555a386c38f505997c0a24a44afe0ab28539f03a921ce13f82ea8c6e828e17d998ce4951639223 WHIRLPOOL 2de92f2fecc9389e92a1e50f3c37361e0c06e792d0e75ca17beb1a5c6a9b344bc14d3eeef561ecdda5a3e6c60f4fe73f6fb2fd22e343b6edf842f7a81d64a825
DIST gnumeric-1.12.1.tar.xz 15692328 SHA256 0f5a7af3acae7db643eb00e8b4fca6a9e90162259c6a73e4214cfa8c96cc3901 SHA512 641d8ac9e57f397a84c0112c325482093ef0c5172fec2027788cb53193e065ebf093ffa91949da10907c1cd9150d73d84fb96096df8e7f4f7ad3cd9d2bb7ca29 WHIRLPOOL 53581cc8cd37ffc4a8a5c246da4e6c9f9e48e0ec01eb967ed1d421709f85636eabd871d306a34bc8ddfb82303b02d7bebbfff92e8495f0fc8b9eb444e55d79a9

@ -0,0 +1,62 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.12.1.ebuild,v 1.1 2013/03/31 14:53:31 eva Exp $
EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python{2_6,2_7} )
inherit eutils gnome2 flag-o-matic python-single-r1
DESCRIPTION="The GNOME Spreadsheet"
HOMEPAGE="http://projects.gnome.org/gnumeric/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="+introspection perl python"
# Missing gnome-extra/libgnomedb required version in tree
# but its upstream is dead and will be dropped soon.
# lots of missing files, wait for next release
# also fails tests due to 80-bit long story
RESTRICT="test"
RDEPEND="
app-arch/bzip2
sys-libs/zlib
>=dev-libs/glib-2.28:2
>=gnome-extra/libgsf-1.14.24:=
>=x11-libs/goffice-0.10.1:0.10
>=dev-libs/libxml2-2.4.12:2
>=x11-libs/pango-1.24.0:=
>=x11-libs/gtk+-3.2:3
x11-libs/cairo:=[svg]
introspection? ( >=dev-libs/gobject-introspection-1:= )
perl? ( dev-lang/perl )
python? ( ${PYTHON_DEPS}
>=dev-python/pygobject-3:3[${PYTHON_USEDEP}] )
"
# libgda? (
# >=gnome-extra/libgda-4.1.1:4.0
# >=gnome-extra/libgnomedb-3.99.6:4.0 )
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=dev-util/intltool-0.35.0
virtual/pkgconfig
"
src_configure() {
gnome2_src_configure \
--enable-ssindex \
--disable-static \
--without-gda \
--with-zlib \
$(use_enable introspection) \
$(use_with perl) \
$(use_with python)
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/fbreader/fbreader-0.99.4-r1.ebuild,v 1.2 2013/03/02 19:42:11 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/fbreader/fbreader-0.99.4-r1.ebuild,v 1.4 2013/03/31 16:19:32 ago Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="http://www.fbreader.org/files/desktop/${PN}-sources-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
KEYWORDS="amd64 ~arm ~ppc x86"
IUSE="debug"
RDEPEND="

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

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/freetds/freetds-0.91.ebuild,v 1.9 2013/03/28 22:41:20 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/freetds/freetds-0.91.ebuild,v 1.10 2013/03/31 15:02:11 ago Exp $
EAPI=4
@ -12,7 +12,7 @@ SRC_URI="http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~ppc-macos"
KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~ppc-macos"
IUSE="kerberos odbc iodbc mssql"
RESTRICT="test"

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

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

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

@ -0,0 +1 @@
DIST network-multicast-0.0.7.tar.gz 2886 SHA256 8360edb6d575493331a92f03950e0039cad9ab09bf40bceaf821b2f3187914a3 SHA512 2bccdf9c8841aef256879291567c95b38419ce57a96900d9f63d9cd483e8a36be5523ed3b1604c5675d4109d7644911f890b9830ebb2c73dedec5731fc387f1c WHIRLPOOL be2208d1856544c65e561f252d6966f6dee7b154fd4ffae2dd59ab2059970a7c85cf546a0e5534c309017d1f431a654b78ad7f94b0ed3b70c7925fa7e77a48af

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
The &quot;Network.Multicast&quot; module is for sending
UDP datagrams over multicast (class D) addresses.
</longdescription>
</pkgmetadata>

@ -0,0 +1,24 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/network-multicast/network-multicast-0.0.7.ebuild,v 1.1 2013/03/31 13:55:18 slyfox Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Simple multicast library"
HOMEPAGE="http://hackage.haskell.org/package/network-multicast"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/network:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.5-r4.ebuild,v 1.15 2013/03/25 12:57:45 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.8.5-r4.ebuild,v 1.16 2013/03/31 14:54:32 ago Exp $
EAPI="5"
WANT_AUTOCONF="2.1"
@ -16,7 +16,7 @@ SRC_URI="https://ftp.mozilla.org/pub/mozilla.org/js/${TARBALL_P}.tar.gz"
LICENSE="NPL-1.1"
SLOT="0/mozjs185"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="debug minimal static-libs test"
S="${WORKDIR}/${MY_P}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/libgweather-3.8.0.ebuild,v 1.1 2013/03/28 22:43:04 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/libgweather-3.8.0.ebuild,v 1.2 2013/03/31 18:47:50 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -19,7 +19,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-in
# get libsoup-gnome installed by the time ${P} is built
COMMON_DEPEND=">=x11-libs/gtk+-2.90.0:3[introspection?]
>=dev-libs/glib-2.35.1:2
>=net-libs/libsoup-2.34:2.4[gnome]
|| ( >=net-libs/libsoup-2.42:2.4 >=net-libs/libsoup-2.34:2.4[gnome] )
>=dev-libs/libxml2-2.6.0
>=sys-libs/timezone-data-2010k

@ -0,0 +1,37 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxdiff/libxdiff-0.23-r1.ebuild,v 1.1 2013/03/31 18:19:03 olemarkus Exp $
EAPI=5
inherit autotools
DESCRIPTION="Library for creating diff files"
HOMEPAGE="http://www.xmailserver.org/xdiff-lib.html"
SRC_URI="http://www.xmailserver.org/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog
}
src_prepare() {
# test utils require static libs ...
sed 's/test//g' -i Makefile.am
eautoreconf
}
src_configure() {
econf --disable-static
}
src_install() {
default
rm "${D}/usr/$(get_libdir)"/*.la
}

@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxdiff/libxdiff-0.23.ebuild,v 1.1 2010/01/01 22:05:03 yngwin Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxdiff/libxdiff-0.23.ebuild,v 1.3 2013/03/31 17:50:28 ago Exp $
DESCRIPTION="Library for creating diff files"
HOMEPAGE="http://www.xmailserver.org/xdiff-lib.html"
@ -8,7 +8,7 @@ SRC_URI="http://www.xmailserver.org/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE=""
src_install() {

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

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/soprano/soprano-2.9.0.ebuild,v 1.3 2013/03/02 20:04:42 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/soprano/soprano-2.9.0.ebuild,v 1.5 2013/03/31 16:19:39 ago Exp $
EAPI=4
@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
fi
inherit base cmake-utils flag-o-matic ${git_eclass}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-3.4.4.ebuild,v 1.2 2013/03/29 16:49:51 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/totem-pl-parser/totem-pl-parser-3.4.4.ebuild,v 1.3 2013/03/31 18:49:27 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -17,7 +17,7 @@ IUSE="archive crypt +introspection +quvi test"
RDEPEND=">=dev-libs/glib-2.31:2
dev-libs/gmime:2.6
|| ( >=net-libs/libsoup-gnome-2.30:2.4 net-libs/libsoup[gnome] )
|| ( >=net-libs/libsoup-2.42:2.4 >=net-libs/libsoup-gnome-2.30:2.4 )
archive? ( >=app-arch/libarchive-2.8.4 )
crypt? ( dev-libs/libgcrypt )
introspection? ( >=dev-libs/gobject-introspection-0.9.5 )

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sys-Virt/Sys-Virt-1.0.0.ebuild,v 1.2 2013/03/28 07:54:50 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sys-Virt/Sys-Virt-1.0.0.ebuild,v 1.3 2013/03/31 16:00:39 jdhore Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Sys::Virt provides an API for using the libvirt library from Perl"
SLOT="0"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="test"
RDEPEND=">=app-emulation/libvirt-${PV}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/dbus-python-1.1.1-r1.ebuild,v 1.11 2013/03/28 23:01:27 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/dbus-python-1.1.1-r1.ebuild,v 1.12 2013/03/31 15:00:30 ago Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="doc examples test"
# API docs generated with epydoc, which is python2-only
REQUIRED_USE="doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) )"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycairo/pycairo-1.10.0-r4.ebuild,v 1.12 2013/03/30 15:13:42 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycairo/pycairo-1.10.0-r4.ebuild,v 1.13 2013/03/31 14:58:28 ago Exp $
EAPI="5"
PYTHON_COMPAT=( python2_{6,7} python3_{1,2,3} )
@ -19,7 +19,7 @@ SRC_URI="http://cairographics.org/releases/py2cairo-${PYCAIRO_PYTHON2_VERSION}.t
# || ( LGPL-2.1 MPL-1.1 ) for pycairo 1.8.10.
LICENSE="LGPL-3 || ( LGPL-2.1 MPL-1.1 )"
SLOT="0"
KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples +svg test xcb"
# Note: xpyb is used as the C header, not Python modules

@ -0,0 +1,32 @@
From c1fb6516031d3c32abd640f09a4814ae4363f979 Mon Sep 17 00:00:00 2001
From: Simon Feltman <sfeltman@src.gnome.org>
Date: Sun, 31 Mar 2013 08:32:34 +0000
Subject: Fix stack corruption due to incorrect format for argument parser
Fix call to PyArg_ParseTupleAndKeywords that used a format parser
of "l" meaning long (8 bytes) in combination with an output pointer
of guint (4 bytes). Change to use gulong with a format of "k".
https://bugzilla.gnome.org/show_bug.cgi?id=696892
---
diff --git a/gi/_gobject/pygflags.c b/gi/_gobject/pygflags.c
index 83aa4dc..bdeaae7 100644
--- a/gi/_gobject/pygflags.c
+++ b/gi/_gobject/pygflags.c
@@ -129,12 +129,12 @@ static PyObject *
pyg_flags_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
static char *kwlist[] = { "value", NULL };
- guint value;
+ gulong value;
PyObject *pytc, *values, *ret, *pyint;
GType gtype;
GFlagsClass *eclass;
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, "l", kwlist, &value))
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "k", kwlist, &value))
return NULL;
pytc = PyObject_GetAttrString((PyObject *)type, "__gtype__");
--
cgit v0.9.1

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.2.2-r1.ebuild,v 1.9 2013/03/28 23:03:53 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.2.2-r1.ebuild,v 1.10 2013/03/31 15:01:02 ago Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -14,7 +14,7 @@ HOMEPAGE="http://www.pygtk.org/"
LICENSE="LGPL-2.1+"
SLOT="3"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+cairo examples test +threads"
REQUIRED_USE="test? ( cairo )"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.8.0.ebuild,v 1.1 2013/03/28 16:57:28 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-3.8.0.ebuild,v 1.2 2013/03/31 13:36:16 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -63,6 +63,9 @@ src_prepare() {
# Run tests with older python too
# epatch "${FILESDIR}/${PN}-3.7.90-run-tests-with-old-python.patch"
# Fix stack corruption due to incorrect format for argument parser (from 3.8 branch)
epatch "${FILESDIR}/${P}-stack-corruption.patch"
eautoreconf
gnome2_src_prepare

@ -1,3 +1 @@
DIST main-5.0.1.gem 37888 SHA256 a388a93e8db4ec9a949e84fdf0e3c4ee065511e788476ab99793da6bc28fd8b7 SHA512 aa3b229953cbbdd2dd73bb81e40c1ee1e21b2cc1713b08d5f147e8c3a627d5d2c509978b12097fc724e9a7dd839e2f121795965c1adf8d990c833d8101124fe2 WHIRLPOOL 2546639fc27e928e69085eee9678c2bec11cd670ae8a6627722581bae295cb55bc07ab257d203b46cdac5f4060c3be78cc10e09481af7d8896ae4c948ecca4ae
DIST main-5.1.0.gem 37888 SHA256 536c19e34a0ce32d93c95934baf5072e7b617bb9aee386a0f316f300ca60b3e9 SHA512 bea60d03a4b2313c8f95f30ee79396815ebcdb757f6dd744eb8e1582aefbcaa031e3485aaa257015c9bdce921e0ce98ccafd02fd2f003616990813f3eca18935 WHIRLPOOL 4e25feee6d305a999b90a2ccd20504412f524fd96bf14e418c8bb472cb7afa776111270da7ff52c16b12116b14e680c81832309a171c9df7d78f53e73d73c140
DIST main-5.1.1.gem 38400 SHA256 6ff2c423771ca0f02b6bd029c88aa549ce53f53f58a8a70465bd06b65d58cc96 SHA512 67dcf5973835422a59340850f5ec2afcf9e5c9f1e72dc9f6bd9dbd13be7aa5e16aeb6c11a49b0f817709f318a6b5047ad37cdff46f27bf2de8d167313e4b60e2 WHIRLPOOL 2c6246930d3db07b534895aebd6fa5503969457e35521ffbda171be66b02a4ef198e9f2de026c77ed43d413f46068538e7ac5a111fedf7fe4b9fb3380fe01b02

@ -1,36 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/main/main-5.0.1.ebuild,v 1.1 2012/05/13 06:21:08 graaff Exp $
EAPI=4
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README TODO"
inherit ruby-fakegem
DESCRIPTION="A class factory and dsl for generating command line programs real quick."
HOMEPAGE="http://rubyforge.org/projects/codeforpeople"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
ruby_add_rdepend ">=dev-ruby/chronic-0.6.2
>=dev-ruby/fattr-2.2.0
>=dev-ruby/arrayfields-4.7.4
>=dev-ruby/map-5.1.0"
all_ruby_install() {
all_fakegem_install
if use doc; then
insinto /usr/share/doc/${PF}
doins -r samples
fi
}

@ -1,34 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/main/main-5.1.0.ebuild,v 1.1 2012/10/05 10:20:38 graaff Exp $
EAPI=4
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README TODO"
inherit ruby-fakegem
DESCRIPTION="A class factory and dsl for generating command line programs real quick."
HOMEPAGE="http://rubyforge.org/projects/codeforpeople"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
ruby_add_rdepend ">=dev-ruby/chronic-0.6.2
>=dev-ruby/fattr-2.2.0
>=dev-ruby/arrayfields-4.7.4
>=dev-ruby/map-5.1.0"
all_ruby_install() {
all_fakegem_install
if use doc; then
insinto /usr/share/doc/${PF}
doins -r samples
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.3.4.ebuild,v 1.2 2013/03/10 08:20:21 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/games-strategy/freeciv/freeciv-2.3.4.ebuild,v 1.4 2013/03/31 17:49:56 ago Exp $
EAPI=5
inherit eutils gnome2-utils games-ggz games
@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE="auth dedicated ggz +gtk ipv6 nls readline sdl +sound"
REQUIRED_USE="!dedicated? ( || ( gtk sdl ) )"

@ -1,2 +1,2 @@
DIST pyfa-1.1.11-retribution-1.0-src.tar.bz2 4870595 SHA256 71af17ddb20b9432c643ad21d2d54ab2bba027ac9f2d143f4f542794f95567d2 SHA512 f8d423f00e53dc026e06cf5af11428f68784a7ca32283a08ca7e18c3a64ffd0a782002956f2bf2ec97272e783e46762956c57e4b7c92d56edd52348e8c2ab4ff WHIRLPOOL f6ac0c3848937cc3e3d0e74cc916fa6bb42ad0510227129a4719b6076b6fc0f58e1a18f65422236ffc59406267ea15bb93931ac4db16d12577fbeb4f4b205daf
DIST pyfa-1.1.12-retribution-1.0.2-src.tar.bz2 4915932 SHA256 fc6af714012ad26d9b4d86c46554ae1a17abd7f854b39410ed8b3ae271497266 SHA512 00ab60ff6a94df183a2f68d51fd8f23cb33f5dd66bdd4e492ad09db4715a70c5ea3fc9d06c7c856e3e3480e543bc6803d42f440f822399ffdb4e583abaa397a0 WHIRLPOOL d0439bc9bef969ad665653b0438871e6837a8092c2364afdb9f1685e4636b2d69f72b664772d865cc30e563abfc30365e3e394b51131193ef4cdd283ef1c4a1c
DIST pyfa-1.1.13-retribution-1.1.6-src.tar.bz2 4621792 SHA256 8f1f3e1cc1311d9d88b8d2ecc8cc1c87da1d828f99902ba04eca2f4455eb54cc SHA512 732a5ae1ccd736be3be4d7ec0e6b7a424a7ed20d2eaff23303a063cc3f7dbb4ef1b20153c78fe0007acd21cfa8391b6dc4f4480842ce6b3e2615ecd3380757a7 WHIRLPOOL f5261ddab9a28eb27dd7eb69d8e0a4009689a6ccf9f0ec7783e18fcc0f519f022001b1d42fd051f26c100b4b76ee0f4d1c58dbc1871356d2dfe0f2cca748460e

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/pyfa/pyfa-1.1.12.ebuild,v 1.2 2013/02/07 22:20:18 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/games-util/pyfa/pyfa-1.1.12.ebuild,v 1.3 2013/03/31 17:55:31 tetromino Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7} )
@ -25,9 +25,11 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+graph"
RDEPEND="dev-python/sqlalchemy
dev-python/wxpython:2.8
graph? ( dev-python/matplotlib[wxwidgets] dev-python/numpy )
RDEPEND="dev-python/sqlalchemy[${PYTHON_USEDEP}]
dev-python/wxpython:2.8[${PYTHON_USEDEP}]
graph? (
dev-python/matplotlib[wxwidgets,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}] )
${PYTHON_DEPS}"
DEPEND="app-text/dos2unix
${PYTHON_DEPS}"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/pyfa/pyfa-1.1.11.ebuild,v 1.2 2013/02/07 22:20:19 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/games-util/pyfa/pyfa-1.1.13.ebuild,v 1.1 2013/03/31 17:55:31 tetromino Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7} )
@ -9,7 +9,7 @@ PYTHON_REQ_USE="sqlite,threads"
inherit eutils gnome2-utils python-r1
if [[ ${PV/_rc*/} == ${PV} ]] ; then
MY_PV=${PV}-retribution-1.0-src
MY_PV=${PV}-retribution-1.1.6-src
FOLDER=pyfa/stable/${PV}
else
MY_PV=${PV/_rc/-stable-RC}-src
@ -25,9 +25,11 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+graph"
RDEPEND="dev-python/sqlalchemy
dev-python/wxpython:2.8
graph? ( dev-python/matplotlib[wxwidgets] dev-python/numpy )
RDEPEND="dev-python/sqlalchemy[${PYTHON_USEDEP}]
dev-python/wxpython:2.8[${PYTHON_USEDEP}]
graph? (
dev-python/matplotlib[wxwidgets,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}] )
${PYTHON_DEPS}"
DEPEND="app-text/dos2unix
${PYTHON_DEPS}"

@ -1,3 +1,4 @@
DIST gnome-desktop-2.32.1.tar.bz2 1633847 SHA256 55cbecf67efe1fa1e57ac966520a7c46d799c8ba3c652a1219f60cafccb3739d SHA512 b8084d08366dab661a7ee369cd03ba62beddbdfa9a36b988b7d13d207b33d6916f7fa8691717fba7b6a70d8276779e35360b1dc385e6ec876f30ea7b8b373c28 WHIRLPOOL 0889e79b1b3956b0ef1330f661676b77bdb40e8110657ea7f4035618ea023fc4b35364629d68741f042c0b971db9fa4c7731065717612486f7546e07fe048a0d
DIST gnome-desktop-3.6.2.tar.xz 978108 SHA256 ef15cc0b34a8360fd48ceeb833515790db4de38e6945fb3661f178dc7df70236 SHA512 fd28a693e69a8679d67d6807c396a7fff2600561bbbc5ddb620f0c1c6d04bff2e0442fac024c51e493c550eb3a0e2b0693835fbcb9966ef82e9db6967f68bd69 WHIRLPOOL 4cb2a9f7b46d54bbf756af3a1fdedc1c6dbadb8967ce5aa1074ba049fa5787c95accd8fde0407d4948485e424828bc0a0f41ff7faaf5e630d668bbe2df9a7330
DIST gnome-desktop-3.6.3.tar.xz 969112 SHA256 4ba7e7db2a65e2cc867e885afa78e29d9a73cfbfc3bed91786198c486a6d1d0e SHA512 801960ab77c58e545cbabd73b3e1727e62c1254d0aa43da621f2a00f173a4ef827f0a846f15f96da209ee88c6a6296f2e827c0c04cf6addffc6b0b159b9e2a66 WHIRLPOOL 2d1a2d538adde84a56ca1edecde47db1160c388fbd3a0319ae169f4ddc854429854e26cf787e6e37ce3d28de380e5f203eed2a7b80df121aff17dd614ac09aaa
DIST gnome-desktop-3.8.0.1.tar.xz 1009836 SHA256 91260eb6242edda0040397cfae47910c10bb793361d19db0c05eac078f428c3d SHA512 951ca8ee7c013e3132a281f5083d6085d37a8e99154b7fa44d5205c01a32b6513e6c1be2239f3d97ec1719a4b3f1df0bb157653a0e1cdd94471f7a5dff17ab2a WHIRLPOOL 2601d9a2d3b548cff2b957cb23da533e0c1a9a0432522bb23352c6373fa50b19495303e02cf7e1943c8bbcd17ee9699e51f85f40c8adfa642200f78e5008a502

@ -0,0 +1,60 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-desktop/gnome-desktop-3.6.3.ebuild,v 1.1 2013/03/31 16:02:45 eva Exp $
EAPI="5"
GCONF_DEBUG="yes"
inherit gnome2
DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
SLOT="3/4" # subslot = libgnome-desktop-3 soname version
IUSE="+introspection"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
# cairo[X] needed for gnome-bg
COMMON_DEPEND="
>=dev-libs/glib-2.33.3:2
>=x11-libs/gdk-pixbuf-2.21.3:2[introspection?]
>=x11-libs/gtk+-3.3.6:3[introspection?]
>=x11-libs/libXext-1.1
>=x11-libs/libXrandr-1.3
x11-libs/cairo:=[X]
x11-libs/libxkbfile
x11-libs/libX11
x11-misc/xkeyboard-config
>=gnome-base/gsettings-desktop-schemas-3.5.91
introspection? ( >=dev-libs/gobject-introspection-0.9.7 )
"
RDEPEND="${COMMON_DEPEND}
!<gnome-base/gnome-desktop-2.32.1-r1:2[doc]
"
DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.1.2
>=dev-util/gtk-doc-am-1.4
>=dev-util/intltool-0.40.6
sys-devel/gettext
x11-proto/xproto
>=x11-proto/randrproto-1.2
virtual/pkgconfig
"
# Includes X11/Xatom.h in libgnome-desktop/gnome-bg.c which comes from xproto
# Includes X11/extensions/Xrandr.h that includes randr.h from randrproto (and
# eventually libXrandr shouldn't RDEPEND on randrproto)
src_configure() {
DOCS="AUTHORS ChangeLog HACKING NEWS README"
# Note: do *not* use "--with-pnp-ids-path" argument. Otherwise, the pnp.ids
# file (needed by other packages such as >=gnome-settings-daemon-3.1.2)
# will not get installed in ${pnpdatadir} (/usr/share/libgnome-desktop-3.0).
gnome2_src_configure \
--disable-static \
--with-gnome-distributor=Gentoo \
--enable-desktop-docs \
$(use_enable introspection) \
ITSTOOL=$(type -P true)
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.16.0.ebuild,v 1.2 2013/03/31 12:49:52 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.16.0.ebuild,v 1.3 2013/03/31 19:13:34 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -45,7 +45,7 @@ RDEPEND=">=dev-libs/glib-2.35:2
gnome-keyring? ( app-crypt/libsecret )
gphoto2? ( >=media-libs/libgphoto2-2.4.7:= )
gtk? ( >=x11-libs/gtk+-3.0:3 )
http? ( >=net-libs/libsoup-2.34.0[gnome] )
http? ( || ( >=net-libs/libsoup-2.42:2.4 >=net-libs/libsoup-2.34.0[gnome] ) )
ios? (
>=app-pda/libimobiledevice-1.1.0
>=app-pda/libplist-1 )

@ -1,2 +1 @@
DIST tasks-0.19.tar.gz 298920 RMD160 a4e936e51f5ef82c57a834d3a10dc4c9606a60a4 SHA1 69577e4fa52168beaf6bf162d61b605542c8fe9b SHA256 1a7fdc5f95a2193a1a25fdb13f071867fb7e42245ce19ccee4bcccb69e557f2e
DIST tasks-0.20.tar.xz 189244 RMD160 77a9f2afd377f0e0b26939feb797d0333e1f3cbe SHA1 ce91890c9e2d37738ab6bce061ecb2b0b6dcb823 SHA256 fa99ab3cda4d4ea253d67bbed51b54fb0959db27ae50508196cdffdc868d69d2
DIST tasks-0.20.tar.xz 189244 SHA256 fa99ab3cda4d4ea253d67bbed51b54fb0959db27ae50508196cdffdc868d69d2

@ -1,36 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/tasks/tasks-0.19.ebuild,v 1.3 2012/05/05 06:25:15 jdhore Exp $
EAPI="3"
GCONF_DEBUG="no"
inherit autotools eutils gnome2
DESCRIPTION="A small, lightweight to-do list for Gnome"
HOMEPAGE="http://pimlico-project.org/tasks.html"
SRC_URI="http://pimlico-project.org/sources/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=gnome-extra/evolution-data-server-1.8
>=x11-libs/gtk+-2.16:2
>=dev-libs/glib-2.14:2
>=dev-libs/libunique-1:1"
DEPEND="${RDEPEND}
virtual/pkgconfig
>=dev-util/intltool-0.33
sys-devel/gettext"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README"
G2CONF="${G2CONF} --with-unique --enable-gtk"
}
src_prepare() {
epatch "${FILESDIR}/${PN}-0.16-asneeded.patch"
eautoreconf
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.10.1.ebuild,v 1.1 2013/03/06 13:42:09 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/akonadiconsole/akonadiconsole-4.10.1.ebuild,v 1.3 2013/03/31 16:19:46 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="Akonadi developer console"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/akregator/akregator-4.10.1.ebuild,v 1.1 2013/03/06 13:42:02 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/akregator/akregator-4.10.1.ebuild,v 1.3 2013/03/31 16:19:54 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="KDE news feed aggregator."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/amor/amor-4.10.1.ebuild,v 1.1 2013/03/06 13:41:39 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/amor/amor-4.10.1.ebuild,v 1.3 2013/03/31 16:20:02 ago Exp $
EAPI=5
@ -14,5 +14,5 @@ KDE_HANDBOOK="optional"
inherit ${eclass}
DESCRIPTION="KDE: Amusing Misuse Of Resources - desktop-dwelling creature"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/analitza/analitza-4.10.1.ebuild,v 1.1 2013/03/06 13:41:40 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/analitza/analitza-4.10.1.ebuild,v 1.3 2013/03/31 16:20:10 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="never"
inherit kde4-base
DESCRIPTION="KDE library for mathematical features"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug readline"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/ark/ark-4.10.1.ebuild,v 1.1 2013/03/06 13:41:42 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/ark/ark-4.10.1.ebuild,v 1.3 2013/03/31 16:20:17 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE Archiving tool"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="+archive +bzip2 debug lzma"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/attica/attica-4.10.1.ebuild,v 1.1 2013/03/06 13:41:52 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/attica/attica-4.10.1.ebuild,v 1.3 2013/03/31 16:20:25 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KMNAME="kde-runtime"
inherit kde4-meta
DESCRIPTION="Open Collaboration Services provider management"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/audiocd-kio/audiocd-kio-4.10.1.ebuild,v 1.1 2013/03/06 13:41:51 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/audiocd-kio/audiocd-kio-4.10.1.ebuild,v 1.3 2013/03/31 16:20:32 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE kioslaves from the kdemultimedia package"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug encode flac vorbis"
# 4 of 9 tests fail. Last checked for 4.2.88

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/blinken/blinken-4.10.1.ebuild,v 1.1 2013/03/06 13:41:41 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/blinken/blinken-4.10.1.ebuild,v 1.3 2013/03/31 16:20:39 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE version of the Simon Says game."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/blogilo/blogilo-4.10.1.ebuild,v 1.1 2013/03/06 13:42:14 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/blogilo/blogilo-4.10.1.ebuild,v 1.3 2013/03/31 16:20:47 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="KDE Blogging Client"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/bomber/bomber-4.10.1.ebuild,v 1.1 2013/03/06 13:41:53 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/bomber/bomber-4.10.1.ebuild,v 1.3 2013/03/31 16:20:54 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE arcade bombing game"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="$(add_kdebase_dep libkdegames)"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/bovo/bovo-4.10.1.ebuild,v 1.1 2013/03/06 13:41:33 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/bovo/bovo-4.10.1.ebuild,v 1.3 2013/03/31 16:21:02 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="Five-in-a-row Board Game"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="$(add_kdebase_dep libkdegames)"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/cantor/cantor-4.10.1.ebuild,v 1.1 2013/03/06 13:42:03 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/cantor/cantor-4.10.1.ebuild,v 1.3 2013/03/31 16:21:10 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE4 interface for doing mathematics and scientific computing"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="analitza debug postscript qalculate +R"
# TODO Add Sage Mathematics Software backend (http://www.sagemath.org)

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/cervisia/cervisia-4.10.1.ebuild,v 1.1 2013/03/06 13:41:35 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/cervisia/cervisia-4.10.1.ebuild,v 1.3 2013/03/31 16:21:18 ago Exp $
EAPI=5
@ -14,7 +14,7 @@ fi
inherit ${eclass}
DESCRIPTION="Cervisia - A KDE CVS frontend"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin-plugins/dolphin-plugins-4.10.1.ebuild,v 1.1 2013/03/06 13:41:49 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin-plugins/dolphin-plugins-4.10.1.ebuild,v 1.3 2013/03/31 16:21:34 ago Exp $
EAPI=5
@ -13,7 +13,7 @@ fi
inherit ${eclass}
DESCRIPTION="Extra Dolphin plugins"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug bazaar git mercurial subversion"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.10.1.ebuild,v 1.1 2013/03/06 13:41:54 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.10.1.ebuild,v 1.3 2013/03/31 16:21:26 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KMNAME="kde-baseapps"
inherit kde4-meta
DESCRIPTION="A KDE filemanager focusing on usability"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug semantic-desktop thumbnail"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/dragon/dragon-4.10.1.ebuild,v 1.1 2013/03/06 13:41:22 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/dragon/dragon-4.10.1.ebuild,v 1.3 2013/03/31 16:21:41 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KMNAME="dragon"
inherit kde4-base
DESCRIPTION="Dragon Player is a simple video player for KDE 4"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug xine"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/drkonqi/drkonqi-4.10.1-r1.ebuild,v 1.1 2013/03/25 22:26:14 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/drkonqi/drkonqi-4.10.1-r1.ebuild,v 1.3 2013/03/31 16:21:48 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KMNAME="kde-runtime"
inherit kde4-meta
DESCRIPTION="KDE crash handler, gives the user feedback if a program crashed"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.10.1.ebuild,v 1.1 2013/03/06 13:41:54 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/ffmpegthumbs/ffmpegthumbs-4.10.1.ebuild,v 1.3 2013/03/31 16:21:56 ago Exp $
EAPI=5
inherit kde4-base
DESCRIPTION="A FFmpeg based thumbnail Generator for Video Files."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/filelight/filelight-4.10.1.ebuild,v 1.1 2013/03/06 13:41:33 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/filelight/filelight-4.10.1.ebuild,v 1.3 2013/03/31 16:22:03 ago Exp $
EAPI=5
@ -10,7 +10,7 @@ inherit kde4-base
DESCRIPTION="Filelight creates an interactive map of concentric, segmented rings that help visualise disk usage."
LICENSE="GPL-3"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/freespacenotifier/freespacenotifier-4.10.1.ebuild,v 1.1 2013/03/06 13:41:45 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/freespacenotifier/freespacenotifier-4.10.1.ebuild,v 1.3 2013/03/31 16:22:10 ago Exp $
EAPI=5
@ -8,5 +8,5 @@ KMNAME="kde-workspace"
inherit kde4-meta
DESCRIPTION="A module that monitors free disk space on the home dir"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/granatier/granatier-4.10.1.ebuild,v 1.1 2013/03/06 13:42:07 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/granatier/granatier-4.10.1.ebuild,v 1.3 2013/03/31 16:22:17 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE Bomberman game"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/gwenview/gwenview-4.10.1.ebuild,v 1.1 2013/03/06 13:41:43 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/gwenview/gwenview-4.10.1.ebuild,v 1.3 2013/03/31 16:22:24 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE image viewer"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug kipi semantic-desktop"
# tests hang, last checked for 4.2.96

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/jovie/jovie-4.10.1.ebuild,v 1.1 2013/03/06 13:41:44 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/jovie/jovie-4.10.1.ebuild,v 1.3 2013/03/31 16:22:32 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="Jovie is a text to speech application"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/juk/juk-4.10.1.ebuild,v 1.1 2013/03/06 13:41:42 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/juk/juk-4.10.1.ebuild,v 1.3 2013/03/31 16:22:39 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="Jukebox and music manager for KDE."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kabcclient/kabcclient-4.10.1.ebuild,v 1.1 2013/03/06 13:41:33 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kabcclient/kabcclient-4.10.1.ebuild,v 1.3 2013/03/31 16:22:47 ago Exp $
EAPI=5
@ -10,7 +10,7 @@ KMMODULE="console/${PN}"
inherit kde4-meta
DESCRIPTION="A command line client for accessing the KDE addressbook"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaccessible/kaccessible-4.10.1.ebuild,v 1.1 2013/03/06 13:42:03 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaccessible/kaccessible-4.10.1.ebuild,v 1.3 2013/03/31 16:22:55 ago Exp $
EAPI=5
inherit kde4-base
DESCRIPTION="Provides accessibility services like focus tracking"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug +speechd"
DEPEND="speechd? ( app-accessibility/speech-dispatcher )"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kactivities/kactivities-4.10.1.ebuild,v 1.1 2013/03/06 13:42:04 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kactivities/kactivities-4.10.1.ebuild,v 1.3 2013/03/31 16:23:03 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ inherit kde4-base
DESCRIPTION="KDE Activity Manager"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="semantic-desktop"
DEPEND="$(add_kdebase_dep kdelibs 'semantic-desktop=')"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-4.10.1.ebuild,v 1.1 2013/03/06 13:41:22 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-4.10.1.ebuild,v 1.3 2013/03/31 16:23:10 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="The KDE Address Book"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kajongg/kajongg-4.10.1.ebuild,v 1.1 2013/03/06 13:42:01 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kajongg/kajongg-4.10.1.ebuild,v 1.3 2013/03/31 16:23:19 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ PYTHON_DEPEND="2:2.6"
inherit kde4-base python
DESCRIPTION="The classical Mah Jongg for four players"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalarm/kalarm-4.10.1.ebuild,v 1.1 2013/03/06 13:41:58 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalarm/kalarm-4.10.1.ebuild,v 1.3 2013/03/31 16:23:26 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="Personal alarm message, command and email scheduler for KDE"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalgebra/kalgebra-4.10.1.ebuild,v 1.1 2013/03/06 13:41:29 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalgebra/kalgebra-4.10.1.ebuild,v 1.3 2013/03/31 16:23:34 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ OPENGL_REQUIRED="optional"
inherit kde4-base
DESCRIPTION="MathML-based graph calculator for KDE."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug +plasma readline"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/kalzium-4.10.1.ebuild,v 1.2 2013/03/28 21:18:27 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalzium/kalzium-4.10.1.ebuild,v 1.4 2013/03/31 16:23:42 ago Exp $
EAPI=5
@ -10,7 +10,7 @@ OPENGL_REQUIRED="always"
inherit kde4-base flag-o-matic
DESCRIPTION="KDE: periodic table of the elements."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="editor debug +plasma solver"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kamera/kamera-4.10.1.ebuild,v 1.1 2013/03/06 13:42:11 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kamera/kamera-4.10.1.ebuild,v 1.3 2013/03/31 16:23:50 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE digital camera manager"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kanagram/kanagram-4.10.1.ebuild,v 1.1 2013/03/06 13:41:45 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kanagram/kanagram-4.10.1.ebuild,v 1.3 2013/03/31 16:23:58 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KDE: letter order game."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kapman/kapman-4.10.1.ebuild,v 1.1 2013/03/06 13:41:38 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kapman/kapman-4.10.1.ebuild,v 1.3 2013/03/31 16:24:05 ago Exp $
EAPI=5
@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="Pac-Man clone for KDE"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="$(add_kdebase_dep libkdegames)"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kapptemplate/kapptemplate-4.10.1.ebuild,v 1.1 2013/03/06 13:41:57 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kapptemplate/kapptemplate-4.10.1.ebuild,v 1.3 2013/03/31 16:24:13 ago Exp $
EAPI=5
@ -14,5 +14,5 @@ fi
inherit ${eclass}
DESCRIPTION="KAppTemplate - A shell script to create the necessary framework to develop KDE applications."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kate/kate-4.10.1.ebuild,v 1.1 2013/03/06 13:41:56 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/kate/kate-4.10.1.ebuild,v 1.3 2013/03/31 16:24:21 ago Exp $
EAPI=5
KDE_HANDBOOK="optional"
@ -10,7 +10,7 @@ PYTHON_COMPAT=( python{2_7,3_1,3_2} )
inherit python-single-r1 kde4-meta
DESCRIPTION="Kate is an MDI texteditor."
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug +plasma python"
DEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/katepart/katepart-4.10.1.ebuild,v 1.1 2013/03/06 13:41:31 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/katepart/katepart-4.10.1.ebuild,v 1.3 2013/03/31 16:24:29 ago Exp $
EAPI=5
@ -10,7 +10,7 @@ KMMODULE="part"
inherit kde4-meta
DESCRIPTION="KDE Editor KPart"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="debug"
RESTRICT="test"

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/katomic/katomic-4.10.1.ebuild,v 1.1 2013/03/06 13:41:21 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/kde-base/katomic/katomic-4.10.1.ebuild,v 1.3 2013/03/31 16:24:36 ago Exp $
EAPI=5
@ -9,7 +9,7 @@ KDE_SELINUX_MODULE="games"
inherit kde4-base
DESCRIPTION="KDE Atomic Entertainment Game"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug"
DEPEND="$(add_kdebase_dep libkdegames)"

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

Loading…
Cancel
Save