parent
08c22e9953
commit
95b9b08cfa
@ -0,0 +1,227 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-1.5.1.ebuild,v 1.1 2012/04/03 06:39:17 tetromino Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
inherit autotools eutils flag-o-matic multilib pax-utils
|
||||
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
EGIT_REPO_URI="git://source.winehq.org/git/wine.git"
|
||||
inherit git-2
|
||||
SRC_URI=""
|
||||
#KEYWORDS=""
|
||||
else
|
||||
MY_P="${PN}-${PV/_/-}"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
|
||||
KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
|
||||
S=${WORKDIR}/${MY_P}
|
||||
fi
|
||||
|
||||
GV="1.5"
|
||||
DESCRIPTION="free implementation of Windows(tm) on Unix"
|
||||
HOMEPAGE="http://www.winehq.org/"
|
||||
SRC_URI="${SRC_URI}
|
||||
gecko? (
|
||||
mirror://sourceforge/wine/wine_gecko-${GV}-x86.msi
|
||||
win64? ( mirror://sourceforge/wine/wine_gecko-${GV}-x86_64.msi )
|
||||
)"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
IUSE="alsa capi cups custom-cflags elibc_glibc fontconfig +gecko gnutls gphoto2 gsm gstreamer hardened jpeg lcms ldap mp3 ncurses nls odbc openal opencl +opengl +oss +perl png samba scanner selinux ssl test +threads +truetype udisks v4l +win32 +win64 +X xcomposite xinerama xml"
|
||||
REQUIRED_USE="elibc_glibc? ( threads )" #286560
|
||||
RESTRICT="test" #72375
|
||||
|
||||
MLIB_DEPS="amd64? (
|
||||
truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 )
|
||||
X? (
|
||||
>=app-emulation/emul-linux-x86-xlibs-2.1
|
||||
>=app-emulation/emul-linux-x86-soundlibs-2.1
|
||||
)
|
||||
mp3? ( app-emulation/emul-linux-x86-soundlibs )
|
||||
odbc? ( app-emulation/emul-linux-x86-db )
|
||||
openal? ( app-emulation/emul-linux-x86-sdl )
|
||||
opengl? ( app-emulation/emul-linux-x86-opengl )
|
||||
scanner? ( app-emulation/emul-linux-x86-medialibs )
|
||||
v4l? ( app-emulation/emul-linux-x86-medialibs )
|
||||
app-emulation/emul-linux-x86-baselibs
|
||||
>=sys-kernel/linux-headers-2.6
|
||||
)"
|
||||
RDEPEND="truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts )
|
||||
perl? ( dev-lang/perl dev-perl/XML-Simple )
|
||||
capi? ( net-dialup/capi4k-utils )
|
||||
ncurses? ( >=sys-libs/ncurses-5.2 )
|
||||
fontconfig? ( media-libs/fontconfig )
|
||||
gphoto2? ( media-libs/libgphoto2 )
|
||||
openal? ( media-libs/openal )
|
||||
udisks? (
|
||||
sys-apps/dbus
|
||||
sys-fs/udisks:0
|
||||
)
|
||||
gnutls? ( net-libs/gnutls )
|
||||
gstreamer? ( media-libs/gstreamer media-libs/gst-plugins-base )
|
||||
X? (
|
||||
x11-libs/libXcursor
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libXi
|
||||
x11-libs/libXmu
|
||||
x11-libs/libXxf86vm
|
||||
x11-apps/xmessage
|
||||
)
|
||||
xinerama? ( x11-libs/libXinerama )
|
||||
alsa? ( media-libs/alsa-lib )
|
||||
cups? ( net-print/cups )
|
||||
opencl? ( virtual/opencl )
|
||||
opengl? ( virtual/opengl )
|
||||
gsm? ( media-sound/gsm )
|
||||
jpeg? ( virtual/jpeg )
|
||||
ldap? ( net-nds/openldap )
|
||||
lcms? ( =media-libs/lcms-1* )
|
||||
mp3? ( >=media-sound/mpg123-1.5.0 )
|
||||
nls? ( sys-devel/gettext )
|
||||
odbc? ( dev-db/unixODBC )
|
||||
samba? ( >=net-fs/samba-3.0.25 )
|
||||
selinux? ( sec-policy/selinux-wine )
|
||||
xml? ( dev-libs/libxml2 dev-libs/libxslt )
|
||||
scanner? ( media-gfx/sane-backends )
|
||||
ssl? ( dev-libs/openssl )
|
||||
png? ( media-libs/libpng )
|
||||
v4l? ( media-libs/libv4l )
|
||||
!win64? ( ${MLIB_DEPS} )
|
||||
win32? ( ${MLIB_DEPS} )
|
||||
xcomposite? ( x11-libs/libXcomposite )"
|
||||
DEPEND="${RDEPEND}
|
||||
X? (
|
||||
x11-proto/inputproto
|
||||
x11-proto/xextproto
|
||||
x11-proto/xf86vidmodeproto
|
||||
)
|
||||
xinerama? ( x11-proto/xineramaproto )
|
||||
!hardened? ( sys-devel/prelink )
|
||||
dev-util/pkgconfig
|
||||
virtual/yacc
|
||||
sys-devel/flex"
|
||||
|
||||
src_unpack() {
|
||||
if use win64 ; then
|
||||
[[ $(( $(gcc-major-version) * 100 + $(gcc-minor-version) )) -lt 404 ]] \
|
||||
&& die "you need gcc-4.4+ to build 64bit wine"
|
||||
fi
|
||||
|
||||
if use win32 && use opencl; then
|
||||
[[ x$(eselect opencl show) = "xintel" ]] &&
|
||||
die "Cannot build wine[opencl,win32]: intel-ocl-sdk is 64-bit only" # 403947
|
||||
fi
|
||||
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
git-2_src_unpack
|
||||
else
|
||||
unpack ${MY_P}.tar.bz2
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${PN}-1.1.15-winegcc.patch #260726
|
||||
epatch "${FILESDIR}"/${PN}-1.4_rc2-multilib-portage.patch #395615
|
||||
epatch_user #282735
|
||||
eautoreconf
|
||||
sed -i '/^UPDATE_DESKTOP_DATABASE/s:=.*:=true:' tools/Makefile.in || die
|
||||
sed -i '/^MimeType/d' tools/wine.desktop || die #117785
|
||||
}
|
||||
|
||||
do_configure() {
|
||||
local builddir="${WORKDIR}/wine$1"
|
||||
mkdir -p "${builddir}"
|
||||
pushd "${builddir}" >/dev/null
|
||||
|
||||
ECONF_SOURCE=${S} \
|
||||
econf \
|
||||
--sysconfdir=/etc/wine \
|
||||
$(use_with alsa) \
|
||||
$(use_with capi) \
|
||||
$(use_with lcms cms) \
|
||||
$(use_with cups) \
|
||||
$(use_with ncurses curses) \
|
||||
$(use_with udisks dbus) \
|
||||
$(use_with fontconfig) \
|
||||
$(use_with gnutls) \
|
||||
$(use_with gphoto2 gphoto) \
|
||||
$(use_with gsm) \
|
||||
$(use_with gstreamer) \
|
||||
--without-hal \
|
||||
$(use_with jpeg) \
|
||||
$(use_with ldap) \
|
||||
$(use_with mp3 mpg123) \
|
||||
$(use_with nls gettext) \
|
||||
$(use_with openal) \
|
||||
$(use_with opencl) \
|
||||
$(use_with opengl) \
|
||||
$(use_with ssl openssl) \
|
||||
$(use_with oss) \
|
||||
$(use_with png) \
|
||||
$(use_with threads pthread) \
|
||||
$(use_with scanner sane) \
|
||||
$(use_enable test tests) \
|
||||
$(use_with truetype freetype) \
|
||||
$(use_with v4l) \
|
||||
$(use_with X x) \
|
||||
$(use_with xcomposite) \
|
||||
$(use_with xinerama) \
|
||||
$(use_with xml) \
|
||||
$(use_with xml xslt) \
|
||||
$2
|
||||
|
||||
emake -j1 depend
|
||||
|
||||
popd >/dev/null
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
export LDCONFIG=/bin/true
|
||||
use custom-cflags || strip-flags
|
||||
|
||||
if use win64 ; then
|
||||
do_configure 64 --enable-win64
|
||||
use win32 && ABI=x86 do_configure 32 --with-wine64=../wine64
|
||||
else
|
||||
ABI=x86 do_configure 32 --disable-win64
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local b
|
||||
for b in 64 32 ; do
|
||||
local builddir="${WORKDIR}/wine${b}"
|
||||
[[ -d ${builddir} ]] || continue
|
||||
emake -C "${builddir}" all
|
||||
done
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local b
|
||||
for b in 64 32 ; do
|
||||
local builddir="${WORKDIR}/wine${b}"
|
||||
[[ -d ${builddir} ]] || continue
|
||||
emake -C "${builddir}" install DESTDIR="${D}"
|
||||
done
|
||||
dodoc ANNOUNCE AUTHORS README
|
||||
if use gecko ; then
|
||||
insinto /usr/share/wine/gecko
|
||||
doins "${DISTDIR}"/wine_gecko-${GV}-x86.msi
|
||||
use win64 && doins "${DISTDIR}"/wine_gecko-${GV}-x86_64.msi
|
||||
fi
|
||||
if ! use perl ; then
|
||||
rm "${D}"usr/bin/{wine{dump,maker},function_grep.pl} "${D}"usr/share/man/man1/wine{dump,maker}.1 || die
|
||||
fi
|
||||
|
||||
if use win32 || ! use win64; then
|
||||
pax-mark psmr "${D}"usr/bin/wine{,-preloader} #255055
|
||||
fi
|
||||
use win64 && pax-mark psmr "${D}"usr/bin/wine64{,-preloader}
|
||||
|
||||
if use win64 && ! use win32; then
|
||||
dosym /usr/bin/wine{64,} # 404331
|
||||
dosym /usr/bin/wine{64,}-preloader
|
||||
fi
|
||||
}
|
@ -0,0 +1,122 @@
|
||||
From 43084e8b30c101a44510b7a8267d5c2b316a17bb Mon Sep 17 00:00:00 2001
|
||||
From: Eike Rathke <erack@redhat.com>
|
||||
Date: Mon, 02 Apr 2012 20:24:00 +0000
|
||||
Subject: only as of ICU 4.9 RBBI the Prepend property is empty
|
||||
|
||||
This reverts 0c08a84c04b166ab6479716e2c33cd444d7e3dbe and instead strips the
|
||||
Prepend variable during build time.
|
||||
---
|
||||
diff --git a/config_host.mk.in b/config_host.mk.in
|
||||
index ed5f6df..0e896d8 100644
|
||||
--- a/config_host.mk.in
|
||||
+++ b/config_host.mk.in
|
||||
@@ -208,6 +208,7 @@ export ICU_MAJOR=@ICU_MAJOR@
|
||||
export ICU_MICRO=@ICU_MICRO@
|
||||
export ICU_MINOR=@ICU_MINOR@
|
||||
export ICU_RECLASSIFIED_CLOSE_PARENTHESIS=@ICU_RECLASSIFIED_CLOSE_PARENTHESIS@
|
||||
+export ICU_RECLASSIFIED_PREPEND_SET_EMPTY=@ICU_RECLASSIFIED_PREPEND_SET_EMPTY@
|
||||
export ILIB=@ILIB@
|
||||
@x_Cygwin@ export INCLUDE=
|
||||
export INPATH=@INPATH@
|
||||
diff --git a/configure.in b/configure.in
|
||||
index 0100f97..067fa4f 100644
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -7487,6 +7487,7 @@ ICU_MAJOR=
|
||||
ICU_MINOR=
|
||||
ICU_MICRO=
|
||||
ICU_RECLASSIFIED_CLOSE_PARENTHESIS=
|
||||
+ICU_RECLASSIFIED_PREPEND_SET_EMPTY=
|
||||
AC_MSG_CHECKING([which icu to use])
|
||||
if test "$with_system_icu" = "yes"; then
|
||||
AC_MSG_RESULT([external])
|
||||
@@ -7549,6 +7550,9 @@ You can use --with-system-icu-for-build=force to use it anyway.])
|
||||
if test "$ICU_MAJOR" -ge "5" -o "$ICU_MAJOR" = "4" -a "$ICU_MINOR" -ge "4"; then
|
||||
ICU_RECLASSIFIED_CLOSE_PARENTHESIS="YES"
|
||||
fi
|
||||
+ if test "$ICU_MAJOR" -ge "5" -o "$ICU_MAJOR" = "4" -a "$ICU_MINOR" -ge "9"; then
|
||||
+ ICU_RECLASSIFIED_PREPEND_SET_EMPTY="YES"
|
||||
+ fi
|
||||
fi
|
||||
|
||||
libo_MINGW_CHECK_DLL([ICUDATA], [icudata][$ICU_MAJOR][$ICU_MINOR])
|
||||
@@ -7558,6 +7562,7 @@ else
|
||||
AC_MSG_RESULT([internal])
|
||||
SYSTEM_ICU="NO"
|
||||
ICU_RECLASSIFIED_CLOSE_PARENTHESIS="YES"
|
||||
+ # ICU_RECLASSIFIED_PREPEND_SET_EMPTY not applied for our internal ICU 4.4.2
|
||||
BUILD_TYPE="$BUILD_TYPE ICU"
|
||||
fi
|
||||
|
||||
@@ -7569,6 +7574,7 @@ AC_SUBST(ICU_MAJOR)
|
||||
AC_SUBST(ICU_MINOR)
|
||||
AC_SUBST(ICU_MICRO)
|
||||
AC_SUBST(ICU_RECLASSIFIED_CLOSE_PARENTHESIS)
|
||||
+AC_SUBST(ICU_RECLASSIFIED_PREPEND_SET_EMPTY)
|
||||
AC_SUBST([MINGW_ICUDATA_DLL])
|
||||
AC_SUBST([MINGW_ICUI18N_DLL])
|
||||
AC_SUBST([MINGW_ICUUC_DLL])
|
||||
diff --git a/i18npool/CustomTarget_breakiterator.mk b/i18npool/CustomTarget_breakiterator.mk
|
||||
index 10dce5f..a8379d7 100644
|
||||
--- a/i18npool/CustomTarget_breakiterator.mk
|
||||
+++ b/i18npool/CustomTarget_breakiterator.mk
|
||||
@@ -95,10 +95,16 @@ $(IPBI)/%.brk : $(IPBI)/%.txt $(GENBRKTARGET)
|
||||
$(call gb_Helper_abbreviate_dirs_native,\
|
||||
$(GENBRK) -r $< -o $@ $(if $(findstring s,$(MAKEFLAGS)),> /dev/null))
|
||||
|
||||
-# fdo#31271 ")" reclassified in more recent ICU/Unicode Standards
|
||||
+# fdo#31271 ")" reclassified in more recent Unicode Standards / ICU 4.4
|
||||
+# Prepend set empty as of Unicode Version 6.1 / ICU 4.9, which bails out if used.
|
||||
+# NOTE: strips every line with _word_ 'Prepend', including $Prepend
|
||||
$(IPBI)/%.txt : $(SRCDIR)/i18npool/source/breakiterator/data/%.txt | $(IPBI)/.dir
|
||||
ifeq ($(ICU_RECLASSIFIED_CLOSE_PARENTHESIS),YES)
|
||||
+ifeq ($(ICU_RECLASSIFIED_PREPEND_SET_EMPTY),YES)
|
||||
+ sed "s#\[:LineBreak = Close_Punctuation:\]#\[\[:LineBreak = Close_Punctuation:\] \[:LineBreak = Close_Parenthesis:\]\]#;/\<Prepend\>/d" $< > $@
|
||||
+else
|
||||
sed "s#\[:LineBreak = Close_Punctuation:\]#\[\[:LineBreak = Close_Punctuation:\] \[:LineBreak = Close_Parenthesis:\]\]#" $< > $@
|
||||
+endif
|
||||
else
|
||||
cp $< $@
|
||||
endif
|
||||
diff --git a/i18npool/source/breakiterator/data/char.txt b/i18npool/source/breakiterator/data/char.txt
|
||||
index acb932e..8e49a56 100644
|
||||
--- a/i18npool/source/breakiterator/data/char.txt
|
||||
+++ b/i18npool/source/breakiterator/data/char.txt
|
||||
@@ -16,6 +16,7 @@
|
||||
$CR = [\p{Grapheme_Cluster_Break = CR}];
|
||||
$LF = [\p{Grapheme_Cluster_Break = LF}];
|
||||
$Control = [\p{Grapheme_Cluster_Break = Control}];
|
||||
+$Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
|
||||
$Extend = [\p{Grapheme_Cluster_Break = Extend}];
|
||||
$SpacingMark = [\p{Grapheme_Cluster_Break = SpacingMark}];
|
||||
# True Indic wants to move by syllables. Break up SpacingMark. This based on Unicode 6.0 data
|
||||
diff --git a/i18npool/source/breakiterator/data/char_in.txt b/i18npool/source/breakiterator/data/char_in.txt
|
||||
index 5ad12a7..5e1ed67 100644
|
||||
--- a/i18npool/source/breakiterator/data/char_in.txt
|
||||
+++ b/i18npool/source/breakiterator/data/char_in.txt
|
||||
@@ -15,6 +15,7 @@
|
||||
$CR = [\p{Grapheme_Cluster_Break = CR}];
|
||||
$LF = [\p{Grapheme_Cluster_Break = LF}];
|
||||
$Control = [\p{Grapheme_Cluster_Break = Control}];
|
||||
+$Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
|
||||
$Extend = [\p{Grapheme_Cluster_Break = Extend}];
|
||||
$SpacingMark = [\p{Grapheme_Cluster_Break = SpacingMark}];
|
||||
$BengaliLetter = [\u0985-\u09B9 \u09CE \u09DC-\u09E1 \u09F0-\u09F1];
|
||||
@@ -71,6 +72,7 @@ $L ($L | $V | $LV | $LVT);
|
||||
[^$Control $CR $LF] $Extend;
|
||||
|
||||
[^$Control $CR $LF] $SpacingMark;
|
||||
+$Prepend [^$Control $CR $LF];
|
||||
|
||||
|
||||
## -------------------------------------------------
|
||||
@@ -92,6 +94,7 @@ $T ($LVT | $T);
|
||||
|
||||
$Extend [^$Control $CR $LF];
|
||||
$SpacingMark [^$Control $CR $LF];
|
||||
+[^$Control $CR $LF] $Prepend;
|
||||
|
||||
|
||||
## -------------------------------------------------
|
||||
--
|
||||
cgit v0.9.0.2-2-gbebe
|
@ -0,0 +1 @@
|
||||
DIST XML-Fast-0.11.tar.gz 152643 RMD160 e3e096e3386af938662e33641c92465def40423b SHA1 dfbbc2b2dbf8686769484da83cac1e8de9c22c10 SHA256 eb5e0eadeb2bb2e208f542946bbe51b50b73b8ce8b434b88079d5d0e8146518a
|
@ -0,0 +1,20 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-Fast/XML-Fast-0.11.ebuild,v 1.1 2012/04/03 05:36:26 ssuominen Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
MODULE_AUTHOR=MONS
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Simple and very fast XML to hash conversion"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="virtual/perl-Encode"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/perl-ExtUtils-MakeMaker"
|
||||
|
||||
SRC_TEST=do
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>perl</herd>
|
||||
</pkgmetadata>
|
@ -1,4 +1,5 @@
|
||||
DIST apsw-3.7.10-r1.zip 619967 RMD160 d198353402f9ac7757b98308cef49657fadac1f5 SHA1 948f28897e20168a0db159ca2ba4d993df43f831 SHA256 5a2be6baeb3dc58df53169979a5c27cea8a1db24ca9b174f8e18b81a46bd2406
|
||||
DIST apsw-3.7.11-r1.zip 630985 RMD160 398ee96783b2f2df4dfc94e1e49ac9de9757e047 SHA1 aea455ea2e5f8091af61332a5ea394994970212f SHA256 24fb23531500a5a34102d59c3f404735d2123b7eff7e24176db4a7a777df56c4
|
||||
DIST apsw-3.7.6.2-r1.zip 597673 RMD160 7a7e50432bd6cf5785e6f98f1edeec20a0c0a0ae SHA1 fa4aec08e59fa5964197f59ba42408d64031675b SHA256 cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb
|
||||
DIST apsw-3.7.8-r1.zip 607540 RMD160 c82aa6f2fcec8faa5364321ccb5e51e8a3af204b SHA1 3acea15e77f7b8fda6f7b67e80a6bec541480260 SHA256 818bb96680829c8dedb7db5453596e4f02dd7ad6e5b58e9e3b5f00e5c74a7ea4
|
||||
DIST apsw-3.7.9-r1.zip 607810 RMD160 c41832685581d1737e1ee28bf2bb0aababba28f7 SHA1 09bf186388571bebede533bc648f38920b6981ba SHA256 71fd3d14ef342bc696f0051a15041620ffd95767914519b2096de285150b43a0
|
||||
|
@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/apsw-3.7.11.1.ebuild,v 1.1 2012/04/03 07:13:01 radhermit Exp $
|
||||
|
||||
EAPI="4"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="*-jython 2.7-pypy-*"
|
||||
|
||||
inherit distutils eutils versionator
|
||||
|
||||
MY_PV="$(replace_version_separator 3 -r)"
|
||||
|
||||
DESCRIPTION="APSW - Another Python SQLite Wrapper"
|
||||
HOMEPAGE="http://code.google.com/p/apsw/"
|
||||
SRC_URI="http://apsw.googlecode.com/files/${PN}-${MY_PV}.zip"
|
||||
|
||||
LICENSE="as-is"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND=">=dev-db/sqlite-$(get_version_component_range 1-3)[extensions]"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/unzip"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MY_PV}"
|
||||
|
||||
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
|
||||
|
||||
src_prepare() {
|
||||
distutils_src_prepare
|
||||
epatch "${FILESDIR}/${PN}-3.6.20.1-fix_tests.patch"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
distutils_src_compile --enable=load_extension
|
||||
}
|
||||
|
||||
src_test() {
|
||||
echo "$(PYTHON -f)" setup.py build_test_extension
|
||||
"$(PYTHON -f)" setup.py build_test_extension || die "Building of test loadable extension failed"
|
||||
|
||||
testing() {
|
||||
PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" tests.py -v
|
||||
}
|
||||
python_execute_function testing
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils_src_install
|
||||
if use doc ; then
|
||||
dohtml -r doc/*
|
||||
fi
|
||||
}
|
@ -1,2 +1,2 @@
|
||||
DIST rubigen-1.5.6.gem 57344 RMD160 b37016a1ba50b780a2d3392e5089fc08d994e47e SHA1 39ff57075163727dc0ef019c0851adcb0993583d SHA256 217aba52bffb443b7f0be9e86b27ee7626e964cd0161a4b8aacc3cfae43489e8
|
||||
DIST rubigen-1.5.7.gem 57344 RMD160 b6b7575a9bb60ce3114b3e529fad7fe5cc23b7f9 SHA1 7d9ad0a82d550515beef3de1492b091307d546b6 SHA256 d057f9fb028cc7c97efaed6381c74ba23d2e9a0bf189edd45c02d5314c9ff38d
|
||||
DIST rubigen-1.5.8.gem 41984 RMD160 0398a47cd3c884336bbe0bfb4936614442483b57 SHA1 fda95d4fc1dad98316a08b9c735f682580269cbb SHA256 b794f184d62c4f4fc05342e577516b11f89d5db248adfdb022d489f773105a18
|
||||
|
@ -1,56 +0,0 @@
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/rubigen-1.5.6.ebuild,v 1.1 2011/02/14 19:43:38 graaff Exp $
|
||||
|
||||
EAPI="2"
|
||||
USE_RUBY="ruby18 ree18"
|
||||
|
||||
RUBY_FAKEGEM_TASK_DOC="docs"
|
||||
RUBY_FAKEGEM_DOCDIR="doc"
|
||||
RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc Todo.txt"
|
||||
|
||||
RUBY_FAKEGEM_EXTRAINSTALL="app_generators generators rubygems_generators script test_unit_generators"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="A framework to allow Ruby applications to generate file/folder stubs."
|
||||
HOMEPAGE="https://github.com/drnic/rubigen"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
# The presence of a self-dependency is needed as per bug #320781;
|
||||
# since this is a bad situation, don't close the bug, but try working
|
||||
# it around.
|
||||
ruby_add_bdepend "test? (
|
||||
>=dev-ruby/mocha-0.9.8
|
||||
>=dev-ruby/shoulda-2.10.3
|
||||
>=dev-util/cucumber-0.6.2
|
||||
>=dev-ruby/hoe-2.5.0
|
||||
=${CATEGORY}/${PF}
|
||||
virtual/ruby-test-unit
|
||||
!dev-ruby/test-unit:2
|
||||
)"
|
||||
|
||||
ruby_add_rdepend "=dev-ruby/activesupport-2.3*"
|
||||
|
||||
all_ruby_prepare() {
|
||||
# Remove newgem requirement from the Rakefile since it is not
|
||||
# needed for our purposes and we don't have it in CVS.
|
||||
sed -i '/newgem/d' Rakefile || die "Unable to remove unneeded newgem support."
|
||||
|
||||
rm -f test/test_generate_builtin_application.rb || die "Unable to remove broken test."
|
||||
|
||||
# Fix features when RSpec 2.x is present. Reported upstream via pull
|
||||
# request: https://github.com/drnic/rubigen/pull/5
|
||||
sed -i -e "s/gem 'rspec'/gem 'rspec', '~> 1.2'/" features/support/env.rb || die
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
each_fakegem_test
|
||||
|
||||
# Run all features not related to creating and distributing the gem itself
|
||||
${RUBY} -S cucumber features/help.feature features/rubigen_cli.feature || die "tests failed"
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/rubigen-1.5.8.ebuild,v 1.1 2012/04/03 05:52:43 graaff Exp $
|
||||
|
||||
EAPI=4
|
||||
USE_RUBY="ruby18 ree18"
|
||||
|
||||
RUBY_FAKEGEM_TASK_DOC=""
|
||||
RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc Todo.txt"
|
||||
|
||||
RUBY_FAKEGEM_EXTRAINSTALL="app_generators generators rubygems_generators script test_unit_generators"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="A framework to allow Ruby applications to generate file/folder stubs."
|
||||
HOMEPAGE="https://github.com/drnic/rubigen"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
# The presence of a self-dependency is needed as per bug #320781;
|
||||
# since this is a bad situation, don't close the bug, but try working
|
||||
# it around.
|
||||
ruby_add_bdepend "test? (
|
||||
>=dev-ruby/mocha-0.9.8
|
||||
>=dev-ruby/shoulda-2.10.3
|
||||
>=dev-util/cucumber-0.6.2
|
||||
=${CATEGORY}/${PF}
|
||||
)"
|
||||
|
||||
ruby_add_rdepend ">=dev-ruby/activesupport-2.3 <dev-ruby/activesupport-3.2.0"
|
||||
|
||||
all_ruby_prepare() {
|
||||
# Provide missing file for test_generate_builtin_application.rb
|
||||
mkdir -p app_generators/ruby_app/templates/configs || die
|
||||
touch app_generators/ruby_app/templates/configs/empty_log || die
|
||||
|
||||
# Needs to be explicit, most likely due to changes in newer cucumber.
|
||||
sed -i -e '2 i include Spec::Matchers' features/support/matchers.rb || die
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
# Run tests directly to avoid bundler dependency and overhead.
|
||||
${RUBY} -S testrb test/test*.rb || die "tests failed"
|
||||
|
||||
# Run all features
|
||||
${RUBY} -S cucumber features || die "cucumber features failed"
|
||||
}
|
@ -1,2 +1,3 @@
|
||||
DIST ruby-mp3info-0.6.15.tgz 189168 RMD160 308783c441f08b08d9eb8cb1c5b3c4ff870cabb3 SHA1 32243bd2274f81947eaebbd222efce664aa18078 SHA256 e44e2a2183211ab6d5b8abaa11916fd4d4d5ed6ddec87c9609fcc07479967a7a
|
||||
DIST ruby-mp3info-0.6.16.tgz 188965 RMD160 2a6829a541658ebec62e079c34c2bf00ef6a9082 SHA1 1c22481d77bccbc225a331965e435b36963777c9 SHA256 4b62344960bd37a9c9b4d55c16e77042481120915fa90898c402fcd434bc7b5f
|
||||
DIST ruby-mp3info-0.7.tgz 74594 RMD160 3032c3b6231a66c59fe45fa1fedc172c5ca178e1 SHA1 a052a8b96b51731d28b3a6ab06ec4f1543687361 SHA256 ea6966982444ad96a96fed4f86abd65925b16d9dbd28ada719485d0ee56e21b5
|
||||
|
@ -0,0 +1,28 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-mp3info/ruby-mp3info-0.7.ebuild,v 1.1 2012/04/03 05:41:01 graaff Exp $
|
||||
|
||||
EAPI=4
|
||||
USE_RUBY="ruby18 ruby19 ree18 jruby"
|
||||
|
||||
RUBY_FAKEGEM_TASK_DOC="docs"
|
||||
RUBY_FAKEGEM_DOCDIR="doc"
|
||||
RUBY_FAKEGEM_EXTRADOC="History.txt README.txt"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="A pure Ruby library for access to mp3 files (internal infos and tags)"
|
||||
HOMEPAGE="http://rubyforge.org/projects/ruby-mp3info/"
|
||||
SRC_URI="https://github.com/moumar/${PN}/tarball/v${PV} -> ${P}.tgz"
|
||||
RUBY_S="moumar-${PN}-*"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
IUSE=""
|
||||
|
||||
DEPEND="${DEPEND} test? ( media-sound/id3v2 )"
|
||||
|
||||
ruby_add_bdepend "doc? ( dev-ruby/hoe )"
|
||||
ruby_add_bdepend "test? ( dev-ruby/hoe )"
|
@ -0,0 +1,22 @@
|
||||
truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( dev-lang/perl dev-perl/XML-Simple ) capi? ( net-dialup/capi4k-utils ) ncurses? ( >=sys-libs/ncurses-5.2 ) fontconfig? ( media-libs/fontconfig ) gphoto2? ( media-libs/libgphoto2 ) openal? ( media-libs/openal ) udisks? ( sys-apps/dbus sys-fs/udisks:0 ) gnutls? ( net-libs/gnutls ) gstreamer? ( media-libs/gstreamer media-libs/gst-plugins-base ) X? ( x11-libs/libXcursor x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-libs/libXxf86vm x11-apps/xmessage ) xinerama? ( x11-libs/libXinerama ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) gsm? ( media-sound/gsm ) jpeg? ( virtual/jpeg ) ldap? ( net-nds/openldap ) lcms? ( =media-libs/lcms-1* ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC ) samba? ( >=net-fs/samba-3.0.25 ) selinux? ( sec-policy/selinux-wine ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) scanner? ( media-gfx/sane-backends ) ssl? ( dev-libs/openssl ) png? ( media-libs/libpng ) v4l? ( media-libs/libv4l ) !win64? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) win32? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) xcomposite? ( x11-libs/libXcomposite ) X? ( x11-proto/inputproto x11-proto/xextproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) !hardened? ( sys-devel/prelink ) dev-util/pkgconfig virtual/yacc sys-devel/flex || ( >=sys-devel/automake-1.11.1:1.11 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( dev-lang/perl dev-perl/XML-Simple ) capi? ( net-dialup/capi4k-utils ) ncurses? ( >=sys-libs/ncurses-5.2 ) fontconfig? ( media-libs/fontconfig ) gphoto2? ( media-libs/libgphoto2 ) openal? ( media-libs/openal ) udisks? ( sys-apps/dbus sys-fs/udisks:0 ) gnutls? ( net-libs/gnutls ) gstreamer? ( media-libs/gstreamer media-libs/gst-plugins-base ) X? ( x11-libs/libXcursor x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-libs/libXxf86vm x11-apps/xmessage ) xinerama? ( x11-libs/libXinerama ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) gsm? ( media-sound/gsm ) jpeg? ( virtual/jpeg ) ldap? ( net-nds/openldap ) lcms? ( =media-libs/lcms-1* ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC ) samba? ( >=net-fs/samba-3.0.25 ) selinux? ( sec-policy/selinux-wine ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) scanner? ( media-gfx/sane-backends ) ssl? ( dev-libs/openssl ) png? ( media-libs/libpng ) v4l? ( media-libs/libv4l ) !win64? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) win32? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) xcomposite? ( x11-libs/libXcomposite )
|
||||
0
|
||||
mirror://sourceforge/wine/wine-1.5.1.tar.bz2 gecko? ( mirror://sourceforge/wine/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/wine_gecko-1.5-x86_64.msi ) )
|
||||
test
|
||||
http://www.winehq.org/
|
||||
LGPL-2.1
|
||||
free implementation of Windows(tm) on Unix
|
||||
-* ~amd64 ~x86 ~x86-fbsd
|
||||
autotools eutils flag-o-matic libtool multilib pax-utils toolchain-funcs user
|
||||
alsa capi cups custom-cflags elibc_glibc fontconfig +gecko gnutls gphoto2 gsm gstreamer hardened jpeg lcms ldap mp3 ncurses nls odbc openal opencl +opengl +oss +perl png samba scanner selinux ssl test +threads +truetype udisks v4l +win32 +win64 +X xcomposite xinerama xml
|
||||
elibc_glibc? ( threads )
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile configure install prepare unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
virtual/perl-Encode virtual/perl-ExtUtils-MakeMaker dev-lang/perl[-build]
|
||||
virtual/perl-Encode dev-lang/perl[-build]
|
||||
0
|
||||
mirror://cpan/authors/id/M/MO/MONS/XML-Fast-0.11.tar.gz
|
||||
|
||||
http://search.cpan.org/dist/XML-Fast/
|
||||
|| ( Artistic GPL-1 GPL-2 GPL-3 )
|
||||
Simple and very fast XML to hash conversion
|
||||
~amd64 ~x86
|
||||
base eutils multilib perl-module toolchain-funcs user
|
||||
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile configure install prepare test unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
>=dev-db/sqlite-3.7.11[extensions] app-arch/unzip dev-lang/python
|
||||
>=dev-db/sqlite-3.7.11[extensions] dev-lang/python
|
||||
0
|
||||
http://apsw.googlecode.com/files/apsw-3.7.11-r1.zip
|
||||
|
||||
http://code.google.com/p/apsw/
|
||||
as-is
|
||||
APSW - Another Python SQLite Wrapper
|
||||
~amd64 ~ppc64 ~x86
|
||||
distutils eutils multilib python toolchain-funcs user versionator
|
||||
doc
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile install postinst postrm prepare setup test
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,22 +0,0 @@
|
||||
ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ruby18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ruby18] >=dev-util/cucumber-0.6.2[ruby_targets_ruby18] >=dev-ruby/hoe-2.5.0[ruby_targets_ruby18] =dev-ruby/rubigen-1.5.6[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] !dev-ruby/test-unit:2[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ree18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ree18] >=dev-util/cucumber-0.6.2[ruby_targets_ree18] >=dev-ruby/hoe-2.5.0[ruby_targets_ree18] =dev-ruby/rubigen-1.5.6[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] !dev-ruby/test-unit:2[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ruby18] ) ruby_targets_ree18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
ruby_targets_ruby18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ruby18] ) ruby_targets_ree18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
|
||||
0
|
||||
mirror://rubygems/rubigen-1.5.6.gem
|
||||
|
||||
https://github.com/drnic/rubigen
|
||||
MIT
|
||||
A framework to allow Ruby applications to generate file/folder stubs.
|
||||
~amd64 ~ppc64 ~x86
|
||||
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc doc test test
|
||||
|
||||
|
||||
|
||||
2
|
||||
|
||||
compile configure install prepare setup test unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ruby18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ruby18] >=dev-util/cucumber-0.6.2[ruby_targets_ruby18] =dev-ruby/rubigen-1.5.8[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ree18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ree18] >=dev-util/cucumber-0.6.2[ruby_targets_ree18] =dev-ruby/rubigen-1.5.8[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ruby18] <dev-ruby/activesupport-3.2.0[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ree18] <dev-ruby/activesupport-3.2.0[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
ruby_targets_ruby18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ruby18] <dev-ruby/activesupport-3.2.0[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ree18] <dev-ruby/activesupport-3.2.0[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
|
||||
0
|
||||
mirror://rubygems/rubigen-1.5.8.gem
|
||||
|
||||
https://github.com/drnic/rubigen
|
||||
MIT
|
||||
A framework to allow Ruby applications to generate file/folder stubs.
|
||||
~amd64 ~ppc64 ~x86
|
||||
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test
|
||||
|| ( ruby_targets_ruby18 ruby_targets_ree18 )
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile configure install prepare setup test unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,22 @@
|
||||
test? ( media-sound/id3v2 ) ruby_targets_ruby18? ( doc? ( dev-ruby/hoe[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/hoe[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/hoe[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/hoe[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/hoe[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/hoe[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/hoe[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/hoe[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
|
||||
ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
|
||||
0
|
||||
https://github.com/moumar/ruby-mp3info/tarball/v0.7 -> ruby-mp3info-0.7.tgz
|
||||
|
||||
http://rubyforge.org/projects/ruby-mp3info/
|
||||
GPL-2
|
||||
A pure Ruby library for access to mp3 files (internal infos and tags)
|
||||
~amd64 ~x86
|
||||
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
|
||||
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby doc doc test test
|
||||
|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby )
|
||||
|
||||
|
||||
4
|
||||
|
||||
compile configure install prepare setup test unpack
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
python3? ( =dev-lang/python-3* ) !pypy1_8? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_8? ( !python2? ( !python3? ( dev-python/pypy:1.8[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 ) doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 )
|
||||
python3? ( =dev-lang/python-3* ) !pypy1_8? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_8? ( !python2? ( !python3? ( dev-python/pypy:1.8[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-3.2_p17 >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] <sys-libs/libselinux-2.0.94 ) ) !<app-shells/bash-3.2_p17 !<app-admin/logrotate-3.8.0
|
||||
0
|
||||
mirror://gentoo/portage-2.1.10.54.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-2.1.10.54.tar.bz2 linguas_pl? ( mirror://gentoo/portage-man-pl-2.1.2.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-man-pl-2.1.2.tar.bz2 )
|
||||
mirror://gentoo/portage-2.1.10.55.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-2.1.10.55.tar.bz2 linguas_pl? ( mirror://gentoo/portage-man-pl-2.1.2.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-man-pl-2.1.2.tar.bz2 )
|
||||
|
||||
http://www.gentoo.org/proj/en/portage/index.xml
|
||||
GPL-2
|
@ -1,7 +1,7 @@
|
||||
python3? ( =dev-lang/python-3* ) !pypy1_8? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_8? ( !python2? ( !python3? ( dev-python/pypy:1.8[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 ) doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 )
|
||||
python3? ( =dev-lang/python-3* ) !pypy1_8? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy1_8? ( !python2? ( !python3? ( dev-python/pypy:1.8[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) !build? ( >=sys-apps/sed-4.0.5 >=app-shells/bash-3.2_p17 >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] <sys-libs/libselinux-2.0.94 ) ) !<app-shells/bash-3.2_p17 !<app-admin/logrotate-3.8.0
|
||||
0
|
||||
mirror://gentoo/portage-2.2.0_alpha94.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-2.2.0_alpha94.tar.bz2 linguas_pl? ( mirror://gentoo/portage-man-pl-2.1.2.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-man-pl-2.1.2.tar.bz2 ) mirror://gentoo/portage-2.2.0_alpha98.patch.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-2.2.0_alpha98.patch.bz2
|
||||
mirror://gentoo/portage-2.2.0_alpha94.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-2.2.0_alpha94.tar.bz2 linguas_pl? ( mirror://gentoo/portage-man-pl-2.1.2.tar.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-man-pl-2.1.2.tar.bz2 ) mirror://gentoo/portage-2.2.0_alpha99.patch.bz2 http://dev.gentoo.org/~zmedico/portage/archives/portage-2.2.0_alpha99.patch.bz2
|
||||
|
||||
http://www.gentoo.org/proj/en/portage/index.xml
|
||||
GPL-2
|
@ -0,0 +1,22 @@
|
||||
>=dev-libs/glib-2 dev-util/desktop-file-utils sys-apps/dbus x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/startup-notification dev-util/intltool dev-util/pkgconfig sys-devel/gettext
|
||||
>=dev-libs/glib-2 dev-util/desktop-file-utils sys-apps/dbus x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/startup-notification virtual/eject virtual/freedesktop-icon-theme x11-misc/shared-mime-info !kernel_linux? ( fam? ( virtual/fam ) ) udev? ( sys-fs/udisks:0 sys-process/lsof ) su? ( gtk? ( x11-libs/gksu ) kde? ( kde-base/kdesu ) || ( x11-misc/ktsuss x11-libs/gksu kde-base/kdesu ) )
|
||||
0
|
||||
mirror://sourceforge/spacefm/spacefm-0.7.4.tar.xz
|
||||
|
||||
http://spacefm.sourceforge.net/
|
||||
GPL-2 LGPL-2.1
|
||||
a multi-panel tabbed file manager
|
||||
~amd64 ~x86
|
||||
fdo-mime
|
||||
fam gtk kde kernel_linux su udev
|
||||
|
||||
|
||||
|
||||
4
|
||||
|
||||
configure postinst postrm
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1 +1 @@
|
||||
Tue, 03 Apr 2012 04:36:57 +0000
|
||||
Tue, 03 Apr 2012 09:36:57 +0000
|
||||
|
@ -1 +1 @@
|
||||
Tue, 03 Apr 2012 04:36:57 +0000
|
||||
Tue, 03 Apr 2012 09:36:58 +0000
|
||||
|
@ -0,0 +1,15 @@
|
||||
DEFINED_PHASES=compile configure install prepare unpack
|
||||
DEPEND=truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( dev-lang/perl dev-perl/XML-Simple ) capi? ( net-dialup/capi4k-utils ) ncurses? ( >=sys-libs/ncurses-5.2 ) fontconfig? ( media-libs/fontconfig ) gphoto2? ( media-libs/libgphoto2 ) openal? ( media-libs/openal ) udisks? ( sys-apps/dbus sys-fs/udisks:0 ) gnutls? ( net-libs/gnutls ) gstreamer? ( media-libs/gstreamer media-libs/gst-plugins-base ) X? ( x11-libs/libXcursor x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-libs/libXxf86vm x11-apps/xmessage ) xinerama? ( x11-libs/libXinerama ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) gsm? ( media-sound/gsm ) jpeg? ( virtual/jpeg ) ldap? ( net-nds/openldap ) lcms? ( =media-libs/lcms-1* ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC ) samba? ( >=net-fs/samba-3.0.25 ) selinux? ( sec-policy/selinux-wine ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) scanner? ( media-gfx/sane-backends ) ssl? ( dev-libs/openssl ) png? ( media-libs/libpng ) v4l? ( media-libs/libv4l ) !win64? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) win32? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) xcomposite? ( x11-libs/libXcomposite ) X? ( x11-proto/inputproto x11-proto/xextproto x11-proto/xf86vidmodeproto ) xinerama? ( x11-proto/xineramaproto ) !hardened? ( sys-devel/prelink ) dev-util/pkgconfig virtual/yacc sys-devel/flex || ( >=sys-devel/automake-1.11.1:1.11 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
DESCRIPTION=free implementation of Windows(tm) on Unix
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.winehq.org/
|
||||
IUSE=alsa capi cups custom-cflags elibc_glibc fontconfig +gecko gnutls gphoto2 gsm gstreamer hardened jpeg lcms ldap mp3 ncurses nls odbc openal opencl +opengl +oss +perl png samba scanner selinux ssl test +threads +truetype udisks v4l +win32 +win64 +X xcomposite xinerama xml
|
||||
KEYWORDS=-* ~amd64 ~x86 ~x86-fbsd
|
||||
LICENSE=LGPL-2.1
|
||||
RDEPEND=truetype? ( >=media-libs/freetype-2.0.0 media-fonts/corefonts ) perl? ( dev-lang/perl dev-perl/XML-Simple ) capi? ( net-dialup/capi4k-utils ) ncurses? ( >=sys-libs/ncurses-5.2 ) fontconfig? ( media-libs/fontconfig ) gphoto2? ( media-libs/libgphoto2 ) openal? ( media-libs/openal ) udisks? ( sys-apps/dbus sys-fs/udisks:0 ) gnutls? ( net-libs/gnutls ) gstreamer? ( media-libs/gstreamer media-libs/gst-plugins-base ) X? ( x11-libs/libXcursor x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-libs/libXxf86vm x11-apps/xmessage ) xinerama? ( x11-libs/libXinerama ) alsa? ( media-libs/alsa-lib ) cups? ( net-print/cups ) opencl? ( virtual/opencl ) opengl? ( virtual/opengl ) gsm? ( media-sound/gsm ) jpeg? ( virtual/jpeg ) ldap? ( net-nds/openldap ) lcms? ( =media-libs/lcms-1* ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) odbc? ( dev-db/unixODBC ) samba? ( >=net-fs/samba-3.0.25 ) selinux? ( sec-policy/selinux-wine ) xml? ( dev-libs/libxml2 dev-libs/libxslt ) scanner? ( media-gfx/sane-backends ) ssl? ( dev-libs/openssl ) png? ( media-libs/libpng ) v4l? ( media-libs/libv4l ) !win64? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) win32? ( amd64? ( truetype? ( >=app-emulation/emul-linux-x86-xlibs-2.1 ) X? ( >=app-emulation/emul-linux-x86-xlibs-2.1 >=app-emulation/emul-linux-x86-soundlibs-2.1 ) mp3? ( app-emulation/emul-linux-x86-soundlibs ) odbc? ( app-emulation/emul-linux-x86-db ) openal? ( app-emulation/emul-linux-x86-sdl ) opengl? ( app-emulation/emul-linux-x86-opengl ) scanner? ( app-emulation/emul-linux-x86-medialibs ) v4l? ( app-emulation/emul-linux-x86-medialibs ) app-emulation/emul-linux-x86-baselibs >=sys-kernel/linux-headers-2.6 ) ) xcomposite? ( x11-libs/libXcomposite )
|
||||
REQUIRED_USE=elibc_glibc? ( threads )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/wine/wine-1.5.1.tar.bz2 gecko? ( mirror://sourceforge/wine/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/wine_gecko-1.5-x86_64.msi ) )
|
||||
_eclasses_=autotools addbdf6cce5024ac93ad2084ad5e1d2d eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 flag-o-matic 66cb710a2aa184a5687fe1289d7973ab libtool 5f623f5a211fb1b2d84d88ee49959a54 multilib 5f4ad6cf85e365e8f0c6050ddd21659e pax-utils 3551398d6ede2b572568832730cc2a45 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e
|
||||
_md5_=22c8c21161b4d038c315e6d43b778400
|
@ -1,13 +1,13 @@
|
||||
DEFINED_PHASES=configure install postinst postrm prepare setup
|
||||
DEPEND=>=app-pda/libplist-1.4[python?] >=app-pda/usbmuxd-0.1.4 >=dev-libs/glib-2.28.6 dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-1.6.3 sys-fs/fuse virtual/libusb:1 dev-util/pkgconfig python? ( >=dev-lang/swig-2.0.0 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
|
||||
DEPEND=>=app-pda/libplist-1.4 python? ( =app-pda/libplist-1.8[python] ) >=app-pda/usbmuxd-0.1.4 >=dev-libs/glib-2.28.6 dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-1.6.3 sys-fs/fuse virtual/libusb:1 dev-util/pkgconfig python? ( >=dev-lang/swig-2.0.0 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
|
||||
DESCRIPTION=Support library to communicate with Apple iPhone/iPod Touch devices
|
||||
EAPI=3
|
||||
HOMEPAGE=http://www.libimobiledevice.org/
|
||||
IUSE=python static-libs
|
||||
KEYWORDS=amd64 ~ppc64 x86
|
||||
LICENSE=GPL-2 LGPL-2.1
|
||||
RDEPEND=>=app-pda/libplist-1.4[python?] >=app-pda/usbmuxd-0.1.4 >=dev-libs/glib-2.28.6 dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-1.6.3 sys-fs/fuse virtual/libusb:1 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
|
||||
RDEPEND=>=app-pda/libplist-1.4 python? ( =app-pda/libplist-1.8[python] ) >=app-pda/usbmuxd-0.1.4 >=dev-libs/glib-2.28.6 dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-1.6.3 sys-fs/fuse virtual/libusb:1 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.1.tar.bz2
|
||||
_eclasses_=multilib 5f4ad6cf85e365e8f0c6050ddd21659e python 36d7e2b7aa4dce62364c72eec96610cf toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68
|
||||
_md5_=18360600e45c07009970afe656673e6e
|
||||
_md5_=1f40dd6b2e9c0ffd085e65c300448a10
|
||||
|
@ -1,13 +1,14 @@
|
||||
DEFINED_PHASES=configure install prepare setup
|
||||
DEPEND=>=app-pda/libplist-1.8-r1[python?] >=app-pda/usbmuxd-0.1.4 ssl? ( dev-libs/openssl:0 ) !ssl? ( dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-2.2.0 ) dev-util/pkgconfig python? ( >=dev-python/cython-0.13 ) python? ( =dev-lang/python-2.7* )
|
||||
DEPEND=>=app-pda/libplist-1.8-r1[python?] >=app-pda/usbmuxd-0.1.4 imobiledevice_backend_openssl? ( dev-libs/openssl:0 ) imobiledevice_backend_gnutls? ( dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-2.2.0 ) dev-util/pkgconfig python? ( >=dev-python/cython-0.13 ) python? ( =dev-lang/python-2.7* )
|
||||
DESCRIPTION=Support library to communicate with Apple iPhone/iPod Touch devices
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.libimobiledevice.org/
|
||||
IUSE=python ssl static-libs
|
||||
IUSE=imobiledevice_backend_gnutls +imobiledevice_backend_openssl python static-libs
|
||||
KEYWORDS=~amd64 ~ppc64 ~x86
|
||||
LICENSE=GPL-2 LGPL-2.1
|
||||
RDEPEND=>=app-pda/libplist-1.8-r1[python?] >=app-pda/usbmuxd-0.1.4 ssl? ( dev-libs/openssl:0 ) !ssl? ( dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-2.2.0 ) python? ( =dev-lang/python-2.7* )
|
||||
RDEPEND=>=app-pda/libplist-1.8-r1[python?] >=app-pda/usbmuxd-0.1.4 imobiledevice_backend_openssl? ( dev-libs/openssl:0 ) imobiledevice_backend_gnutls? ( dev-libs/libgcrypt >=dev-libs/libtasn1-1.1 >=net-libs/gnutls-2.2.0 ) python? ( =dev-lang/python-2.7* )
|
||||
REQUIRED_USE=^^ ( imobiledevice_backend_openssl imobiledevice_backend_gnutls )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.2.tar.bz2
|
||||
_eclasses_=multilib 5f4ad6cf85e365e8f0c6050ddd21659e python 36d7e2b7aa4dce62364c72eec96610cf toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68
|
||||
_md5_=0a48ebb77b070889c66967e8a87765bb
|
||||
_md5_=b6cf4e8a3a5b1424e8fd5a8db4a0cf13
|
||||
|
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=compile configure install prepare test unpack
|
||||
DEPEND=virtual/perl-Encode virtual/perl-ExtUtils-MakeMaker dev-lang/perl[-build]
|
||||
DESCRIPTION=Simple and very fast XML to hash conversion
|
||||
EAPI=4
|
||||
HOMEPAGE=http://search.cpan.org/dist/XML-Fast/
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
|
||||
RDEPEND=virtual/perl-Encode dev-lang/perl[-build]
|
||||
SLOT=0
|
||||
SRC_URI=mirror://cpan/authors/id/M/MO/MONS/XML-Fast-0.11.tar.gz
|
||||
_eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 multilib 5f4ad6cf85e365e8f0c6050ddd21659e perl-module 01501a30505074cd0012cabbf5d99447 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e
|
||||
_md5_=9fafa5226f793787eefa3ac7f84d8fed
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile install postinst postrm prepare setup test
|
||||
DEPEND=>=dev-db/sqlite-3.7.11[extensions] app-arch/unzip dev-lang/python
|
||||
DESCRIPTION=APSW - Another Python SQLite Wrapper
|
||||
EAPI=4
|
||||
HOMEPAGE=http://code.google.com/p/apsw/
|
||||
IUSE=doc
|
||||
KEYWORDS=~amd64 ~ppc64 ~x86
|
||||
LICENSE=as-is
|
||||
RDEPEND=>=dev-db/sqlite-3.7.11[extensions] dev-lang/python
|
||||
SLOT=0
|
||||
SRC_URI=http://apsw.googlecode.com/files/apsw-3.7.11-r1.zip
|
||||
_eclasses_=distutils 15ae23f6f8219a009bfcfff7724fe727 eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 multilib 5f4ad6cf85e365e8f0c6050ddd21659e python 36d7e2b7aa4dce62364c72eec96610cf toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=815267da082b79f750118456f03b73ab
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ruby18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ruby18] >=dev-util/cucumber-0.6.2[ruby_targets_ruby18] >=dev-ruby/hoe-2.5.0[ruby_targets_ruby18] =dev-ruby/rubigen-1.5.6[ruby_targets_ruby18] virtual/ruby-test-unit[ruby_targets_ruby18] !dev-ruby/test-unit:2[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ree18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ree18] >=dev-util/cucumber-0.6.2[ruby_targets_ree18] >=dev-ruby/hoe-2.5.0[ruby_targets_ree18] =dev-ruby/rubigen-1.5.6[ruby_targets_ree18] virtual/ruby-test-unit[ruby_targets_ree18] !dev-ruby/test-unit:2[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ruby18] ) ruby_targets_ree18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
DESCRIPTION=A framework to allow Ruby applications to generate file/folder stubs.
|
||||
EAPI=2
|
||||
HOMEPAGE=https://github.com/drnic/rubigen
|
||||
IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc doc test test
|
||||
KEYWORDS=~amd64 ~ppc64 ~x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=ruby_targets_ruby18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ruby18] ) ruby_targets_ree18? ( =dev-ruby/activesupport-2.3*[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://rubygems/rubigen-1.5.6.gem
|
||||
_eclasses_=eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5f4ad6cf85e365e8f0c6050ddd21659e ruby-fakegem 6732f927427c6069df6c4f22271f2c75 ruby-ng 927a565459a62f2839d06e03cfbe1440 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=f4b6603577776d5198199f0a9a954bbc
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=ruby_targets_ruby18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ruby18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ruby18] >=dev-util/cucumber-0.6.2[ruby_targets_ruby18] =dev-ruby/rubigen-1.5.8[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( >=dev-ruby/mocha-0.9.8[ruby_targets_ree18] >=dev-ruby/shoulda-2.10.3[ruby_targets_ree18] >=dev-util/cucumber-0.6.2[ruby_targets_ree18] =dev-ruby/rubigen-1.5.8[ruby_targets_ree18] ) ) test? ( ruby_targets_ruby18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ruby18] <dev-ruby/activesupport-3.2.0[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ree18] <dev-ruby/activesupport-3.2.0[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) )
|
||||
DESCRIPTION=A framework to allow Ruby applications to generate file/folder stubs.
|
||||
EAPI=4
|
||||
HOMEPAGE=https://github.com/drnic/rubigen
|
||||
IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 test test
|
||||
KEYWORDS=~amd64 ~ppc64 ~x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ruby18] <dev-ruby/activesupport-3.2.0[ruby_targets_ruby18] ) ruby_targets_ree18? ( >=dev-ruby/activesupport-2.3[ruby_targets_ree18] <dev-ruby/activesupport-3.2.0[ruby_targets_ree18] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] )
|
||||
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ree18 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://rubygems/rubigen-1.5.8.gem
|
||||
_eclasses_=eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5f4ad6cf85e365e8f0c6050ddd21659e ruby-fakegem 6732f927427c6069df6c4f22271f2c75 ruby-ng 927a565459a62f2839d06e03cfbe1440 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=9ca9fe829cc8fdc67b77a9faf5f6931f
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare setup test unpack
|
||||
DEPEND=test? ( media-sound/id3v2 ) ruby_targets_ruby18? ( doc? ( dev-ruby/hoe[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/hoe[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/hoe[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/hoe[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/hoe[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/hoe[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/hoe[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/hoe[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) )
|
||||
DESCRIPTION=A pure Ruby library for access to mp3 files (internal infos and tags)
|
||||
EAPI=4
|
||||
HOMEPAGE=http://rubyforge.org/projects/ruby-mp3info/
|
||||
IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby doc doc test test
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] )
|
||||
REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/moumar/ruby-mp3info/tarball/v0.7 -> ruby-mp3info-0.7.tgz
|
||||
_eclasses_=eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 java-utils-2 b173b5d55bfd6e328939985bc54a1c9e multilib 5f4ad6cf85e365e8f0c6050ddd21659e ruby-fakegem 6732f927427c6069df6c4f22271f2c75 ruby-ng 927a565459a62f2839d06e03cfbe1440 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=8464620f9fe47ba0fd74c0c207c88926
|
@ -1,13 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
||||
DEPEND=>=media-libs/taglib-1.6 musicbrainz? ( media-libs/tunepimp ) >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc dev-util/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.7.4:4[aqua=]
|
||||
DEPEND=>=media-libs/taglib-1.6 >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc dev-util/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.7.4:4[aqua=]
|
||||
DESCRIPTION=Jukebox and music manager for KDE.
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.kde.org/
|
||||
IUSE=debug musicbrainz +handbook aqua
|
||||
IUSE=debug +handbook aqua
|
||||
KEYWORDS=amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=media-libs/taglib-1.6 musicbrainz? ( media-libs/tunepimp ) >=kde-base/oxygen-icons-4.7.4:4[aqua=] handbook? ( >=kde-base/kdelibs-4.7.4:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.7.4:4[aqua=]
|
||||
RDEPEND=>=media-libs/taglib-1.6 >=kde-base/oxygen-icons-4.7.4:4[aqua=] handbook? ( >=kde-base/kdelibs-4.7.4:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.0:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.0:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.0:4[accessibility] >=x11-libs/qt-script-4.7.0:4 >=x11-libs/qt-sql-4.7.0:4[qt3support] >=x11-libs/qt-svg-4.7.0:4 >=x11-libs/qt-test-4.7.0:4 >=x11-libs/qt-webkit-4.7.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.7.4:4[aqua=]
|
||||
SLOT=4
|
||||
SRC_URI=mirror://kde/stable/4.7.4/src/kdemultimedia-4.7.4.tar.bz2
|
||||
_eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f cmake-utils d9f3f2f6cc1a1d6ad8e31702e44133e5 eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 66cb710a2aa184a5687fe1289d7973ab gnome2-utils b5ca2ccadb60760889faa3bccba121d9 kde4-base d1cafac76ad67afc7cec0c2a56ef65b9 kde4-functions 3fc7b5d60204b49948f87741ba8cea55 kde4-meta 2640df74d590479714f17c9c649380f9 multilib 5f4ad6cf85e365e8f0c6050ddd21659e toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9
|
||||
_md5_=5ae5ef93bfe46108646a777e1b941fb8
|
||||
_md5_=caf2a88172c97ff68a38161dfa3bf4d5
|
||||
|
@ -1,13 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack
|
||||
DEPEND=>=media-libs/taglib-1.6 musicbrainz? ( media-libs/tunepimp ) >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc dev-util/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.8.1:4[aqua=]
|
||||
DEPEND=>=media-libs/taglib-1.6 >=sys-apps/sed-4 >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc dev-util/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.8.1:4[aqua=]
|
||||
DESCRIPTION=Jukebox and music manager for KDE.
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.kde.org/
|
||||
IUSE=debug musicbrainz +handbook aqua
|
||||
IUSE=debug +handbook aqua
|
||||
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=media-libs/taglib-1.6 musicbrainz? ( media-libs/tunepimp ) >=kde-base/oxygen-icons-4.8.1:4[aqua=] handbook? ( >=kde-base/kdelibs-4.8.1:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.8.1:4[aqua=]
|
||||
RDEPEND=>=media-libs/taglib-1.6 >=kde-base/oxygen-icons-4.8.1:4[aqua=] handbook? ( >=kde-base/kdelibs-4.8.1:4[aqua=,handbook] ) dev-lang/perl >=x11-libs/qt-core-4.7.4:4[qt3support,ssl] >=x11-libs/qt-gui-4.7.4:4[accessibility,dbus] >=x11-libs/qt-qt3support-4.7.4:4[accessibility] >=x11-libs/qt-script-4.7.4:4 >=x11-libs/qt-sql-4.7.4:4[qt3support] >=x11-libs/qt-svg-4.7.4:4 >=x11-libs/qt-test-4.7.4:4 >=x11-libs/qt-webkit-4.7.4:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.8.1:4[aqua=]
|
||||
SLOT=4
|
||||
SRC_URI=mirror://kde/stable/4.8.1/src/kdemultimedia-4.8.1.tar.xz
|
||||
_eclasses_=base 5f35078c26d6c60556d5c8a2feb4f84f cmake-utils d9f3f2f6cc1a1d6ad8e31702e44133e5 eutils 6891f6f484e3b44a0a15e1b0c0fc9a14 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 66cb710a2aa184a5687fe1289d7973ab gnome2-utils b5ca2ccadb60760889faa3bccba121d9 kde4-base d1cafac76ad67afc7cec0c2a56ef65b9 kde4-functions 3fc7b5d60204b49948f87741ba8cea55 kde4-meta 2640df74d590479714f17c9c649380f9 multilib 5f4ad6cf85e365e8f0c6050ddd21659e toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 32a09e82e2f592bf88ad2fd08525166e versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 0c41ff55e46b959d9457dde69e7a09d9
|
||||
_md5_=6b2606f2bb7d1d6a5406b4e7b41a8455
|
||||
_md5_=e46ae2a8468b46b516ca2aa0009d8117
|
||||
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=configure postinst postrm
|
||||
DEPEND=>=dev-libs/glib-2 dev-util/desktop-file-utils sys-apps/dbus x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/startup-notification dev-util/intltool dev-util/pkgconfig sys-devel/gettext
|
||||
DESCRIPTION=a multi-panel tabbed file manager
|
||||
EAPI=4
|
||||
HOMEPAGE=http://spacefm.sourceforge.net/
|
||||
IUSE=fam gtk kde kernel_linux su udev
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2 LGPL-2.1
|
||||
RDEPEND=>=dev-libs/glib-2 dev-util/desktop-file-utils sys-apps/dbus x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/startup-notification virtual/eject virtual/freedesktop-icon-theme x11-misc/shared-mime-info !kernel_linux? ( fam? ( virtual/fam ) ) udev? ( sys-fs/udisks:0 sys-process/lsof ) su? ( gtk? ( x11-libs/gksu ) kde? ( kde-base/kdesu ) || ( x11-misc/ktsuss x11-libs/gksu kde-base/kdesu ) )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/spacefm/spacefm-0.7.4.tar.xz
|
||||
_eclasses_=fdo-mime 0acfe1a88fd8751a1d5dc671168219fa
|
||||
_md5_=753bbada46463cda45d707d803fa61a5
|
@ -1 +1 @@
|
||||
Tue, 03 Apr 2012 04:36:59 +0000
|
||||
Tue, 03 Apr 2012 09:36:59 +0000
|
||||
|
@ -1 +1 @@
|
||||
Tue Apr 3 04:36:57 UTC 2012
|
||||
Tue Apr 3 09:36:57 UTC 2012
|
||||
|
@ -1 +1 @@
|
||||
Tue, 03 Apr 2012 05:00:01 +0000
|
||||
Tue, 03 Apr 2012 10:00:01 +0000
|
||||
|
@ -1 +1 @@
|
||||
1333427701 Tue Apr 3 04:35:01 2012 UTC
|
||||
1333445702 Tue Apr 3 09:35:02 2012 UTC
|
||||
|
@ -0,0 +1,10 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation.
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/profiles/desc/imobiledevice_backend.desc,v 1.1 2012/04/03 04:58:15 ssuominen Exp $
|
||||
|
||||
# This file contains descriptions of IMOBILEDEVICE_BACKEND USE_EXPAND flags.
|
||||
|
||||
# Keep it sorted.
|
||||
|
||||
gnutls - Use GnuTLS as imobiledevice backend
|
||||
openssl - Use OpenSSL as imobiledevice backend
|
@ -1,6 +1,6 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.1.10.54.ebuild,v 1.1 2012/04/01 17:00:28 zmedico Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.1.10.55.ebuild,v 1.1 2012/04/03 07:04:08 zmedico Exp $
|
||||
|
||||
# Require EAPI 2 since we now require at least python-2.6 (for python 3
|
||||
# syntax support) which also requires EAPI 2.
|
@ -1,6 +1,6 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.0_alpha98.ebuild,v 1.1 2012/04/01 17:01:21 zmedico Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.0_alpha99.ebuild,v 1.1 2012/04/03 07:05:27 zmedico Exp $
|
||||
|
||||
# Require EAPI 2 since we now require at least python-2.6 (for python 3
|
||||
# syntax support) which also requires EAPI 2.
|
@ -1,3 +1,4 @@
|
||||
DIST spacefm-0.7.1.tar.xz 804792 RMD160 dc3b3ba2f5bb7bcd8e6e220cb1d45c9509b2e7ed SHA1 0f181c0cc6456a4c7f4275d860e489f8cc70aa77 SHA256 19b74f2fb24d56ccb04a7192bc252b0ae19fe0eb1dee55b7087a0572fff04caa
|
||||
DIST spacefm-0.7.2.tar.xz 801392 RMD160 85d23e6cd1639f632318413865b2c4eef0777954 SHA1 886e5596fdb23b2d4c7bc67039f973f76249e85b SHA256 de545921259f94b0d3b830341e6afbeb1efac835d2e0a315415cbf001157e6d8
|
||||
DIST spacefm-0.7.3.tar.xz 946444 RMD160 5eacaaae03da08982b5a52df8020e89047815db6 SHA1 5872854265e842afaecb5ef528711cbec13506ba SHA256 d96ffeb6bc57fd3435da411d05149a05f0df98fad7f482177b2c8e5491d13923
|
||||
DIST spacefm-0.7.4.tar.xz 948208 RMD160 d88a0f0527fe3479d5e9cff5f87150b70d0fe90d SHA1 72829b4aa7ca5e3b7502608af664cbe161bf1bdc SHA256 54013950f0ade9449e8118110c1c5ce9daaaa48a8a48fdba433e0d6c9540ecb3
|
||||
|
@ -0,0 +1,57 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/x11-misc/spacefm/spacefm-0.7.4.ebuild,v 1.2 2012/04/03 05:55:55 ssuominen Exp $
|
||||
|
||||
EAPI=4
|
||||
inherit fdo-mime
|
||||
|
||||
DESCRIPTION="a multi-panel tabbed file manager"
|
||||
HOMEPAGE="http://spacefm.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2 LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="fam gtk kde kernel_linux su udev"
|
||||
|
||||
COMMON_DEPEND=">=dev-libs/glib-2
|
||||
dev-util/desktop-file-utils
|
||||
sys-apps/dbus
|
||||
x11-libs/gdk-pixbuf
|
||||
x11-libs/gtk+:2
|
||||
x11-libs/startup-notification"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
virtual/eject
|
||||
virtual/freedesktop-icon-theme
|
||||
x11-misc/shared-mime-info
|
||||
!kernel_linux? ( fam? ( virtual/fam ) )
|
||||
udev? (
|
||||
sys-fs/udisks:0
|
||||
sys-process/lsof
|
||||
)
|
||||
su? (
|
||||
gtk? ( x11-libs/gksu )
|
||||
kde? ( kde-base/kdesu )
|
||||
|| ( x11-misc/ktsuss x11-libs/gksu kde-base/kdesu )
|
||||
)"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
dev-util/intltool
|
||||
dev-util/pkgconfig
|
||||
sys-devel/gettext"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--htmldir=/usr/share/doc/${PF}/html \
|
||||
--disable-hal \
|
||||
$(use_enable kernel_linux inotify)
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fdo-mime_desktop_database_update
|
||||
fdo-mime_mime_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
fdo-mime_desktop_database_update
|
||||
fdo-mime_mime_database_update
|
||||
}
|
Loading…
Reference in new issue