Sync with portage [Tue Apr 23 00:55:02 MSK 2013].
This commit is contained in:
parent
26471fe93c
commit
8de558d5b7
183 changed files with 3356 additions and 1164 deletions
82
app-admin/elektra/elektra-0.7.1-r4.ebuild
Normal file
82
app-admin/elektra/elektra-0.7.1-r4.ebuild
Normal file
|
@ -0,0 +1,82 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/elektra/elektra-0.7.1-r4.ebuild,v 1.1 2013/04/22 14:17:35 xmw Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit autotools autotools-multilib eutils multilib
|
||||
|
||||
DESCRIPTION="universal and secure framework to store config parameters in a hierarchical key-value pair mechanism"
|
||||
HOMEPAGE="http://freedesktop.org/wiki/Software/Elektra"
|
||||
SRC_URI="ftp://ftp.markus-raab.org/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="gcov iconv static-libs test"
|
||||
|
||||
RDEPEND="!amd64? ( dev-libs/libxml2 )
|
||||
amd64? (
|
||||
abi_x86_64? ( dev-libs/libxml2 )
|
||||
abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) )"
|
||||
DEPEND="${RDEPEND}
|
||||
!amd64? ( sys-devel/libtool )
|
||||
amd64? ( abi_x86_64? ( sys-devel/libtool ) )
|
||||
iconv? ( virtual/libiconv )
|
||||
!amd64? ( test? ( dev-libs/libxml2[static-libs] ) )"
|
||||
|
||||
src_prepare() {
|
||||
einfo 'Removing bundled libltdl'
|
||||
rm -rf libltdl || die
|
||||
|
||||
epatch \
|
||||
"${FILESDIR}"/${P}-test.patch \
|
||||
"${FILESDIR}"/${P}-ltdl.patch \
|
||||
"${FILESDIR}"/${P}-automake-1.12.patch \
|
||||
"${FILESDIR}"/${P}-remove-ddefault-link.patch
|
||||
|
||||
touch config.rpath
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# berkeleydb, daemon, fstab, gconf, python do not work
|
||||
# avoid collision with kerberos (bug 403025, 447246)
|
||||
local myeconfargs=(
|
||||
--enable-filesys
|
||||
--enable-hosts
|
||||
--enable-ini
|
||||
--enable-passwd
|
||||
--disable-berkeleydb
|
||||
--disable-fstab
|
||||
--disable-gconf
|
||||
--disable-daemon
|
||||
--enable-cpp
|
||||
--disable-python
|
||||
$(use_enable gcov)
|
||||
$(use_enable iconv)
|
||||
$(use_enable static-libs static)
|
||||
--with-docdir=/usr/share/doc/${PF}
|
||||
--with-develdocdir=/usr/share/doc/${PF}a
|
||||
--includedir=/usr/include/${PN}
|
||||
)
|
||||
autotools-multilib_src_configure
|
||||
dodir /usr/share/man/man3
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-multilib_src_install
|
||||
|
||||
#avoid collision with allegro (bug 409305)
|
||||
local my_f=""
|
||||
for my_f in $(find "${D}"/usr/share/man/man3 -name "key.3*") ; do
|
||||
mv "${my_f}" "${my_f/key/elektra-key}" || die
|
||||
elog "/usr/share/man/man3/$(basename "${my_f}") installed as $(basename "${my_f/key/elektra-key}")"
|
||||
done
|
||||
|
||||
if ! use static-libs; then
|
||||
find "${D}" -name "*.a" -delete || die
|
||||
fi
|
||||
|
||||
dodoc AUTHORS ChangeLog NEWS README TODO
|
||||
}
|
82
app-admin/elektra/elektra-0.8.3-r2.ebuild
Normal file
82
app-admin/elektra/elektra-0.8.3-r2.ebuild
Normal file
|
@ -0,0 +1,82 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/elektra/elektra-0.8.3-r2.ebuild,v 1.1 2013/04/22 14:17:35 xmw Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit cmake-multilib eutils
|
||||
|
||||
DESCRIPTION="universal and secure framework to store config parameters in a hierarchical key-value pair mechanism"
|
||||
HOMEPAGE="http://freedesktop.org/wiki/Software/Elektra"
|
||||
SRC_URI="ftp://ftp.markus-raab.org/${PN}/releases/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="dbus doc examples iconv inifile simpleini static-libs syslog tcl test xml yajl"
|
||||
|
||||
RDEPEND="!amd64? ( dev-libs/libxml2 )
|
||||
amd64? (
|
||||
abi_x86_64? ( dev-libs/libxml2 )
|
||||
abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) )"
|
||||
DEPEND="${RDEPEND}
|
||||
!amd64? ( sys-devel/libtool )
|
||||
doc? ( app-doc/doxygen )
|
||||
iconv? ( virtual/libiconv )
|
||||
!amd64? ( test? ( dev-libs/libxml2[static-libs] ) )
|
||||
yajl? ( <dev-libs/yajl-2 )"
|
||||
|
||||
src_configure() {
|
||||
local my_plugins="ccode;dump;error;fstab;glob;hexcode;hidden;hosts;network;ni;null;path;resolver;struct;success;template;timeofday;tracer;type;validation"
|
||||
|
||||
#fix QA issues with upstream patches
|
||||
epatch "${FILESDIR}/${P}-introduce-attributes.patch"
|
||||
epatch "${FILESDIR}/${P}-fix-yajl-if-user-config.patch"
|
||||
|
||||
#move doc files to correct location
|
||||
sed -e "s/elektra-api/${PF}/" \
|
||||
-i cmake/ElektraCache.cmake || die
|
||||
|
||||
use dbus && my_plugins+=";dbus"
|
||||
use doc && my_plugins+=";doc"
|
||||
use iconv && my_plugins+=";iconv"
|
||||
use inifile && my_plugins+=";simpleini"
|
||||
use syslog && my_plugins+=";syslog"
|
||||
use tcl && my_plugins+=";tcl"
|
||||
use xml && my_plugins+=";xmltool"
|
||||
use yajl && my_plugins+=";yajl"
|
||||
|
||||
mycmakeargs=(
|
||||
"-DPLUGINS=${my_plugins}"
|
||||
"-DLATEX_COMPILER=OFF"
|
||||
"-DTARGET_CMAKE_FOLDER=share/cmake/Modules"
|
||||
$(cmake-utils_use doc BUILD_DOCUMENTATION)
|
||||
$(cmake-utils_use examples BUILD_EXAMPLES)
|
||||
$(cmake-utils_use static-libs BUILD_STATIC)
|
||||
$(cmake-utils_use test BUILD_TESTING)
|
||||
)
|
||||
|
||||
cmake-multilib_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
dodir /usr/share/man/man3
|
||||
cmake-multilib_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-multilib_src_install
|
||||
|
||||
dodoc doc/{AUTHORS,CHANGES,NEWS,README,todo/TODO}
|
||||
|
||||
if use doc ; then
|
||||
rm -rf "${D}/usr/share/doc/${PF}/man" || die
|
||||
pushd ${CMAKE_BUILD_DIR}/doc/man/man3
|
||||
local my_f
|
||||
for my_f in *.3 ; do
|
||||
newman ${my_f} ${PN}-${my_f}
|
||||
elog "installed /usr/share/man/man3/${my_f} as ${PN}-${my_f}"
|
||||
done
|
||||
popd
|
||||
fi
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-lib-bin-symlink/eselect-lib-bin-symlink-0.1.1.ebuild,v 1.9 2013/04/22 09:09:38 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-lib-bin-symlink/eselect-lib-bin-symlink-0.1.1.ebuild,v 1.11 2013/04/22 17:10:54 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -12,7 +12,7 @@ SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="app-admin/eselect"
|
||||
|
|
|
@ -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/eselect-notify-send/eselect-notify-send-0.1.ebuild,v 1.8 2013/04/22 09:11:39 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-notify-send/eselect-notify-send-0.1.ebuild,v 1.9 2013/04/22 17:12:40 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -10,7 +10,7 @@ SRC_URI=""
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
|
||||
KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=app-admin/eselect-lib-bin-symlink-0.1.1
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
DIST sagan-0.2.0.tar.gz 329728 SHA256 cda2d1e4c0e93403469d21af672957302eabebade346a1f67036ae7427f3e399 SHA512 1dcba5193398578f00de10f0487262017a4476fd61232ab5bc9198a759cc3afc25ef63b726b33bdacc2fcd2d21fffd241ae9fc2074db5894e2ba6d7f38055e6e WHIRLPOOL 6e6eaa7465c788ac0b8be2248e8e2a72db9b28e1fa18f95cd3a1e9a2736c6acc192db3bca0a5405f3da2f95c55d87a96b2bbe5ebcf55700fd5e5cdb3842a65c6
|
||||
DIST sagan-0.2.1.tar.gz 805823 SHA256 6c4fe7128a01c6f309bd181563c54cdf0abf2f623db78e0207f9c69176b15858 SHA512 fb2feded7bdc913ba5e7ffef6155c17811c2690fde44714674b555092fb96137acf3e4df2d72c3d96f9b80329f3af93e3b99874c34e9587bd1e6e3d89c8926c5 WHIRLPOOL c764dd48caaf12dff6273fcf0398aeeff748a636b8ebf9b460dc19b1f3bec600a2b3d4de9d2b638130499b9f011234b11638e76d651c2e5dc8cbf52714e5a2b9
|
||||
DIST sagan-0.2.2-r2.tar.gz 247104 SHA256 be6670e0348dc0beeeed08b50a5997ba69a5996bdbf2603dfb0c8f80c88c0065 SHA512 aa724386d42862329ca2f3b4ff1ffcd0f984e17161fbfa26d06343805d51b9504af076efc518b8b56bdfd75ca349387a777f5128a93dc42fb6ea793cee0d580b WHIRLPOOL 9bc8e011bde5e7eb1d588f45d9e0d8a23807094c9cdc6b75af65b07075054ff62549a92cda6a596e37de218ea24cda44519abc4134c4bef3b7511e838468de3d
|
||||
DIST sagan-0.2.3.tar.gz 231774 SHA256 fc50697cf8ce0fe7c1c662a57a9526710e649c2bf8088acdef46010e06e5ddf2 SHA512 2110f3d34db69cb5c453b8e37d06debeea7531ebf15a9b78954ac1657ddce34feaaff87d14695759c3deb2eed5ecc0e6fec5881fb5037af8efa6c3c9600242cc WHIRLPOOL 417d78263a907c89a865a41228ffc6e2184e1d37d1d583ee0c42da991c411cd40e99b2d537e11a7712615643f57b406439cb5af84a1eacc12a2ef7ca96c72533
|
||||
|
|
|
@ -1,23 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>proxy-maintainers</herd>
|
||||
<maintainer>
|
||||
<email>andreis.vinogradovs@gmail.com</email>
|
||||
<name>Andreis Vinogradovs</name>
|
||||
</maintainer>
|
||||
<maintainer>
|
||||
<email>maksbotan@gentoo.org</email>
|
||||
</maintainer>
|
||||
<maintainer>
|
||||
<email>qnikst@gentoo.org</email>
|
||||
<name>Alexander Vershilov</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name='smtp'>Build witch SMTP (E-Mail) support</flag>
|
||||
<flag name='lognorm'>Add support for log/rules normalizations via <pkg>dev-libs/liblognorm</pkg></flag>
|
||||
<flag name='pcap'>Add support for network packet capture via <pkg>net-libs/libpcap</pkg></flag>
|
||||
<flag name='libdnet'>Add support for <pkg>dev-libs/libdnet</pkg></flag>
|
||||
<flag name='snort'>Add support to interact with Snort IDE using <pkg>net-analyzer/snortsam</pkg>'</flag>
|
||||
</use>
|
||||
<herd>proxy-maintainers</herd>
|
||||
<maintainer>
|
||||
<email>andreis.vinogradovs@gmail.com</email>
|
||||
<name>Andreis Vinogradovs</name>
|
||||
</maintainer>
|
||||
<maintainer>
|
||||
<email>maksbotan@gentoo.org</email>
|
||||
<name>Maxim Koltsov</name>
|
||||
</maintainer>
|
||||
<maintainer>
|
||||
<email>qnikst@gentoo.org</email>
|
||||
<name>Alexander Vershilov</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name='smtp'>Build witch SMTP (E-Mail) support</flag>
|
||||
<flag name='lognorm'>Add support for log/rules normalizations via <pkg>dev-libs/liblognorm</pkg></flag>
|
||||
<flag name='pcap'>Add support for network packet capture via <pkg>net-libs/libpcap</pkg></flag>
|
||||
<flag name='libdnet'>Add support for <pkg>dev-libs/libdnet</pkg></flag>
|
||||
<flag name='snort'>Add support to interact with Snort IDE using <pkg>net-analyzer/snortsam</pkg>'</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
86
app-admin/sagan/sagan-0.2.3.ebuild
Normal file
86
app-admin/sagan/sagan-0.2.3.ebuild
Normal file
|
@ -0,0 +1,86 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/sagan/sagan-0.2.3.ebuild,v 1.1 2013/04/22 15:26:02 pinkbyte Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
AUTOTOOLS_AUTORECONF=1
|
||||
AUTOTOOLS_IN_SOURCE_BUILD=1
|
||||
|
||||
inherit eutils autotools-utils user
|
||||
|
||||
DESCRIPTION="Sagan is a multi-threaded, real time system and event log monitoring system"
|
||||
HOMEPAGE="http://sagan.quadrantsec.com/"
|
||||
SRC_URI="http://sagan.quadrantsec.com/download/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="+libdnet +lognorm mysql +pcap postgres smtp snort"
|
||||
|
||||
RDEPEND="dev-libs/libpcre
|
||||
app-admin/sagan-rules[lognorm?]
|
||||
smtp? ( net-libs/libesmtp )
|
||||
pcap? ( net-libs/libpcap )
|
||||
mysql? ( virtual/mysql )
|
||||
postgres? ( dev-db/postgresql-base )
|
||||
lognorm? ( dev-libs/liblognorm )
|
||||
libdnet? ( dev-libs/libdnet )
|
||||
snort? ( >=net-analyzer/snortsam-2.50 )
|
||||
"
|
||||
|
||||
DEPEND="virtual/pkgconfig
|
||||
${RDEPEND}"
|
||||
|
||||
DOCS=( AUTHORS ChangeLog FAQ INSTALL README NEWS TODO )
|
||||
PATCHES=( "${FILESDIR}"/mysql_check.patch )
|
||||
|
||||
pkg_setup() {
|
||||
enewgroup sagan
|
||||
enewuser sagan -1 -1 /dev/null sagan
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
$(use_enable mysql)
|
||||
$(use_enable postgres postgresql)
|
||||
$(use_enable smtp esmtp)
|
||||
$(use_enable lognorm)
|
||||
$(use_enable libdnet)
|
||||
$(use_enable pcap libpcap)
|
||||
$(use_enable snort snortsam)
|
||||
--disable-prelude
|
||||
)
|
||||
|
||||
autotools-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-utils_src_install
|
||||
|
||||
diropts -g sagan -o sagan -m 775
|
||||
|
||||
dodir /var/log/sagan
|
||||
|
||||
keepdir /var/log/sagan
|
||||
|
||||
touch "${ED}"/var/log/sagan/sagan.log
|
||||
chown sagan.sagan "${ED}"/var/log/sagan/sagan.log
|
||||
|
||||
newinitd "${FILESDIR}"/sagan.init sagan
|
||||
newconfd "${FILESDIR}"/sagan.confd sagan
|
||||
|
||||
insinto /usr/share/doc/${PF}/examples
|
||||
doins -r extra/*
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use smtp; then
|
||||
ewarn "You have enabled smtp use flag. If you plan on using Sagan with"
|
||||
ewarn "email, create valid writable home directory for user 'sagan'"
|
||||
ewarn "For security reasons it was created with /dev/null home directory"
|
||||
fi
|
||||
|
||||
einfo "For configuration assistance see"
|
||||
einfo "http://wiki.quadrantsec.com/bin/view/Main/SaganHOWTO"
|
||||
}
|
177
app-admin/setools/setools-3.3.8-r2.ebuild
Normal file
177
app-admin/setools/setools-3.3.8-r2.ebuild
Normal file
|
@ -0,0 +1,177 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/setools/setools-3.3.8-r2.ebuild,v 1.1 2013/04/22 18:36:25 swift Exp $
|
||||
|
||||
EAPI="2"
|
||||
PYTHON_DEPEND="python? *"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="*-jython *-pypy-* 3.*"
|
||||
|
||||
inherit autotools java-pkg-opt-2 python eutils
|
||||
|
||||
DESCRIPTION="SELinux policy tools"
|
||||
HOMEPAGE="http://www.tresys.com/selinux/selinux_policy_tools.shtml"
|
||||
SRC_URI="http://oss.tresys.com/projects/setools/chrome/site/dists/${P}/${P}.tar.bz2
|
||||
http://dev.gentoo.org/~swift/patches/setools/${P}-01-fedora-patches.tar.gz
|
||||
http://dev.gentoo.org/~swift/patches/setools/${P}-01-gentoo-patches.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="X debug java python"
|
||||
|
||||
DEPEND=">=sys-libs/libsepol-2.1.4
|
||||
sys-libs/libselinux
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
>=dev-db/sqlite-3.2:3
|
||||
dev-libs/libxml2:2
|
||||
virtual/pkgconfig
|
||||
java? (
|
||||
dev-lang/swig:1
|
||||
>=virtual/jdk-1.4
|
||||
)
|
||||
python? ( dev-lang/swig:1 )
|
||||
X? (
|
||||
>=dev-lang/tk-8.4.9
|
||||
>=gnome-base/libglade-2.0
|
||||
>=x11-libs/gtk+-2.8:2
|
||||
)"
|
||||
|
||||
RDEPEND=">=sys-libs/libsepol-2.1.4
|
||||
sys-libs/libselinux
|
||||
>=dev-db/sqlite-3.2:3
|
||||
dev-libs/libxml2:2
|
||||
java? ( >=virtual/jre-1.4 )
|
||||
X? (
|
||||
>=dev-lang/tk-8.4.9
|
||||
>=dev-tcltk/bwidget-1.8
|
||||
>=gnome-base/libglade-2.0
|
||||
>=x11-libs/gtk+-2.8:2
|
||||
)"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
pkg_setup() {
|
||||
if use java; then
|
||||
java-pkg-opt-2_pkg_setup
|
||||
fi
|
||||
|
||||
if use python; then
|
||||
python_pkg_setup
|
||||
PYTHON_DIRS="libapol/swig/python libpoldiff/swig/python libqpol/swig/python libseaudit/swig/python libsefs/swig/python python"
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
EPATCH_MULTI_MSG="Applying various (Fedora-provided) setools fixes... " \
|
||||
EPATCH_SUFFIX="patch" \
|
||||
EPATCH_SOURCE="${WORKDIR}" \
|
||||
EPATCH_FORCE="yes" \
|
||||
epatch
|
||||
|
||||
EPATCH_MULTI_MSG="Applying various (Gentoo) setool fixes... " \
|
||||
EPATCH_SUFFIX="patch" \
|
||||
EPATCH_SOURCE="${WORKDIR}/gentoo-patches" \
|
||||
EPATCH_FORCE="yes" \
|
||||
epatch
|
||||
|
||||
# Disable broken check for SWIG version.
|
||||
sed -e "s/AC_PROG_SWIG(2.0.0)/AC_PROG_SWIG/" -i configure.ac || die "sed failed"
|
||||
# Use swig1.3
|
||||
sed -e 's/AC_PATH_PROG(\[SWIG\],\[swig\])/AC_PATH_PROG([SWIG],[swig1.3])/' -i m4/ac_pkg_swig.m4 || die "failed to set swig1.3"
|
||||
# Fix build failure due to double __init__.py installation
|
||||
sed -e "s/^wrappedpy_DATA = qpol.py \$(pkgpython_PYTHON)/wrappedpy_DATA = qpol.py/" -i libqpol/swig/python/Makefile.am || die
|
||||
|
||||
local dir
|
||||
for dir in ${PYTHON_DIRS}; do
|
||||
# Python bindings are built/installed manually.
|
||||
sed -e "s/MAYBE_PYSWIG = python/MAYBE_PYSWIG =/" -i ${dir%python}Makefile.am || die "sed failed"
|
||||
# Make PYTHON_LDFLAGS replaceable during running `make`.
|
||||
sed -e "/^AM_LDFLAGS =/s/@PYTHON_LDFLAGS@/\$(PYTHON_LDFLAGS)/" -i ${dir}/Makefile.am || die "sed failed"
|
||||
done
|
||||
|
||||
# temporary work around bug #424581 until automake-1.12 is stable (then
|
||||
# depend on it). Need to use MKDIR_P in the mean time for 1.12+.
|
||||
has_version ">=sys-devel/automake-1.12.1" && { find . -name 'Makefile.*' -exec sed -i -e 's:mkdir_p:MKDIR_P:g' {} + || die; }
|
||||
|
||||
eautoreconf
|
||||
|
||||
# Disable byte-compilation of Python modules.
|
||||
echo '#!/bin/sh' > py-compile
|
||||
|
||||
epatch_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-java-prefix=${JAVA_HOME} \
|
||||
--disable-selinux-check \
|
||||
--disable-bwidget-check \
|
||||
$(use_enable python swig-python) \
|
||||
$(use_enable java swig-java) \
|
||||
$(use_enable X swig-tcl) \
|
||||
$(use_enable X gui) \
|
||||
$(use_enable debug)
|
||||
|
||||
# work around swig c99 issues. it does not require
|
||||
# c99 anyway.
|
||||
sed -i -e 's/-std=gnu99//' "${S}/libseaudit/swig/python/Makefile"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake || die "Failed to build setools"
|
||||
|
||||
if use python; then
|
||||
local dir
|
||||
for dir in ${PYTHON_DIRS}; do
|
||||
python_copy_sources ${dir}
|
||||
building() {
|
||||
emake \
|
||||
SWIG_PYTHON_CPPFLAGS="-I$(python_get_includedir)" \
|
||||
PYTHON_LDFLAGS="$(python_get_library -l)" \
|
||||
pyexecdir="$(python_get_sitedir)" \
|
||||
pythondir="$(python_get_sitedir)"
|
||||
}
|
||||
python_execute_function \
|
||||
--action-message "Building of Python bindings from ${dir} directory with \$(python_get_implementation) \$(python_get_version)" \
|
||||
--failure-message "Building of Python bindings from ${dir} directory with \$(python_get_implementation) \$(python_get_version) failed" \
|
||||
-s --source-dir ${dir} \
|
||||
building
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
|
||||
if use python; then
|
||||
local dir
|
||||
for dir in ${PYTHON_DIRS}; do
|
||||
installation() {
|
||||
emake \
|
||||
DESTDIR="${D}" \
|
||||
pyexecdir="$(python_get_sitedir)" \
|
||||
pythondir="$(python_get_sitedir)" \
|
||||
install
|
||||
}
|
||||
python_execute_function \
|
||||
--action-message "Installation of Python bindings from ${dir} directory with \$(python_get_implementation) \$(python_get_version)" \
|
||||
--failure-message "Installation of Python bindings from ${dir} directory with \$(python_get_implementation) \$(python_get_version) failed" \
|
||||
-s --source-dir ${dir} \
|
||||
installation
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use python; then
|
||||
python_mod_optimize setools
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
if use python; then
|
||||
python_mod_cleanup setools
|
||||
fi
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-2.0.2.ebuild,v 1.4 2013/03/23 13:12:26 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-2.0.2.ebuild,v 1.6 2013/04/22 16:02:36 ago Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
|
@ -14,7 +14,7 @@ SRC_URI="http://ftp.netfilter.org/pub/${PN}/${P}.tar.bz2"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
|
||||
KEYWORDS="amd64 ~ia64 ~ppc x86"
|
||||
IUSE="dbi doc mysql nfacct +nfct +nflog pcap postgres sqlite"
|
||||
|
||||
RDEPEND="net-firewall/iptables
|
||||
|
|
|
@ -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-backup/bacula/bacula-5.2.13.ebuild,v 1.4 2013/04/22 09:03:30 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-backup/bacula/bacula-5.2.13.ebuild,v 1.5 2013/04/22 17:10:27 ago Exp $
|
||||
|
||||
EAPI="4"
|
||||
PYTHON_DEPEND="python? 2"
|
||||
|
@ -18,7 +18,7 @@ SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
|
|||
|
||||
LICENSE="AGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~hppa ppc ~sparc x86"
|
||||
KEYWORDS="amd64 ~hppa ppc sparc x86"
|
||||
IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 logwatch mysql postgres python qt4 readline +sqlite3 ssl static tcpd vim-syntax X"
|
||||
|
||||
DEPEND="
|
||||
|
|
|
@ -2,3 +2,4 @@ DIST hashcat-0.39.7z 716387 SHA256 9d86cb175030de5b5872077028456f944c18e94749fc7
|
|||
DIST hashcat-0.40.7z 785935 SHA256 3b587185a3957f7f3e5dfe58a340d0b65bd1ee9d71a6ae5d97009b5bc21150ae SHA512 0c68877111cc3633eea332a992ee4d897fdf7875821668faaf2149d91ce15d0c973d8db83ae407051f530a97a8835338b7acda1c9577e762cef7e6e51c519751 WHIRLPOOL 9f0fed3e1e7b06338ba1a73b19fd54fe53fc9a75aad05d4909d3a2a80de941d6910d30215bb52ae6b6c52f9c3c71a07c523655512b7d7dc5aa5b8076c2131919
|
||||
DIST hashcat-0.41.7z 1013298 SHA256 b0f2f086d30b43bad8d5925e5d7b1758c10afe7a38d963281931dda1a109b8e3 SHA512 414cf3b90699b361050c61280df51f891393831aba2640b3af3e01902562ad720e6e598a04e4e55fa1d81bd05c48f9fc14938ad03eebc96ea6cc5d69b1ada416 WHIRLPOOL 76d3e9126b86477fbb1a194960b917983e8252e90d9481088ff602433ef7bf195c830bac01e68545951dbb7b6a21c834f5d242a98e9598f0ae3a2567f24270b4
|
||||
DIST hashcat-0.42.7z 1027627 SHA256 9894ce812ce2ea2c7715a8550012c5aa95ce5c81d5e0b1c54336bab2963bd975 SHA512 cd46ad3b5346c3b2643e0e85b1c7697fbc673f1aa957ccbce8e0658e4ba22e0dd5ce35330f18cb2eddda9ddd528edb6323825f69d940e2b11d6762f87faff938 WHIRLPOOL 7262de91b9195ebb63181a09a7473e00a519233c97cde6b929ecd3733b219efefea88ff3cda10b8c3f9a38a7324402288e7d18ade5227b40903a37a0f21f1faa
|
||||
DIST hashcat-0.44.7z 1132252 SHA256 69c1d71ed4d46cc04b798b1ea1cd09b32398eef683445d8ad94a0cf083efed73 SHA512 3d1fbbb447e6c522a13ad3edff0f741c0c9107f297ab3a9f31b941ca66f1d7a5711c9c35cab3bad31499ba43e967f858cd96073d73c45e80c4228728599aab03 WHIRLPOOL 3e47815fa075e79127500e4075dabc42f28dcd4a0f2bf024f21bc0ebcddec2c148190639d85c0b6030275352000814a9531987246c439d08eb2861067039221e
|
||||
|
|
111
app-crypt/hashcat-bin/hashcat-bin-0.44.ebuild
Normal file
111
app-crypt/hashcat-bin/hashcat-bin-0.44.ebuild
Normal file
|
@ -0,0 +1,111 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashcat-bin/hashcat-bin-0.44.ebuild,v 1.1 2013/04/22 15:31:23 zerochaos Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
MY_P="hashcat-${PV}"
|
||||
|
||||
inherit eutils pax-utils
|
||||
DESCRIPTION="An multi-threaded multihash cracker"
|
||||
HOMEPAGE="http://hashcat.net/hashcat/"
|
||||
|
||||
SRC_URI="http://hashcat.net/files/${MY_P}.7z"
|
||||
|
||||
#license applies to this version per http://hashcat.net/forum/thread-1348.html
|
||||
LICENSE="hashcat"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* ~amd64 ~amd64-linux ~x64-macos ~x86 ~x86-linux"
|
||||
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/p7zip"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
RESTRICT="strip"
|
||||
QA_PREBUILT="opt/${PN}/hashcat-cli*.bin
|
||||
opt/${PN}/hashcat-cli64.app"
|
||||
|
||||
has_xop() {
|
||||
echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __XOP__ 1"
|
||||
}
|
||||
|
||||
has_avx() {
|
||||
echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __AVX__ 1"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodoc docs/*
|
||||
rm -r *.exe docs || die
|
||||
use x86 || { rm hashcat-cli32.bin || die; }
|
||||
use amd64 || { rm hashcat-cli64.bin || die; }
|
||||
use x64-macos || { rm hashcat-cli64.app || die; }
|
||||
has_avx || { rm hashcat-cliAVX.bin || die; }
|
||||
has_xop || { rm hashcat-cliXOP.bin || die; }
|
||||
|
||||
#I assume this is needed but I didn't check
|
||||
pax-mark m hashcat-cli*.bin
|
||||
|
||||
insinto /opt/${PN}
|
||||
doins -r "${S}"/*
|
||||
|
||||
dodir /opt/bin
|
||||
if [ -f "${ED}"/opt/${PN}/hashcat-cli32.bin ]
|
||||
then
|
||||
fperms +x /opt/${PN}/hashcat-cli32.bin
|
||||
cat <<-EOF > "${ED}"/opt/bin/hashcat-cli32.bin
|
||||
#! /bin/sh
|
||||
cd "${EPREFIX}"/opt/${PN}
|
||||
echo "Warning: hashcat-cli32.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
|
||||
exec ./hashcat-cli32.bin \$@
|
||||
EOF
|
||||
fperms +x /opt/bin/hashcat-cli32.bin
|
||||
fi
|
||||
if [ -f "${ED}"/opt/${PN}/hashcat-cli64.bin ]
|
||||
then
|
||||
fperms +x /opt/${PN}/hashcat-cli64.bin
|
||||
cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.bin
|
||||
#! /bin/sh
|
||||
cd "${EPREFIX}"/opt/${PN}
|
||||
echo "Warning: hashcat-cli64.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
|
||||
exec ./hashcat-cli64.bin \$@
|
||||
EOF
|
||||
fperms +x /opt/bin/hashcat-cli64.bin
|
||||
fi
|
||||
if [ -f "${ED}"/opt/${PN}/hashcat-cliAVX.bin ]
|
||||
then
|
||||
fperms +x /opt/${PN}/hashcat-cliAVX.bin
|
||||
cat <<-EOF > "${ED}"/opt/bin/hashcat-cliAVX.bin
|
||||
#! /bin/sh
|
||||
cd "${EPREFIX}"/opt/${PN}
|
||||
echo "Warning: hashcat-cliAVX.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
|
||||
exec ./hashcat-cliAVX.bin \$@
|
||||
EOF
|
||||
fperms +x /opt/bin/hashcat-cliAVX.bin
|
||||
fi
|
||||
if [ -f "${ED}"/opt/${PN}/hashcat-cliXOP.bin ]
|
||||
then
|
||||
fperms +x /opt/${PN}/hashcat-cliXOP.bin
|
||||
cat <<-EOF > "${ED}"/opt/bin/hashcat-cliXOP.bin
|
||||
#! /bin/sh
|
||||
cd "${EPREFIX}"/opt/${PN}
|
||||
echo "Warning: hashcat-cliXOP.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
|
||||
exec ./hashcat-cliXOP.bin \$@
|
||||
EOF
|
||||
fperms +x /opt/bin/hashcat-cliXOP.bin
|
||||
fi
|
||||
if [ -f "${ED}"/opt/${PN}/hashcat-cli64.app ]
|
||||
then
|
||||
fperms +x /opt/${PN}/hashcat-cli64.app
|
||||
cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.app
|
||||
#! /bin/sh
|
||||
cd "${EPREFIX}"/opt/${PN}
|
||||
echo "Warning: hashcat-cli64.app is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
|
||||
exec ./hashcat-cli64.app \$@
|
||||
EOF
|
||||
fperms +x /opt/bin/hashcat-cli64.app
|
||||
fi
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
DIST ProofGeneral-3.7.1.tgz 2023176 SHA256 e613aa2f24564465f450b06b2d804e6815b220652c9f778e3d3471b644fdaa93 SHA512 5d5f64a2c7a8e9e18ac9927a6bb938fb618c24f9ed566d5dcbe39b5befd45104c9e2cfd11fa620d32e582fb72dc5483bce9cc7e847f5009ceaea97c7ca6d738c WHIRLPOOL 7301c22d86dff0fd6de08de53924ad6f20725aecec15ef1010f2378474d0e4e2ea7a6bff900ba03d87180d605fbf6afc427bb73f70fbe1d7dfca9714525651e2
|
||||
DIST ProofGeneral-4.0.tgz 1351482 SHA256 b8aeefd5619683216ff57bae81236dfab71d43d6eefa371d38749fc43415cfaa SHA512 4e2b431a98a620dd5833f3c16922d85e7bb97b36c692ab973bf38c9bcdf866d77e452f8fe95bd53f96994ccdbd323f2e761ecfbf15cc29671688eeef9f5cd861 WHIRLPOOL 91408a0078f68d0dd2b8572facf19f37cc3941cc92c5641e63bd4a433d0d68361515258f2406cf69f0d483fbc6d246d9e13a52ab404c8863f38ae2ef9ef67552
|
||||
DIST ProofGeneral-4.1.tgz 1428499 SHA256 2a264d46b48185cf1a6ebcca958e59171ea670fb0fc82ba46b8e1d6918ea7dc7 SHA512 f9bb7ef270b5c793f58441db9287b5018176d8d9d91cc9a2a975c1f0d7a450f1c150d21df16f982738f3562c74d5ae05d61fed5b1c1d6a3eb26cab0131d64696 WHIRLPOOL 02a4f2adc4dc39a19b6a4a46e0e2fb8a80e4340f38470c842425b63ee4c946e8f9b91d51eaafbcce01dc39e81009ebf6e327c1faf294249bf7b32a387444d4e8
|
||||
DIST ProofGeneral-4.2.tgz 1613190 SHA256 3567b68077798396ccd55c501b7ea7bd2c4d6300e4c74ff609dc19837d050b27 SHA512 102c56a1bc113439b1fa8aa10efe571d47d68b344d3489fe18ca3bdbf8828bb31fd2302a68a4bd639c59c429d41e82e5d933abddd3444781cb0e8a603db432ab WHIRLPOOL 9c4e54cf3b1528ee6cbdfac19b0c589f0c2640defbac15d5aaf0a1bfd64680bff45d2faa17f669210f47f30debb768d593590d350acac9c2669d24dc109bb4d8
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
https://bugs.gentoo.org/445242
|
||||
http://proofgeneral.inf.ed.ac.uk/trac/ticket/458
|
||||
|
||||
--- ProofGeneral-4.2-orig/Makefile
|
||||
+++ ProofGeneral-4.2/Makefile
|
||||
@@ -62,7 +62,7 @@
|
||||
# only during compilation. Another idea: put a function in proof-site
|
||||
# to output the compile-time load path and ELISP_DIRS so these are set
|
||||
# just in that one place.
|
||||
-BYTECOMP = $(BATCHEMACS) -eval '(setq load-path (append (mapcar (lambda (d) (concat "${PWD}/" (symbol-name d))) (quote (${ELISP_DIRS}))) load-path))' -eval '(progn (require (quote bytecomp)) (require (quote mouse)) (require (quote tool-bar)) (require (quote fontset)) (setq byte-compile-warnings (remove (quote cl-functions) (remove (quote noruntime) byte-compile-warning-types))) (setq byte-compile-error-on-warn t))' -f batch-byte-compile
|
||||
+BYTECOMP = $(BATCHEMACS) -eval '(setq load-path (append (mapcar (lambda (d) (concat "${PWD}/" (symbol-name d))) (quote (${ELISP_DIRS}))) load-path))' -eval '(progn (require (quote bytecomp)) (require (quote mouse)) (require (quote tool-bar)) (require (quote fontset)))' -f batch-byte-compile
|
||||
EL=$(shell for f in $(ELISP_DIRS); do ls $$f/*.el; done)
|
||||
ELC=$(EL:.el=.elc)
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
# 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/app-emacs/proofgeneral/proofgeneral-4.0.ebuild,v 1.2 2010/12/07 01:50:23 ulm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-emacs/proofgeneral/proofgeneral-4.2.ebuild,v 1.1 2013/04/22 19:42:12 ulm Exp $
|
||||
|
||||
EAPI=3
|
||||
EAPI=5
|
||||
NEED_EMACS=23
|
||||
|
||||
inherit elisp
|
||||
|
@ -21,25 +21,27 @@ DEPEND=">=app-emacs/mmm-mode-0.4.8-r2"
|
|||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
ELISP_PATCHES="${P}-bytecomp-warn.patch"
|
||||
SITEFILE="50${PN}-gentoo.el"
|
||||
|
||||
src_prepare() {
|
||||
elisp_src_prepare
|
||||
sed -i -e '/^OTHER_ELISP/s:contrib/mmm::' Makefile || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# removed precompiled lisp files shipped with 4.0
|
||||
# remove precompiled lisp files
|
||||
emake clean
|
||||
emake -j1 compile EMACS=emacs || die
|
||||
emake -j1 compile EMACS=emacs
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake -j1 install EMACS=emacs PREFIX="${D}"/usr || die
|
||||
emake -j1 install EMACS=emacs PREFIX="${D}"/usr
|
||||
elisp-site-file-install "${FILESDIR}/${SITEFILE}" ${MY_PN} || die
|
||||
|
||||
doinfo doc/*.info* || die
|
||||
doman doc/proofgeneral.1 || die
|
||||
dohtml doc/ProofGeneral/*.html doc/PG-adapting/*.html || die
|
||||
doinfo doc/*.info*
|
||||
doman doc/proofgeneral.1
|
||||
dohtml doc/ProofGeneral/*.html doc/PG-adapting/*.html
|
||||
dodoc AUTHORS BUGS CHANGES COMPATIBILITY FAQ INSTALL README REGISTER
|
||||
|
||||
# clean up
|
|
@ -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/crossover-bin/crossover-bin-12.1.2.ebuild,v 1.2 2013/03/27 18:30:31 ryao Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-emulation/crossover-bin/crossover-bin-12.1.2.ebuild,v 1.3 2013/04/22 18:05:45 mgorny Exp $
|
||||
|
||||
EAPI="5"
|
||||
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
|
||||
|
@ -37,7 +37,22 @@ MLIB_DEPS="amd64? (
|
|||
v4l? ( app-emulation/emul-linux-x86-medialibs )
|
||||
app-emulation/emul-linux-x86-baselibs
|
||||
app-emulation/emul-linux-x86-soundlibs
|
||||
app-emulation/emul-linux-x86-xlibs
|
||||
|| (
|
||||
(
|
||||
>=media-libs/freetype-2.0.0[abi_x86_32]
|
||||
x11-libs/libICE[abi_x86_32]
|
||||
x11-libs/libSM[abi_x86_32]
|
||||
x11-libs/libX11[abi_x86_32]
|
||||
x11-libs/libXau[abi_x86_32]
|
||||
x11-libs/libXdmcp[abi_x86_32]
|
||||
x11-libs/libXext[abi_x86_32]
|
||||
x11-libs/libXi[abi_x86_32]
|
||||
x11-libs/libXrandr[abi_x86_32]
|
||||
x11-libs/libXxf86vm[abi_x86_32]
|
||||
x11-libs/libxcb[abi_x86_32]
|
||||
)
|
||||
app-emulation/emul-linux-x86-xlibs
|
||||
)
|
||||
)"
|
||||
|
||||
X86_DEPS="x86? (
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-3.0.2.ebuild,v 1.7 2012/09/12 14:51:30 qnikst Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-3.0.2.ebuild,v 1.8 2013/04/22 17:36:11 slyfox Exp $
|
||||
|
||||
# ebuild generated by hackport 0.2.9
|
||||
|
||||
|
@ -28,6 +28,8 @@ DEPEND="${RDEPEND}
|
|||
>=dev-libs/libxslt-1.1.2 )"
|
||||
|
||||
src_prepare() {
|
||||
HCFLAGS+=-XBangPatterns #fixes build failure on BE platforms; bug 466778
|
||||
|
||||
for f in Scan Parser; do
|
||||
rm "${S}/src/$f."*
|
||||
mv "${S}/dist/build/alex/alex-tmp/$f.hs" "${S}"/src/
|
||||
|
|
|
@ -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-haskell/alex/alex-3.0.5.ebuild,v 1.1 2013/04/02 04:13:22 gienah Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-3.0.5.ebuild,v 1.2 2013/04/22 17:36:11 slyfox Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -28,6 +28,8 @@ DEPEND="${RDEPEND}
|
|||
>=dev-libs/libxslt-1.1.2 )"
|
||||
|
||||
src_prepare() {
|
||||
HCFLAGS+=-XBangPatterns #fixes build failure on BE platforms; bug 466778
|
||||
|
||||
cabal_chdeps \
|
||||
'build-depends: process' 'build-depends: process, base'
|
||||
|
||||
|
|
|
@ -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-java/javatoolkit/javatoolkit-0.3.0-r6.ebuild,v 1.10 2013/04/18 14:22:45 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-java/javatoolkit/javatoolkit-0.3.0-r6.ebuild,v 1.11 2013/04/22 17:15:02 ago Exp $
|
||||
|
||||
EAPI="2"
|
||||
PYTHON_DEPEND="2:2.5"
|
||||
|
@ -16,7 +16,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd"
|
||||
KEYWORDS="amd64 ~arm ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
|
|
38
dev-lang/swig/swig-1.3.40-r2.ebuild
Normal file
38
dev-lang/swig/swig-1.3.40-r2.ebuild
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3.40-r2.ebuild,v 1.1 2013/04/22 18:34:13 swift Exp $
|
||||
|
||||
EAPI="3"
|
||||
DESCRIPTION="Simplified Wrapper and Interface Generator"
|
||||
HOMEPAGE="http://www.swig.org/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD BSD-2"
|
||||
SLOT="1"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="ccache doc"
|
||||
RESTRICT="test"
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
src_prepare () {
|
||||
rm -v aclocal.m4 || die "Unable to remove aclocal.m4"
|
||||
./autogen.sh || die "Autogen script failed"
|
||||
|
||||
# Use swig1.3 as binary instead of swig
|
||||
sed -i -e 's:TARGET_NOEXE= swig:TARGET_NOEXE= swig1.3:' Makefile.in
|
||||
sed -i -e 's:/swig@EXEEXT@:/swig1.3@EXEEXT@:g' Source/Makefile.{am,in}
|
||||
}
|
||||
|
||||
src_configure () {
|
||||
econf \
|
||||
$(use_enable ccache)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "target install failed"
|
||||
dodoc ANNOUNCE CHANGES CHANGES.current FUTURE NEW README TODO || die "dodoc failed"
|
||||
if use doc; then
|
||||
dohtml -r Doc/{Devel,Manual} || die "Failed to install html documentation"
|
||||
fi
|
||||
}
|
|
@ -1,2 +1,3 @@
|
|||
DIST gjs-1.34.0.tar.xz 474004 SHA256 3d62c717a0522a36c6faa1eb021872255e3cd285a72786afe23b7cca2e3084cb SHA512 938134f25f07e7cb9267f0f44944841d93143a3403cf002fc8393a342140b52b6540edfe90e5e0e1f10b40486914535ba6d57bb7c6e9f34ded11cde327293e1d WHIRLPOOL 53f11d800e69ea24b62b7f719118783fa0e397c807ee032baac3485031ae6627e20f7aa7b54fcc9cc850c0041e2b256fac5d076893d4ae5b784aa89b92508432
|
||||
DIST gjs-1.36.0.tar.xz 421836 SHA256 c55680d861d562f89171640c66e5d9ac4cb0c35f1af2495e2f45bbe494b983ca SHA512 d46659659e126de7c1b28ea8c6ace3adbe101e25e519ef93b56ab09c214477eacc915348cd7fc5aadc7bf841d7efdff67428efa3598927fc0a5c4f4e1d1ec20e WHIRLPOOL 17e2321ab67b6bc8715afb9bc6c54ccc60a6b4c4381815cec1e9ceae59c5231a7840330c7f034960181c9773fe3d86213868ceb0a14fee4230d25e49f9c2b79f
|
||||
DIST gjs-1.36.1.tar.xz 404664 SHA256 d259ef2d702fa9cc9948a35d0e701706d90798fd2855657b7e9ddc9a44dfcf87 SHA512 a2110d957f4179927d649b1da712bec7cc19cfeca48093712b7b3e8d81c06ae39752e2cbdec392c05d74343c98259af4b8c9f54448933e7e6143d9f963cfdd89 WHIRLPOOL 02676a5689d01a416775bd3cae50764f045f924c13024e289bc830ce38474585b4868aa758c5584ae715d2fba1422f6db7a92b2e5852117cb2711959d8ae6f0c
|
||||
|
|
63
dev-libs/gjs/gjs-1.36.1.ebuild
Normal file
63
dev-libs/gjs/gjs-1.36.1.ebuild
Normal file
|
@ -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/dev-libs/gjs/gjs-1.36.1.ebuild,v 1.1 2013/04/22 17:53:08 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
GCONF_DEBUG="no"
|
||||
|
||||
inherit gnome2 pax-utils virtualx
|
||||
|
||||
DESCRIPTION="Javascript bindings for GNOME"
|
||||
HOMEPAGE="http://live.gnome.org/Gjs"
|
||||
|
||||
LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
|
||||
SLOT="0"
|
||||
IUSE="+cairo examples"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.36.0:2
|
||||
>=dev-libs/gobject-introspection-1.36.0
|
||||
|
||||
dev-libs/dbus-glib
|
||||
sys-libs/readline
|
||||
>=dev-lang/spidermonkey-1.8.5
|
||||
virtual/libffi
|
||||
cairo? ( x11-libs/cairo )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
# AUTHORS, ChangeLog are empty
|
||||
DOCS="NEWS README"
|
||||
|
||||
# FIXME: add systemtap/dtrace support, like in glib:2
|
||||
# FIXME: --enable-systemtap installs files in ${D}/${D} for some reason
|
||||
# XXX: Do NOT enable coverage, completely useless for portage installs
|
||||
gnome2_src_configure \
|
||||
--disable-systemtap \
|
||||
--disable-dtrace \
|
||||
--disable-coverage \
|
||||
$(use_with cairo cairo)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# Tests need dbus
|
||||
Xemake check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# installation sometimes fails in parallel
|
||||
gnome2_src_install -j1
|
||||
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/"${PF}"/examples
|
||||
doins "${S}"/examples/*
|
||||
fi
|
||||
|
||||
# Required for gjs-console to run correctly on PaX systems
|
||||
pax-mark mr "${ED}/usr/bin/gjs-console"
|
||||
}
|
18
dev-perl/CryptX/CryptX-0.006.ebuild
Normal file
18
dev-perl/CryptX/CryptX-0.006.ebuild
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/CryptX/CryptX-0.006.ebuild,v 1.1 2013/04/22 15:10:22 chainsaw Exp $
|
||||
|
||||
EAPI="5"
|
||||
MODULE_AUTHOR="MIK"
|
||||
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Self-contained crypto toolkit"
|
||||
|
||||
LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-lang/perl
|
||||
virtual/perl-Module-Build"
|
1
dev-perl/CryptX/Manifest
Normal file
1
dev-perl/CryptX/Manifest
Normal file
|
@ -0,0 +1 @@
|
|||
DIST CryptX-0.006.tar.gz 1010671 SHA256 78affdbc28a0ce4de37fcefdf72f2097b2ba34c2e0b9100e1cc8f0b038102f4d SHA512 407b4e3adb406a61fccb14491d2ff794ec3655a1cf78f73c7fe2ea177aa72312f69bcc5d5fa17beefd86661233703194afaec0f1717cb0dc91a1847a7b228bcf WHIRLPOOL 3b85591597cc0f42c0231623c3fe82f044828e5e5a6e975ac53831f6cc1311fd4d97fb9f0becc2564172d41ca0bc89ca2a6e0f254e8af572d1377696930e693a
|
13
dev-perl/CryptX/metadata.xml
Normal file
13
dev-perl/CryptX/metadata.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>chainsaw@gentoo.org</email>
|
||||
<name>Tony Vroon</name>
|
||||
</maintainer>
|
||||
<herd>perl</herd>
|
||||
<upstream>
|
||||
<remote-id type="cpan">CryptX</remote-id>
|
||||
<remote-id type="cpan-module">CryptX</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
1
dev-perl/REST-Client/Manifest
Normal file
1
dev-perl/REST-Client/Manifest
Normal file
|
@ -0,0 +1 @@
|
|||
DIST REST-Client-249.tar.gz 22555 SHA256 209bac63a81aeda764e0bba3545e804ea9650186d36a1cec7e6cffbf05033e0e SHA512 a357318630926d80d76c77da2216263dd95395eb5b0099db01907406e3f28a01be48d570a6eafb94ae02faf90910ee5a186333030784945efe00cd63de65bbc9 WHIRLPOOL 2382992fffbf399b1ec8ee34e3081ebac4d68bd9e688b50b3aa4ddb0733fbbe732a9b778a3a7e0eb5a990b749f4a36cc288383c5899439667ad4bd29fdacb9ac
|
20
dev-perl/REST-Client/REST-Client-249.ebuild
Normal file
20
dev-perl/REST-Client/REST-Client-249.ebuild
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-perl/REST-Client/REST-Client-249.ebuild,v 1.1 2013/04/22 14:13:51 chainsaw Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
MODULE_AUTHOR="MCRAWFOR"
|
||||
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="A simple client for interacting with RESTful http/https resources"
|
||||
|
||||
LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-perl/URI
|
||||
dev-perl/Crypt-SSLeay
|
||||
dev-lang/perl"
|
13
dev-perl/REST-Client/metadata.xml
Normal file
13
dev-perl/REST-Client/metadata.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>chainsaw@gentoo.org</email>
|
||||
<name>Tony Vroon</name>
|
||||
</maintainer>
|
||||
<herd>perl</herd>
|
||||
<upstream>
|
||||
<remote-id type="cpan">REST-Client</remote-id>
|
||||
<remote-id type="cpan-module">REST::Client</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
41
dev-python/apse/apse-0.2-r3.ebuild
Normal file
41
dev-python/apse/apse-0.2-r3.ebuild
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/apse/apse-0.2-r3.ebuild,v 1.1 2013/04/22 18:35:24 swift Exp $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P="Apse-${PV}"
|
||||
|
||||
DESCRIPTION="Approximate String Matching in Python."
|
||||
HOMEPAGE="http://www.personal.psu.edu/staff/i/u/iua1/python/apse/"
|
||||
SRC_URI="http://www.personal.psu.edu/staff/i/u/iua1/python/${PN}/dist/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="dev-lang/swig:1"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
python_prepare_all() {
|
||||
# Prevent the build system from calling swig over and over again.
|
||||
sed -i -e 's:Apse.i:Apse_wrap.c:' setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_configure_all() {
|
||||
set -- swig1.3 -python -o Apse_wrap.c Apse.i
|
||||
echo "${@}" >&2
|
||||
"${@}" || die
|
||||
}
|
||||
|
||||
python_test() {
|
||||
"${PYTHON}" test/test_Apse.py || die "Tests fail with ${EPYTHON}"
|
||||
}
|
22
dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
Normal file
22
dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild,v 1.1 2013/04/22 14:12:38 idella4 Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Coverage 3.x support for Nose"
|
||||
HOMEPAGE="https://github.com/ask/nosecover3 http://pypi.python.org/pypi/nose-cover3"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
@ -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/notify-python/notify-python-0.1.1-r3.ebuild,v 1.8 2013/04/18 14:20:20 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v 1.9 2013/04/22 17:14:34 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -14,7 +14,7 @@ SRC_URI="http://www.galago-project.org/files/releases/source/${PN}/${P}.tar.bz2"
|
|||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sh ~sparc x86 ~x86-fbsd"
|
||||
KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
|
||||
IUSE="examples"
|
||||
|
||||
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/dev-python/pycrypto/pycrypto-2.6-r2.ebuild,v 1.9 2013/04/18 14:20:00 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.6-r2.ebuild,v 1.10 2013/04/22 17:14:13 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -14,7 +14,7 @@ SRC_URI="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${P}.tar.gz"
|
|||
|
||||
LICENSE="PSF-2 public-domain"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
|
||||
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
|
||||
IUSE="doc +gmp"
|
||||
|
||||
RDEPEND="gmp? ( dev-libs/gmp )"
|
||||
|
|
|
@ -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/pyopenssl/pyopenssl-0.13-r1.ebuild,v 1.9 2013/04/18 14:19:36 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyopenssl/pyopenssl-0.13-r1.ebuild,v 1.10 2013/04/22 17:13:47 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
|||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
|
||||
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
|
||||
IUSE="doc"
|
||||
|
||||
RDEPEND=">=dev-libs/openssl-0.9.6g"
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
From c4072ed7bc923039e544319f52d0761b7a4600a4 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
|
||||
Date: Mon, 22 Apr 2013 18:02:37 +0200
|
||||
Subject: [PATCH] Trigger 'EGGing' mode only by 'bdist_egg' and not 'egg_info'.
|
||||
|
||||
We use the 'egg_info' command to explicitly enforce temporary EGG file
|
||||
location outside the source tree on Gentoo. As a result, our build
|
||||
command activates the 'EGGing' mode and wxPython is not installed
|
||||
properly.
|
||||
|
||||
I believe that the 'EGGing' mode should be activated only by an explicit
|
||||
call to 'bdist_egg' command where the expected files are actually
|
||||
created. The 'egg_info' command is a more broad one and is often used
|
||||
implicitly, e.g. by the 'install' command.
|
||||
---
|
||||
config.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/config.py b/config.py
|
||||
index 4fbd83f..b45707d 100644
|
||||
--- a/config.py
|
||||
+++ b/config.py
|
||||
@@ -23,7 +23,7 @@
|
||||
import sys, os, glob, fnmatch, tempfile
|
||||
import subprocess
|
||||
|
||||
-EGGing = 'bdist_egg' in sys.argv or 'egg_info' in sys.argv
|
||||
+EGGing = 'bdist_egg' in sys.argv
|
||||
if not EGGing:
|
||||
from distutils.core import setup, Extension
|
||||
else:
|
||||
--
|
||||
1.8.1.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-python/wxpython/wxpython-2.8.12.1-r1.ebuild,v 1.5 2013/04/10 03:44:28 dirtyepic Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.12.1-r1.ebuild,v 1.6 2013/04/22 16:19:35 mgorny Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -66,6 +66,8 @@ python_prepare_all() {
|
|||
"${FILESDIR}"/${PN}-2.8.12-drop-editra.patch
|
||||
"${FILESDIR}"/${PN}-2.8.12-drop-categories.patch
|
||||
"${FILESDIR}"/${PN}-2.8-no-preservatives-added.patch
|
||||
# fix handling egg_info command
|
||||
"${FILESDIR}"/${PN}-2.8.12.1-disable-egging-mode.patch
|
||||
)
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild,v 1.4 2013/04/10 03:44:28 dirtyepic Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild,v 1.5 2013/04/22 16:19:35 mgorny Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -61,6 +61,8 @@ python_prepare_all() {
|
|||
# drop editra - we have it as a separate package now
|
||||
"${FILESDIR}"/${PN}-2.8.11-drop-editra.patch
|
||||
"${FILESDIR}"/${PN}-2.8-no-preservatives-added.patch
|
||||
# fix handling egg_info command
|
||||
"${FILESDIR}"/${PN}-2.8.12.1-disable-egging-mode.patch
|
||||
)
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
DIST libxml-ruby-2.2.1.gem 244224 SHA256 ec2bac12e6a6b2d871e799892771f03bdb4e13577b70a3d2f5734396c69790ea SHA512 720a0c74c3a61c3d5bd778042cd931c7db20a480d33f7bc1d451dd7e8cb2ea988125dbd74b0b181f8ce7291c1bd4606c8da9a2856b238947bb51e9732a4b2327 WHIRLPOOL ca3ebd22dc55c613b4cf3cded2c1239d5b55ecb131b279b3badedd6b8ed95985899a36a494b279691942184ced4a0a4c9862cca80e2284a2bc46e455ea30aadb
|
||||
DIST libxml-ruby-2.3.3.gem 250368 SHA256 4a3343fcff372a75020b15c521ae89586771eaed8d9497d9c6c606de8c1c825a SHA512 c9c54fa1c235e8e9aecd9deae1f33f43a0601027956fad8d2babd5c3de32e15a86481d97454f9c8fb6ded5b62327ceab01f63b5ae166cd876ac2aac9fb2ee7db WHIRLPOOL d24947a2aeb66c8812542885a3532c0fc07bbe9a052fa51572b74d230cec24a85f4df33646be3d7aa9292bea3fc39df1cfed062e5b069f5b2f636797d11706f4
|
||||
DIST libxml-ruby-2.4.0.gem 260608 SHA256 5dabf6d9859ede50a6ffb0230f7031741037c1d6ac38988e816a90b208c2467f SHA512 870d72b978cf6b09ee932dff424ca8735d106b6b237a0b0ab963f8b14829adb48e4303ceaa6e382b28bb7b510648467d33a53cb40aa56f3e350227856ba18b99 WHIRLPOOL e73dd0e8a30824516de02a279068dd4a26f5c991bf2558aaaf2deb64089b9bf0d7b08758fe52276335898440f21c755091877b2ce9654f147d566dd5b96ffba6
|
||||
|
|
|
@ -1,62 +0,0 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.3.3.ebuild,v 1.3 2013/01/15 07:16:14 zerochaos Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
USE_RUBY="ruby18 ree18 ruby19"
|
||||
|
||||
RUBY_FAKEGEM_NAME="libxml-ruby"
|
||||
|
||||
RUBY_FAKEGEM_DOCDIR="doc"
|
||||
RUBY_FAKEGEM_EXTRADOC="README.rdoc HISTORY"
|
||||
|
||||
RUBY_FAKEGEM_TASK_TEST="none"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="Ruby libxml with a user friendly API, akin to REXML, but feature complete and significantly faster."
|
||||
HOMEPAGE="https://github.com/xml4r/libxml-ruby"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="${RDEPEND} dev-libs/libxml2"
|
||||
DEPEND="${DEPEND} dev-libs/libxml2"
|
||||
|
||||
ruby_add_bdepend "doc? ( dev-ruby/rdoc )"
|
||||
|
||||
all_ruby_prepare() {
|
||||
# Remove grancher tasks only needed for publishing the website
|
||||
sed -i -e '/grancher/d' -e '/Grancher/,$d' Rakefile || die
|
||||
|
||||
# We don't have the hanna template available.
|
||||
sed -i -e 's/hanna/rake/' Rakefile || die
|
||||
|
||||
# Remove rake-compiler bits since we don't use it
|
||||
sed -i -e '/extensiontask/d' -e '/ExtensionTask/,/end/d' -e '/GemPackageTask/,/end/d' Rakefile || die
|
||||
|
||||
# replace ulimit -n output as it does not work with Ruby 1.9
|
||||
sed -i -e 's:`ulimit -n`:"'`ulimit -n`'":' test/tc_parser.rb || die
|
||||
|
||||
# Avoid test failing due to different semantics in libxml 2.8.
|
||||
# https://github.com/xml4r/libxml-ruby/issues/43
|
||||
sed -i -e '/test_invalid_encoding/,/^ end/ s:^:#:' test/tc_reader.rb || die
|
||||
}
|
||||
|
||||
each_ruby_configure() {
|
||||
${RUBY} -C ext/libxml extconf.rb || die
|
||||
}
|
||||
|
||||
each_ruby_compile() {
|
||||
emake -C ext/libxml
|
||||
cp ext/libxml/libxml_ruby.so lib/ || die
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
# The test suite needs to load its files in alphabetical order but
|
||||
# this is not guaranteed. See bug 370501.
|
||||
${RUBY} -Ilib -r ./test/test_helper.rb test/test_suite.rb || die
|
||||
}
|
|
@ -1,10 +1,10 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.4.0.ebuild,v 1.1 2013/01/25 18:58:17 flameeyes Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.4.0.ebuild,v 1.2 2013/04/22 18:33:41 graaff Exp $
|
||||
|
||||
EAPI=2
|
||||
|
||||
USE_RUBY="ruby18 ree18 ruby19"
|
||||
USE_RUBY="ruby18 ruby19"
|
||||
|
||||
RUBY_FAKEGEM_NAME="libxml-ruby"
|
||||
|
||||
|
@ -44,6 +44,11 @@ all_ruby_prepare() {
|
|||
# Avoid test failing due to different semantics in libxml 2.8.
|
||||
# https://github.com/xml4r/libxml-ruby/issues/43
|
||||
sed -i -e '/test_invalid_encoding/,/^ end/ s:^:#:' test/tc_reader.rb || die
|
||||
|
||||
# Ignore two test failures on ruby18 for now given that older
|
||||
# versions no longer compile.
|
||||
sed -i -e '/test_schema_type/,/end/ s:^:#:' \
|
||||
-e '/test_schema_element/,/end/ s:^:#:' test/tc_schema.rb || die
|
||||
}
|
||||
|
||||
each_ruby_configure() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/revolution/revolution-0.5-r1.ebuild,v 1.3 2011/08/21 03:32:22 phajdan.jr Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/revolution/revolution-0.5-r1.ebuild,v 1.4 2013/04/22 18:20:12 graaff Exp $
|
||||
|
||||
EAPI="2"
|
||||
USE_RUBY="ruby18"
|
||||
|
@ -18,7 +18,7 @@ SLOT="0"
|
|||
KEYWORDS="amd64 ~ppc x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=gnome-extra/evolution-data-server-1.12"
|
||||
DEPEND="=gnome-extra/evolution-data-server-2*"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
each_ruby_configure() {
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
DIST meld-1.6.0.tar.xz 343800 SHA256 a0ec4e19e85ea4df0214da4c92a4069095d37a252ab240fc1bc00f29a627fea8 SHA512 049af934e140dc53f4d56602ab3be8456307948f0d11b816430788db888820c38744bceb4567724748b727fbd5f5d5ae9f15c5b881b4c941689c038d99acc39d WHIRLPOOL 91ceeddfbedd96d7f8f2433f049fff8dc64ff1f79892d322a560b8315474d305eb29b0f728c374e69d2207accc9a894182dae71ba224f5af5afd94a910e38abd
|
||||
DIST meld-1.7.0.tar.xz 358648 SHA256 d355dba06a39e38ffee93a6b205888db648a0308bc8a5efe3a9c7a42ed91370b SHA512 88441334ff4076d3d6d05f703fe0300b85438d7f010a0b70f621dea6ee2f4b7cf37abefafe292e303472403d4d55daa8275aa170b5a7291fbf3c327378d769ef WHIRLPOOL b87141437a7e4affa25fbbbfa94a7f2799a4fedfbfe3107629b50672ffbf2a5e9a5c88d1738ec9040eb14dd7a294f1f287ff47dc6f5e944f299988ea9a1e745b
|
||||
DIST meld-1.7.1.tar.xz 374060 SHA256 c5dc21d32405a520cc7969f4de9e2ea356cb0e950fc5a20a9053230313ff3a40 SHA512 0d30a14eb3a5c9dd6c8ad6d622e2610a49f019f0e031d5f3e8635f034701fd275003e0b0a92e5fad0813f5b925826ff2c317fb9485a354dd6ff282a9439edf7b WHIRLPOOL 066a5e5e8b0ea63a75c0a3bf813b7de2e062e2a97b5865400a7ccddc8b9d8cb089fa3e7139d494d30acdd1abcf303c4195dbff60f9ac406b509dc6cd2edd2580
|
||||
DIST meld-1.7.2.tar.xz 379300 SHA256 ece1f086f0c23395060abcdca03795e739e072d5032aac8a9a1fb1502c806e9f SHA512 18511b8cfd295588d5d0c533dd4e70b0cf3c9a4bccb037a7ca1379d7dbd9a114ad3b601cb64b932c244300025c0c917c56deda5853f91deaaed179d674cb5958 WHIRLPOOL 3bf40b3ddad9f7356619302dda44e7c58b25c1eea6f4d3ba81642d11a1ea3afe37d12fb0352e1f17e2f6dfe80e59cf73e34010c21119c0fc714185f4d0d9dbf0
|
||||
|
|
81
dev-util/meld/meld-1.7.2.ebuild
Normal file
81
dev-util/meld/meld-1.7.2.ebuild
Normal file
|
@ -0,0 +1,81 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/meld-1.7.2.ebuild,v 1.1 2013/04/22 18:17:21 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
GCONF_DEBUG="no"
|
||||
PYTHON_COMPAT=( python2_{6,7} )
|
||||
|
||||
inherit eutils python-single-r1 gnome2 multilib
|
||||
|
||||
DESCRIPTION="A graphical diff and merge tool"
|
||||
HOMEPAGE="http://meldmerge.org/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="+highlight gnome"
|
||||
|
||||
# FIXME: switch pygtksourceview and gconf-python to python-r1
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
>=dev-python/pygtk-2.14:2[${PYTHON_USEDEP}]
|
||||
>=dev-python/pygobject-2.8:2[${PYTHON_USEDEP}]
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
dev-python/pycairo[${PYTHON_USEDEP}]
|
||||
highlight? ( >=dev-python/pygtksourceview-2.10[${PYTHON_USEDEP}] )
|
||||
gnome? ( >=dev-python/gconf-python-2.22:2 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/gtk-doc-am
|
||||
dev-util/intltool
|
||||
app-text/scrollkeeper
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
# fix the prefix so its not in */local/*
|
||||
sed -e "s:/usr/local:${EPREFIX}/usr:" \
|
||||
-e "s:\$(prefix)/lib:\$(prefix)/$(get_libdir):" \
|
||||
-i INSTALL || die "sed 1 failed"
|
||||
|
||||
# don't install anything to /usr/share/doc/meld
|
||||
sed -e "s:\$(docdir)/meld:\$(docdir)/${PF}:" \
|
||||
-i INSTALL || die "sed 2 failed"
|
||||
|
||||
# don't run scrollkeeper (with the wrong path),
|
||||
# leave that to gnome2.eclass #145833
|
||||
sed -e '/scrollkeeper-update/s/\t/&#/' \
|
||||
-i help/*/Makefile || die "sed 4 failed"
|
||||
|
||||
# don't run update-*-database, leave that to eclass
|
||||
sed -e '/update-.*-database/d' \
|
||||
-i Makefile || die "sed 5 failed"
|
||||
|
||||
strip-linguas -i "${S}/po"
|
||||
local mylinguas=""
|
||||
for x in ${LINGUAS}; do
|
||||
mylinguas="${mylinguas} ${x}.po"
|
||||
done
|
||||
|
||||
if [ -n "${mylinguas}" ]; then
|
||||
sed -e "s/PO:=.*/PO:=${mylinguas}/" \
|
||||
-i po/Makefile || die "sed 6 failed"
|
||||
fi
|
||||
|
||||
# Fix .desktop entry, upstream bug #698600
|
||||
sed -e 's/\(MimeType.*\)/\1;/' \
|
||||
-i data/meld.desktop.in || die
|
||||
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
:
|
||||
}
|
||||
|
||||
src_install() {
|
||||
DOCS="NEWS"
|
||||
gnome2_src_install
|
||||
python_fix_shebang "${ED}"/usr/bin
|
||||
doman meld.1
|
||||
}
|
|
@ -1 +1 @@
|
|||
DIST koth-0.8.0.tar.bz2 140569 RMD160 3ea8ef52cab309a764e0379031606d2a949e6553 SHA1 6cb04ae1f09c4fb521fb47465ab91a1d67986c41 SHA256 1f61e1c354ab2b425b33b1504fb181d8bf9e0b6e154c6d3a516b2f98f7c805d8
|
||||
DIST koth-0.8.0.tar.bz2 140569 SHA256 1f61e1c354ab2b425b33b1504fb181d8bf9e0b6e154c6d3a516b2f98f7c805d8
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2008 Gentoo Foundation
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/koth/koth-0.8.0.ebuild,v 1.17 2012/02/19 22:05:23 ulm Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/games-action/koth/koth-0.8.0.ebuild,v 1.18 2013/04/22 16:07:17 mr_bones_ Exp $
|
||||
|
||||
inherit eutils games
|
||||
|
||||
|
|
|
@ -2,4 +2,7 @@
|
|||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>games</herd>
|
||||
<longdescription>
|
||||
King of the Hill (KOTH) is a multiplayer, networked artillery game of little tanks with really big weapons set out to destroy one another. Best-known games of this type include the classic DOS game "Scorched Earth: The Mother of All Games" and "Scorched Tanks" for the Amiga.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
DIST gnome-clocks-0.1.5.tar.xz 478968 SHA256 42ee9924515fac1c57229057e57e37ea1a7915f9f43e64064f8e740433058b12 SHA512 e1c75ab5cc0a153469bc20385a1a85c11e0f2ac26fda46820f47e02f4cdfbdceb4033a1eab632299712bb31b83832920536b025071e5d0918f6f041a9e84ac5d WHIRLPOOL b4e953bfd0585939cc32b9a0b11513a80c04bf96c8b3a1de6029781f05cecfaec24161c84a215f1953cbf15dbb4944e7aa2e4d2e85e17c4e94e5c883b347be0d
|
||||
DIST gnome-clocks-3.8.0.tar.xz 789032 SHA256 35c78a9b1cab465b5c5ccd9c3591cfc3b27eaa0b9ad927bc52642ea3908d64e0 SHA512 c36a4a96299514d9f12437f555f85f386b0f696cb062f1f8ccaed380fef68b5fdf0dcf27331f1b87e8fb659d38ccd8563e8bac99dc712f7a24925e4023ef8a7a WHIRLPOOL d0c308036d46f6e95936f40e72fb0ad807e3953c8bda926a3bbdaf5d355f0fd8101eb249f1537cb62e164dc7ec3484733c845d59ed75a72bb9402c4e83808cdb
|
||||
DIST gnome-clocks-3.8.1.tar.xz 789520 SHA256 6140cc1ae41460c5fc799b2a52d809ed4cf9035a72be7e878160b5e591486d31 SHA512 05812d40876be5443019809839ed99fbdfd2ba3f2482466973e63ca9d9269e643fd57d650c96e798d2c269ad8bb17f8e43fb848b0dbc0ded966d5acf3a4eef1a WHIRLPOOL 3735cb12b9ea7b7d893f8fce1b4083fca1936b3c6e967a88edeb5c6d976ffd24be2318e3ff6b12f9697468713d58201d0d0d4883261af264ae9946a6cd87273a
|
||||
|
|
28
gnome-extra/gnome-clocks/gnome-clocks-3.8.1.ebuild
Normal file
28
gnome-extra/gnome-clocks/gnome-clocks-3.8.1.ebuild
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-clocks/gnome-clocks-3.8.1.ebuild,v 1.1 2013/04/22 17:57:24 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
GCONF_DEBUG="no"
|
||||
VALA_MIN_API_VERSION="0.18"
|
||||
|
||||
inherit gnome2 vala
|
||||
|
||||
DESCRIPTION="Clocks application for GNOME"
|
||||
HOMEPAGE="http://live.gnome.org/GnomeClocks"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.30:2
|
||||
>=x11-libs/gtk+-3.7.12:3
|
||||
>=media-libs/libcanberra-0.30
|
||||
>=dev-libs/libgweather-3.7.90
|
||||
>=gnome-base/gnome-desktop-3.7.90
|
||||
>=x11-libs/libnotify-0.7
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
$(vala_depend)"
|
|
@ -1,4 +1,4 @@
|
|||
DIST gucharmap-3.0.1.tar.bz2 3275481 SHA256 948a376f13af98ffe6be29c73f1d89d2dbc201abd697bb6e85c717d8242dcf75 SHA512 4d8a2276b5cb1a0b0fadca2a8522755c5884985a12d5b19341b9cefcd7f749ec1286c0271419e38ec84be7edcfa1293e7f0263eb682c75387d692792de3e1fb1 WHIRLPOOL 6c9aaaaf31428db5257f98da741513c192ca32371b5d19952471d09586900186b269192b8ae6902e430e7fb3116bccc7d6ed4bca050ad0ca58eb14d7817d569a
|
||||
DIST gucharmap-3.4.1.1.tar.xz 2761188 SHA256 52ea80e9e5f01232801dd24f7eb5c70eb36e7a85e429ad9113e8b71234d94c62 SHA512 ac7ec10537874a21761ea631aac9c07d31900fe2d1a4b86b4c37017a52bb844ede86f46a5cfe96103eb43faed25b496503f5095734b0e3a3b46ea8853ae6e227 WHIRLPOOL a21ac19488d7ace50cc2f6787cc454404116b45b68e269d598218daf66885f17b2d81f20107e5a4ed12d28e9c112138847ec2fb57f34cd62ea1f4e98c4856bd9
|
||||
DIST gucharmap-3.6.1.tar.xz 1888388 SHA256 c3aad2990010ab66225b748e6ac5402cad9f21e908cddf728e57d755c54cc6b2 SHA512 ee4fbe8ed6f7703e7c82670554b080a68feb50de11e295cabae747fbc39f11bf38b8f898d834c4d6b99f93411458ee01a5f6b9b0c2f0fde5ed2f30cca3e40200 WHIRLPOOL 6cdb3e6bae7782777d69bb151082779137e3119d91be73757b86696df2a5d89cfce41a519a92562a21038c3f54250d740797c52ce2be1421fea171ec77efc59a
|
||||
DIST gucharmap-3.8.0.tar.xz 1897700 SHA256 e312297c561e03675519de5bcd9a10971b5c1185f61b4b17eed202273cf8d5c5 SHA512 eb78a30ae722793405a24112ff9cd41216d903df22ad7896a5ed78b466a51216d5ecb43421d57bee5974b0eaa317cc3d1ba255bdcdb02efce3fce2b57d203687 WHIRLPOOL fb35845d7407a294acdfc41b1cd4524ac22bd3c97c29443adc0f6f0f2a6e4c44034793c595ea040738c565bf1db643bb7de7334004e2e3728b5536ca9a391645
|
||||
DIST gucharmap-3.8.1.tar.xz 1899892 SHA256 dc3223c7bd5dac4b979295cf7678c873046f8525f7d6f5562ab98239f563afc1 SHA512 c29ee151ccc623771b79030cad2407a0899046aa09b74fa3292a7b5f951adc34406c4be3420c81f38dae3b1051d60065a72fda113b3dcff08d7332107e351e30 WHIRLPOOL 4417396cfdd673e343483a25359e2230c9474cb5e2dda1a0df7f8726d7abbe678ef63d29c60f31f5c09688bda53735207c1ab464f9ad1e606ede9365de21b9ba
|
||||
|
|
|
@ -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/gnome-extra/gucharmap/gucharmap-3.8.0.ebuild,v 1.1 2013/03/28 17:25:55 pacho Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.8.1.ebuild,v 1.1 2013/04/22 17:47:14 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
GCONF_DEBUG="yes"
|
||||
VALA_MIN_API_VERSION="0.16"
|
||||
VALA_USE_DEPEND="vapigen"
|
||||
|
||||
inherit autotools gnome2 vala
|
||||
inherit gnome2 vala
|
||||
|
||||
DESCRIPTION="Unicode character map viewer and library"
|
||||
HOMEPAGE="http://live.gnome.org/Gucharmap"
|
||||
|
@ -39,22 +39,23 @@ DEPEND="${RDEPEND}
|
|||
"
|
||||
|
||||
src_prepare() {
|
||||
G2CONF="${G2CONF}
|
||||
--disable-static
|
||||
$(use_enable introspection)
|
||||
$(use_enable cjk unihan)
|
||||
$(use_enable vala)"
|
||||
# Do not add ITSTOOL=$(type -P true); yelp-tools is a true required
|
||||
# dependency here for some LINGUAS.
|
||||
|
||||
# prevent file collisions with slot 0
|
||||
sed -e "s:GETTEXT_PACKAGE=gucharmap$:GETTEXT_PACKAGE=gucharmap-${SLOT}:" \
|
||||
-i configure.ac configure || die "sed configure.ac configure failed"
|
||||
|
||||
eautoreconf
|
||||
use vala && vala_src_prepare
|
||||
gnome2_src_prepare
|
||||
|
||||
# avoid autoreconf
|
||||
sed -e 's/-Wall //g' -i configure || die "sed failed"
|
||||
|
||||
use vala && vala_src_prepare
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Do not add ITSTOOL=$(type -P true); yelp-tools is a true required
|
||||
# dependency here for some LINGUAS.
|
||||
gnome2_src_configure \
|
||||
--disable-static \
|
||||
$(use_enable introspection) \
|
||||
$(use_enable cjk unihan) \
|
||||
$(use_enable vala)
|
||||
}
|
|
@ -1,2 +1 @@
|
|||
DIST kde-gtk-config-2.1.1.tar.bz2 85883 SHA256 2d97a1b56a34896ee673a8e2acf0ce7bda331d489af0c7cc45df442f3a43f748 SHA512 094077ccfe441321e68a631943780c15e0cdcbff2d9cbbc7f803b295ebbc84c02d7fa3a79c03017901d37fe2e72c17610246965eea7678c793909d7ab4e3e39a WHIRLPOOL d490d668aa888ba27de924f47fa4e86b08c5760b04609c7c5e6d1d0c76830ac48c0aaf460c3575e1357a5095a1d827fd8ab25e954708bc14914946b03de61fc9
|
||||
DIST kde-gtk-config-2.2-1.tar.bz2 91492 SHA256 0e0a679f4f8a35c34ebcce86b866e0db0888b66876c16e5fa98e36c9eb7cedb4 SHA512 7110eefa21fbdce2f24c58960b770665b41a82dee7b2bf0a332c345878a2889b33462683e6e9c4688724779cf1229f729d63267eb1567dc1d46bad9639b1a39e WHIRLPOOL cff06a4d9770fbd7b6ad7983aa75af52ab591c71417b10b5702bfb485710fd8cfa1b607364592b5706c4725ba39f967b9b757923dd0cdff8e661c439d0092613
|
||||
|
|
|
@ -1,42 +0,0 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild,v 1.10 2013/04/09 18:31:12 ago Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
KDE_LINGUAS="ca cs da de el es et eu fr ga gl hu id it ja km lt nds nl pl pt
|
||||
pt_BR ru sv uk zh_CN"
|
||||
inherit kde4-base
|
||||
|
||||
DESCRIPTION="KDE systemsettings kcm to set GTK application look&feel"
|
||||
HOMEPAGE="http://projects.kde.org/kde-gtk-config"
|
||||
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd"
|
||||
SLOT="4"
|
||||
IUSE="debug"
|
||||
|
||||
CDEPEND="
|
||||
dev-libs/glib:2
|
||||
x11-libs/gtk+:2
|
||||
x11-libs/gtk+:3
|
||||
"
|
||||
DEPEND="
|
||||
${CDEPEND}
|
||||
dev-util/automoc
|
||||
"
|
||||
RDEPEND="
|
||||
${CDEPEND}
|
||||
!kde-misc/kcm_gtk
|
||||
$(add_kdebase_dep kcmshell)
|
||||
"
|
||||
|
||||
pkg_postinst() {
|
||||
kde4-base_pkg_postinst
|
||||
einfo
|
||||
elog "If you notice missing icons in your GTK applications, you may have to install"
|
||||
elog "the corresponding themes for GTK. A good guess would be x11-themes/oxygen-gtk"
|
||||
elog "for example."
|
||||
einfo
|
||||
}
|
|
@ -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/mail-client/mutt/mutt-1.5.21-r12.ebuild,v 1.10 2013/04/18 14:18:10 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/mail-client/mutt/mutt-1.5.21-r12.ebuild,v 1.11 2013/04/22 17:11:24 ago Exp $
|
||||
|
||||
EAPI="3"
|
||||
|
||||
|
@ -16,7 +16,7 @@ SRC_URI="ftp://ftp.mutt.org/mutt/devel/${P}.tar.gz
|
|||
IUSE="berkdb crypt debug doc gdbm gnutls gpg idn imap mbox nls nntp pop qdbm sasl selinux sidebar smime smtp ssl tokyocabinet"
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
RDEPEND=">=sys-libs/ncurses-5.2
|
||||
tokyocabinet? ( dev-db/tokyocabinet )
|
||||
!tokyocabinet? (
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbgrab/fbgrab-1.0-r2.ebuild,v 1.3 2013/04/22 13:45:53 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fbgrab/fbgrab-1.0-r2.ebuild,v 1.4 2013/04/22 15:41:42 pinkbyte Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -12,7 +12,7 @@ SRC_URI="http://hem.bredband.net/gmogmo/${PN}/${P}.tar.gz"
|
|||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
|
||||
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/libpng
|
||||
|
|
42
media-libs/libXcm/libXcm-0.5.2-r1.ebuild
Normal file
42
media-libs/libXcm/libXcm-0.5.2-r1.ebuild
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/libXcm-0.5.2-r1.ebuild,v 1.1 2013/04/22 14:36:29 xmw Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit autotools-multilib
|
||||
|
||||
DESCRIPTION="reference implementation of the net-color spec"
|
||||
HOMEPAGE="http://www.oyranos.org/libxcm/"
|
||||
SRC_URI="mirror://sourceforge/oyranos/${PN}/${PN}-0.4.x/${P}.tar.bz2"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="X doc static-libs"
|
||||
|
||||
RDEPEND="X? ( x11-libs/libXmu[${MULTILIB_USEDEP}]
|
||||
x11-libs/libXfixes[${MULTILIB_USEDEP}]
|
||||
x11-libs/libX11[${MULTILIB_USEDEP}]
|
||||
x11-proto/xproto[${MULTILIB_USEDEP}] )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-doc/doxygen"
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--disable-silent-rules
|
||||
$(use_with X x11)
|
||||
$(use_enable static-libs static)
|
||||
)
|
||||
autotools-multilib_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
autotools-multilib_src_compile
|
||||
use doc && doxygen
|
||||
}
|
||||
|
||||
src_install() {
|
||||
autotools-multilib_src_install
|
||||
use doc && dohtml doc/html/*
|
||||
}
|
|
@ -1,2 +1 @@
|
|||
DIST libcdr-0.0.11.tar.xz 561868 SHA256 b238320359f6a919e409b8cbd3faafd9822bbd09863f89aa6af0403ef3f9a2af SHA512 13ce288f88af0e24cb27658e8267f35cd1341d92957ac5f289ab096886314541330b1697dedcfd1cfdd4997e8eb5ac9740fce1809b49fefe7cc3c425caec7b6e WHIRLPOOL b82c2fe7b84fb47f89c1286f52a73ee92a59521c1d8cf244ca1c98629f88976af4224e419079f6b4589294f0162abeb8c641fe65d26425eb4cdd27f95f2106cc
|
||||
DIST libcdr-0.0.12.tar.xz 565412 SHA256 c8699c00ff5c4eddd506c21767463f1c13577ca8c65f69560d488e8df4a7225d SHA512 4b26ab5b5916a030000d3a6341343c56708eaa3495b0d1e0c87f4ecb1279d6549536c761bd3a9e03d4caa310eb4d3b1d2f3bd301674539afe9b188b63f5fd221 WHIRLPOOL b84eb413379033fcccce919f3c7001bc3b1b078aa26e6f4c2705c5e217901ebd18a7bf810dc3d3ccc65bdb78aa71a71490267194c813fa38022aa6b8313d8bb8
|
||||
DIST libcdr-0.0.13.tar.xz 570080 SHA256 a14bb9a91f667616aac04d5d02f8e0cca02a49baa988906ab8d80a787eb918c9 SHA512 70ae9ea6f4b60d34b980cacc33159abc2ad400ed9cd75591e75646f546947c0c4c7cb6b715c4ce947916a8bef49a868fd5a4be1c726bc25838569d22b6b45831 WHIRLPOOL b095cf162592c0c83e9db432bd6e739afd7e4e618e0e589f8aa5b8f00d13e3bf1b28447d18f3236ff6cd6a6bb648c7ee0087d1eb2db376be3c0c0447eb83ef44
|
||||
|
|
|
@ -1,50 +0,0 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-0.0.12.ebuild,v 1.1 2013/04/08 16:30:42 scarabeus Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/libcdr/"
|
||||
inherit base eutils
|
||||
[[ ${PV} == 9999 ]] && inherit autotools git-2
|
||||
|
||||
DESCRIPTION="Library parsing the Corel cdr documents"
|
||||
HOMEPAGE="http://www.freedesktop.org/wiki/Software/libcdr"
|
||||
[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~arm ~ppc ~x86"
|
||||
IUSE="doc static-libs"
|
||||
|
||||
RDEPEND="
|
||||
app-text/libwpd:0.9
|
||||
app-text/libwpg:0.2
|
||||
dev-libs/icu:=
|
||||
media-libs/lcms:2
|
||||
sys-libs/zlib
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
sys-devel/libtool
|
||||
doc? ( app-doc/doxygen )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
base_src_prepare
|
||||
[[ -d m4 ]] || mkdir "m4"
|
||||
[[ ${PV} == 9999 ]] && eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
||||
$(use_enable static-libs static) \
|
||||
--disable-werror \
|
||||
$(use_with doc docs)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
prune_libtool_files --all
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-0.0.11.ebuild,v 1.2 2013/03/25 08:41:59 scarabeus Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-0.0.13.ebuild,v 1.2 2013/04/22 14:12:33 scarabeus Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -25,8 +25,9 @@ RDEPEND="
|
|||
sys-libs/zlib
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
dev-libs/boost
|
||||
sys-devel/libtool
|
||||
virtual/pkgconfig
|
||||
doc? ( app-doc/doxygen )
|
||||
"
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-9999.ebuild,v 1.9 2013/01/25 15:09:25 scarabeus Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-9999.ebuild,v 1.10 2013/04/22 14:09:12 scarabeus Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -25,8 +25,9 @@ RDEPEND="
|
|||
sys-libs/zlib
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
dev-libs/boost
|
||||
sys-devel/libtool
|
||||
virtual/pkgconfig
|
||||
doc? ( app-doc/doxygen )
|
||||
"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.5.15.ebuild,v 1.9 2013/04/18 14:17:41 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.5.15.ebuild,v 1.11 2013/04/22 17:10:04 ago Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
|
@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz
|
|||
|
||||
LICENSE="libpng"
|
||||
SLOT="0" # SLOT="0/15"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
|
||||
IUSE="apng neon static-libs"
|
||||
|
||||
RDEPEND="sys-libs/zlib:="
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
DIST oyranos-0.4.0.tar.bz2 1265839 SHA256 6fcff9d5f8dc1aaeef55e238a30c65df390a9206ed76cf473f7f0ae348c23ed9 SHA512 edd11dfbe3aa5613fdc8b38536e1a9cffd3809e4bd0c179d7c8d55d8546613580ed010942f014ca2c9c5fad7531dd9083529e73c2aacf17e4b54b7cf422b1934 WHIRLPOOL a1a9f16e0a7e3d8b396dc0b56357ae91a4f42132e75cc60ec7bd5ce581c657ff3b3f569bd7b3f2d7c593257597e6199042ae587fc054d365d87af29fbb3a15c3
|
||||
DIST oyranos-0.9.1.tar.bz2 1481342 SHA256 ab9dd0478b6ca881e2de43a1164816a51843ae1afdfb26943361dc0100152bb9 SHA512 00c391b90fd54e93643260faf34bacc180b6f50c640ee216c4f4cbe189108b4fad22f2c6eb0d4601126cb245b97316d21c7d38d98272dc2d29e7d6b804b1db16 WHIRLPOOL 802075b2cd80aeb26979b5e46bbce6beb3627fc332675f81157d6303c0d449084fd76718086477ad5b9e32a1c25ae493e56bc3b17b03f92b42d69b1558ccd1cf
|
||||
DIST oyranos-0.9.4.tar.bz2 1632276 SHA256 6dcf7f8bef0720077ee55484a5b507ba5f049094f21fbbd2752f2ed120c0768a SHA512 23ded5bac4c16aba8a2d4266981e6ad53cfa2ce720d03751625552a873de8311dda721eb8dd732860ae0a0fcdfc7346f92aaeb8bde281ceeb4895f154d6e6c59 WHIRLPOOL 7ec535e326bf102eb0d154ac995b42b4a8b23a606c35417727b54653424807c47c5a4cf7ece6411627dcffd7ca5d8b1ddc588d97d1a02fb079d27d3d20efd2a5
|
||||
|
|
51
media-libs/oyranos/files/oyranos-0.9.4-be-more-verbose.patch
Normal file
51
media-libs/oyranos/files/oyranos-0.9.4-be-more-verbose.patch
Normal file
|
@ -0,0 +1,51 @@
|
|||
From 80fd8efab3f56c698b4182846d8707916849cad9 Mon Sep 17 00:00:00 2001
|
||||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Sat, 9 Feb 2013 18:21:47 +0100
|
||||
Subject: [PATCH] * [tools]: add more verbosity to oy-monitor -v
|
||||
|
||||
Here to the profile assignment part.
|
||||
---
|
||||
src/tools/oyranos_gamma.c | 16 ++++++++++++++++
|
||||
1 files changed, 16 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/src/tools/oyranos_gamma.c b/src/tools/oyranos_gamma.c
|
||||
index f2206a5..005bdd2 100644
|
||||
--- a/src/tools/oyranos_gamma.c
|
||||
+++ b/src/tools/oyranos_gamma.c
|
||||
@@ -747,16 +747,32 @@ int main( int argc , char** argv )
|
||||
|
||||
if(monitor_profile)
|
||||
{
|
||||
+ if(verbose)
|
||||
+ fprintf( stdout, "oyDeviceSetProfile()\n" );
|
||||
oyDeviceSetProfile( device, monitor_profile );
|
||||
+ if(verbose)
|
||||
+ fprintf( stdout, "oyDeviceUnset()\n" );
|
||||
oyDeviceUnset( device );
|
||||
} else
|
||||
if(erase || unset)
|
||||
+ {
|
||||
+ if(verbose)
|
||||
+ fprintf( stdout, "oyDeviceUnset()\n" );
|
||||
oyDeviceUnset( device );
|
||||
+ }
|
||||
if(erase)
|
||||
+ {
|
||||
+ if(verbose)
|
||||
+ fprintf( stdout, "oyConfig_EraseFromDB()\n" );
|
||||
oyConfig_EraseFromDB( device );
|
||||
+ }
|
||||
|
||||
if(setup)
|
||||
+ {
|
||||
+ if(verbose)
|
||||
+ fprintf( stdout, "oyDeviceSetup()\n" );
|
||||
oyDeviceSetup( device );
|
||||
+ }
|
||||
|
||||
oyConfig_Release( &device );
|
||||
}
|
||||
--
|
||||
1.5.6.5
|
||||
|
||||
|
|
@ -5,9 +5,9 @@
|
|||
LINK_DIRECTORIES( ${XCM_LIBRARY_DIRS} )
|
||||
|
||||
-FIND_PACKAGE( X11 )
|
||||
+IF(X11_WANT)
|
||||
+IF(WANT_X11)
|
||||
+FIND_PACKAGE( X11 REQUIRED )
|
||||
+ENDIF(X11_WANT)
|
||||
+ENDIF(WANT_X11)
|
||||
IF(X11_FOUND)
|
||||
INCLUDE_DIRECTORIES( ${X11_INCLUDE_DIRS} )
|
||||
LINK_DIRECTORIES( ${X11_LIBRARY_DIRS} )
|
|
@ -0,0 +1,27 @@
|
|||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Mon, 18 Mar 2013 18:07:16 +0000 (+0100)
|
||||
Subject: * [oyX1]: fix array access
|
||||
X-Git-Url: http://www.oyranos.org/scm?p=oyranos.git;a=commitdiff_plain;h=11d848a38608deeeca61288d46cfca55c6916788
|
||||
|
||||
* [oyX1]: fix array access
|
||||
---
|
||||
|
||||
diff --git a/src/modules/devices/oyranos_monitor_x11.c b/src/modules/devices/oyranos_monitor_x11.c
|
||||
index a530a81..bac09c1 100644
|
||||
--- a/src/modules/devices/oyranos_monitor_x11.c
|
||||
+++ b/src/modules/devices/oyranos_monitor_x11.c
|
||||
@@ -1329,6 +1329,13 @@ oyX1Monitor_s* oyX1Monitor_newFrom_ ( const char * display_name,
|
||||
int n_scr_info = 0;
|
||||
XineramaScreenInfo *scr_info = XineramaQueryScreens( display,
|
||||
&n_scr_info );
|
||||
+ if(n_scr_info <= selected_screen)
|
||||
+ {
|
||||
+ XFree( scr_info );
|
||||
+ oyX1Monitor_release_( &disp );
|
||||
+ return 0;
|
||||
+ }
|
||||
+
|
||||
geo[0] = scr_info[selected_screen].x_org;
|
||||
geo[1] = scr_info[selected_screen].y_org;
|
||||
geo[2] = scr_info[selected_screen].width;
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Wed, 20 Mar 2013 17:15:17 +0000 (+0100)
|
||||
Subject: * [core]: fix double object release
|
||||
X-Git-Url: http://www.oyranos.org/scm?p=oyranos.git;a=commitdiff_plain;h=6214cf15fafae52d67233d27462488487091d8d6
|
||||
|
||||
* [core]: fix double object release
|
||||
|
||||
... which was revealed by valgrind
|
||||
---
|
||||
|
||||
diff --git a/src/API_generated/oyranos_devices.c b/src/API_generated/oyranos_devices.c
|
||||
index 4ed5138..8cee0c8 100644
|
||||
--- a/src/API_generated/oyranos_devices.c
|
||||
+++ b/src/API_generated/oyranos_devices.c
|
||||
@@ -1896,7 +1896,6 @@ OYAPI int OYEXPORT
|
||||
oyConfigs_MoveIn( taxi_devices, &taxi_dev, -1 );
|
||||
}
|
||||
oyConfigs_Release( &configs_ );
|
||||
- oyOptions_Release( &options );
|
||||
oyFree_m_(ranks);
|
||||
}
|
||||
|
||||
diff --git a/src/templates/oyranos_devices.template.c b/src/templates/oyranos_devices.template.c
|
||||
index 586ba36..ff555e3 100644
|
||||
--- a/src/templates/oyranos_devices.template.c
|
||||
+++ b/src/templates/oyranos_devices.template.c
|
||||
@@ -1881,7 +1881,6 @@ OYAPI int OYEXPORT
|
||||
oyConfigs_MoveIn( taxi_devices, &taxi_dev, -1 );
|
||||
}
|
||||
oyConfigs_Release( &configs_ );
|
||||
- oyOptions_Release( &options );
|
||||
oyFree_m_(ranks);
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Fri, 22 Feb 2013 18:42:23 +0000 (+0100)
|
||||
Subject: * [sources]: fix counting in oyRankMap data
|
||||
X-Git-Url: http://www.oyranos.org/scm?p=oyranos.git;a=commitdiff_plain;h=c2feb3e1f1ab45702f98c8728898eab1ee849cd4
|
||||
|
||||
* [sources]: fix counting in oyRankMap data
|
||||
|
||||
2013-04-21: backport to oyranos-0.9.4, remove (duplicate) patch for nonexistent file
|
||||
|
||||
This fixes crashes in several oyRankMap helper functions.
|
||||
---
|
||||
|
||||
diff --git a/src/API_generated/oyConfig_s.c b/src/API_generated/oyConfig_s.c
|
||||
index 8ec0ff6..7ea1f3b 100644
|
||||
--- a/src/API_generated/oyConfig_s.c
|
||||
+++ b/src/API_generated/oyConfig_s.c
|
||||
@@ -983,14 +983,14 @@ oyRankMap * oyRankMapCopy ( const oyRankMap * rank_map,
|
||||
{
|
||||
oyRankMap * map = 0;
|
||||
int error = !rank_map;
|
||||
- int n = 0, i;
|
||||
+ int n = 0, i = 0;
|
||||
|
||||
if(!allocateFunc)
|
||||
allocateFunc = oyAllocateFunc_;
|
||||
|
||||
if(error <= 0)
|
||||
{
|
||||
- while( rank_map[n++].key ) {}
|
||||
+ while( rank_map[i++].key ) ++n;
|
||||
|
||||
oyAllocHelper_m_( map, oyRankMap, n + 1, allocateFunc, error = 1 );
|
||||
}
|
||||
@@ -1025,7 +1025,7 @@ OYAPI void OYEXPORT
|
||||
oyDeAlloc_f deAllocateFunc )
|
||||
{
|
||||
int error = !rank_map || !*rank_map;
|
||||
- int n = 0, i;
|
||||
+ int n = 0, i = 0;
|
||||
|
||||
if(!deAllocateFunc)
|
||||
deAllocateFunc = oyDeAllocateFunc_;
|
||||
@@ -1033,7 +1033,7 @@ OYAPI void OYEXPORT
|
||||
if(error <= 0)
|
||||
{
|
||||
oyRankMap * map = *rank_map;
|
||||
- while( (*rank_map)[n++].key ) {}
|
||||
+ while( (*rank_map)[i++].key ) ++n;
|
||||
for(i = 0; i < n; ++i)
|
||||
{
|
||||
deAllocateFunc( map[i].key ); map[i].key = 0;
|
||||
--
|
||||
1.5.6.5
|
|
@ -0,0 +1,25 @@
|
|||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Wed, 13 Mar 2013 13:59:19 +0000 (+0100)
|
||||
Subject: * [core]: fix oyStringSegment_() crash
|
||||
X-Git-Url: http://www.oyranos.org/scm?p=oyranos.git;a=commitdiff_plain;h=cf495d5ede29f7211e498217c4d06428f944bac3
|
||||
|
||||
2013-04-21: backport to oyranos-0.9.1, remove unrelated oyStringReplace_ hunk
|
||||
|
||||
* [core]: fix oyStringSegment_() crash
|
||||
---
|
||||
|
||||
diff --git a/src/liboyranos_core/oyranos_string.c b/src/liboyranos_core/oyranos_string.c
|
||||
index 525ce7e..1d214c0 100644
|
||||
--- a/src/liboyranos_core/oyranos_string.c
|
||||
+++ b/src/liboyranos_core/oyranos_string.c
|
||||
@@ -499,7 +499,7 @@ char * oyStringSegment_ ( char * text,
|
||||
for(; i < segment; ++i)
|
||||
{
|
||||
t = oyStrchr_( t, delimiter );
|
||||
- ++t;
|
||||
+ if(t) ++t;
|
||||
}
|
||||
|
||||
end_pos = (uintptr_t) oyStrchr_(t, delimiter);
|
||||
--
|
||||
1.5.6.5
|
121
media-libs/oyranos/files/oyranos-0.9.4-fix-runpaths.patch
Normal file
121
media-libs/oyranos/files/oyranos-0.9.4-fix-runpaths.patch
Normal file
|
@ -0,0 +1,121 @@
|
|||
From b8f4a5fe0cea02878de106f5d02751e922438275 Mon Sep 17 00:00:00 2001
|
||||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Wed, 3 Apr 2013 10:01:04 +0200
|
||||
Subject: [PATCH 1/1] * [build]: fix has insecure RUNPATHs
|
||||
|
||||
https://sourceforge.net/tracker/?func=detail&atid=879553&aid=3609840&group_id=177017
|
||||
|
||||
2013-04-03: backport to oyranos-0.9.4:
|
||||
merged 1-line change from commit 5b63d318e53ae8b8f3a0ccb166c97acf6103caac
|
||||
|
||||
---
|
||||
CMakeLists.txt | 2 +-
|
||||
src/examples/CMakeLists.txt | 26 ++++++++++++++++++++++++++
|
||||
src/examples/oforms/CMakeLists.txt | 28 ++++------------------------
|
||||
src/tools/CMakeLists.txt | 2 +-
|
||||
4 files changed, 32 insertions(+), 26 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index f24965c..6e9c8fb 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -10,7 +10,7 @@ SET (OYRANOS_DEVEL_MONTH 01)
|
||||
SET (OYRANOS_DEVEL_YEAR 2013)
|
||||
|
||||
SET (PACKAGE_NAME "oyranos")
|
||||
-set (PACKAGE_DESCRIPTION "Oyranos is a Colour Management System (CMS) on operating system level. It allows to match predictably input device colours to output device colours across supporting applications. One goal is to make colour management useful for all users in a automated fashion and regardless of any technical knowledge.")
|
||||
+SET (PACKAGE_DESCRIPTION "Oyranos is a Colour Management System (CMS) on operating system level. It allows to match predictably input device colours to output device colours across supporting applications. One goal is to make colour management useful for all users in a automated fashion and regardless of any technical knowledge.")
|
||||
|
||||
SET( OY_CMMSUBPATH "colour/modules" )
|
||||
SET( OY_METASUBPATH "${PACKAGE_NAME}" )
|
||||
diff --git a/src/examples/CMakeLists.txt b/src/examples/CMakeLists.txt
|
||||
index dfe807c..4adfdc9 100644
|
||||
--- a/src/examples/CMakeLists.txt
|
||||
+++ b/src/examples/CMakeLists.txt
|
||||
@@ -60,4 +60,30 @@ IF( FLTK_FOUND )
|
||||
INSTALL (TARGETS oyranos-config-fltk DESTINATION bin)
|
||||
ENDIF()
|
||||
|
||||
+
|
||||
ADD_SUBDIRECTORY( oforms )
|
||||
+
|
||||
+# oFORMS for a Oyranos CLI renderer and parser
|
||||
+ADD_EXECUTABLE( oyranos-xforms oforms/oyranos_xforms.c )
|
||||
+TARGET_LINK_LIBRARIES( oyranos-xforms
|
||||
+ ${OY_OFORMS_LIB} oyranos ${EXTRA_LIBS} )
|
||||
+#INSTALL (TARGETS oyranos-xforms DESTINATION bin)
|
||||
+
|
||||
+# oFORMS for a Oyranos FLTK renderer and parser
|
||||
+IF( FLTK_FOUND )
|
||||
+ ADD_EXECUTABLE( oyranos-xforms-fltk
|
||||
+ oforms/oyranos_forms_fltk.cxx
|
||||
+ oforms/oyranos_widgets_fltk.cxx
|
||||
+ oforms/oyranos_xforms_fltk.cxx
|
||||
+ )
|
||||
+ TARGET_LINK_LIBRARIES ( oyranos-xforms-fltk oyranos ${EXTRA_LIBS}
|
||||
+ ${OY_OFORMS_LIB} ${FLTK_LIBRARIES} )
|
||||
+ #INSTALL (TARGETS oyranos-xforms-fltk DESTINATION bin)
|
||||
+ENDIF()
|
||||
+
|
||||
+# oFORMS for a Oyranos module generation
|
||||
+ADD_EXECUTABLE( oyranos-xforms-modules oforms/oyranos_xforms_modules.c )
|
||||
+TARGET_LINK_LIBRARIES( oyranos-xforms-modules
|
||||
+ oyranos ${OY_OFORMS_LIB} ${EXTRA_LIBS} )
|
||||
+INSTALL (TARGETS oyranos-xforms-modules DESTINATION bin)
|
||||
+
|
||||
diff --git a/src/examples/oforms/CMakeLists.txt b/src/examples/oforms/CMakeLists.txt
|
||||
index 4d248ec..c0ff965 100644
|
||||
--- a/src/examples/oforms/CMakeLists.txt
|
||||
+++ b/src/examples/oforms/CMakeLists.txt
|
||||
@@ -1,31 +1,11 @@
|
||||
#oFORMS basics
|
||||
-SET( OY_OFORMS_LIB ${PACKAGE_NAME}_forms_cmd_line )
|
||||
+SET( OY_OFORMS_LIB ${PACKAGE_NAME}_forms_cmd_line-static )
|
||||
+SET( OY_OFORMS_LIB ${OY_OFORMS_LIB} PARENT_SCOPE )
|
||||
ADD_LIBRARY( ${OY_OFORMS_LIB}
|
||||
- STATIC ${OY_OFORMS_LIB}.c )
|
||||
+ STATIC ${PACKAGE_NAME}_forms_cmd_line.c )
|
||||
TARGET_LINK_LIBRARIES ( ${OY_OFORMS_LIB} oyranos ${EXTRA_LIBS} )
|
||||
|
||||
-# oFORMS for a Oyranos CML renderer and parser
|
||||
-ADD_EXECUTABLE( ../oyranos-xforms oyranos_xforms.c )
|
||||
-TARGET_LINK_LIBRARIES( ../oyranos-xforms
|
||||
- oyranos ${OY_OFORMS_LIB} ${EXTRA_LIBS} )
|
||||
-#INSTALL (TARGETS oyranos-xforms DESTINATION bin)
|
||||
+MESSAGE( "-- OY_OFORMS_LIB: ${OY_OFORMS_LIB}" )
|
||||
|
||||
-# oFORMS for a Oyranos FLTK renderer and parser
|
||||
-IF( FLTK_FOUND )
|
||||
- ADD_EXECUTABLE( ../oyranos-xforms-fltk
|
||||
- oyranos_forms_fltk.cxx
|
||||
- oyranos_widgets_fltk.cxx
|
||||
- oyranos_xforms_fltk.cxx
|
||||
- )
|
||||
- TARGET_LINK_LIBRARIES ( ../oyranos-xforms-fltk oyranos ${EXTRA_LIBS}
|
||||
- ${FLTK_LIBRARIES} )
|
||||
- #INSTALL (TARGETS oyranos-xforms-fltk DESTINATION bin)
|
||||
-ENDIF()
|
||||
-
|
||||
-# oFORMS for a Oyranos module generation
|
||||
-ADD_EXECUTABLE( ../oyranos-xforms-modules oyranos_xforms_modules.c )
|
||||
-TARGET_LINK_LIBRARIES( ../oyranos-xforms-modules
|
||||
- oyranos ${OY_OFORMS_LIB} ${EXTRA_LIBS} )
|
||||
-INSTALL (TARGETS ../oyranos-xforms-modules DESTINATION bin)
|
||||
INSTALL (FILES ./oyranos-xforms-modules.1 DESTINATION share/man/man1 )
|
||||
|
||||
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt
|
||||
index cb23ace..3b2572a 100644
|
||||
--- a/src/tools/CMakeLists.txt
|
||||
+++ b/src/tools/CMakeLists.txt
|
||||
@@ -30,7 +30,7 @@ ENDIF()
|
||||
|
||||
# colour conversion
|
||||
ADD_EXECUTABLE( oyranos-icc "${CMAKE_CURRENT_SOURCE_DIR}/oyranos_convert.c" )
|
||||
-TARGET_LINK_LIBRARIES( oyranos-icc oyranos ${EXTRA_LIBS} )
|
||||
+TARGET_LINK_LIBRARIES( oyranos-icc oyranos ${EXTRA_LIBS} oyranos_forms_cmd_line-static )
|
||||
INSTALL (TARGETS oyranos-icc DESTINATION bin)
|
||||
|
||||
ADD_SUBDIRECTORY (qcmsevents)
|
||||
--
|
||||
1.5.6.5
|
||||
|
|
@ -0,0 +1,968 @@
|
|||
commit bf50dbd47ddef1ccb49bb44cbf893ae7844240d6
|
||||
Author: Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
|
||||
Date: Wed Apr 3 02:14:21 2013 +0200
|
||||
|
||||
more typo and grammar fixes
|
||||
|
||||
diff --git a/po/cs.po b/po/cs.po
|
||||
index 9440519..a99974e 100644
|
||||
--- a/po/cs.po
|
||||
+++ b/po/cs.po
|
||||
@@ -290,7 +290,7 @@ msgstr "Již aktivováno"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:273
|
||||
#, fuzzy
|
||||
-msgid "Anylyze ICC profile information on your system."
|
||||
+msgid "Analyze ICC profile information on your system."
|
||||
msgstr "umí zobrazit informace o profilu ICC"
|
||||
|
||||
#: modules/oyranos_cmm_oyra_image.c:1065
|
||||
@@ -417,7 +417,7 @@ msgid ""
|
||||
"Behaviour of color space transformation for proofing. Most people want a "
|
||||
"preview on screen only. The Relative Colorimetric intent is right for that. "
|
||||
"The Absolute Colorimetric intent needs a very careful profiling and non-"
|
||||
-"trivial setup, but allowes for side-by-side comparisions."
|
||||
+"trivial setup, but allows for side-by-side comparisons."
|
||||
msgstr ""
|
||||
"Způsob transformace barev pro simulaci. Většina uživatelů použije funkci "
|
||||
"simulace pouze na obrazovce, pro což se hodí relativní kolorimetrický záměr. "
|
||||
@@ -670,7 +670,7 @@ msgstr "Transformace barev mohou být interně uloženy různými způsoby"
|
||||
#: liboyranos_config/oyranos_texts.c:174
|
||||
msgid ""
|
||||
"Color content can sometimes have no ICC profile assigned. This is a critical "
|
||||
-"situation as the system can not properly convert these colors. Therefor the "
|
||||
+"situation as the system can not properly convert these colors. Therefore the "
|
||||
"color processing parts need to pick some profile as a guess. These settings "
|
||||
"allow to change the picked ICC profile to guide the processing components "
|
||||
"and allow proper conversion and compositing."
|
||||
@@ -1024,7 +1024,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:236
|
||||
msgid ""
|
||||
-"Decide what to do when the default color spaces dont match the current ones."
|
||||
+"Decide what to do when the default color spaces don't match the current ones."
|
||||
msgstr ""
|
||||
"Rozhodnout co dělat, když se výchozí barvový prostor nerovná aktuálnímu."
|
||||
|
||||
@@ -2179,7 +2179,7 @@ msgstr "Oyranos X11"
|
||||
#. HTML
|
||||
#: liboyranos_config/oyranos_xml.c:1036
|
||||
msgid ""
|
||||
-"Oyranos allowes detailed settings like preferred editing color spaces and "
|
||||
+"Oyranos allows detailed settings like preferred editing color spaces and "
|
||||
"the behaviour of color conversions or simulation. Oyranos reduces the work "
|
||||
"involved in all color management related decisions through automation, "
|
||||
"useful defaults and grouping of settings in selectable policies."
|
||||
@@ -2372,27 +2372,27 @@ msgid "Postscript CRD Information"
|
||||
msgstr "Náhled, saturace"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:336
|
||||
-msgid "Prefered CIE*Lab Editing Color Space"
|
||||
+msgid "Preferred CIE*Lab Editing Color Space"
|
||||
msgstr "Preferovaný CIE*Lab barvový prostor pro editaci"
|
||||
|
||||
#: API_generated/oyranos_profile.c:66
|
||||
-msgid "Prefered CMM"
|
||||
+msgid "Preferred CMM"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:316
|
||||
-msgid "Prefered Cmyk Editing Color Space"
|
||||
+msgid "Preferred Cmyk Editing Color Space"
|
||||
msgstr "Preferovaný barvový prostor CMYK pro editaci"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:346
|
||||
-msgid "Prefered Gray Editing Color Space"
|
||||
+msgid "Preferred Gray Editing Color Space"
|
||||
msgstr "Preferovaný barvový prostor pro editaci v šedi."
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:306
|
||||
-msgid "Prefered Rgb Editing Color Space"
|
||||
+msgid "Preferred Rgb Editing Color Space"
|
||||
msgstr "Preferovaný barvový prostor RGB pro editaci"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:326
|
||||
-msgid "Prefered XYZ Editing Color Space"
|
||||
+msgid "Preferred XYZ Editing Color Space"
|
||||
msgstr "Preferovaný barvový prostor XYZ pro editaci"
|
||||
|
||||
#. choices
|
||||
@@ -2622,7 +2622,7 @@ msgstr "Záměr transformace"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:479
|
||||
msgid ""
|
||||
-"Rendering intent for color space transformations is typical the Relative "
|
||||
+"Rendering intent for color space transformations is typically the Relative "
|
||||
"Colorimetric intent plus Black Point Compensation or the Perceptual intent."
|
||||
msgstr ""
|
||||
"Záměr pro transformace mezi různými barvovými prostory se obvykle volí "
|
||||
@@ -2932,7 +2932,7 @@ msgstr "The client side window data handler of Oyranos."
|
||||
#: liboyranos_config/oyranos_texts.c:219
|
||||
msgid ""
|
||||
"The conversion between color spaces of different shape and size can happen "
|
||||
-"in various ways. The Perceptual rendering intent is usual the best choice "
|
||||
+"in various ways. The Perceptual rendering intent is usually the best choice "
|
||||
"for photographs and artistic imagery. It is used in many automatic systems. "
|
||||
"The Relative Colorimetric rendering intent provides a well-defined standard, "
|
||||
"one-to-one color mapping, but without applying white point adaption. This "
|
||||
@@ -3268,7 +3268,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:347
|
||||
msgid ""
|
||||
-"The preferred Gray Editing Color Space shall describe a single lighness "
|
||||
+"The preferred Gray Editing Color Space shall describe a single lightness "
|
||||
"channel color space for grayscale images."
|
||||
msgstr ""
|
||||
"Preferovaný barvový prostor editace v šedi by měl popisovat barvový prostor "
|
||||
@@ -3283,13 +3283,13 @@ msgstr ""
|
||||
"barvový prostor jako např. sRGB."
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:327
|
||||
-msgid "The preferred XYZ Editing Color Space shall decribe CIE*XYZ."
|
||||
+msgid "The preferred XYZ Editing Color Space shall describe CIE*XYZ."
|
||||
msgstr "Preferovaný barvový prostor editace XYZ by měl popisovat CIE*XYZ."
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:183
|
||||
msgid ""
|
||||
"The proofing color space represents a real color device for simulation. "
|
||||
-"Possible uses cases are to simulate a print machine, a viewing environment "
|
||||
+"Possible use cases are to simulate a print machine, a viewing environment "
|
||||
"in a theater or a expected small monitor gamut."
|
||||
msgstr ""
|
||||
"Barvový prostor pro simulaci zastupuje skutečné zařízení, jež má být "
|
||||
@@ -3387,7 +3387,7 @@ msgstr "Tepelná vosková tiskárna"
|
||||
#: liboyranos_config/oyranos_texts.c:429
|
||||
msgid ""
|
||||
"This setting decides what to do in the case that colors have no color space "
|
||||
-"assigned. Typical the according assumed ICC profile should be assigned."
|
||||
+"assigned. Typically the according assumed ICC profile should be assigned."
|
||||
msgstr ""
|
||||
"Toto nastavení rozhoduje, co se má dělat v případě, že barvy nemají přiřazen "
|
||||
"žádný barvový prostor. Obvykle by měl být přiřazen příslušný předpokládaný "
|
||||
diff --git a/po/de.po b/po/de.po
|
||||
index 80a106a..80869df 100644
|
||||
--- a/po/de.po
|
||||
+++ b/po/de.po
|
||||
@@ -292,7 +292,7 @@ msgid "Already enabled"
|
||||
msgstr "Bereits eingeschalten"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:273
|
||||
-msgid "Anylyze ICC profile information on your system."
|
||||
+msgid "Analyze ICC profile information on your system."
|
||||
msgstr "Details zu ICC Profilen in Ihrem System"
|
||||
|
||||
#: modules/oyranos_cmm_oyra_image.c:1065
|
||||
@@ -415,7 +415,7 @@ msgid ""
|
||||
"Behaviour of color space transformation for proofing. Most people want a "
|
||||
"preview on screen only. The Relative Colorimetric intent is right for that. "
|
||||
"The Absolute Colorimetric intent needs a very careful profiling and non-"
|
||||
-"trivial setup, but allowes for side-by-side comparisions."
|
||||
+"trivial setup, but allows for side-by-side comparisons."
|
||||
msgstr ""
|
||||
"Verhalten der Farbübertragung bei der Simulation. Die meisten Nutzer "
|
||||
"wünschen eine Simulation nur an einem Bildschirm. Die relativ farbmetrische "
|
||||
@@ -652,7 +652,7 @@ msgstr "Farbumwandlung können intern unterschiedlich gespeichert werden"
|
||||
#: liboyranos_config/oyranos_texts.c:174
|
||||
msgid ""
|
||||
"Color content can sometimes have no ICC profile assigned. This is a critical "
|
||||
-"situation as the system can not properly convert these colors. Therefor the "
|
||||
+"situation as the system can not properly convert these colors. Therefore the "
|
||||
"color processing parts need to pick some profile as a guess. These settings "
|
||||
"allow to change the picked ICC profile to guide the processing components "
|
||||
"and allow proper conversion and compositing."
|
||||
@@ -1000,7 +1000,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:236
|
||||
msgid ""
|
||||
-"Decide what to do when the default color spaces dont match the current ones."
|
||||
+"Decide what to do when the default color spaces don't match the current ones."
|
||||
msgstr ""
|
||||
"Was ist zu tuen falls Standardfarbräume nicht mit den Eingestellten "
|
||||
"übereinstimmen."
|
||||
@@ -2100,7 +2100,7 @@ msgstr "Oyranos X11"
|
||||
#. HTML
|
||||
#: liboyranos_config/oyranos_xml.c:1036
|
||||
msgid ""
|
||||
-"Oyranos allowes detailed settings like preferred editing color spaces and "
|
||||
+"Oyranos allows detailed settings like preferred editing color spaces and "
|
||||
"the behaviour of color conversions or simulation. Oyranos reduces the work "
|
||||
"involved in all color management related decisions through automation, "
|
||||
"useful defaults and grouping of settings in selectable policies."
|
||||
@@ -2283,27 +2283,27 @@ msgid "Postscript CRD Information"
|
||||
msgstr "Postscript CRD Information"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:336
|
||||
-msgid "Prefered CIE*Lab Editing Color Space"
|
||||
+msgid "Preferred CIE*Lab Editing Color Space"
|
||||
msgstr "Bevorzugter CIE*Lab Editierfarbraum"
|
||||
|
||||
#: API_generated/oyranos_profile.c:66
|
||||
-msgid "Prefered CMM"
|
||||
+msgid "Preferred CMM"
|
||||
msgstr "Bevorzugte CMM"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:316
|
||||
-msgid "Prefered Cmyk Editing Color Space"
|
||||
+msgid "Preferred Cmyk Editing Color Space"
|
||||
msgstr "Bevorzugter Cmyk Editierfarbraum"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:346
|
||||
-msgid "Prefered Gray Editing Color Space"
|
||||
+msgid "Preferred Gray Editing Color Space"
|
||||
msgstr "Bevorzugter Grau Editierfarbraum"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:306
|
||||
-msgid "Prefered Rgb Editing Color Space"
|
||||
+msgid "Preferred Rgb Editing Color Space"
|
||||
msgstr "Bevorzugter Rgb Editierfarbraum"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:326
|
||||
-msgid "Prefered XYZ Editing Color Space"
|
||||
+msgid "Preferred XYZ Editing Color Space"
|
||||
msgstr "Bevorzugter XYZ Editierfarbraum"
|
||||
|
||||
#. choices
|
||||
@@ -2520,7 +2520,7 @@ msgstr "Übertragungsart: "
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:479
|
||||
msgid ""
|
||||
-"Rendering intent for color space transformations is typical the Relative "
|
||||
+"Rendering intent for color space transformations is typically the Relative "
|
||||
"Colorimetric intent plus Black Point Compensation or the Perceptual intent."
|
||||
msgstr ""
|
||||
|
||||
@@ -2817,7 +2817,7 @@ msgstr "Die benutzerseitige Fensterdatenagent von Oyranos."
|
||||
#: liboyranos_config/oyranos_texts.c:219
|
||||
msgid ""
|
||||
"The conversion between color spaces of different shape and size can happen "
|
||||
-"in various ways. The Perceptual rendering intent is usual the best choice "
|
||||
+"in various ways. The Perceptual rendering intent is usually the best choice "
|
||||
"for photographs and artistic imagery. It is used in many automatic systems. "
|
||||
"The Relative Colorimetric rendering intent provides a well-defined standard, "
|
||||
"one-to-one color mapping, but without applying white point adaption. This "
|
||||
@@ -3146,7 +3146,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:347
|
||||
msgid ""
|
||||
-"The preferred Gray Editing Color Space shall describe a single lighness "
|
||||
+"The preferred Gray Editing Color Space shall describe a single lightness "
|
||||
"channel color space for grayscale images."
|
||||
msgstr ""
|
||||
"Der bevorzugte Grautonfarbraum soll Farben mit einem einzigen "
|
||||
@@ -3159,13 +3159,13 @@ msgid ""
|
||||
msgstr "Der bevorzugte Rgb Editierfarbraum sollte wohlgeformt sein."
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:327
|
||||
-msgid "The preferred XYZ Editing Color Space shall decribe CIE*XYZ."
|
||||
+msgid "The preferred XYZ Editing Color Space shall describe CIE*XYZ."
|
||||
msgstr "Der bevorzugter XYZ Editierfarbraum soll CIE*XYZ definieren."
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:183
|
||||
msgid ""
|
||||
"The proofing color space represents a real color device for simulation. "
|
||||
-"Possible uses cases are to simulate a print machine, a viewing environment "
|
||||
+"Possible use cases are to simulate a print machine, a viewing environment "
|
||||
"in a theater or a expected small monitor gamut."
|
||||
msgstr ""
|
||||
"Der Simulationsfarbraum stellt das Farbverhalten eines realen Gerätes dar. "
|
||||
@@ -3257,7 +3257,7 @@ msgstr "Thermischer Wachsdrucker"
|
||||
#: liboyranos_config/oyranos_texts.c:429
|
||||
msgid ""
|
||||
"This setting decides what to do in the case that colors have no color space "
|
||||
-"assigned. Typical the according assumed ICC profile should be assigned."
|
||||
+"assigned. Typically the according assumed ICC profile should be assigned."
|
||||
msgstr ""
|
||||
"Die Einstellung entscheidet was mit Farben ohne Farbprofil geschehen soll. "
|
||||
"Typischerweise wird das vermutete Farbprofil automatisch zugewiesen."
|
||||
diff --git a/po/eo.po b/po/eo.po
|
||||
index 787905a..bcf0dfc 100644
|
||||
--- a/po/eo.po
|
||||
+++ b/po/eo.po
|
||||
@@ -308,7 +308,7 @@ msgid "Already enabled"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:273
|
||||
-msgid "Anylyze ICC profile information on your system."
|
||||
+msgid "Analyze ICC profile information on your system."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_oyra_image.c:1065
|
||||
@@ -435,7 +435,7 @@ msgid ""
|
||||
"Behaviour of color space transformation for proofing. Most people want a "
|
||||
"preview on screen only. The Relative Colorimetric intent is right for that. "
|
||||
"The Absolute Colorimetric intent needs a very careful profiling and non-"
|
||||
-"trivial setup, but allowes for side-by-side comparisions."
|
||||
+"trivial setup, but allows for side-by-side comparisons."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_lraw.cpp:1041
|
||||
@@ -665,7 +665,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:174
|
||||
msgid ""
|
||||
"Color content can sometimes have no ICC profile assigned. This is a critical "
|
||||
-"situation as the system can not properly convert these colors. Therefor the "
|
||||
+"situation as the system can not properly convert these colors. Therefore the "
|
||||
"color processing parts need to pick some profile as a guess. These settings "
|
||||
"allow to change the picked ICC profile to guide the processing components "
|
||||
"and allow proper conversion and compositing."
|
||||
@@ -992,7 +992,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:236
|
||||
msgid ""
|
||||
-"Decide what to do when the default color spaces dont match the current ones."
|
||||
+"Decide what to do when the default color spaces don't match the current ones."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:154
|
||||
@@ -2067,7 +2067,7 @@ msgstr ""
|
||||
#. HTML
|
||||
#: liboyranos_config/oyranos_xml.c:1036
|
||||
msgid ""
|
||||
-"Oyranos allowes detailed settings like preferred editing color spaces and "
|
||||
+"Oyranos allows detailed settings like preferred editing color spaces and "
|
||||
"the behaviour of color conversions or simulation. Oyranos reduces the work "
|
||||
"involved in all color management related decisions through automation, "
|
||||
"useful defaults and grouping of settings in selectable policies."
|
||||
@@ -2235,31 +2235,31 @@ msgstr "kolora"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:336
|
||||
#, fuzzy
|
||||
-msgid "Prefered CIE*Lab Editing Color Space"
|
||||
+msgid "Preferred CIE*Lab Editing Color Space"
|
||||
msgstr "kolora"
|
||||
|
||||
#: API_generated/oyranos_profile.c:66
|
||||
-msgid "Prefered CMM"
|
||||
+msgid "Preferred CMM"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:316
|
||||
#, fuzzy
|
||||
-msgid "Prefered Cmyk Editing Color Space"
|
||||
+msgid "Preferred Cmyk Editing Color Space"
|
||||
msgstr "kolora"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:346
|
||||
#, fuzzy
|
||||
-msgid "Prefered Gray Editing Color Space"
|
||||
+msgid "Preferred Gray Editing Color Space"
|
||||
msgstr "kolora"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:306
|
||||
#, fuzzy
|
||||
-msgid "Prefered Rgb Editing Color Space"
|
||||
+msgid "Preferred Rgb Editing Color Space"
|
||||
msgstr "kolora"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:326
|
||||
#, fuzzy
|
||||
-msgid "Prefered XYZ Editing Color Space"
|
||||
+msgid "Preferred XYZ Editing Color Space"
|
||||
msgstr "kolora"
|
||||
|
||||
#. choices
|
||||
@@ -2478,7 +2478,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:479
|
||||
msgid ""
|
||||
-"Rendering intent for color space transformations is typical the Relative "
|
||||
+"Rendering intent for color space transformations is typically the Relative "
|
||||
"Colorimetric intent plus Black Point Compensation or the Perceptual intent."
|
||||
msgstr ""
|
||||
|
||||
@@ -2748,7 +2748,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:219
|
||||
msgid ""
|
||||
"The conversion between color spaces of different shape and size can happen "
|
||||
-"in various ways. The Perceptual rendering intent is usual the best choice "
|
||||
+"in various ways. The Perceptual rendering intent is usually the best choice "
|
||||
"for photographs and artistic imagery. It is used in many automatic systems. "
|
||||
"The Relative Colorimetric rendering intent provides a well-defined standard, "
|
||||
"one-to-one color mapping, but without applying white point adaption. This "
|
||||
@@ -2962,7 +2962,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:347
|
||||
msgid ""
|
||||
-"The preferred Gray Editing Color Space shall describe a single lighness "
|
||||
+"The preferred Gray Editing Color Space shall describe a single lightness "
|
||||
"channel color space for grayscale images."
|
||||
msgstr ""
|
||||
|
||||
@@ -2973,13 +2973,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:327
|
||||
-msgid "The preferred XYZ Editing Color Space shall decribe CIE*XYZ."
|
||||
+msgid "The preferred XYZ Editing Color Space shall describe CIE*XYZ."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:183
|
||||
msgid ""
|
||||
"The proofing color space represents a real color device for simulation. "
|
||||
-"Possible uses cases are to simulate a print machine, a viewing environment "
|
||||
+"Possible use cases are to simulate a print machine, a viewing environment "
|
||||
"in a theater or a expected small monitor gamut."
|
||||
msgstr ""
|
||||
|
||||
@@ -3055,7 +3055,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:429
|
||||
msgid ""
|
||||
"This setting decides what to do in the case that colors have no color space "
|
||||
-"assigned. Typical the according assumed ICC profile should be assigned."
|
||||
+"assigned. Typically the according assumed ICC profile should be assigned."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_oyIM_profile.c:1167
|
||||
diff --git a/po/eu.po b/po/eu.po
|
||||
index f86f417..277b42d 100644
|
||||
--- a/po/eu.po
|
||||
+++ b/po/eu.po
|
||||
@@ -315,7 +315,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:273
|
||||
#, fuzzy
|
||||
-msgid "Anylyze ICC profile information on your system."
|
||||
+msgid "Analyze ICC profile information on your system."
|
||||
msgstr "Oyranos-en ezarpenak"
|
||||
|
||||
#: modules/oyranos_cmm_oyra_image.c:1065
|
||||
@@ -447,7 +447,7 @@ msgid ""
|
||||
"Behaviour of color space transformation for proofing. Most people want a "
|
||||
"preview on screen only. The Relative Colorimetric intent is right for that. "
|
||||
"The Absolute Colorimetric intent needs a very careful profiling and non-"
|
||||
-"trivial setup, but allowes for side-by-side comparisions."
|
||||
+"trivial setup, but allows for side-by-side comparisons."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_lraw.cpp:1041
|
||||
@@ -679,7 +679,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:174
|
||||
msgid ""
|
||||
"Color content can sometimes have no ICC profile assigned. This is a critical "
|
||||
-"situation as the system can not properly convert these colors. Therefor the "
|
||||
+"situation as the system can not properly convert these colors. Therefore the "
|
||||
"color processing parts need to pick some profile as a guess. These settings "
|
||||
"allow to change the picked ICC profile to guide the processing components "
|
||||
"and allow proper conversion and compositing."
|
||||
@@ -1031,7 +1031,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:236
|
||||
msgid ""
|
||||
-"Decide what to do when the default color spaces dont match the current ones."
|
||||
+"Decide what to do when the default color spaces don't match the current ones."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:154
|
||||
@@ -2167,7 +2167,7 @@ msgstr "Oyranos-en ezarpenak"
|
||||
#. HTML
|
||||
#: liboyranos_config/oyranos_xml.c:1036
|
||||
msgid ""
|
||||
-"Oyranos allowes detailed settings like preferred editing color spaces and "
|
||||
+"Oyranos allows detailed settings like preferred editing color spaces and "
|
||||
"the behaviour of color conversions or simulation. Oyranos reduces the work "
|
||||
"involved in all color management related decisions through automation, "
|
||||
"useful defaults and grouping of settings in selectable policies."
|
||||
@@ -2349,31 +2349,31 @@ msgstr "Aurrebista, saturatua"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:336
|
||||
#, fuzzy
|
||||
-msgid "Prefered CIE*Lab Editing Color Space"
|
||||
+msgid "Preferred CIE*Lab Editing Color Space"
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
#: API_generated/oyranos_profile.c:66
|
||||
-msgid "Prefered CMM"
|
||||
+msgid "Preferred CMM"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:316
|
||||
#, fuzzy
|
||||
-msgid "Prefered Cmyk Editing Color Space"
|
||||
+msgid "Preferred Cmyk Editing Color Space"
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:346
|
||||
#, fuzzy
|
||||
-msgid "Prefered Gray Editing Color Space"
|
||||
+msgid "Preferred Gray Editing Color Space"
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:306
|
||||
#, fuzzy
|
||||
-msgid "Prefered Rgb Editing Color Space"
|
||||
+msgid "Preferred Rgb Editing Color Space"
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:326
|
||||
#, fuzzy
|
||||
-msgid "Prefered XYZ Editing Color Space"
|
||||
+msgid "Preferred XYZ Editing Color Space"
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
#. choices
|
||||
@@ -2610,7 +2610,7 @@ msgstr "Oyranos-en ezarpenak"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:479
|
||||
msgid ""
|
||||
-"Rendering intent for color space transformations is typical the Relative "
|
||||
+"Rendering intent for color space transformations is typically the Relative "
|
||||
"Colorimetric intent plus Black Point Compensation or the Perceptual intent."
|
||||
msgstr ""
|
||||
|
||||
@@ -2896,7 +2896,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:219
|
||||
msgid ""
|
||||
"The conversion between color spaces of different shape and size can happen "
|
||||
-"in various ways. The Perceptual rendering intent is usual the best choice "
|
||||
+"in various ways. The Perceptual rendering intent is usually the best choice "
|
||||
"for photographs and artistic imagery. It is used in many automatic systems. "
|
||||
"The Relative Colorimetric rendering intent provides a well-defined standard, "
|
||||
"one-to-one color mapping, but without applying white point adaption. This "
|
||||
@@ -3113,7 +3113,7 @@ msgstr "Kolore-espazioa"
|
||||
#: liboyranos_config/oyranos_texts.c:347
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
-"The preferred Gray Editing Color Space shall describe a single lighness "
|
||||
+"The preferred Gray Editing Color Space shall describe a single lightness "
|
||||
"channel color space for grayscale images."
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
@@ -3126,13 +3126,13 @@ msgstr "Kolore-espazioa"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:327
|
||||
#, fuzzy
|
||||
-msgid "The preferred XYZ Editing Color Space shall decribe CIE*XYZ."
|
||||
+msgid "The preferred XYZ Editing Color Space shall describe CIE*XYZ."
|
||||
msgstr "Kolore-espazioa"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:183
|
||||
msgid ""
|
||||
"The proofing color space represents a real color device for simulation. "
|
||||
-"Possible uses cases are to simulate a print machine, a viewing environment "
|
||||
+"Possible use cases are to simulate a print machine, a viewing environment "
|
||||
"in a theater or a expected small monitor gamut."
|
||||
msgstr ""
|
||||
|
||||
@@ -3208,7 +3208,7 @@ msgstr "Inprimagailu ezko-termala"
|
||||
#: liboyranos_config/oyranos_texts.c:429
|
||||
msgid ""
|
||||
"This setting decides what to do in the case that colors have no color space "
|
||||
-"assigned. Typical the according assumed ICC profile should be assigned."
|
||||
+"assigned. Typically the according assumed ICC profile should be assigned."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_oyIM_profile.c:1167
|
||||
diff --git a/po/fr.po b/po/fr.po
|
||||
index f02e45c..737dc28 100644
|
||||
--- a/po/fr.po
|
||||
+++ b/po/fr.po
|
||||
@@ -309,7 +309,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:273
|
||||
#, fuzzy
|
||||
-msgid "Anylyze ICC profile information on your system."
|
||||
+msgid "Analyze ICC profile information on your system."
|
||||
msgstr "Oyranos Préférences"
|
||||
|
||||
#: modules/oyranos_cmm_oyra_image.c:1065
|
||||
@@ -441,7 +441,7 @@ msgid ""
|
||||
"Behaviour of color space transformation for proofing. Most people want a "
|
||||
"preview on screen only. The Relative Colorimetric intent is right for that. "
|
||||
"The Absolute Colorimetric intent needs a very careful profiling and non-"
|
||||
-"trivial setup, but allowes for side-by-side comparisions."
|
||||
+"trivial setup, but allows for side-by-side comparisons."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_lraw.cpp:1041
|
||||
@@ -673,7 +673,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:174
|
||||
msgid ""
|
||||
"Color content can sometimes have no ICC profile assigned. This is a critical "
|
||||
-"situation as the system can not properly convert these colors. Therefor the "
|
||||
+"situation as the system can not properly convert these colors. Therefore the "
|
||||
"color processing parts need to pick some profile as a guess. These settings "
|
||||
"allow to change the picked ICC profile to guide the processing components "
|
||||
"and allow proper conversion and compositing."
|
||||
@@ -1020,7 +1020,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:236
|
||||
msgid ""
|
||||
-"Decide what to do when the default color spaces dont match the current ones."
|
||||
+"Decide what to do when the default color spaces don't match the current ones."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:154
|
||||
@@ -2156,7 +2156,7 @@ msgstr "Oyranos Préférences"
|
||||
#. HTML
|
||||
#: liboyranos_config/oyranos_xml.c:1036
|
||||
msgid ""
|
||||
-"Oyranos allowes detailed settings like preferred editing color spaces and "
|
||||
+"Oyranos allows detailed settings like preferred editing color spaces and "
|
||||
"the behaviour of color conversions or simulation. Oyranos reduces the work "
|
||||
"involved in all color management related decisions through automation, "
|
||||
"useful defaults and grouping of settings in selectable policies."
|
||||
@@ -2335,31 +2335,31 @@ msgstr "Aperçu, saturation"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:336
|
||||
#, fuzzy
|
||||
-msgid "Prefered CIE*Lab Editing Color Space"
|
||||
+msgid "Preferred CIE*Lab Editing Color Space"
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
#: API_generated/oyranos_profile.c:66
|
||||
-msgid "Prefered CMM"
|
||||
+msgid "Preferred CMM"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:316
|
||||
#, fuzzy
|
||||
-msgid "Prefered Cmyk Editing Color Space"
|
||||
+msgid "Preferred Cmyk Editing Color Space"
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:346
|
||||
#, fuzzy
|
||||
-msgid "Prefered Gray Editing Color Space"
|
||||
+msgid "Preferred Gray Editing Color Space"
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:306
|
||||
#, fuzzy
|
||||
-msgid "Prefered Rgb Editing Color Space"
|
||||
+msgid "Preferred Rgb Editing Color Space"
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:326
|
||||
#, fuzzy
|
||||
-msgid "Prefered XYZ Editing Color Space"
|
||||
+msgid "Preferred XYZ Editing Color Space"
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
#. choices
|
||||
@@ -2589,7 +2589,7 @@ msgstr "Oyranos Préférences"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:479
|
||||
msgid ""
|
||||
-"Rendering intent for color space transformations is typical the Relative "
|
||||
+"Rendering intent for color space transformations is typically the Relative "
|
||||
"Colorimetric intent plus Black Point Compensation or the Perceptual intent."
|
||||
msgstr ""
|
||||
|
||||
@@ -2870,7 +2870,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:219
|
||||
msgid ""
|
||||
"The conversion between color spaces of different shape and size can happen "
|
||||
-"in various ways. The Perceptual rendering intent is usual the best choice "
|
||||
+"in various ways. The Perceptual rendering intent is usually the best choice "
|
||||
"for photographs and artistic imagery. It is used in many automatic systems. "
|
||||
"The Relative Colorimetric rendering intent provides a well-defined standard, "
|
||||
"one-to-one color mapping, but without applying white point adaption. This "
|
||||
@@ -3087,7 +3087,7 @@ msgstr "Espace colorimétrique"
|
||||
#: liboyranos_config/oyranos_texts.c:347
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
-"The preferred Gray Editing Color Space shall describe a single lighness "
|
||||
+"The preferred Gray Editing Color Space shall describe a single lightness "
|
||||
"channel color space for grayscale images."
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
@@ -3100,13 +3100,13 @@ msgstr "Espace colorimétrique"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:327
|
||||
#, fuzzy
|
||||
-msgid "The preferred XYZ Editing Color Space shall decribe CIE*XYZ."
|
||||
+msgid "The preferred XYZ Editing Color Space shall describe CIE*XYZ."
|
||||
msgstr "Espace colorimétrique"
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:183
|
||||
msgid ""
|
||||
"The proofing color space represents a real color device for simulation. "
|
||||
-"Possible uses cases are to simulate a print machine, a viewing environment "
|
||||
+"Possible use cases are to simulate a print machine, a viewing environment "
|
||||
"in a theater or a expected small monitor gamut."
|
||||
msgstr ""
|
||||
|
||||
@@ -3182,7 +3182,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:429
|
||||
msgid ""
|
||||
"This setting decides what to do in the case that colors have no color space "
|
||||
-"assigned. Typical the according assumed ICC profile should be assigned."
|
||||
+"assigned. Typically the according assumed ICC profile should be assigned."
|
||||
msgstr ""
|
||||
|
||||
#: modules/oyranos_cmm_oyIM_profile.c:1167
|
||||
diff --git a/po/oyranos.pot b/po/oyranos.pot
|
||||
index c5f064d..d4eb1f8 100644
|
||||
--- a/po/oyranos.pot
|
||||
+++ b/po/oyranos.pot
|
||||
@@ -139,7 +139,7 @@ msgid "Internal stored Size"
|
||||
msgstr ""
|
||||
|
||||
#: API_generated/oyranos_profile.c:66
|
||||
-msgid "Prefered CMM"
|
||||
+msgid "Preferred CMM"
|
||||
msgstr ""
|
||||
|
||||
#: API_generated/oyranos_profile.c:67
|
||||
@@ -552,7 +552,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:174
|
||||
msgid ""
|
||||
"Color content can sometimes have no ICC profile assigned. This is a critical "
|
||||
-"situation as the system can not properly convert these colors. Therefor the "
|
||||
+"situation as the system can not properly convert these colors. Therefore the "
|
||||
"color processing parts need to pick some profile as a guess. These settings "
|
||||
"allow to change the picked ICC profile to guide the processing components "
|
||||
"and allow proper conversion and compositing."
|
||||
@@ -569,7 +569,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:183
|
||||
msgid ""
|
||||
"The proofing color space represents a real color device for simulation. "
|
||||
-"Possible uses cases are to simulate a print machine, a viewing environment "
|
||||
+"Possible use cases are to simulate a print machine, a viewing environment "
|
||||
"in a theater or a expected small monitor gamut."
|
||||
msgstr ""
|
||||
|
||||
@@ -631,7 +631,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:219
|
||||
msgid ""
|
||||
"The conversion between color spaces of different shape and size can happen "
|
||||
-"in various ways. The Perceptual rendering intent is usual the best choice "
|
||||
+"in various ways. The Perceptual rendering intent is usually the best choice "
|
||||
"for photographs and artistic imagery. It is used in many automatic systems. "
|
||||
"The Relative Colorimetric rendering intent provides a well-defined standard, "
|
||||
"one-to-one color mapping, but without applying white point adaption. This "
|
||||
@@ -666,7 +666,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:236
|
||||
msgid ""
|
||||
-"Decide what to do when the default color spaces dont match the current ones."
|
||||
+"Decide what to do when the default color spaces don't match the current ones."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:237
|
||||
@@ -720,7 +720,7 @@ msgid "Profile Information"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:273
|
||||
-msgid "Anylyze ICC profile information on your system."
|
||||
+msgid "Analyze ICC profile information on your system."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:284
|
||||
@@ -743,7 +743,7 @@ msgid "Editing Rgb"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:306
|
||||
-msgid "Prefered Rgb Editing Color Space"
|
||||
+msgid "Preferred Rgb Editing Color Space"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:307
|
||||
@@ -757,7 +757,7 @@ msgid "Editing Cmyk"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:316
|
||||
-msgid "Prefered Cmyk Editing Color Space"
|
||||
+msgid "Preferred Cmyk Editing Color Space"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:317
|
||||
@@ -771,11 +771,11 @@ msgid "Editing XYZ"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:326
|
||||
-msgid "Prefered XYZ Editing Color Space"
|
||||
+msgid "Preferred XYZ Editing Color Space"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:327
|
||||
-msgid "The preferred XYZ Editing Color Space shall decribe CIE*XYZ."
|
||||
+msgid "The preferred XYZ Editing Color Space shall describe CIE*XYZ."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:335
|
||||
@@ -783,7 +783,7 @@ msgid "Editing Lab"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:336
|
||||
-msgid "Prefered CIE*Lab Editing Color Space"
|
||||
+msgid "Preferred CIE*Lab Editing Color Space"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:337
|
||||
@@ -795,12 +795,12 @@ msgid "Editing Gray"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:346
|
||||
-msgid "Prefered Gray Editing Color Space"
|
||||
+msgid "Preferred Gray Editing Color Space"
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:347
|
||||
msgid ""
|
||||
-"The preferred Gray Editing Color Space shall describe a single lighness "
|
||||
+"The preferred Gray Editing Color Space shall describe a single lightness "
|
||||
"channel color space for grayscale images."
|
||||
msgstr ""
|
||||
|
||||
@@ -910,7 +910,7 @@ msgstr ""
|
||||
#: liboyranos_config/oyranos_texts.c:429
|
||||
msgid ""
|
||||
"This setting decides what to do in the case that colors have no color space "
|
||||
-"assigned. Typical the according assumed ICC profile should be assigned."
|
||||
+"assigned. Typically the according assumed ICC profile should be assigned."
|
||||
msgstr ""
|
||||
|
||||
#. choices
|
||||
@@ -1012,7 +1012,7 @@ msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:479
|
||||
msgid ""
|
||||
-"Rendering intent for color space transformations is typical the Relative "
|
||||
+"Rendering intent for color space transformations is typically the Relative "
|
||||
"Colorimetric intent plus Black Point Compensation or the Perceptual intent."
|
||||
msgstr ""
|
||||
|
||||
@@ -1067,7 +1067,7 @@ msgid ""
|
||||
"Behaviour of color space transformation for proofing. Most people want a "
|
||||
"preview on screen only. The Relative Colorimetric intent is right for that. "
|
||||
"The Absolute Colorimetric intent needs a very careful profiling and non-"
|
||||
-"trivial setup, but allowes for side-by-side comparisions."
|
||||
+"trivial setup, but allows for side-by-side comparisons."
|
||||
msgstr ""
|
||||
|
||||
#: liboyranos_config/oyranos_texts.c:507
|
||||
@@ -1168,7 +1168,7 @@ msgstr ""
|
||||
#. HTML
|
||||
#: liboyranos_config/oyranos_xml.c:1036
|
||||
msgid ""
|
||||
-"Oyranos allowes detailed settings like preferred editing color spaces and "
|
||||
+"Oyranos allows detailed settings like preferred editing color spaces and "
|
||||
"the behaviour of color conversions or simulation. Oyranos reduces the work "
|
||||
"involved in all color management related decisions through automation, "
|
||||
"useful defaults and grouping of settings in selectable policies."
|
||||
diff --git a/src/liboyranos_config/oyranos_texts.c b/src/liboyranos_config/oyranos_texts.c
|
||||
index f7a7244..7a86a42 100644
|
||||
--- a/src/liboyranos_config/oyranos_texts.c
|
||||
+++ b/src/liboyranos_config/oyranos_texts.c
|
||||
@@ -171,7 +171,7 @@ oyOptionStringsTranslate_ ()
|
||||
oyGROUP_DEFAULT_PROFILES, 0, 0,
|
||||
_("Assumed Color Space"),
|
||||
_("Assumed Color Space for untagged colors"),
|
||||
- _("Color content can sometimes have no ICC profile assigned. This is a critical situation as the system can not properly convert these colors. Therefor the color processing parts need to pick some profile as a guess. These settings allow to change the picked ICC profile to guide the processing components and allow proper conversion and compositing."),
|
||||
+ _("Color content can sometimes have no ICC profile assigned. This is a critical situation as the system can not properly convert these colors. Therefore the color processing parts need to pick some profile as a guess. These settings allow to change the picked ICC profile to guide the processing components and allow proper conversion and compositing."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL,
|
||||
@@ -180,7 +180,7 @@ oyOptionStringsTranslate_ ()
|
||||
0, 0, 0,
|
||||
_("Proofing Color Space"),
|
||||
_("Color Space for Simulating real devices"),
|
||||
- _("The proofing color space represents a real color device for simulation. Possible uses cases are to simulate a print machine, a viewing environment in a theater or a expected small monitor gamut."),
|
||||
+ _("The proofing color space represents a real color device for simulation. Possible use cases are to simulate a print machine, a viewing environment in a theater or a expected small monitor gamut."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL,
|
||||
@@ -216,7 +216,7 @@ oyOptionStringsTranslate_ ()
|
||||
oyGROUP_BEHAVIOUR, 0, 0,
|
||||
_("Rendering"),
|
||||
_("The kind of ICC gamut mapping for transforming colors between differently sized color spaces"),
|
||||
- _("The conversion between color spaces of different shape and size can happen in various ways. The Perceptual rendering intent is usual the best choice for photographs and artistic imagery. It is used in many automatic systems. The Relative Colorimetric rendering intent provides a well-defined standard, one-to-one color mapping, but without applying white point adaption. This can lead to color clipping in case of colors falling outside the target gamut as a price for the otherwise colorimetric correctness. The Relative Colorimetric intent is often used in combination with Black Point Compensation. The Saturation rendering intent shall provide an optimal use of saturated device colors. The Absolute Colorimetric rendering intent works like the relative colorimetric one except the white point is adapted. All rendering intents beside the colorimetric ones rely on the color tables designed by the profile vendor."),
|
||||
+ _("The conversion between color spaces of different shape and size can happen in various ways. The Perceptual rendering intent is usually the best choice for photographs and artistic imagery. It is used in many automatic systems. The Relative Colorimetric rendering intent provides a well-defined standard, one-to-one color mapping, but without applying white point adaption. This can lead to color clipping in case of colors falling outside the target gamut as a price for the otherwise colorimetric correctness. The Relative Colorimetric intent is often used in combination with Black Point Compensation. The Saturation rendering intent shall provide an optimal use of saturated device colors. The Absolute Colorimetric rendering intent works like the relative colorimetric one except the white point is adapted. All rendering intents beside the colorimetric ones rely on the color tables designed by the profile vendor."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL,
|
||||
@@ -233,7 +233,7 @@ oyOptionStringsTranslate_ ()
|
||||
oySET_OPTIONS_M_( oyWIDGETTYPE_GROUP_TREE, oyWIDGET_GROUP_BEHAVIOUR_MISSMATCH, 1,
|
||||
oyGROUP_BEHAVIOUR, 0, 0,
|
||||
_("Mismatching"),
|
||||
- _("Decide what to do when the default color spaces dont match the current ones."),
|
||||
+ _("Decide what to do when the default color spaces don't match the current ones."),
|
||||
_("Decide how to resolve conflicts with input color spaces and current settings."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
@@ -270,7 +270,7 @@ oyOptionStringsTranslate_ ()
|
||||
0, 0, 0,
|
||||
_("Information"),
|
||||
_("Profile Information"),
|
||||
- _("Anylyze ICC profile information on your system."),
|
||||
+ _("Analyze ICC profile information on your system."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL,
|
||||
@@ -303,7 +303,7 @@ oyOptionStringsTranslate_ ()
|
||||
oySET_OPTIONS_M_( oyWIDGETTYPE_DEFAULT_PROFILE, oyWIDGET_EDITING_RGB, 2,
|
||||
oyGROUP_DEFAULT_PROFILES, oyGROUP_DEFAULT_PROFILES_EDIT, 0,
|
||||
_("Editing Rgb"),
|
||||
- _("Prefered Rgb Editing Color Space"),
|
||||
+ _("Preferred Rgb Editing Color Space"),
|
||||
_("The preferred Rgb Editing Color Space should represent a well behaving color space like sRGB."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
@@ -313,7 +313,7 @@ oyOptionStringsTranslate_ ()
|
||||
oySET_OPTIONS_M_( oyWIDGETTYPE_DEFAULT_PROFILE, oyWIDGET_EDITING_CMYK, 2,
|
||||
oyGROUP_DEFAULT_PROFILES, oyGROUP_DEFAULT_PROFILES_EDIT, 0,
|
||||
_("Editing Cmyk"),
|
||||
- _("Prefered Cmyk Editing Color Space"),
|
||||
+ _("Preferred Cmyk Editing Color Space"),
|
||||
_("The preferred Cmyk Editing Color Space should represent a color space that complies to well defined printing conditions like FOGRA or SWOP."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
@@ -323,8 +323,8 @@ oyOptionStringsTranslate_ ()
|
||||
oySET_OPTIONS_M_( oyWIDGETTYPE_DEFAULT_PROFILE, oyWIDGET_EDITING_XYZ, 2,
|
||||
oyGROUP_DEFAULT_PROFILES, oyGROUP_DEFAULT_PROFILES_EDIT, 0,
|
||||
_("Editing XYZ"),
|
||||
- _("Prefered XYZ Editing Color Space"),
|
||||
- _("The preferred XYZ Editing Color Space shall decribe CIE*XYZ."),
|
||||
+ _("Preferred XYZ Editing Color Space"),
|
||||
+ _("The preferred XYZ Editing Color Space shall describe CIE*XYZ."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
OY_DEFAULT_EDITING_XYZ_PROFILE,
|
||||
@@ -333,7 +333,7 @@ oyOptionStringsTranslate_ ()
|
||||
oySET_OPTIONS_M_( oyWIDGETTYPE_DEFAULT_PROFILE, oyWIDGET_EDITING_LAB, 2,
|
||||
oyGROUP_DEFAULT_PROFILES, oyGROUP_DEFAULT_PROFILES_EDIT, 0,
|
||||
_("Editing Lab"),
|
||||
- _("Prefered CIE*Lab Editing Color Space"),
|
||||
+ _("Preferred CIE*Lab Editing Color Space"),
|
||||
_("The preferred CIE*Lab Editing Color Space shall describe the CIE*Lab."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
@@ -343,8 +343,8 @@ oyOptionStringsTranslate_ ()
|
||||
oySET_OPTIONS_M_( oyWIDGETTYPE_DEFAULT_PROFILE, oyWIDGET_EDITING_GRAY, 2,
|
||||
oyGROUP_DEFAULT_PROFILES, oyGROUP_DEFAULT_PROFILES_EDIT, 0,
|
||||
_("Editing Gray"),
|
||||
- _("Prefered Gray Editing Color Space"),
|
||||
- _("The preferred Gray Editing Color Space shall describe a single lighness channel color space for grayscale images."),
|
||||
+ _("Preferred Gray Editing Color Space"),
|
||||
+ _("The preferred Gray Editing Color Space shall describe a single lightness channel color space for grayscale images."),
|
||||
0, /* choices */
|
||||
NULL, NULL, NULL, NULL,
|
||||
OY_DEFAULT_EDITING_GRAY_PROFILE,
|
||||
@@ -426,7 +426,7 @@ oyOptionStringsTranslate_ ()
|
||||
oyGROUP_BEHAVIOUR, oyGROUP_BEHAVIOUR_MISSMATCH, 0,
|
||||
_("No Image profile"),
|
||||
_("Image has no color space embedded. What default action shall be performed?"),
|
||||
- _("This setting decides what to do in the case that colors have no color space assigned. Typical the according assumed ICC profile should be assigned."),
|
||||
+ _("This setting decides what to do in the case that colors have no color space assigned. Typically the according assumed ICC profile should be assigned."),
|
||||
3, /* choices */
|
||||
_("Assign No Profile"),_("Assign Assumed Profile"),_("Prompt"), NULL,
|
||||
OY_ACTION_UNTAGGED_ASSIGN,
|
||||
@@ -476,7 +476,7 @@ oyOptionStringsTranslate_ ()
|
||||
oyGROUP_BEHAVIOUR, oyGROUP_BEHAVIOUR_RENDERING, 0,
|
||||
_("Rendering Intent"),
|
||||
_("Rendering intent for color space transformations."),
|
||||
- _("Rendering intent for color space transformations is typical the Relative Colorimetric intent plus Black Point Compensation or the Perceptual intent."),
|
||||
+ _("Rendering intent for color space transformations is typically the Relative Colorimetric intent plus Black Point Compensation or the Perceptual intent."),
|
||||
4, /* choices */
|
||||
_("Perceptual"),_("Relative Colorimetric"),_("Saturation"),_("Absolute Colorimetric"),
|
||||
OY_DEFAULT_RENDERING_INTENT,
|
||||
@@ -496,7 +496,7 @@ oyOptionStringsTranslate_ ()
|
||||
oyGROUP_BEHAVIOUR, oyGROUP_BEHAVIOUR_PROOF, 0,
|
||||
_("Proofing Rendering Intent"),
|
||||
_("Behaviour of color space transformation for proofing"),
|
||||
- _("Behaviour of color space transformation for proofing. Most people want a preview on screen only. The Relative Colorimetric intent is right for that. The Absolute Colorimetric intent needs a very careful profiling and non-trivial setup, but allowes for side-by-side comparisions."),
|
||||
+ _("Behaviour of color space transformation for proofing. Most people want a preview on screen only. The Relative Colorimetric intent is right for that. The Absolute Colorimetric intent needs a very careful profiling and non-trivial setup, but allows for side-by-side comparisons."),
|
||||
2, /* choices */
|
||||
_("Relative Colorimetric"),_("Absolute Colorimetric"),NULL,NULL,
|
||||
OY_DEFAULT_RENDERING_INTENT_PROOF,
|
|
@ -0,0 +1,54 @@
|
|||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Tue, 26 Mar 2013 11:09:01 +0000 (+0100)
|
||||
Subject: * [source]: omit profile with error
|
||||
X-Git-Url: http://www.oyranos.org/scm?p=oyranos.git;a=commitdiff_plain;h=ecbfe88cf77863c7c925f61d0e69d11474059cb8
|
||||
|
||||
* [source]: omit profile with error
|
||||
|
||||
a proper return value would be more helpful
|
||||
---
|
||||
|
||||
diff --git a/src/API_generated/oyProfile_s_.c b/src/API_generated/oyProfile_s_.c
|
||||
index 83629fe..338ed08 100644
|
||||
--- a/src/API_generated/oyProfile_s_.c
|
||||
+++ b/src/API_generated/oyProfile_s_.c
|
||||
@@ -8,12 +8,12 @@
|
||||
* Oyranos is an open source Colour Management System
|
||||
*
|
||||
* @par Copyright:
|
||||
- * 2004-2012 (C) Kai-Uwe Behrmann
|
||||
+ * 2004-2013 (C) Kai-Uwe Behrmann
|
||||
*
|
||||
* @author Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
* @par License:
|
||||
* new BSD - see: http://www.opensource.org/licenses/bsd-license.php
|
||||
- * @date 2012/10/31
|
||||
+ * @date 2013/03/26
|
||||
*/
|
||||
|
||||
|
||||
@@ -724,6 +724,9 @@ oyProfile_s_ * oyProfile_FromFile_ ( const char * name,
|
||||
}
|
||||
}
|
||||
|
||||
+ if(error >= 1 && s)
|
||||
+ oyProfile_Release( (oyProfile_s**)&s );
|
||||
+
|
||||
oyHash_Release_( &entry );
|
||||
|
||||
return s;
|
||||
diff --git a/src/sources/Profile.private_methods_definitions.c b/src/sources/Profile.private_methods_definitions.c
|
||||
index 7b49ca6..e131893 100644
|
||||
--- a/src/sources/Profile.private_methods_definitions.c
|
||||
+++ b/src/sources/Profile.private_methods_definitions.c
|
||||
@@ -311,6 +311,9 @@ oyProfile_s_ * oyProfile_FromFile_ ( const char * name,
|
||||
}
|
||||
}
|
||||
|
||||
+ if(error >= 1 && s)
|
||||
+ oyProfile_Release( (oyProfile_s**)&s );
|
||||
+
|
||||
oyHash_Release_( &entry );
|
||||
|
||||
return s;
|
||||
|
|
@ -0,0 +1,131 @@
|
|||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Sun, 17 Feb 2013 19:28:06 +0000 (+0100)
|
||||
Subject: * [oyX1]: set xcalib to screen if XRandR >= 1.2
|
||||
X-Git-Url: http://www.oyranos.org/scm?p=oyranos.git;a=commitdiff_plain;h=505b3931d9de6c667566278c5b3a1713d43212a8
|
||||
|
||||
* [oyX1]: set xcalib to screen if XRandR >= 1.2
|
||||
---
|
||||
|
||||
diff --git a/src/modules/devices/oyranos_monitor_x11.c b/src/modules/devices/oyranos_monitor_x11.c
|
||||
index a090b14..a530a81 100644
|
||||
--- a/src/modules/devices/oyranos_monitor_x11.c
|
||||
+++ b/src/modules/devices/oyranos_monitor_x11.c
|
||||
@@ -90,6 +90,8 @@ RROutput
|
||||
XRROutputInfo *
|
||||
oyX1Monitor_xrrOutputInfo_( oyX1Monitor_s * disp ) { return disp->output_info; }
|
||||
int oyX1Monitor_activeOutputs_( oyX1Monitor_s * disp ) { return disp->active_outputs; }
|
||||
+int oyX1Monitor_rrVersion_ ( oyX1Monitor_s * disp ) { return disp->rr_version; }
|
||||
+int oyX1Monitor_rrScreen_ ( oyX1Monitor_s * disp ) { return disp->rr_screen; }
|
||||
|
||||
|
||||
#endif
|
||||
@@ -680,7 +682,8 @@ int oyX1MonitorProfileSetup ( const char * display_name,
|
||||
char *text = 0;
|
||||
|
||||
DBG_PROG_START
|
||||
- disp = oyX1Monitor_newFrom_( display_name, 0 );
|
||||
+ /* XRandR needs a expensive initialisation */
|
||||
+ disp = oyX1Monitor_newFrom_( display_name, 1 );
|
||||
if(!disp)
|
||||
return 1;
|
||||
|
||||
@@ -721,6 +724,13 @@ int oyX1MonitorProfileSetup ( const char * display_name,
|
||||
*/
|
||||
sprintf(text,"xcalib -d %s -s %d %s \'%s\'", dpy_name, disp->geo[1],
|
||||
oy_debug?"-v":"", profile_fullname);
|
||||
+ if(oyX1Monitor_infoSource_( disp ) == oyX11INFO_SOURCE_XRANDR)
|
||||
+ sprintf(text,"xcalib -d %s -s %d %s \'%s\'", dpy_name, oyX1Monitor_rrScreen_(disp),
|
||||
+ oy_debug?"-v":"", profile_fullname);
|
||||
+ else
|
||||
+ sprintf(text,"xcalib -d %s -s %d %s \'%s\'", dpy_name, disp->geo[1],
|
||||
+ oy_debug?"-v":"", profile_fullname);
|
||||
+
|
||||
{
|
||||
Display * display = oyX1Monitor_device_( disp );
|
||||
int effective_screen = oyX1Monitor_screen_( disp );
|
||||
@@ -751,17 +761,21 @@ int oyX1MonitorProfileSetup ( const char * display_name,
|
||||
#endif
|
||||
|
||||
/* Check for incapabilities of X gamma table access */
|
||||
- if(can_gamma || oyX1Monitor_screen_( disp ) == 0)
|
||||
+ if(can_gamma || oyX1Monitor_screen_( disp ) == 0 || oyX1Monitor_infoSource_( disp ) == oyX11INFO_SOURCE_XRANDR )
|
||||
error = system(text);
|
||||
if(error &&
|
||||
error != 65280)
|
||||
{ /* hack */
|
||||
- WARNc2_S("%s %s", _("No monitor gamma curves by profile:"),
|
||||
- oyNoEmptyName_m_(profil_basename) )
|
||||
+ WARNc3_S("%s %s %d", _("No monitor gamma curves by profile:"),
|
||||
+ oyNoEmptyName_m_(profil_basename), error )
|
||||
error = -1;
|
||||
} else
|
||||
+ {
|
||||
/* take xcalib error not serious, turn into a issue */
|
||||
+ if(oy_debug)
|
||||
+ DBG1_S("xcalib returned %d", error)
|
||||
error = -1;
|
||||
+ }
|
||||
}
|
||||
|
||||
if(oy_debug)
|
||||
@@ -873,7 +887,8 @@ int oyX1MonitorProfileUnset ( const char * display_name )
|
||||
|
||||
DBG_PROG_START
|
||||
|
||||
- disp = oyX1Monitor_newFrom_( display_name, 0 );
|
||||
+ /* XRandR needs a expensive initialisation */
|
||||
+ disp = oyX1Monitor_newFrom_( display_name, 1 );
|
||||
if(!disp)
|
||||
{
|
||||
DBG_PROG_ENDE
|
||||
@@ -926,10 +941,16 @@ int oyX1MonitorProfileUnset ( const char * display_name )
|
||||
if( (ptr = strchr(ptr,'.')) != 0 )
|
||||
ptr[0] = '\000';
|
||||
|
||||
- oySnprintf2_(command, 1024, "xgamma -gamma 1.0 -screen %d -display %s",
|
||||
+ if(oyX1Monitor_infoSource_( disp ) == oyX11INFO_SOURCE_XRANDR)
|
||||
+ oySnprintf2_(command, 1024, "xrandr -display %s --output %s --gamma .999999:.999999:.999999",
|
||||
+ dpy_name, oyX1Monitor_systemPort_(disp));
|
||||
+ else
|
||||
+ oySnprintf2_(command, 1024, "xgamma -gamma 1.0 -screen %d -display %s",
|
||||
disp->geo[1], dpy_name);
|
||||
|
||||
- if(screen == disp->geo[1])
|
||||
+ if(oy_debug)
|
||||
+ DBG3_S( "%d %d system: %s", screen, disp->geo[1], command )
|
||||
+ if(screen == disp->geo[1] || oyX1Monitor_infoSource_( disp ) == oyX11INFO_SOURCE_XRANDR)
|
||||
r = system( command );
|
||||
if(r) WARNc2_S("%s %d", _("found issues"),r);
|
||||
|
||||
@@ -1347,17 +1368,16 @@ oyX1Monitor_s* oyX1Monitor_newFrom_ ( const char * display_name,
|
||||
|
||||
if(monitors == 0)
|
||||
{
|
||||
- if(strcmp("default", output_info->name) != 0)
|
||||
- {
|
||||
- disp->info_source = oyX11INFO_SOURCE_XRANDR;
|
||||
-
|
||||
- } else
|
||||
+ if(!XRRGetCrtcGammaSize( display, output_info->crtc ))
|
||||
{
|
||||
XRRFreeOutputInfo( output_info );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
+ if(XRRGetCrtcGammaSize( display, output_info->crtc ))
|
||||
+ disp->info_source = oyX11INFO_SOURCE_XRANDR;
|
||||
+
|
||||
crtc_info = XRRGetCrtcInfo( disp->display, res_temp,
|
||||
output_info->crtc );
|
||||
if(crtc_info)
|
||||
@@ -1390,6 +1410,8 @@ oyX1Monitor_s* oyX1Monitor_newFrom_ ( const char * display_name,
|
||||
if(disp->output_info->name && oyStrlen_(disp->output_info->name))
|
||||
disp->system_port = oyStringCopy_( disp->output_info->name,
|
||||
oyAllocateFunc_ );
|
||||
+ disp->rr_version = major_versionp*100 + minor_versionp;
|
||||
+ disp->rr_screen = xrand_screen;
|
||||
}
|
||||
|
||||
++ monitors;
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
From 5c9b4a85213e5f63d716655b6c61a7efce07223c Mon Sep 17 00:00:00 2001
|
||||
From: Kai-Uwe Behrmann <ku.b@gmx.de>
|
||||
Date: Sun, 17 Feb 2013 20:27:04 +0100
|
||||
Subject: [PATCH] * [oyX1]: use more internal XRandR information
|
||||
|
||||
---
|
||||
src/include_private/oyranos_monitor_internal_x11.h | 4 ++++
|
||||
1 files changed, 4 insertions(+), 0 deletions(-)
|
||||
|
||||
diff --git a/src/include_private/oyranos_monitor_internal_x11.h b/src/include_private/oyranos_monitor_internal_x11.h
|
||||
index c41aa3a..363b759 100644
|
||||
--- a/src/include_private/oyranos_monitor_internal_x11.h
|
||||
+++ b/src/include_private/oyranos_monitor_internal_x11.h
|
||||
@@ -60,6 +60,8 @@ typedef struct {
|
||||
RROutput output; /**< XRandR output */
|
||||
XRROutputInfo * output_info; /**< XRandR output info */
|
||||
int active_outputs; /**< outputs with crtc and gamma size */
|
||||
+ int rr_version; /**< XRandR version */
|
||||
+ int rr_screen; /**< nth XRandR output */
|
||||
# endif
|
||||
char * system_port; /**< the operating systems port name */
|
||||
oyBlob_s * edid; /**< edid for the device */
|
||||
@@ -95,6 +97,8 @@ RROutput oyX1Monitor_xrrOutput_ ( oyX1Monitor_s * disp );
|
||||
XRROutputInfo *
|
||||
oyX1Monitor_xrrOutputInfo_( oyX1Monitor_s * disp );
|
||||
int oyX1Monitor_activeOutputs_( oyX1Monitor_s * disp );
|
||||
+int oyX1Monitor_rrVersion_ ( oyX1Monitor_s * disp );
|
||||
+int oyX1Monitor_rrScreen_ ( oyX1Monitor_s * disp );
|
||||
# endif
|
||||
|
||||
int oyX1MonitorProfileSetup ( const char * display_name,
|
||||
--
|
||||
1.5.6.5
|
||||
|
||||
|
|
@ -1,84 +0,0 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-0.4.0-r1.ebuild,v 1.3 2013/04/13 02:23:48 xmw Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="colour management system allowing to share various settings across applications and services"
|
||||
HOMEPAGE="http://www.oyranos.org/"
|
||||
SRC_URI="mirror://sourceforge/oyranos/Oyranos/Oyranos%200.4/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="X doc static-libs test xinerama"
|
||||
|
||||
RDEPEND="<app-admin/elektra-0.7.1-r3
|
||||
dev-libs/libxml2
|
||||
dev-libs/yajl
|
||||
media-gfx/exiv2
|
||||
media-libs/lcms:0
|
||||
media-libs/libpng:0
|
||||
media-libs/libraw
|
||||
>=media-libs/libXcm-0.5.0
|
||||
X? ( x11-libs/fltk:1
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libXxf86vm
|
||||
xinerama? ( x11-libs/libXinerama ) )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-doc/doxygen
|
||||
test? ( media-libs/icc-profiles-basiccolor-printing2009
|
||||
media-libs/icc-profiles-openicc )"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
einfo remove bundled elektra yajl
|
||||
rm -rf elektra* yajl || die
|
||||
#keep bundled libXNVCtrl
|
||||
|
||||
epatch "${FILESDIR}"/${P}-buildsystem.patch \
|
||||
"${FILESDIR}"/${PN}-0.3.2-test.patch
|
||||
|
||||
if ! use X ; then
|
||||
sed -e '/FLTK_GUI =/s:=.*:=:' \
|
||||
-i makefile.in || die
|
||||
fi
|
||||
|
||||
sed -e '/#include/s:alpha/oyranos_alpha.h:oyranos_alpha.h:' \
|
||||
-i examples/libraw/oyranos_file.cpp || die
|
||||
|
||||
sed -e '/^#include/s:kdb.h:elektra-kdb.h:' \
|
||||
-i test.c test2.cpp oyranos_elektra.c || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export CC CXX
|
||||
econf --prefix=/usr \
|
||||
--enable-verbose \
|
||||
$(use_with X x) \
|
||||
$(use_enable X libX11) \
|
||||
$(use_enable X libXext) \
|
||||
$(use_enable X libXrandr) \
|
||||
$(use_enable X libXxf86vm) \
|
||||
$(use_enable X fltk) \
|
||||
$(use_enable static-libs static) \
|
||||
$(use_enable xinerama libXinerama)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake all
|
||||
use X && emake oforms
|
||||
emake docu
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" docdir="${EPREFIX}"/usr/share/doc/${P} install-main
|
||||
|
||||
if ! use doc ; then
|
||||
rm -rf "${ED}/usr/share/doc/${P}/html" || die
|
||||
fi
|
||||
}
|
|
@ -1,84 +0,0 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-0.9.1-r1.ebuild,v 1.2 2013/04/13 02:23:48 xmw Exp $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="colour management system allowing to share various settings across applications and services"
|
||||
HOMEPAGE="http://www.oyranos.org/"
|
||||
SRC_URI="mirror://sourceforge/oyranos/Oyranos/Oyranos%200.4/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="X doc static-libs test xinerama"
|
||||
|
||||
RDEPEND="<app-admin/elektra-0.7.1-r3
|
||||
dev-libs/libxml2
|
||||
dev-libs/yajl
|
||||
media-gfx/exiv2
|
||||
media-libs/lcms:0
|
||||
media-libs/libpng:0
|
||||
media-libs/libraw
|
||||
>=media-libs/libXcm-0.5.1
|
||||
X? ( x11-libs/fltk:1
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libXxf86vm
|
||||
xinerama? ( x11-libs/libXinerama ) )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-doc/doxygen
|
||||
media-gfx/graphviz
|
||||
test? ( media-libs/icc-profiles-basiccolor-printing2009
|
||||
media-libs/icc-profiles-openicc )"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
einfo remove bundled elektra yajl
|
||||
rm -rf elektra* yajl || die
|
||||
#keep bundled libXNVCtrl
|
||||
|
||||
epatch "${FILESDIR}"/${PN}-0.9.0-buildsystem.patch
|
||||
epatch "${FILESDIR}"/${PN}-0.9.1-buildsystem-2.patch
|
||||
|
||||
if ! use X ; then
|
||||
sed -e '/FLTK_GUI =/s:=.*:=:' \
|
||||
-i makefile.in || die
|
||||
fi
|
||||
|
||||
if has_version "<app-admin/elektra-0.8.3" ; then
|
||||
sed -e '/^#include/s:kdb.h:elektra-kdb.h:' \
|
||||
-i test.c test2.cpp oyranos_elektra.c || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
tc-export CC CXX
|
||||
econf --prefix=/usr \
|
||||
--enable-verbose \
|
||||
$(use_with X x) \
|
||||
$(use_enable X libX11) \
|
||||
$(use_enable X libXext) \
|
||||
$(use_enable X libXrandr) \
|
||||
$(use_enable X libXxf86vm) \
|
||||
$(use_enable X fltk) \
|
||||
$(use_enable static-libs static) \
|
||||
$(use_enable xinerama libXinerama)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake all
|
||||
use X && emake oforms
|
||||
emake docu
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" docdir="${EPREFIX}"/usr/share/doc/${P} install-main
|
||||
|
||||
if ! use doc ; then
|
||||
rm -rf "${ED}/usr/share/doc/${P}/html" || die
|
||||
fi
|
||||
}
|
124
media-libs/oyranos/oyranos-0.9.4-r1.ebuild
Normal file
124
media-libs/oyranos/oyranos-0.9.4-r1.ebuild
Normal file
|
@ -0,0 +1,124 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-0.9.4-r1.ebuild,v 1.1 2013/04/22 17:07:37 xmw Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils flag-o-matic cmake-utils cmake-multilib
|
||||
|
||||
DESCRIPTION="colour management system allowing to share various settings across applications and services"
|
||||
HOMEPAGE="http://www.oyranos.org/"
|
||||
SRC_URI="mirror://sourceforge/oyranos/Oyranos/Oyranos%200.4/${P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="X cairo cups doc exif fltk qt4 test"
|
||||
|
||||
RDEPEND="=app-admin/elektra-0.7*[${MULTILIB_USEDEP}]
|
||||
media-libs/icc-profiles-basiccolor-printing2009
|
||||
media-libs/icc-profiles-basiccolor-printing2009
|
||||
>=media-libs/libXcm-0.5.2[${MULTILIB_USEDEP}]
|
||||
X? ( x11-libs/libXfixes[${MULTILIB_USEDEP}]
|
||||
x11-libs/libXrandr[${MULTILIB_USEDEP}]
|
||||
x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
|
||||
x11-libs/libXinerama[${MULTILIB_USEDEP}] )
|
||||
!amd64? (
|
||||
dev-libs/libxml2
|
||||
cairo? ( x11-libs/cairo )
|
||||
cups? ( net-print/cups )
|
||||
qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
|
||||
)
|
||||
amd64? (
|
||||
abi_x86_64? (
|
||||
dev-libs/libxml2
|
||||
|| ( media-libs/lcms:0 media-libs/lcms:2 )
|
||||
media-libs/libpng:0
|
||||
cairo? ( x11-libs/cairo )
|
||||
cups? ( net-print/cups )
|
||||
qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
|
||||
)
|
||||
abi_x86_32? (
|
||||
app-emulation/emul-linux-x86-baselibs
|
||||
cairo? ( app-emulation/emul-linux-x86-gtklibs )
|
||||
cups? ( app-emulation/emul-linux-x86-baselibs )
|
||||
qt4? ( app-emulation/emul-linux-x86-qtlibs )
|
||||
)
|
||||
)
|
||||
media-gfx/graphviz
|
||||
dev-libs/yajl
|
||||
exif? ( media-gfx/exiv2 )
|
||||
fltk? ( x11-libs/fltk:1 )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-doc/doxygen"
|
||||
|
||||
RESTRICT="test"
|
||||
REQUIRED_USE="amd64? ( exif? ( !abi_x86_32 ) )"
|
||||
CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST} FindFltk FindXcm FindCUPS"
|
||||
|
||||
src_prepare() {
|
||||
einfo remove bundled libs
|
||||
rm -rf elektra* yajl || die
|
||||
|
||||
epatch "${FILESDIR}/${P}"-buildsystem-r1.patch
|
||||
|
||||
#upstream(ed) fixes, be more verbose, better xrandr handling
|
||||
epatch "${FILESDIR}/${P}"-fix-array-access.patch \
|
||||
"${FILESDIR}/${P}"-fix-oyRankMap-helper-functions-crashes.patch \
|
||||
"${FILESDIR}/${P}"-fix-oyStringSegment-crash.patch \
|
||||
"${FILESDIR}/${P}"-be-more-verbose.patch \
|
||||
"${FILESDIR}/${P}"-use-more-internal-xrandr-info.patch \
|
||||
"${FILESDIR}/${P}"-set-xcalib-to-screen-if-ge-xrandr-12.patch \
|
||||
"${FILESDIR}/${P}"-fix-double-object-release.patch \
|
||||
"${FILESDIR}/${P}"-omit-profile-with-error.patch \
|
||||
"${FILESDIR}/${P}"-fix-typos-and-grammar.patch
|
||||
|
||||
#upstream fix for QA notice, gentoo bug 464254
|
||||
epatch "${FILESDIR}/${P}"-fix-runpaths.patch
|
||||
|
||||
#fix really ugly and prominently visible typo (solved in 0.9.5)
|
||||
sed -e 's/Promt/Prompt/' \
|
||||
-i src/liboyranos_config/oyranos_texts.c po/*.{po,pot} settings/*xml || die
|
||||
|
||||
if use fltk ; then
|
||||
#src/examples does not include fltk flags
|
||||
append-cflags $(fltk-config --cflags)
|
||||
append-cxxflags $(fltk-confiag --cxxflags)
|
||||
fi
|
||||
|
||||
cmake-utils_src_prepare
|
||||
|
||||
mycmakeargs=(
|
||||
$(usex X -DWANT_X11=1 "")
|
||||
$(usex cairo -DWANT_CAIRO=1 "")
|
||||
$(usex cups -DWANT_CUPS=1 "")
|
||||
$(usex exif -DWANT_EXIV2=1 "")
|
||||
$(usex fltk -DWANT_FLTK=1 "")
|
||||
$(usex qt4 -DWANT_QT4=1 "")
|
||||
-DWANT_LIBRAW=1
|
||||
)
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
cmake-multilib_src_configure
|
||||
|
||||
if use abi_x86_32 && use abi_x86_64 ; then
|
||||
sed -e 's:lib64:lib32:g' \
|
||||
-i "${S}"-x86/CMakeCache.txt || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
if use abi_x86_32 && use abi_x86_64 ; then
|
||||
sed -e '/OY_LIBDIR/s:lib32:lib64:'\
|
||||
-i "${S}"-x86/src/include/oyranos_version.h || die
|
||||
fi
|
||||
|
||||
cmake-multilib_src_install
|
||||
|
||||
dodoc AUTHORS ChangeLog README
|
||||
if use doc ; then
|
||||
mv "${ED}/usr/share/doc/${PN}/*" "${ED}/usr/share/doc/${P}" || die
|
||||
fi
|
||||
rm -rf "${ED}/usr/share/doc/${PN}" || die
|
||||
}
|
|
@ -1,24 +1,26 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-0.9.4.ebuild,v 1.2 2013/04/12 23:54:12 xmw Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/oyranos/oyranos-9999.ebuild,v 1.1 2013/04/22 17:07:37 xmw Exp $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils flag-o-matic cmake-utils cmake-multilib
|
||||
inherit eutils flag-o-matic cmake-utils cmake-multilib git-2
|
||||
|
||||
DESCRIPTION="colour management system allowing to share various settings across applications and services"
|
||||
HOMEPAGE="http://www.oyranos.org/"
|
||||
SRC_URI="mirror://sourceforge/oyranos/Oyranos/Oyranos%200.4/${P}.tar.bz2"
|
||||
EGIT_REPO_URI="git://www.${PN}.org/git/${PN}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
KEYWORDS=""
|
||||
IUSE="X cairo cups doc exif fltk qt4 raw test"
|
||||
|
||||
RDEPEND=">=app-admin/elektra-0.8.3-r1
|
||||
RDEPEND="=app-admin/elektra-0.7*
|
||||
dev-libs/libxml2
|
||||
dev-libs/yajl
|
||||
media-gfx/exiv2
|
||||
media-libs/icc-profiles-basiccolor-printing2009
|
||||
media-libs/icc-profiles-basiccolor-printing2009
|
||||
|| ( media-libs/lcms:0 media-libs/lcms:2 )
|
||||
media-libs/libpng:0
|
||||
media-libs/libraw
|
||||
|
@ -35,16 +37,21 @@ RDEPEND=">=app-admin/elektra-0.8.3-r1
|
|||
raw? ( media-libs/libraw )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-doc/doxygen
|
||||
media-gfx/graphviz
|
||||
test? ( media-libs/icc-profiles-basiccolor-printing2009
|
||||
media-libs/icc-profiles-openicc )"
|
||||
media-gfx/graphviz"
|
||||
|
||||
#RESTRICT="test"
|
||||
RESTRICT="test"
|
||||
|
||||
CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST} FindFltk FindElektra FindXcm FindCUPS"
|
||||
CMAKE_REMOVE_MODULES_LIST="${CMAKE_REMOVE_MODULES_LIST} FindFltk FindXcm FindCUPS"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${P}"-buildsystem.patch
|
||||
einfo remove bundled libs
|
||||
rm -rf elektra* yajl || die
|
||||
|
||||
epatch "${FILESDIR}/${PN}"-0.9.4-buildsystem-r1.patch
|
||||
|
||||
#fix really ugly and prominently visible typo (solved in 0.9.5)
|
||||
sed -e 's/Promt/Prompt/' \
|
||||
-i src/liboyranos_config/oyranos_texts.c po/*.{po,pot} settings/*xml || die
|
||||
|
||||
if use fltk ; then
|
||||
#src/examples does not include fltk flags
|
||||
|
@ -54,9 +61,6 @@ src_prepare() {
|
|||
|
||||
cmake-utils_src_prepare
|
||||
|
||||
einfo remove bundled libs
|
||||
rm -rf elektra* yajl || die
|
||||
|
||||
mycmakeargs=(
|
||||
$(usex X -DWANT_X11=1 "")
|
||||
$(usex cairo -DWANT_CAIRO=1 "")
|
|
@ -1,12 +1,12 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.0.5.ebuild,v 1.8 2013/02/23 14:53:08 ago Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.0.5.ebuild,v 1.9 2013/04/22 19:01:02 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="alpha amd64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
|
||||
KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libmms-0.4"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.0.6.ebuild,v 1.1 2013/04/01 13:09:05 eva Exp $
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.0.6.ebuild,v 1.2 2013/04/22 19:01:02 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libmms-0.4"
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
DIST vdr-skinenigmang-0.1.1.tgz 89727 SHA256 2d87b4f0257e6f6272b72d9dcb97446b70a0da77872b26e467b8462e53d4e72f SHA512 ed3b9541b9a2ce8302cbbde4ac8b1d03d46d9d09c9f7c98e0af60bc3f33f7c6f00d5cf815d8be10a2a9643d4590409bad6da94ac9690e2bfee4b223c2793f315 WHIRLPOOL 2f2f6ce6895378ba652774a17ff1bc9c57de7c903d7ced85c1edb4b71d1cfaa6dc04351f2a7d7f850a3285e0f7b7f0eab9721fbcafe30ac7eaffbf218b65cc5f
|
||||
DIST vdr-skinenigmang-0.1.2.tgz 92959 SHA256 b64fb69312dc92a8b45aac4ad5a3c4b3af7328af0f872da57f419bcb7f94a1ad SHA512 2ed5fef393f2256156cfbf17e3eabb2dda7bad89b479dbda468bc5cf8cca4444ff4e7f718619aafe346b88ad3b8af2000abca7d0024dcd4c8a88dd398586e613 WHIRLPOOL 236141ac5f3d2f8af75481607957085c5f54d2c77ec716fe01646c125872b12454f2c8495222144cb75ce4af843aeedca71af53c6822d01229fd4b2d1eb6b7dc
|
||||
DIST vdr-skinenigmang-0.1.2_p20120618.tar.gz 92134 SHA256 f0a21664c045f8018843b1b6c47f85f20bcc2a65ec33308d32ac53a5f2504f46 SHA512 664d98bcb6107808abb08163336303dab84b06ac08b96ed0747a82121554a5931af217e4385e041f9adc6ede991b1c157212deed11354606f54a5b7e0f3b6323 WHIRLPOOL 33a491de450c84a29716f80390a36316d3e97b1ab109b61a235a59672126d0d5c4b3d4ef93e0ac7305ad80519b87ef4c170c29f4b771639c44468865287eaed3
|
||||
DIST vdr-skinenigmang-0.1.2_p20130302.tar.gz 93637 SHA256 9b937fadc95c3512d9997de40070b8fab3d7e23719046090a21ffd562dba5d44 SHA512 ebf726f02647c8f71fcc4e67967caf561fd9df366aad7d227773317ea08001b1a83697f902c02ca922973df20b1821dd46387dad3f83739e36109b741d2ba016 WHIRLPOOL d1946ce268231c76e1baf0af2a6866ac48a051ee6a91800ca68a69a8df142ae75fa4e335ec9796b090e65080d3c517c1ad16acef7703f1ee8a0d9c33090534e2
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-skinenigmang/vdr-skinenigmang-0.1.2_p20130302.ebuild,v 1.1 2013/04/22 17:45:17 hd_brummy Exp $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit vdr-plugin-2
|
||||
|
||||
HG_REVISION="0147c0ee6222bd10714ef36f42dcee94495bdb92"
|
||||
HG_REVISION_DATE="20130302"
|
||||
|
||||
DESCRIPTION="VDR - Skin Plugin: enigma-ng"
|
||||
HOMEPAGE="http://andreas.vdr-developer.org/enigmang/"
|
||||
SRC_URI="http://projects.vdr-developer.org/git/vdr-plugin-skinenigmang.git/snapshot/vdr-plugin-skinenigmang-${HG_REVISION}.tar.gz ->
|
||||
vdr-skinenigmang-0.1.2_p${HG_REVISION_DATE}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="imagemagick"
|
||||
|
||||
DEPEND=">=media-video/vdr-1.5.7"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
x11-themes/skinenigmang-logos
|
||||
imagemagick? ( media-gfx/imagemagick[cxx] )"
|
||||
|
||||
S="${WORKDIR}/vdr-plugin-skinenigmang-${HG_REVISION}"
|
||||
|
||||
src_prepare() {
|
||||
# remove untranslated languages files
|
||||
rm po/{cs_CZ,da_DK,el_GR,et_EE,hr_HR,nn_NO,pl_PL,pt_PT,ro_RO,sl_SI,sv_SE,tr_TR}.po
|
||||
|
||||
vdr-plugin-2_src_prepare
|
||||
|
||||
use imagemagick && sed -i "s:#HAVE_IMAGEMAGICK:HAVE_IMAGEMAGICK:" Makefile
|
||||
|
||||
sed -i Makefile \
|
||||
-e "s:-I/usr/local/include/ImageMagick:\$(shell pkg-config --cflags MagickCore):" \
|
||||
-e "s:-lMagick++:\$(shell pkg-config --libs Magick++):"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
vdr-plugin-2_src_install
|
||||
|
||||
insinto /etc/vdr/themes
|
||||
doins "${S}"/themes/*
|
||||
}
|
|
@ -2,3 +2,4 @@ DIST rhythmbox-0.12.8.tar.bz2 5358950 SHA256 1752fab135808aa78a9afde78448e992020
|
|||
DIST rhythmbox-0.13.3.tar.bz2 9978135 SHA256 ad6532864bb4df30f1014ec81ddc0d2d3f69241235627f46abe5578cf629052a SHA512 a38edfb87473c6ea8088b5662d39b95e74f6c3166dc3c3c1d6417b62b1d3e27662143fd9f7a3aeebea096e54058d178c38ba3be89e3bc24d10f2903e3719417e WHIRLPOOL db4fb3073de17d884f3a6fb7f55666673d48316f1aa6a00e9f8a05349f4569606a7bbaf14e15826659e27890f538e9c92a2090f37d1364d74f127ce09e6ee819
|
||||
DIST rhythmbox-2.97.tar.xz 6027128 SHA256 b52567cf45bf13c0452593da7f907920bd4cf31916ca8dcd15d555336b4947e4 SHA512 0bc7869a32a3df91952583ac71aba3e967f9b1f6d38ee717dcd9d6d8f9837fec53985cd44dcdd60aa3f6db573903922e770c7e20af41385f7321a52e680db534 WHIRLPOOL 314071a0f2e6c3a5569237b7b817c4e9ab0fef48bd83424652ff53dc924074c0ed883c46bd4f8600cbe310196d22fdf2fd70bea6a8bac847290147cac6f56658
|
||||
DIST rhythmbox-2.98.tar.xz 5945988 SHA256 a5c0a18a7c76133d36c7dcbdc37e304eae8272703985b17b540d68603b0c76d5 SHA512 f2bafd858694e5b5f1c87da26d7232fb02d923020375b83ac90f091101ede52d646c3a71b0759d1b2630363391d5e764b520a25a17d22df743975ba973b7a111 WHIRLPOOL 23d4b2b43888bf503b99ddeef2595908647739bbd85b34d80b9a0ea74a4c539f4e588815a54919a85a57047c6f9b44dc896a9a31e2a4214816067d68dbf5f282
|
||||
DIST rhythmbox-2.99.1.tar.xz 6376048 SHA256 ed30bb534a789e2b50f953e33eee0bb09f389fe813d433a87d504d07be5f7777 SHA512 c87eb9d28b789afc86f25f37fe8e34cf83ea843f50f5b3bda703b6b551a440108d252a264a6ad0242fcf012319dd45a3a1587e402a869b3194574a3649d4d590 WHIRLPOOL a628556940954c0d77ea46e4531dbd83ac3bc54f541805c8b94c479f82c1d962f0b9726c3644f0a4857f747ebe3bddbcf71b8b015eb9c9fa68517c2fc2d29a45
|
||||
|
|
|
@ -4,13 +4,11 @@
|
|||
<herd>gnome</herd>
|
||||
<herd>gstreamer</herd>
|
||||
<use>
|
||||
<flag name="clutter">Build the visualizer plugin which uses
|
||||
<pkg>media-libs/clutter</pkg> and <pkg>x11-libs/mx</pkg></flag>
|
||||
<flag name="daap">Build the local network music sharing plugin which uses
|
||||
the DAAP protocol using <pkg>net-libs/libdmapsharing</pkg></flag>
|
||||
<flag name="lastfm">Build a plugin for Last.fm and Librefm scrobbling</flag>
|
||||
<flag name="html">Use <pkg>net-libs/webkit-gtk</pkg> for detecting and
|
||||
displaying HTML podcast episode descriptions.</flag>
|
||||
<flag name="clutter">Build the visualizer plugin which uses <pkg>media-libs/clutter</pkg> and <pkg>x11-libs/mx</pkg></flag>
|
||||
<flag name="daap">Build the local network music sharing plugin which uses the DAAP protocol using <pkg>net-libs/libdmapsharing</pkg></flag>
|
||||
<flag name="html">Use <pkg>net-libs/webkit-gtk</pkg> for detecting and displaying HTML podcast episode descriptions.</flag>
|
||||
<flag name="lastfm">Build a plugin for Last.fm and Librefm scrobbling</flag>
|
||||
<flag name="libsecret">Enable libsecret support to store login credentials</flag>
|
||||
<flag name="zeitgeist">Build the plugin to inject events to <pkg>gnome-extra/zeitgeist</pkg></flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
136
media-sound/rhythmbox/rhythmbox-2.99.1.ebuild
Normal file
136
media-sound/rhythmbox/rhythmbox-2.99.1.ebuild
Normal file
|
@ -0,0 +1,136 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-sound/rhythmbox/rhythmbox-2.99.1.ebuild,v 1.1 2013/04/22 19:01:44 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
GNOME2_LA_PUNT="yes"
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
PYTHON_REQ_USE="xml"
|
||||
|
||||
inherit eutils gnome2 python-single-r1 multilib virtualx
|
||||
|
||||
DESCRIPTION="Music management and playback software for GNOME"
|
||||
HOMEPAGE="http://projects.gnome.org/rhythmbox/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="cdr clutter daap dbus html ipod libnotify libsecret lirc mtp nsplugin +python test +udev upnp-av webkit zeitgeist"
|
||||
# vala
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
|
||||
REQUIRED_USE="
|
||||
ipod? ( udev )
|
||||
mtp? ( udev )
|
||||
dbus? ( python )
|
||||
webkit? ( python )"
|
||||
|
||||
# FIXME: double check what to do with fm-radio plugin
|
||||
COMMON_DEPEND="
|
||||
>=dev-libs/glib-2.34:2
|
||||
>=dev-libs/libxml2-2.7.8:2
|
||||
>=x11-libs/gtk+-3.6.0:3[introspection]
|
||||
>=x11-libs/gdk-pixbuf-2.18.0:2
|
||||
>=dev-libs/gobject-introspection-0.10.0
|
||||
>=dev-libs/libpeas-0.7.3[gtk,python?]
|
||||
>=dev-libs/totem-pl-parser-3.2
|
||||
|| ( >=net-libs/libsoup-2.42:2.4 >=net-libs/libsoup-gnome-2.26:2.4 )
|
||||
media-libs/gst-plugins-base:1.0[introspection]
|
||||
media-libs/gstreamer:1.0[introspection]
|
||||
>=sys-libs/tdb-1.2.6
|
||||
dev-libs/json-glib
|
||||
|
||||
clutter? (
|
||||
>=media-libs/clutter-1.8:1.0
|
||||
media-libs/clutter-gst:2.0
|
||||
>=media-libs/clutter-gtk-1.0:1.0
|
||||
>=x11-libs/mx-1.0.1:1.0 )
|
||||
cdr? ( >=app-cdr/brasero-2.91.90 )
|
||||
daap? ( >=net-libs/libdmapsharing-2.9.16:3.0 )
|
||||
html? ( >=net-libs/webkit-gtk-1.3.9:3 )
|
||||
libnotify? ( >=x11-libs/libnotify-0.7.0 )
|
||||
libsecret? ( >=app-crypt/libsecret-0.14 )
|
||||
lirc? ( app-misc/lirc )
|
||||
python? ( >=dev-python/pygobject-3:3[${PYTHON_USEDEP}] )
|
||||
udev? (
|
||||
virtual/udev[gudev]
|
||||
ipod? ( >=media-libs/libgpod-0.7.92[udev] )
|
||||
mtp? ( >=media-libs/libmtp-0.3 ) )
|
||||
zeitgeist? ( gnome-extra/zeitgeist )
|
||||
"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
media-plugins/gst-plugins-soup:1.0
|
||||
media-plugins/gst-plugins-libmms:1.0
|
||||
|| (
|
||||
media-plugins/gst-plugins-cdparanoia:1.0
|
||||
media-plugins/gst-plugins-cdio:1.0 )
|
||||
media-plugins/gst-plugins-meta:1.0
|
||||
media-plugins/gst-plugins-taglib:1.0
|
||||
x11-themes/gnome-icon-theme-symbolic
|
||||
upnp-av? (
|
||||
>=media-libs/grilo-0.2:0.2
|
||||
>=media-plugins/grilo-plugins-0.2:0.2[upnp-av] )
|
||||
python? (
|
||||
x11-libs/gdk-pixbuf:2[introspection]
|
||||
x11-libs/gtk+:3[introspection]
|
||||
x11-libs/pango[introspection]
|
||||
|
||||
dbus? ( sys-apps/dbus )
|
||||
webkit? (
|
||||
dev-python/mako[${PYTHON_USEDEP}]
|
||||
>=net-libs/webkit-gtk-1.3.9:3[introspection] ) )
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
app-text/scrollkeeper
|
||||
app-text/yelp-tools
|
||||
>=dev-util/gtk-doc-am-1.4
|
||||
>=dev-util/intltool-0.35
|
||||
virtual/pkgconfig
|
||||
test? ( dev-libs/check )"
|
||||
# vala? ( >=dev-lang/vala-0.9.4:0.12 )
|
||||
|
||||
pkg_setup() {
|
||||
use python && python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
DOCS="AUTHORS ChangeLog DOCUMENTERS INTERNALS \
|
||||
MAINTAINERS MAINTAINERS.old NEWS README THANKS"
|
||||
|
||||
rm -v lib/rb-marshal.{c,h} || die
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# FIXME: bug???
|
||||
export GST_INSPECT=/bin/true
|
||||
|
||||
# --enable-vala just installs the sample vala plugin, and the configure
|
||||
# checks are broken, so don't enable it
|
||||
gnome2_src_configure \
|
||||
MOZILLA_PLUGINDIR=/usr/$(get_libdir)/nsbrowser/plugins \
|
||||
VALAC=$(type -P valac-0.14) \
|
||||
--enable-mmkeys \
|
||||
--disable-more-warnings \
|
||||
--disable-static \
|
||||
--disable-vala \
|
||||
--without-hal \
|
||||
$(use_enable clutter visualizer) \
|
||||
$(use_enable daap) \
|
||||
$(use_enable libnotify) \
|
||||
$(use_enable lirc) \
|
||||
$(use_enable nsplugin browser-plugin) \
|
||||
$(use_enable python) \
|
||||
$(use_enable upnp-av grilo) \
|
||||
$(use_with cdr brasero) \
|
||||
$(use_with html webkit) \
|
||||
$(use_with ipod) \
|
||||
$(use_with libsecret) \
|
||||
$(use_with mtp) \
|
||||
$(use_with udev gudev)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
unset SESSION_MANAGER
|
||||
unset DBUS_SESSION_BUS_ADDRESS
|
||||
Xemake check
|
||||
}
|
|
@ -1 +1 @@
|
|||
Mon, 22 Apr 2013 14:06:58 +0000
|
||||
Mon, 22 Apr 2013 20:06:55 +0000
|
||||
|
|
|
@ -1 +1 @@
|
|||
Mon, 22 Apr 2013 14:06:58 +0000
|
||||
Mon, 22 Apr 2013 20:06:56 +0000
|
||||
|
|
13
metadata/md5-cache/app-admin/elektra-0.7.1-r4
Normal file
13
metadata/md5-cache/app-admin/elektra-0.7.1-r4
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) !amd64? ( sys-devel/libtool ) amd64? ( abi_x86_64? ( sys-devel/libtool ) ) iconv? ( virtual/libiconv ) !amd64? ( test? ( dev-libs/libxml2[static-libs] ) ) || ( >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
DESCRIPTION=universal and secure framework to store config parameters in a hierarchical key-value pair mechanism
|
||||
EAPI=5
|
||||
HOMEPAGE=http://freedesktop.org/wiki/Software/Elektra
|
||||
IUSE=gcov iconv static-libs test abi_x86_32 abi_x86_64 abi_x86_x32
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) )
|
||||
SLOT=0
|
||||
SRC_URI=ftp://ftp.markus-raab.org/elektra/elektra-0.7.1.tar.gz
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=a09e206071c89b1504dc0f88da5bace9
|
13
metadata/md5-cache/app-admin/elektra-0.8.3-r2
Normal file
13
metadata/md5-cache/app-admin/elektra-0.8.3-r2
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install prepare test unpack
|
||||
DEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) !amd64? ( sys-devel/libtool ) doc? ( app-doc/doxygen ) iconv? ( virtual/libiconv ) !amd64? ( test? ( dev-libs/libxml2[static-libs] ) ) yajl? ( <dev-libs/yajl-2 ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 )
|
||||
DESCRIPTION=universal and secure framework to store config parameters in a hierarchical key-value pair mechanism
|
||||
EAPI=5
|
||||
HOMEPAGE=http://freedesktop.org/wiki/Software/Elektra
|
||||
IUSE=dbus doc examples iconv inifile simpleini static-libs syslog tcl test xml yajl abi_x86_32 abi_x86_64 abi_x86_x32
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=!amd64? ( dev-libs/libxml2 ) amd64? ( abi_x86_64? ( dev-libs/libxml2 ) abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) )
|
||||
SLOT=0
|
||||
SRC_URI=ftp://ftp.markus-raab.org/elektra/releases/elektra-0.8.3.tar.gz
|
||||
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-multilib 8ad37ef7965c43a2a428cb69256bf631 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=f7d68d9ed3f363c2d5f2ccdabb879747
|
|
@ -2,10 +2,10 @@ DEFINED_PHASES=compile configure install prepare test
|
|||
DESCRIPTION=An eselect library to manage executable symlinks
|
||||
EAPI=5
|
||||
HOMEPAGE=https://bitbucket.org/mgorny/eselect-lib-bin-symlink/
|
||||
KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
KEYWORDS=alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-admin/eselect
|
||||
SLOT=0
|
||||
SRC_URI=mirror://bitbucket/mgorny/eselect-lib-bin-symlink/downloads/eselect-lib-bin-symlink-0.1.1.tar.bz2
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=db13adfeb65ae10b80d1eb2b44146b2b
|
||||
_md5_=764183faf895f4915b3385eee6b85ec3
|
||||
|
|
|
@ -3,8 +3,8 @@ DEPEND=>=app-admin/eselect-lib-bin-symlink-0.1.1 !<x11-libs/libnotify-0.7.5-r1
|
|||
DESCRIPTION=Manage /usr/bin/notify-send symlink
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.gentoo.org/proj/en/eselect/
|
||||
KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
|
||||
KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=app-admin/eselect-lib-bin-symlink-0.1.1 !<x11-libs/libnotify-0.7.5-r1
|
||||
SLOT=0
|
||||
_md5_=046747e41f64deff22ba0c4b7782928e
|
||||
_md5_=f9bf6e323329ade2552a023ad80a501e
|
||||
|
|
13
metadata/md5-cache/app-admin/sagan-0.2.3
Normal file
13
metadata/md5-cache/app-admin/sagan-0.2.3
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install postinst prepare setup test
|
||||
DEPEND=virtual/pkgconfig dev-libs/libpcre app-admin/sagan-rules[lognorm?] smtp? ( net-libs/libesmtp ) pcap? ( net-libs/libpcap ) mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-base ) lognorm? ( dev-libs/liblognorm ) libdnet? ( dev-libs/libdnet ) snort? ( >=net-analyzer/snortsam-2.50 ) || ( >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
|
||||
DESCRIPTION=Sagan is a multi-threaded, real time system and event log monitoring system
|
||||
EAPI=5
|
||||
HOMEPAGE=http://sagan.quadrantsec.com/
|
||||
IUSE=+libdnet +lognorm mysql +pcap postgres smtp snort
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/libpcre app-admin/sagan-rules[lognorm?] smtp? ( net-libs/libesmtp ) pcap? ( net-libs/libpcap ) mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-base ) lognorm? ( dev-libs/liblognorm ) libdnet? ( dev-libs/libdnet ) snort? ( >=net-analyzer/snortsam-2.50 )
|
||||
SLOT=0
|
||||
SRC_URI=http://sagan.quadrantsec.com/download/sagan-0.2.3.tar.gz
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=99cd4769abd011b2538ddd106d666116
|
14
metadata/md5-cache/app-admin/setools-3.3.8-r2
Normal file
14
metadata/md5-cache/app-admin/setools-3.3.8-r2
Normal file
|
@ -0,0 +1,14 @@
|
|||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup
|
||||
DEPEND=>=sys-libs/libsepol-2.1.4 sys-libs/libselinux sys-devel/bison sys-devel/flex >=dev-db/sqlite-3.2:3 dev-libs/libxml2:2 virtual/pkgconfig java? ( dev-lang/swig:1 >=virtual/jdk-1.4 ) python? ( dev-lang/swig:1 ) X? ( >=dev-lang/tk-8.4.9 >=gnome-base/libglade-2.0 >=x11-libs/gtk+-2.8:2 ) || ( >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) python? ( dev-lang/python )
|
||||
DESCRIPTION=SELinux policy tools
|
||||
EAPI=2
|
||||
HOMEPAGE=http://www.tresys.com/selinux/selinux_policy_tools.shtml
|
||||
IUSE=X debug java python elibc_FreeBSD java
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=sys-libs/libsepol-2.1.4 sys-libs/libselinux >=dev-db/sqlite-3.2:3 dev-libs/libxml2:2 java? ( >=virtual/jre-1.4 ) X? ( >=dev-lang/tk-8.4.9 >=dev-tcltk/bwidget-1.8 >=gnome-base/libglade-2.0 >=x11-libs/gtk+-2.8:2 ) java? ( >=dev-java/java-config-2.1.9-r1 ) python? ( dev-lang/python )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=http://oss.tresys.com/projects/setools/chrome/site/dists/setools-3.3.8/setools-3.3.8.tar.bz2 http://dev.gentoo.org/~swift/patches/setools/setools-3.3.8-01-fedora-patches.tar.gz http://dev.gentoo.org/~swift/patches/setools/setools-3.3.8-01-gentoo-patches.tar.gz
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f eutils 36e6377b0e31856b6d62af831661c4f3 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 libtool 2b273eea1976cfaed3449345d94331ac multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=7e63cbe1110d6bc83fc304028a1c3e10
|
|
@ -4,10 +4,10 @@ DESCRIPTION=A userspace logging daemon for netfilter/iptables related logging
|
|||
EAPI=5
|
||||
HOMEPAGE=http://netfilter.org/projects/ulogd/index.html
|
||||
IUSE=dbi doc mysql nfacct +nfct +nflog pcap postgres sqlite
|
||||
KEYWORDS=~amd64 ~ia64 ~ppc ~x86
|
||||
KEYWORDS=amd64 ~ia64 ~ppc x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=net-firewall/iptables >=net-libs/libnfnetlink-1.0.1 >=net-libs/libmnl-1.0.3 dbi? ( dev-db/libdbi ) nfacct? ( >=net-libs/libnetfilter_acct-1.0.1 ) nfct? ( >=net-libs/libnetfilter_conntrack-1.0.2 ) nflog? ( >=net-libs/libnetfilter_log-1.0.0 ) mysql? ( virtual/mysql ) pcap? ( net-libs/libpcap ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite:3 )
|
||||
SLOT=0
|
||||
SRC_URI=http://ftp.netfilter.org/pub/ulogd/ulogd-2.0.2.tar.bz2
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=f409801ded70604e4ad9a3ad972a20ea
|
||||
_md5_=be9b53aeaf94edea5bd58485d8933113
|
||||
|
|
|
@ -4,11 +4,11 @@ DESCRIPTION=Featureful client/server network backup suite
|
|||
EAPI=4
|
||||
HOMEPAGE=http://www.bacula.org/
|
||||
IUSE=acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 logwatch mysql postgres python qt4 readline +sqlite3 ssl static tcpd vim-syntax X
|
||||
KEYWORDS=amd64 ~hppa ppc ~sparc x86
|
||||
KEYWORDS=amd64 ~hppa ppc sparc x86
|
||||
LICENSE=AGPL-3
|
||||
RDEPEND=dev-libs/gmp !bacula-clientonly? ( postgres? ( dev-db/postgresql-base[threads] ) mysql? ( virtual/mysql ) sqlite3? ( dev-db/sqlite:3 ) !bacula-nodir? ( virtual/mta ) ) qt4? ( dev-qt/qtsvg:4 x11-libs/qwt:5 ) logwatch? ( sys-apps/logwatch ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) readline? ( >=sys-libs/readline-4.1 ) static? ( acl? ( virtual/acl[static-libs] ) sys-libs/zlib[static-libs] dev-libs/lzo[static-libs] sys-libs/ncurses[static-libs] ssl? ( dev-libs/openssl[static-libs] ) ) !static? ( acl? ( virtual/acl ) sys-libs/zlib dev-libs/lzo sys-libs/ncurses ssl? ( dev-libs/openssl ) ) !bacula-clientonly? ( !bacula-nosd? ( sys-block/mtx app-arch/mt-st ) ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) python? ( =dev-lang/python-2* ) python? ( =dev-lang/python-2*[threads] )
|
||||
REQUIRED_USE=|| ( ^^ ( mysql postgres sqlite3 ) bacula-clientonly ) static? ( bacula-clientonly )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/bacula/bacula-5.2.13.tar.gz
|
||||
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=f4356cf38696a1a8268f8e316dbfa3b2
|
||||
_md5_=a7dc8fe49b73a03a411a7679328618ca
|
||||
|
|
12
metadata/md5-cache/app-crypt/hashcat-bin-0.44
Normal file
12
metadata/md5-cache/app-crypt/hashcat-bin-0.44
Normal file
|
@ -0,0 +1,12 @@
|
|||
DEFINED_PHASES=install
|
||||
DEPEND=app-arch/p7zip
|
||||
DESCRIPTION=An multi-threaded multihash cracker
|
||||
EAPI=4
|
||||
HOMEPAGE=http://hashcat.net/hashcat/
|
||||
KEYWORDS=-* ~amd64 ~amd64-linux ~x64-macos ~x86 ~x86-linux
|
||||
LICENSE=hashcat
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=http://hashcat.net/files/hashcat-0.44.7z
|
||||
_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib 892e597faee02a5b94eb02ab512e7622 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=44e68bfd79e107cf181effe6c74be9d2
|
|
@ -1,12 +1,12 @@
|
|||
DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack
|
||||
DEPEND=>=app-emacs/mmm-mode-0.4.8-r2 >=virtual/emacs-23
|
||||
DESCRIPTION=A generic interface for proof assistants
|
||||
EAPI=3
|
||||
EAPI=5
|
||||
HOMEPAGE=http://proofgeneral.inf.ed.ac.uk/
|
||||
KEYWORDS=~amd64 ~ppc ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=>=app-emacs/mmm-mode-0.4.8-r2 >=virtual/emacs-23
|
||||
SLOT=0
|
||||
SRC_URI=http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-4.0.tgz
|
||||
SRC_URI=http://proofgeneral.inf.ed.ac.uk/releases/ProofGeneral-4.2.tgz
|
||||
_eclasses_=elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=b70299fb624842e8b9df54f12bb7eadf
|
||||
_md5_=169d0440c926ae452ce163faa096a9b9
|
|
@ -6,9 +6,9 @@ HOMEPAGE=http://www.codeweavers.com/products/crossover/
|
|||
IUSE=+capi +cups doc +gphoto2 +gsm +jpeg +lcms +ldap +mp3 +nls +openal +opengl +png +scanner +ssl +v4l python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_single_target_python2_5 python_single_target_python2_6 python_single_target_python2_7
|
||||
KEYWORDS=-* ~amd64 ~x86
|
||||
LICENSE=CROSSOVER-2
|
||||
RDEPEND=dev-lang/perl app-arch/unzip !prefix? ( sys-libs/glibc ) >=dev-python/pygtk-2.10 dev-util/desktop-file-utils sys-apps/dbus !app-emulation/crossover-office-pro-bin !app-emulation/crossover-office-bin amd64? ( 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 app-emulation/emul-linux-x86-soundlibs app-emulation/emul-linux-x86-xlibs ) x86? ( capi? ( net-dialup/capi4k-utils ) cups? ( net-print/cups ) gsm? ( media-sound/gsm ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0 ) ldap? ( net-nds/openldap ) gphoto2? ( media-libs/libgphoto2 ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) openal? ( media-libs/openal ) opengl? ( virtual/glu virtual/opengl ) png? ( media-libs/libpng:0 ) scanner? ( media-gfx/sane-backends ) ssl? ( dev-libs/openssl:0 ) v4l? ( media-libs/libv4l ) media-libs/alsa-lib >=media-libs/freetype-2.0.0 media-libs/mesa sys-apps/util-linux sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXrandr x11-libs/libXxf86vm x11-libs/libxcb )
|
||||
RDEPEND=dev-lang/perl app-arch/unzip !prefix? ( sys-libs/glibc ) >=dev-python/pygtk-2.10 dev-util/desktop-file-utils sys-apps/dbus !app-emulation/crossover-office-pro-bin !app-emulation/crossover-office-bin amd64? ( 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 app-emulation/emul-linux-x86-soundlibs || ( ( >=media-libs/freetype-2.0.0[abi_x86_32] x11-libs/libICE[abi_x86_32] x11-libs/libSM[abi_x86_32] x11-libs/libX11[abi_x86_32] x11-libs/libXau[abi_x86_32] x11-libs/libXdmcp[abi_x86_32] x11-libs/libXext[abi_x86_32] x11-libs/libXi[abi_x86_32] x11-libs/libXrandr[abi_x86_32] x11-libs/libXxf86vm[abi_x86_32] x11-libs/libxcb[abi_x86_32] ) app-emulation/emul-linux-x86-xlibs ) ) x86? ( capi? ( net-dialup/capi4k-utils ) cups? ( net-print/cups ) gsm? ( media-sound/gsm ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0 ) ldap? ( net-nds/openldap ) gphoto2? ( media-libs/libgphoto2 ) mp3? ( >=media-sound/mpg123-1.5.0 ) nls? ( sys-devel/gettext ) openal? ( media-libs/openal ) opengl? ( virtual/glu virtual/opengl ) png? ( media-libs/libpng:0 ) scanner? ( media-gfx/sane-backends ) ssl? ( dev-libs/openssl:0 ) v4l? ( media-libs/libv4l ) media-libs/alsa-lib >=media-libs/freetype-2.0.0 media-libs/mesa sys-apps/util-linux sys-libs/zlib x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXrandr x11-libs/libXxf86vm x11-libs/libxcb )
|
||||
RESTRICT=fetch test
|
||||
SLOT=0
|
||||
SRC_URI=install-crossover-12.1.2.bin
|
||||
_eclasses_=multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1abc4a4828358a8fc1c4d65e74ae4a19 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d
|
||||
_md5_=e5a14c8fc2cfc1a3e30aa3c95d00e3c2
|
||||
_md5_=d937251f200351f0e40b5ad2f954d9d7
|
||||
|
|
|
@ -9,4 +9,4 @@ LICENSE=BSD
|
|||
SLOT=0
|
||||
SRC_URI=mirror://hackage/packages/archive/alex/3.0.2/alex-3.0.2.tar.gz
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f eutils 36e6377b0e31856b6d62af831661c4f3 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d libtool 2b273eea1976cfaed3449345d94331ac multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=9fdcbf5439acaeecf7574c8803c9f1f3
|
||||
_md5_=2cfaeb3c070ec87a2b20602d978c88f1
|
||||
|
|
|
@ -9,4 +9,4 @@ LICENSE=BSD
|
|||
SLOT=0
|
||||
SRC_URI=mirror://hackage/packages/archive/alex/3.0.5/alex-3.0.5.tar.gz
|
||||
_eclasses_=autotools e0c52691b90adf25cf1fe11cded8fd5f eutils 36e6377b0e31856b6d62af831661c4f3 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d libtool 2b273eea1976cfaed3449345d94331ac multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
|
||||
_md5_=490819f17323290bfd639e8c0d9f4091
|
||||
_md5_=0e2f045e2878fb48226de5e1560eedef
|
||||
|
|
|
@ -3,10 +3,10 @@ DEPEND=|| ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
|
|||
DESCRIPTION=Collection of Gentoo-specific tools for Java
|
||||
EAPI=2
|
||||
HOMEPAGE=http://www.gentoo.org/proj/en/java/
|
||||
KEYWORDS=amd64 ~arm ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd
|
||||
KEYWORDS=amd64 ~arm ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=|| ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-2.7*[xml] =dev-lang/python-2.6*[xml] =dev-lang/python-2.5*[xml] )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gentoo/javatoolkit-0.3.0.tar.bz2
|
||||
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils 36e6377b0e31856b6d62af831661c4f3 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
|
||||
_md5_=49cf67d59f911e267b0bfe8f7ece4e89
|
||||
_md5_=e6573ee390f3478b5d16adaf2e977883
|
||||
|
|
11
metadata/md5-cache/dev-lang/swig-1.3.40-r2
Normal file
11
metadata/md5-cache/dev-lang/swig-1.3.40-r2
Normal file
|
@ -0,0 +1,11 @@
|
|||
DEFINED_PHASES=configure install prepare
|
||||
DESCRIPTION=Simplified Wrapper and Interface Generator
|
||||
EAPI=3
|
||||
HOMEPAGE=http://www.swig.org/
|
||||
IUSE=ccache doc
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=BSD BSD-2
|
||||
RESTRICT=test
|
||||
SLOT=1
|
||||
SRC_URI=mirror://sourceforge/swig/swig-1.3.40.tar.gz
|
||||
_md5_=6c1df49010721ebaacc3f14bb1bb27fa
|
13
metadata/md5-cache/dev-libs/gjs-1.36.1
Normal file
13
metadata/md5-cache/dev-libs/gjs-1.36.1
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack
|
||||
DEPEND=>=dev-libs/glib-2.36.0:2 >=dev-libs/gobject-introspection-1.36.0 dev-libs/dbus-glib sys-libs/readline >=dev-lang/spidermonkey-1.8.5 virtual/libffi cairo? ( x11-libs/cairo ) sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost )
|
||||
DESCRIPTION=Javascript bindings for GNOME
|
||||
EAPI=5
|
||||
HOMEPAGE=http://live.gnome.org/Gjs
|
||||
IUSE=+cairo examples test
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd
|
||||
LICENSE=MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )
|
||||
RDEPEND=>=dev-libs/glib-2.36.0:2 >=dev-libs/gobject-introspection-1.36.0 dev-libs/dbus-glib sys-libs/readline >=dev-lang/spidermonkey-1.8.5 virtual/libffi cairo? ( x11-libs/cairo )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnome/sources/gjs/1.36/gjs-1.36.1.tar.xz
|
||||
_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib 892e597faee02a5b94eb02ab512e7622 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86
|
||||
_md5_=89a990c16c1b56d820da0694746f67e9
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue