parent
5f5d26b3e6
commit
e7379713be
@ -0,0 +1,479 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit autotools perl-module user systemd
|
||||
|
||||
DESCRIPTION="The Advanced Maryland Automatic Network Disk Archiver"
|
||||
HOMEPAGE="http://www.amanda.org/"
|
||||
SRC_URI="mirror://sourceforge/amanda/${P}.tar.gz"
|
||||
|
||||
LICENSE="HPND BSD BSD-2 GPL-2+ GPL-3+"
|
||||
SLOT="0"
|
||||
IUSE="curl gnuplot ipv6 kerberos minimal nls readline s3 samba systemd xfs"
|
||||
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
RDEPEND="sys-libs/readline:=
|
||||
virtual/awk
|
||||
app-arch/tar
|
||||
dev-lang/perl:=
|
||||
app-arch/dump
|
||||
net-misc/openssh
|
||||
>=dev-libs/glib-2.26.0
|
||||
dev-perl/JSON
|
||||
dev-perl/Encode-Locale
|
||||
nls? ( virtual/libintl )
|
||||
s3? ( >=net-misc/curl-7.10.0 )
|
||||
!s3? ( curl? ( >=net-misc/curl-7.10.0 ) )
|
||||
samba? ( net-fs/samba:= )
|
||||
kerberos? ( app-crypt/mit-krb5 )
|
||||
xfs? ( sys-fs/xfsdump )
|
||||
!minimal? (
|
||||
dev-perl/XML-Simple
|
||||
virtual/mailx
|
||||
app-arch/mt-st:=
|
||||
sys-block/mtx
|
||||
gnuplot? ( sci-visualization/gnuplot )
|
||||
app-crypt/aespipe
|
||||
app-crypt/gnupg
|
||||
)"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext )
|
||||
>=app-text/docbook-xsl-stylesheets-1.72.0
|
||||
app-text/docbook-xml-dtd
|
||||
dev-libs/libxslt
|
||||
dev-lang/swig
|
||||
"
|
||||
|
||||
MYFILESDIR="${T}/files"
|
||||
ENVDIR="/etc/env.d"
|
||||
ENVDFILE="97amanda"
|
||||
TMPENVFILE="${T}/${ENVDFILE}"
|
||||
|
||||
# This is a complete list of Amanda settings that the ebuild takes from the
|
||||
# build environment. This allows users to alter the behavior of the package as
|
||||
# upstream intended, but keeping with Gentoo style. We store a copy of them in
|
||||
# /etc/env.d/97amanda during the install, so that they are preserved for future
|
||||
# installed. This variable name must not start with AMANDA_, as we do not want
|
||||
# it captured into the env file.
|
||||
ENV_SETTINGS_AMANDA="
|
||||
AMANDA_GROUP_GID AMANDA_GROUP_NAME
|
||||
AMANDA_USER_NAME AMANDA_USER_UID AMANDA_USER_SH AMANDA_USER_HOMEDIR AMANDA_USER_GROUPS
|
||||
AMANDA_SERVER AMANDA_SERVER_TAPE AMANDA_SERVER_TAPE_DEVICE AMANDA_SERVER_INDEX
|
||||
AMANDA_TAR_LISTDIR AMANDA_TAR
|
||||
AMANDA_PORTS_UDP AMANDA_PORTS_TCP AMANDA_PORTS_BOTH AMANDA_PORTS
|
||||
AMANDA_CONFIG_NAME AMANDA_TMPDIR"
|
||||
|
||||
amanda_variable_setup() {
|
||||
|
||||
# Setting vars
|
||||
local currentamanda
|
||||
|
||||
# Grab the current settings
|
||||
currentamanda="$(set | egrep "^AMANDA_" | grep -v '^AMANDA_ENV_SETTINGS' | xargs)"
|
||||
|
||||
# First we set the defaults
|
||||
[[ -z "${AMANDA_GROUP_GID}" ]] && AMANDA_GROUP_GID=87
|
||||
[[ -z "${AMANDA_GROUP_NAME}" ]] && AMANDA_GROUP_NAME=amanda
|
||||
[[ -z "${AMANDA_USER_NAME}" ]] && AMANDA_USER_NAME=amanda
|
||||
[[ -z "${AMANDA_USER_UID}" ]] && AMANDA_USER_UID=87
|
||||
[[ -z "${AMANDA_USER_SH}" ]] && AMANDA_USER_SH=/bin/bash
|
||||
[[ -z "${AMANDA_USER_HOMEDIR}" ]] && AMANDA_USER_HOMEDIR=/var/spool/amanda
|
||||
[[ -z "${AMANDA_USER_GROUPS}" ]] && AMANDA_USER_GROUPS="${AMANDA_GROUP_NAME}"
|
||||
|
||||
# This installs Amanda, with the server. However, it could be a client,
|
||||
# just specify an alternate server name in AMANDA_SERVER.
|
||||
[[ -z "${AMANDA_SERVER}" ]] && AMANDA_SERVER="${HOSTNAME}"
|
||||
[[ -z "${AMANDA_SERVER_TAPE}" ]] && AMANDA_SERVER_TAPE="${AMANDA_SERVER}"
|
||||
[[ -z "${AMANDA_SERVER_TAPE_DEVICE}" ]] && AMANDA_SERVER_TAPE_DEVICE="/dev/nst0"
|
||||
[[ -z "${AMANDA_SERVER_INDEX}" ]] && AMANDA_SERVER_INDEX="${AMANDA_SERVER}"
|
||||
[[ -z "${AMANDA_TAR_LISTDIR}" ]] && AMANDA_TAR_LISTDIR=${AMANDA_USER_HOMEDIR}/tar-lists
|
||||
[[ -z "${AMANDA_CONFIG_NAME}" ]] && AMANDA_CONFIG_NAME=DailySet1
|
||||
[[ -z "${AMANDA_TMPDIR}" ]] && AMANDA_TMPDIR=/var/tmp/amanda
|
||||
[[ -z "${AMANDA_DBGDIR}" ]] && AMANDA_DBGDIR="$AMANDA_TMPDIR"
|
||||
# These are left empty by default
|
||||
[[ -z "${AMANDA_PORTS_UDP}" ]] && AMANDA_PORTS_UDP=
|
||||
[[ -z "${AMANDA_PORTS_TCP}" ]] && AMANDA_PORTS_TCP=
|
||||
[[ -z "${AMANDA_PORTS_BOTH}" ]] && AMANDA_PORTS_BOTH=
|
||||
[[ -z "${AMANDA_PORTS}" ]] && AMANDA_PORTS=
|
||||
|
||||
# What tar to use
|
||||
[[ -z "${AMANDA_TAR}" ]] && AMANDA_TAR=/bin/tar
|
||||
|
||||
# Now pull in the old stuff
|
||||
if [[ -f "${EROOT}${ENVDIR}/${ENVDFILE}" ]]; then
|
||||
# We don't just source it as we don't want everything in there.
|
||||
eval $(egrep "^AMANDA_" "${EROOT}${ENVDIR}/${ENVDFILE}" | grep -v '^AMANDA_ENV_SETTINGS')
|
||||
fi
|
||||
|
||||
# Re-apply the new settings if any
|
||||
[ -n "${currentamanda}" ] && eval $(echo "${currentamanda}")
|
||||
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
amanda_variable_setup
|
||||
|
||||
# If USE=minimal, give out a warning, if AMANDA_SERVER is not set to
|
||||
# another host than HOSTNAME.
|
||||
if use minimal && [ "${AMANDA_SERVER}" = "${HOSTNAME}" ] ; then
|
||||
elog "You are installing a client-only version of Amanda."
|
||||
elog "You should set the variable \$AMANDA_SERVER to point at your"
|
||||
elog "Amanda-tape-server, otherwise you will have to specify its name"
|
||||
elog "when using amrecover on the client."
|
||||
elog "For example: Use something like"
|
||||
elog "AMANDA_SERVER=\"myserver\" emerge amanda"
|
||||
elog
|
||||
fi
|
||||
|
||||
enewgroup "${AMANDA_GROUP_NAME}" "${AMANDA_GROUP_GID}"
|
||||
enewuser "${AMANDA_USER_NAME}" "${AMANDA_USER_UID}" "${AMANDA_USER_SH}" "${AMANDA_USER_HOMEDIR}" "${AMANDA_USER_GROUPS}"
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
# we do not want the perl src_unpack
|
||||
default_src_unpack
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# gentoo bug #331111
|
||||
sed -i '/^check-local: check-perl$/d' "${S}"/config/automake/scripts.am || die
|
||||
sed -i '/^check-local:/s,syntax-check,,g' "${S}"/perl/Makefile.am || die
|
||||
|
||||
# bug with glibc-2.16.0
|
||||
sed -i -e '/gets is a security/d' "${S}"/gnulib/stdio.in.h || die
|
||||
|
||||
eautoreconf
|
||||
|
||||
# places for us to work in
|
||||
mkdir -p "${MYFILESDIR}" || die
|
||||
# Now we store the settings we just created
|
||||
set | egrep "^AMANDA_" | grep -v '^AMANDA_ENV_SETTINGS' > "${TMPENVFILE}" || die
|
||||
|
||||
# Prepare our custom files
|
||||
einfo "Building custom configuration files"
|
||||
local i # our iterator
|
||||
local sedexpr # var for sed expr
|
||||
sedexpr=''
|
||||
for i in ${ENV_SETTINGS_AMANDA} ; do
|
||||
local val
|
||||
eval "val=\"\${${i}}\""
|
||||
sedexpr="${sedexpr}s|__${i}__|${val}|g;"
|
||||
done
|
||||
|
||||
# now apply the sed expr
|
||||
for i in "${FILESDIR}"/amanda-* ; do
|
||||
sed -re "${sedexpr}" <"${i}" >"${MYFILESDIR}/`basename ${i}`" || die
|
||||
done
|
||||
|
||||
if use minimal; then
|
||||
cat "${MYFILESDIR}"/amanda-amandahosts-server-2.5.1_p3-r1 > "${T}"/amandahosts || die
|
||||
else
|
||||
sed -i -e 's:^\(my $amandahomedir\)=.*:\1 = $localstatedir;:' \
|
||||
server-src/am{addclient,serverconfig}.pl || die
|
||||
cat "${MYFILESDIR}"/amanda-amandahosts-client-2.5.1_p3-r1 > "${T}"/amandahosts || die
|
||||
fi
|
||||
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# fix bug #36316
|
||||
addpredict /var/cache/samba/gencache.tdb
|
||||
# fix bug #376169
|
||||
addpredict /run/blkid
|
||||
addpredict /etc/blkid.tab
|
||||
|
||||
[ ! -f "${TMPENVFILE}" ] && die "Variable setting file (${TMPENVFILE}) should exist!"
|
||||
source "${TMPENVFILE}"
|
||||
local myconf
|
||||
|
||||
einfo "Using ${AMANDA_SERVER_TAPE} for tape server."
|
||||
myconf="${myconf} --with-tape-server=${AMANDA_SERVER_TAPE}"
|
||||
einfo "Using ${AMANDA_SERVER_TAPE_DEVICE} for tape server."
|
||||
myconf="${myconf} --with-tape-device=${AMANDA_SERVER_TAPE_DEVICE}"
|
||||
einfo "Using ${AMANDA_SERVER_INDEX} for index server."
|
||||
myconf="${myconf} --with-index-server=${AMANDA_SERVER_INDEX}"
|
||||
einfo "Using ${AMANDA_USER_NAME} for amanda user."
|
||||
myconf="${myconf} --with-user=${AMANDA_USER_NAME}"
|
||||
einfo "Using ${AMANDA_GROUP_NAME} for amanda group."
|
||||
myconf="${myconf} --with-group=${AMANDA_GROUP_NAME}"
|
||||
einfo "Using ${AMANDA_TAR} as Tar implementation."
|
||||
myconf="${myconf} --with-gnutar=${AMANDA_TAR}"
|
||||
einfo "Using ${AMANDA_TAR_LISTDIR} as tar listdir."
|
||||
myconf="${myconf} --with-gnutar-listdir=${AMANDA_TAR_LISTDIR}"
|
||||
einfo "Using ${AMANDA_CONFIG_NAME} as default config name."
|
||||
myconf="${myconf} --with-config=${AMANDA_CONFIG_NAME}"
|
||||
einfo "Using ${AMANDA_TMPDIR} as Amanda temporary directory."
|
||||
myconf="${myconf} --with-tmpdir=${AMANDA_TMPDIR}"
|
||||
|
||||
if [ -n "${AMANDA_PORTS_UDP}" ] && [ -n "${AMANDA_PORTS_TCP}" ] && [ -z "${AMANDA_PORTS_BOTH}" ] ; then
|
||||
eerror "If you want _both_ UDP and TCP ports, please use only the"
|
||||
eerror "AMANDA_PORTS environment variable for identical ports, or set"
|
||||
eerror "AMANDA_PORTS_BOTH."
|
||||
die "Bad port setup!"
|
||||
fi
|
||||
if [ -n "${AMANDA_PORTS_UDP}" ]; then
|
||||
einfo "Using UDP ports ${AMANDA_PORTS_UDP/,/-}"
|
||||
myconf="${myconf} --with-udpportrange=${AMANDA_PORTS_UDP}"
|
||||
fi
|
||||
if [ -n "${AMANDA_PORTS_TCP}" ]; then
|
||||
einfo "Using TCP ports ${AMANDA_PORTS_TCP/,/-}"
|
||||
myconf="${myconf} --with-tcpportrange=${AMANDA_PORTS_TCP}"
|
||||
fi
|
||||
if [ -n "${AMANDA_PORTS}" ]; then
|
||||
einfo "Using ports ${AMANDA_PORTS/,/-}"
|
||||
myconf="${myconf} --with-portrange=${AMANDA_PORTS}"
|
||||
fi
|
||||
|
||||
# Extras
|
||||
# Speed option
|
||||
myconf="${myconf} --with-buffered-dump"
|
||||
# "debugging" in the configuration is NOT debug in the conventional sense.
|
||||
# It is actually just useful output in the application, and should remain
|
||||
# enabled. There are some cases of breakage with MTX tape changers as of
|
||||
# 2.5.1p2 that it exposes when turned off as well.
|
||||
myconf="${myconf} --with-debugging"
|
||||
# Where to put our files
|
||||
myconf="${myconf} --localstatedir=${AMANDA_USER_HOMEDIR}"
|
||||
|
||||
# Samba support
|
||||
myconf="${myconf} $(use_with samba smbclient /usr/bin/smbclient)"
|
||||
|
||||
# Support for BSD, SSH, BSDUDP, BSDTCP security methods all compiled in by
|
||||
# default
|
||||
myconf="${myconf} --with-bsd-security"
|
||||
myconf="${myconf} --with-ssh-security"
|
||||
myconf="${myconf} --with-bsdudp-security"
|
||||
myconf="${myconf} --with-bsdtcp-security"
|
||||
|
||||
# kerberos-security mechanism version 5
|
||||
myconf="${myconf} $(use_with kerberos krb5-security)"
|
||||
|
||||
# Amazon S3 support
|
||||
myconf="${myconf} `use_enable s3 s3-device`"
|
||||
|
||||
# libcurl is required for S3 but otherwise optional
|
||||
if ! use s3; then
|
||||
myconf="${myconf} $(use_with curl libcurl)"
|
||||
fi
|
||||
|
||||
# Client only, as requested in bug #127725
|
||||
if use minimal ; then
|
||||
myconf="${myconf} --without-server"
|
||||
else
|
||||
# amplot
|
||||
myconf="${myconf} $(use_with gnuplot)"
|
||||
fi
|
||||
|
||||
# IPv6 fun.
|
||||
myconf="${myconf} `use_with ipv6`"
|
||||
# This is to prevent the IPv6-is-working test
|
||||
# As the test fails on binpkg build hosts with no IPv6.
|
||||
use ipv6 && export amanda_cv_working_ipv6=yes
|
||||
|
||||
# I18N
|
||||
myconf="${myconf} `use_enable nls`"
|
||||
|
||||
# Bug #296634: Perl location
|
||||
perl_set_version
|
||||
myconf="${myconf} --with-amperldir=${VENDOR_LIB}"
|
||||
|
||||
# Bug 296633: --disable-syntax-checks
|
||||
# Some tests are not safe for production systems
|
||||
myconf="${myconf} --disable-syntax-checks"
|
||||
|
||||
# build manpages
|
||||
myconf="${myconf} --enable-manpage-build"
|
||||
|
||||
# bug #483120
|
||||
tc-export AR
|
||||
|
||||
econf \
|
||||
$(use_with readline) \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# Again, do not want the perl-module src_compile
|
||||
default_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
[ ! -f "${TMPENVFILE}" ] && die "Variable setting file (${TMPENVFILE}) should exist!"
|
||||
source ${TMPENVFILE}
|
||||
|
||||
einfo "Doing stock install"
|
||||
emake DESTDIR="${D}" install || die
|
||||
|
||||
# Build the envdir file
|
||||
# Don't forget this..
|
||||
einfo "Building environment file"
|
||||
(
|
||||
echo "# These settings are what was present in the environment when this"
|
||||
echo "# Amanda was compiled. Changing anything below this comment will"
|
||||
echo "# have no effect on your application, but it merely exists to"
|
||||
echo "# preserve them for your next emerge of Amanda"
|
||||
cat "${TMPENVFILE}" | sed "s,=\$,='',g"
|
||||
) >> "${MYFILESDIR}/${ENVDFILE}"
|
||||
|
||||
# Env.d
|
||||
einfo "Installing environment config file"
|
||||
doenvd "${MYFILESDIR}/${ENVDFILE}"
|
||||
|
||||
# Lock down next section (up until docs).
|
||||
insopts -m0640
|
||||
# Installing Amanda Xinetd Services Definition
|
||||
einfo "Installing xinetd service file"
|
||||
insinto /etc/xinetd.d
|
||||
if use minimal ; then
|
||||
newins "${MYFILESDIR}"/amanda-xinetd-2.6.1_p1-client amanda
|
||||
else
|
||||
newins "${MYFILESDIR}"/amanda-xinetd-2.6.1_p1-server amanda
|
||||
fi
|
||||
|
||||
if ! use minimal; then
|
||||
einfo "Installing Sample Daily Cron Job for Amanda"
|
||||
insinto /etc/cron.daily
|
||||
newins "${MYFILESDIR}/amanda-cron" amanda
|
||||
fi
|
||||
|
||||
einfo "Installing systemd service and socket files for Amanda"
|
||||
systemd_dounit "${FILESDIR}"/amanda.socket || die
|
||||
systemd_newunit "${FILESDIR}"/amanda.service 'amanda@.service' || die
|
||||
|
||||
insinto /etc/amanda
|
||||
einfo "Installing .amandahosts File for ${AMANDA_USER_NAME} user"
|
||||
doins "${T}/amandahosts"
|
||||
fperms 600 /etc/amanda/amandahosts
|
||||
|
||||
dosym /etc/amanda/amandahosts "${AMANDA_USER_HOMEDIR}/.amandahosts"
|
||||
insinto "${AMANDA_USER_HOMEDIR}"
|
||||
einfo "Installing .profile for ${AMANDA_USER_NAME} user"
|
||||
newins "${MYFILESDIR}/amanda-profile" .profile
|
||||
|
||||
insinto /etc/amanda
|
||||
doins "${S}/example/amanda-client.conf"
|
||||
if ! use minimal ; then
|
||||
insinto "/etc/amanda/${AMANDA_CONFIG_NAME}"
|
||||
doins "${S}/example/amanda.conf"
|
||||
doins "${S}/example/disklist"
|
||||
keepdir "${AMANDA_USER_HOMEDIR}/${AMANDA_CONFIG_NAME}/index"
|
||||
fi
|
||||
|
||||
keepdir "${AMANDA_TAR_LISTDIR}"
|
||||
keepdir "${AMANDA_USER_HOMEDIR}/amanda"
|
||||
keepdir "${AMANDA_TMPDIR}/dumps"
|
||||
# Just make sure it exists for XFS to work...
|
||||
use xfs && keepdir /var/xfsdump/inventory
|
||||
|
||||
local i
|
||||
for i in "${AMANDA_USER_HOMEDIR}" "${AMANDA_TAR_LISTDIR}" \
|
||||
"${AMANDA_TMPDIR}" /etc/amanda; do
|
||||
einfo "Securing directory (${i})"
|
||||
fowners -R ${AMANDA_USER_NAME}:${AMANDA_GROUP_NAME} ${i}
|
||||
done
|
||||
# Do NOT use -R
|
||||
fperms 0700 \
|
||||
"${AMANDA_USER_HOMEDIR}" "${AMANDA_TAR_LISTDIR}" \
|
||||
"${AMANDA_TMPDIR}" "${AMANDA_TMPDIR}/dumps" \
|
||||
"${AMANDA_USER_HOMEDIR}/amanda" \
|
||||
/etc/amanda
|
||||
|
||||
if ! use minimal ; then
|
||||
fperms 0700 \
|
||||
"${AMANDA_USER_HOMEDIR}/${AMANDA_CONFIG_NAME}" \
|
||||
/etc/amanda/${AMANDA_CONFIG_NAME}
|
||||
fi
|
||||
|
||||
einfo "Setting setuid permissions"
|
||||
amanda_permissions_fix "${D}"
|
||||
|
||||
# Relax permissions again
|
||||
insopts -m0644
|
||||
|
||||
# docs
|
||||
einfo "Installing documentation"
|
||||
dodoc AUTHORS ChangeLog DEVELOPING NEWS README ReleaseNotes UPGRADING
|
||||
# our inetd sample
|
||||
einfo "Installing standard inetd sample"
|
||||
newdoc "${MYFILESDIR}/amanda-inetd.amanda.sample-2.6.0_p2-r2" amanda-inetd.amanda.sample
|
||||
# Amanda example configs
|
||||
einfo "Installing example configurations"
|
||||
rm "${D}"/usr/share/amanda/{COPYRIGHT,ChangeLog,NEWS,ReleaseNotes}
|
||||
mv "${D}/usr/share/amanda/example" "${D}/usr/share/doc/${PF}/"
|
||||
docinto example1
|
||||
newdoc "${FILESDIR}/example_amanda.conf" amanda.conf
|
||||
newdoc "${FILESDIR}/example_disklist-2.5.1_p3-r1" disklist
|
||||
newdoc "${FILESDIR}/example_global.conf" global.conf
|
||||
|
||||
einfo "Cleaning up dud .la files"
|
||||
perl_set_version
|
||||
find "${D}"/"${VENDOR_LIB}" -name '*.la' -print0 |xargs -0 rm -f
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
[ ! -f "${TMPENVFILE}" -a "$MERGE_TYPE" == "binary" ] && \
|
||||
TMPENVFILE="${ROOT}${ENVDIR}/${ENVDFILE}"
|
||||
[ ! -f "${TMPENVFILE}" ] && die "Variable setting file (${TMPENVFILE}) should exist!"
|
||||
source "${TMPENVFILE}"
|
||||
|
||||
# Migration of amandates from /etc to $localstatedir/amanda
|
||||
if [ -f "${ROOT}/etc/amandates" -a \
|
||||
! -f "${ROOT}/${AMANDA_USER_HOMEDIR}/amanda/amandates" ]; then
|
||||
einfo "Migrating amandates from /etc/ to ${AMANDA_USER_HOMEDIR}/amanda"
|
||||
einfo "A backup is also placed at /etc/amandates.orig"
|
||||
cp -dp "${ROOT}/etc/amandates" "${ROOT}/etc/amandates.orig"
|
||||
mkdir -p "${ROOT}/${AMANDA_USER_HOMEDIR}/amanda/"
|
||||
cp -dp "${ROOT}/etc/amandates" "${ROOT}/${AMANDA_USER_HOMEDIR}/amanda/amandates"
|
||||
fi
|
||||
if [ -f "${ROOT}/etc/amandates" ]; then
|
||||
einfo "If you have migrated safely, please delete /etc/amandates"
|
||||
fi
|
||||
|
||||
einfo "Checking setuid permissions"
|
||||
amanda_permissions_fix "${ROOT}"
|
||||
|
||||
elog "You should configure Amanda in /etc/amanda now."
|
||||
elog
|
||||
elog "If you use xinetd, Don't forget to check /etc/xinetd.d/amanda"
|
||||
elog "and restart xinetd afterwards!"
|
||||
elog
|
||||
elog "Otherwise, please look at /usr/share/doc/${PF}/inetd.amanda.sample"
|
||||
elog "as an example of how to configure your inetd."
|
||||
elog
|
||||
elog "systemd-users: enable and start amanda.socket or the relevant services"
|
||||
elog "regarding what auth method you use."
|
||||
elog
|
||||
elog "NOTICE: If you need raw access to partitions you need to add the"
|
||||
elog "amanda user to the 'disk' group."
|
||||
elog
|
||||
elog "NOTICE: If you have a tape changer, you need to add the amanda user"
|
||||
elog "to the 'tape' group."
|
||||
elog
|
||||
elog "If you use localhost in your disklist your restores may break."
|
||||
elog "You should replace it with the actual hostname!"
|
||||
elog "Please also see the syntax changes to amandahosts."
|
||||
elog "The only exception is when you use the authentication method 'local'."
|
||||
elog
|
||||
elog "Please note that this package no longer explicitly depends on"
|
||||
elog "virtual/inetd, as it supports modes where an inetd is not needed"
|
||||
elog "(see bug #506028 for details)."
|
||||
}
|
||||
|
||||
# We have had reports of amanda file permissions getting screwed up.
|
||||
# Losing setuid, becoming too lax etc.
|
||||
# ONLY root and users in the amanda group should be able to run these binaries!
|
||||
amanda_permissions_fix() {
|
||||
local root="$1"
|
||||
[ -z "${root}" ] && die "Failed to pass root argument to amanda_permissions_fix!"
|
||||
local le="/usr/libexec/amanda"
|
||||
for i in /usr/sbin/amcheck "${le}"/calcsize "${le}"/killpgrp \
|
||||
"${le}"/rundump "${le}"/runtar "${le}"/dumper \
|
||||
"${le}"/planner ; do
|
||||
chown root:${AMANDA_GROUP_NAME} "${root}"/${i}
|
||||
chmod u=srwx,g=rx,o= "${root}"/${i}
|
||||
done
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
AUX 00_gentoo.sh 73 SHA256 aa8348ef08e1408a77cd42481ab8733fa851163f5fb89dbce0cea84ca6484b04 SHA512 9e4713cd0eb540639975aac2a9338e78b74766c19e96bd73946599d57795653f692e4a557226f6fffb73bd535344f24c788494b230775e48d37298ea633f12d8 WHIRLPOOL 984590d02af9c6fe5d3016b7ab247d53521a8a6bbfd8c896f717d42911be25312f116eaf78389ef36bd21c2d2b0b352dbe8636de1c6352e39c809f36d7e1e4c9
|
||||
AUX 00_gentoo.sh 115 SHA256 c28bd21162d4a3d8d566570794734e27648429aa24e512c4951b8ab294ba7908 SHA512 2092f8bffbc6b34fa806276194873fed42146d8c8a434bb68088e03ec9eb0a2e0c1862a9ade67d56a6bd553119cd00f8815353b71345e451039254708430e52b WHIRLPOOL d1e9f2adae49ae650a29157e8d989f0cb7f9b6658ef3dde727fb606f3452d5c28faf1a3ddc6d28b4389ce443ca80e83c1ed1effbe6fece0c03e7061da823e8f9
|
||||
AUX cron 71 SHA256 f6b640ee36fce07365ee4a3eee3627cd9f8a2477e8a9d7c0583f1d921cb01fb3 SHA512 0a8ac29abf2ce84b7b429ec969a3fcbfbab3ba0ed854237efa9bc86eb62859138b027f8879e016d4bedabc788ead0bb5d55ea5b629687c0c980cb63b225852b6 WHIRLPOOL 83813cb976a9b03f0989a4766ec518e61bd235074c99a1df4b555bf74e48ab485632706ec8fbe85754ee81f12258edbaac758d18f2c473bb3263a78dd7b9f4c7
|
||||
DIST dehydrated-0.3.1.tar.gz 71375 SHA256 7c9b9475b442dd19dbc33a26426444054781e14a2f122d2a2405f81093484239 SHA512 34b57edc6ab950c2c0163795ef45d6fa104dcf02978bbfa325da63f7d844176ecf20cb8d7604cfedc6b2f47d8c12ce1db5b37f532eda7fffa194b4603e4ee3b9 WHIRLPOOL 4d96d8a2b8d09a5800b1bc4236d82632199860c64a29a1d49ea7a377611a98b90bd0b0059323e588d9a53a2168ceb1239d678514c39176da38286d349b201fc4
|
||||
DIST dehydrated-0.4.0.tar.gz 74005 SHA256 611da321330ffd43d1dc497990b486b2dec12c59149803ad7d156980c8527f48 SHA512 3c8c0f2fab57a432b69451f8372c02666dd953985679d12a2af9f6b917335b5b10a1196699106e317660039178ce1139a4d5455d4825a152b6911596fba16738 WHIRLPOOL 1fb07445673698e15af61fc94006d7ac712f7751a092d370816527b7d831befc55001b4c6b38a294de1c09ffbd5e94ca6fb384439cf3cb4f70b0988edfc68d0f
|
||||
EBUILD dehydrated-0.3.1.ebuild 527 SHA256 3c305c5f1c28937c3a21e20adaad264494e617c2af7b5b9a29dfdc70aa4f61db SHA512 33a13b923a48fdd5e78456f2bc1825dc858a175198af802ab4ff6fee35a3470cce6c2424eedba6970fe4611aba82c0c72983f7b6dc7e22410d58d7a0062b211e WHIRLPOOL 0ee8caf5451d629498587ef7f069dd9184235c732af461d9b4566b508ce9ac8593a83253b9718a1ad131be99e5b2d26cff222954f86e48235da82d07a96dae78
|
||||
EBUILD dehydrated-0.4.0-r2.ebuild 1692 SHA256 1711db2cc9b9c09bfda8da1c9c2973958a3fbc23b09924255a937b49f05c9cf6 SHA512 bed1497ec6126f4972a74ea6c8aafca4c6f450d293161fcc396cdebe510de640156765021c117ce2c0877e6aa7cd6f29eaec0e33cc021b76faa246150eb48e2e WHIRLPOOL 816aaa7aef5423703f6ce43600510a216760d7c49045de924ee19626020ce5ccba3b3c4714f21b9c2dc3db946eea2a8a468917189996442aee1a97fdc95e5a72
|
||||
EBUILD dehydrated-0.4.0-r3.ebuild 1554 SHA256 bbb2588ceb94dc643662cb85237a364a63b3e8f6d670b4a45a46781335a4b256 SHA512 619e37279c8f7070d2e74f15033d7b6d098479b1837d73cdc9789b6a810160643b2561f268a63acc712abad365ee645150c76bd8c6f5c35e75d734dd3ec280c4 WHIRLPOOL 4f42dd7c43c8027dc74e05918e505eefdf8642ed9b3bdd1089457ecff0ad040696001539361d4e37ad85e4517a53800525bb5b767dbfb87fdfbe55c34f855cf2
|
||||
EBUILD dehydrated-0.4.0.ebuild 523 SHA256 a877141bd253642be44ff901ffac6d38cb13de5fc716f895bb9cfd1e9e05eed7 SHA512 1be1cd3bf9e5f4c78b5506ab33c8189e73ddd9c322334c993a85247770d6c647aef5460a7f2aca55434b90effb0ceb8a3f6b4c19c42cd5a6edcca88793f56d17 WHIRLPOOL 1aeea58e66e6a1ab0c5d734a791672996f01bf65c4e83a35fda00236574ce3ea02a28f66d2a0fbdb3a493869c19a043aef8ada2632be21d6916a251857e26206
|
||||
MISC ChangeLog 319 SHA256 6969c100abdc82ac89ef4eaebc2d1c6fd0db16fb5981ad05b8e7160d82720f2e SHA512 37667b26ccbfb16f11a69c986157a200d761350e082a1d03cd3ed2757344c8b904dd923c32ae7400865a292f3bef6370b4dc63e714f82ab3fea38807c1e20432 WHIRLPOOL 530ad03632a34caa800e6d35094ce1a34f4c5e488ce97144f6bc1f8d2bac6012de27d39bc2b80f599c5a4f9df3e38c046140cc8b03b16479606a423304382397
|
||||
MISC metadata.xml 218 SHA256 5a6d2571ad58999a8651603cbfd52e8e2676131114edf04f417329759851c41d SHA512 c1894fa0ad03968827a0eb6410381bdaa9491a4b450f9a50959a93700f803ddc83f020040f4db06ed3ba68c12adb4a73b192525ef7e70c0bd10125e3da578c65 WHIRLPOOL 218ecdf4a7fff5dbe3672e8651cce6b247ae0af2d257876b386e3596d9c19e4bd461efc7a965d8d88ad15a0c563dffad181e5bfd5fe601ccc7e9ad0435a45b00
|
||||
|
@ -1,2 +1,3 @@
|
||||
# base config required for gentoo defaults
|
||||
BASEDIR="/var/lib/dehydrated"
|
||||
DOMAINS_TXT="/etc/dehydrated/domains.txt"
|
||||
|
@ -1,6 +1,4 @@
|
||||
DIST ghostwriter-1.2.5.tar.gz 508173 SHA256 4bf0f9450231504416037e4a667d8c8e2940bda0e03e624ba9bb2eda78a7937b SHA512 195e984dc6109a4fedacf92e2e78ec81fee76c1edc701c12afa82aafaed73f90d6a008ac21a4338636235b1d161fc22ad94fee3c8873b85135728c67e63c0260 WHIRLPOOL c172d4cdc2c30faa993242b981b873edf19d58ef060d6c22da4b01fdaee37f756b34a9c6288dec7131a9082b6acd93c8edcecbd365f8a141996e719a773c86e9
|
||||
DIST ghostwriter-1.4.2.tar.gz 589182 SHA256 775760d04c5a794c3810cffe9d1daa72ee123c77cc3041fc15a2052503899438 SHA512 b7442c4abe054cf73bbbe43c9537592fb54616a1085f529649b4bd3b4168c2ccb6f1127868d04c751b92edc277480baaf2d78a35b1b3fd285e804a17ec9cfbe2 WHIRLPOOL 685d9e057178f03d40ca8521b46a915e6b56289d42078fe0f1c8fcd601139f229f509865253e9b8ce76fde6aaf800d9c6e612bf37a5a0386ded935c75897f54e
|
||||
EBUILD ghostwriter-1.2.5.ebuild 733 SHA256 cf1f9abbb884cdefac638cf473298c317fa65b0aae57d459aff1b8c058b39363 SHA512 3956dafcb8188208c362194f3725a5ef7af00f80dab66b8116dbe2d399b7fc8fa0b4409141617e6d1b6689af3ad8d9e27ab992e58a712bca84822c2828edcb69 WHIRLPOOL 6d3b3a16808882d44e82eacf003f070e61243cf4718ab11093994082119052a96ea91e03eed1a8cf963553a602d12bdd5b0a7c1fe163ad4ba5a94e3f780c8521
|
||||
EBUILD ghostwriter-1.4.2.ebuild 1193 SHA256 767665d20a70ba5a25525999ebc2c64128ec53d391c626b491bfd30d8f292a75 SHA512 f7e39ef1c97e21a04cb4026048e6aa5bf1bb18b6032caee3974047a4e6c6682142a142be8215ff2b5ad47e3801c6876f040f2efc73386748bd5352e38a510d87 WHIRLPOOL 83cd70c6c6a09db3a77e0fe95de1a44017a75738f3b1bde77b89909580217b9599e8442877ccaa6c4b8a88e750d48f038c392b3ff9222d68e896f17999aa4de3
|
||||
MISC ChangeLog 628 SHA256 a78faf79ba6b572aa0841af718c3f249587100eb5405f2fc2f5ed3d0ada474e5 SHA512 4fb308cd4ecac937af377b709af83cbba562a3ea22d48162995577669918939d477ca6eb66ba34dec075f11e088a510b415571e31de41add36e503389b3a814e WHIRLPOOL 235d58daf3d57048c809567cb0eaab8cc7f5bddab3bd1e02982f31893abffb5d622e848190dae4860710546b22602f6be4e828a7739aae3c8a131f8e42d1ae58
|
||||
MISC metadata.xml 411 SHA256 b6c65844218884d029394bfbb0aa5e3d02a9d45b2c840a262e128f14e775aac6 SHA512 81ae30b5f3812ec9f423ff217225d62485859d874ce5db0ccb64331e938c6b123c7b3a9f490feb42d28a4a5c5c759faa8e801569eea3da4c38912660f7c43bc4 WHIRLPOOL cc8095158e0ac796342a1a117fc24da87cf447e7fa7de31e13d2ce31fdd6a7fe40c33ec6d6f2e9b2276f76dca3f4fa3c710cd2f905574c628dad36ce9df10278
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit qmake-utils
|
||||
|
||||
DESCRIPTION="A cross-platform, aesthetic, distraction-free Markdown editor"
|
||||
HOMEPAGE="http://wereturtle.github.io/ghostwriter/"
|
||||
SRC_URI="https://github.com/wereturtle/ghostwriter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="qt5"
|
||||
|
||||
DEPEND="
|
||||
qt5? (
|
||||
dev-qt/qtprintsupport:5
|
||||
dev-qt/qtwebkit:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtconcurrent:5
|
||||
)
|
||||
!qt5? ( dev-qt/qtwebkit:4 )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_compile() {
|
||||
if use qt5; then
|
||||
eqmake5 "PREFIX=/usr"
|
||||
else
|
||||
eqmake4 "PREFIX=/usr"
|
||||
fi
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
@ -1,6 +1,8 @@
|
||||
DIST diskimage-builder-1.26.1.tar.gz 260140 SHA256 dd842a364124a59aaa3751fe178f8799c39e29badbc69d1459d2ed35b9042660 SHA512 698c97b7e016a87c2acd83d27400bd009e8148bb76efc737fae3344aa2c860fdf4060f1608eaa38566c24fa68c5fdbf51559ab64f9d9ef26d0adbe3a1b69325f WHIRLPOOL 83e86a6b5a1629041465be971657968fbdad3377ba9c3bb60ce29b2dd658165541f6e3b5a67eaa13727221e0a44032aafb26b30e042453e2a4c4e085cb26f3da
|
||||
DIST diskimage-builder-1.27.0.tar.gz 264590 SHA256 108e6fa41cbab88a018e43b19f5706b20a984b94131d6451876eedc26a26a892 SHA512 63e98c95452f9ddb9ae21f208b7dc840a9a10a02e9dee8d313cac531854b706f7662ea7b907f38a72c58d6ecdead324782d4cbda32fb7a4861b8c4bef9412a56 WHIRLPOOL 586b62729a5577a0ed804c7f457297e0624d1e491ab82ee95c29443ba46d5769814fded9ae88e2b6f7e2ec8d69b208851f24f26f04667717055944d296ccdb9f
|
||||
DIST diskimage-builder-1.28.0.tar.gz 267409 SHA256 2d8999a8484d27e8604d125aabcbdad648f8b601776225cfc611faf1a3b9a0e6 SHA512 ae13e29563f90a4aaa4f2bee889bca4fd662da41fcffb957ca8a4380907e5d89fbc25ecb93aeda2cb5597776b51417388e8a5e39741250d68a8f7f67239ebc7f WHIRLPOOL 7cfcefcf37fd0d5fae4fb8d3284ad3b60e53e4a2853c85625a1925c34bd4cdbee999932089f7dae81adcf699226ba1550f729a2b1b8aab4b6e54c10c7148fea1
|
||||
EBUILD diskimage-builder-1.26.1.ebuild 921 SHA256 2893ba2cbf635d8926018aefda2c138a5c808776a1db1ff031dbac069cdc360e SHA512 43fa2fb95b7aba7ec231da123e157b83651dbd60a50ee6602964f5db6c546e0f5c65be24a62376dbda5c4cd32078daec61d884f9ecfc18d87f1676772879a497 WHIRLPOOL fd28bd84fa989a8799c0fcba3babd9985d3a7c71f3ba15aef97385804aa3c328333aa46f66afc55662ecba01eb5c734e99c1768066cfdc20e658fbcb2dbec560
|
||||
EBUILD diskimage-builder-1.27.0.ebuild 921 SHA256 2893ba2cbf635d8926018aefda2c138a5c808776a1db1ff031dbac069cdc360e SHA512 43fa2fb95b7aba7ec231da123e157b83651dbd60a50ee6602964f5db6c546e0f5c65be24a62376dbda5c4cd32078daec61d884f9ecfc18d87f1676772879a497 WHIRLPOOL fd28bd84fa989a8799c0fcba3babd9985d3a7c71f3ba15aef97385804aa3c328333aa46f66afc55662ecba01eb5c734e99c1768066cfdc20e658fbcb2dbec560
|
||||
EBUILD diskimage-builder-1.28.0.ebuild 873 SHA256 1d46669976f1a52757c55ff911479e024dd38599e4d490e03bb8e7bbe738c5c0 SHA512 8299d6ea4010738c485df5100efb9132bd438eaeb63cb2bddab95de659e61bff1f66d26231ff4a874f08a99b76850ccbca8dfb4b6c3ed7d534db6da245abf139 WHIRLPOOL 63ee952d112c8c86891572d62f7467c859740ac2073267ce69c45ee8726a9a1dc2f0432465735ffe66612d418ad5bf2a863cbb7f3bc9d465fe0b5b8920c9d9bf
|
||||
MISC ChangeLog 1987 SHA256 80e24f8406e897762ef9deb02d2d61e0ba5a6a827457ba0c3ea9ed19e4936c5f SHA512 05da20a179d6bd337cb5c22a119cd8f991c19d715b56dc0348283467e44c8bb26014d5cae2112a758e5f5d7384372375f1a82d301f0fca7e381ffc48be8632f7 WHIRLPOOL f004bc9ccdd869f07cb1a7ddafa56af3dbe685f0aa4aae47c07bf268eae05fe59ebdf9e69673321bbf26984731829c807a8140b8be0c64637b1b8d14a53cbd40
|
||||
MISC metadata.xml 718 SHA256 b74cd0a9cd8f40e45fe04f8c22f267f95740d534c3c8c60f42e64b1d63a44731 SHA512 8e16e9d92a81049d414ae54eaf7a4467982cbd949230adcfab22b636ba2b91885d80e9b047788ccd07eab547ae2f85a56d989b971b64bd926e6ca70972398277 WHIRLPOOL 05967793be1e8e7e2998fb98069e58c449f1a494e5cbec8d504d6678e2026b420e557b8309abbbfa789b46aefccafcd1d13e95531efaf68d1cfa08eb360b3363
|
||||
|
@ -0,0 +1,30 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Golden Disk Image builder."
|
||||
HOMEPAGE="http://docs.openstack.org/developer/diskimage-builder/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
|
||||
DEPEND="${CDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
RDEPEND="${CDEPEND}
|
||||
>=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
|
||||
dev-python/dib-utils[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/flake8-2.5.4[${PYTHON_USEDEP}]
|
||||
<dev-python/flake8-2.6.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
|
||||
app-emulation/qemu
|
||||
sys-block/parted
|
||||
sys-fs/multipath-tools"
|
@ -1,45 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
EGIT_REPO_URI="https://github.com/fosnola/libstaroffice.git"
|
||||
[[ ${PV} == 9999 ]] && inherit git-r3 autotools
|
||||
|
||||
DESCRIPTION="Import filter for old StarOffice documents"
|
||||
HOMEPAGE="https://github.com/fosnola/libstaroffice"
|
||||
[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.bz2"
|
||||
|
||||
LICENSE="|| ( LGPL-2.1+ MPL-2.0 )"
|
||||
SLOT="0"
|
||||
[[ ${PV} == 9999 ]] || \
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
IUSE="debug doc tools +zlib"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/librevenge
|
||||
zlib? ( sys-libs/zlib )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
doc? ( app-doc/doxygen )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
[[ ${PV} == 9999 ]] && eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-werror \
|
||||
$(use_enable debug) \
|
||||
$(use_with doc docs) \
|
||||
$(use_enable tools) \
|
||||
$(use_enable zlib zip)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
DIST ctrlp-1.79.tar.gz 45605 SHA256 2c1404d059d2ae4c3bf42a992108265fbe0e825c21a49db9411cba6a28cd4dc9 SHA512 6967db0fa6b60317794c0ba0ab6ef04f63c059c30a74af56c460bbc44a4756f11540b45dddcdd5da1d0eb47943682ef3fff64a9a14ea0ba3a73a1e0c42f051e6 WHIRLPOOL bde28ff592842b1c9269c4317c731c494829fc6f753310eed69dec4359d81d0dcf5a63819f22fb4451c3a16e52fd70434a63cd03ef141ea3e69d9f788c7bf722
|
||||
DIST ctrlp-1.80.tar.gz 75269 SHA256 65762884e4787bb6c13812ea2a0b82ec3bb1e5e552a43aea4a0e9700c2f0b1f2 SHA512 40175e64bb9c4ccdc202bc31b8956b96ede5761a3a4f17706c4d915f8083991cb7729e33c79d021bf6faff00f381fe9272145f852981e487b279f0471b86cadd WHIRLPOOL 3294650925a015450e732ecb12b705e72643f0b0beaadcad23433d9ac161fb4cc30a7cdbefaf45b592b0553e51a34c0da378c0e0e268d386ada51e71cb4d6fcd
|
||||
EBUILD ctrlp-1.79.ebuild 523 SHA256 0c3dc8f53f2264568549ded7b6181dccfbe14303374e5afb2a7cc6e4634b2b3c SHA512 3fd6aec33efd1b9da8e0bae9c054d39b0aaab070672ff8e9c4ab3d8b9f782a7f452a59e7b984f1a4fe4b7372bf70723b032caa4d08600cdce369b87bb6481bff WHIRLPOOL 5de17ab05e4d05084afa3f8b1b484a83e77c640a4b29cbf78c20c253ca40af9ffdd6518fc9e39e92ccd23dd9e92dbaebdda47d6d521e3ff5c96a2a4574605e82
|
||||
EBUILD ctrlp-1.80.ebuild 432 SHA256 866005f273d67d47327bea649e47b622e503a40006ce0774313ce2e713a8f53e SHA512 6c6fcc5737b063832643c3a853ef0f17c2f165447b9f538e77b570ef338607711b488413c215537794799e1f2d46d0310243718e12fc381c8a546adb3a45188e WHIRLPOOL b9e78fe1bf2c61de84408b0c1512197860db291122178e5d0bb1756cd3cab8e7765c17a7eb06e3e62eca625c1c2c370415e03f6b5c2bed4c631427467ba7f079
|
||||
EBUILD ctrlp-1.80.ebuild 464 SHA256 c73e713b04b5677069a2ea5986906e58c05625a99307209645ab43cba8f14ba0 SHA512 22c28ae98afad0c0fa12ce82bef454e2e234acb525f327f198961053614cdea3a99bf171fc990f34e714ad0afeb641c46c6008051de6389fd9563a4f4c66aefa WHIRLPOOL 4be8f0ec844c26b62336b63aa3a1af0249d6b2a93120f563e1e4f235a843e00e505646547f5d94d7df23d93949ea561e95f0e85fa4b73e34387cc6822b51a55d
|
||||
MISC ChangeLog 2792 SHA256 53bf74d307d99974367df718c7d7c4a575b5ae5dc02c65270648d7e21dc7e8ab SHA512 54ff2bec9aa04082731e311b437ddfb8b874b22f1881e4cbc3ec3b473d7ec23b63a8e8eb0584864a4f1b048eee14defd3b7c5ae4122d57da0465f237e6dd0425 WHIRLPOOL c91c64379fc52c1b89a4fe7883b8cdc33c7edc1cdec321cd732312b5afcb026d148762581f8af8313160340150b94ffe3175a98947094f6bc9657d69a32059a5
|
||||
MISC ChangeLog-2015 659 SHA256 acd1e64755b2a60e06cdbef6d05a35c82b5749a70d336477d95082b82b5e37bc SHA512 111e7da62da2be755fef7f45d3ccc80db4cd9ab848f838e2659fc34ebb118f406613f50471034fcf776f7bf435f04d148bc050560240798fdd770385b9965a90 WHIRLPOOL 448f543c8daf146d94bbf5507ecf08afb7cfc16b0c85a19311c827e04e0315fe636298c5181117453d4e5db0eab8a690ca99319facd2622fef4a92ca839e49a6
|
||||
MISC metadata.xml 338 SHA256 ec77b9259b9515a3924147b10638d8379a6ff7115f2a66b91cfe1df9579d2fe4 SHA512 5167190c5206fc93a419c088f08ff5fd89ff0f12198824576f652973baa99c16ed8b8856e7afb2ba8c7e1bf9c90d4c94b83ff38dfd1ee63c06d9a69d57b07d45 WHIRLPOOL 874018d80755a2b0589b1ee6ba078e73bebff2042e53285677cc387cdb860aafa3cf4053a8452f514d45bf6748554c136f462b8410cac9104cb2adcfae23c09d
|
||||
|
@ -1,32 +0,0 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit multilib
|
||||
|
||||
DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
|
||||
HOMEPAGE="http://www.gaia-gis.it/spatialite"
|
||||
SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz"
|
||||
|
||||
LICENSE="MPL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="readline"
|
||||
|
||||
RDEPEND=">=dev-db/spatialite-3.0.1[geos,xls]
|
||||
dev-libs/expat
|
||||
>=sci-libs/geos-3.3
|
||||
sci-libs/proj
|
||||
sci-geosciences/readosm
|
||||
readline? (
|
||||
sys-libs/ncurses
|
||||
sys-libs/readline
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_enable readline)
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
MY_PV=${PV/_rc/-}
|
||||
MY_P=lib${P/_rc*}
|
||||
|
||||
inherit multilib
|
||||
|
||||
DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
|
||||
HOMEPAGE="http://www.gaia-gis.it/gaia-sins/"
|
||||
SRC_URI="http://www.gaia-gis.it/${PN}-${MY_PV}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="MPL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="+geos iconv +proj"
|
||||
|
||||
RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
|
||||
geos? ( sci-libs/geos )
|
||||
proj? ( sci-libs/proj )"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-static \
|
||||
--enable-geocallbacks \
|
||||
--enable-epsg \
|
||||
$(use_enable geos) \
|
||||
$(use_enable iconv) \
|
||||
$(use_enable proj)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
find "${ED}" -name '*.la' -exec rm -f {} +
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
MY_PN="lib${PN}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
inherit multilib
|
||||
|
||||
DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
|
||||
HOMEPAGE="http://www.gaia-gis.it/gaia-sins/"
|
||||
SRC_URI="http://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="MPL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
|
||||
IUSE="+geos iconv +proj +xls"
|
||||
|
||||
RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
|
||||
geos? ( >=sci-libs/geos-3.3 )
|
||||
proj? ( sci-libs/proj )
|
||||
xls? ( dev-libs/freexl )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-static \
|
||||
--enable-geocallbacks \
|
||||
--enable-epsg \
|
||||
$(use_enable geos) \
|
||||
$(use_enable geos geosadvanced) \
|
||||
$(use_enable iconv) \
|
||||
$(use_enable proj) \
|
||||
$(use_enable xls freexl)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
find "${ED}" -name '*.la' -exec rm -f {} +
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
DIST libgpg-error-1.24.tar.bz2 783628 SHA256 9268e1cc487de5e6e4460fca612a06e4f383072ac43ae90603e5e46783d3e540 SHA512 d577ebf36251402dd27187056f7c54cea226119f499d1c3bc1c4201ba4d2ae4a9dcefdf4502411cfcffe52b1cefab8c2cfddfa16b7e6ad3b49305a3394ccca31 WHIRLPOOL 2f216d374e0cc9ca64a9a9d3a4c3e756d28275e80ff42fa00649d2d969bf03b04bc56e71125fac176da447176fe8fe6052014c71b1f70ccb1d3c4cb11194c09c
|
||||
DIST libgpg-error-1.25.tar.bz2 797159 SHA256 f628f75843433b38b05af248121beb7db5bd54bb2106f384edac39934261320c SHA512 46f276609fc66f09e9633f6a1a33d4cfcfaa65e36f34aaf0802edbc766ed4c0f2dc148582db10c2afce9c0b8ba536dbac78ec0c1a72cb81723403b6ece295590 WHIRLPOOL 1bf96456ee9450a00c7621c85ea293292c9b11f2484dd4048b77b912acf99bfa7c3f97b1e8ade3c41353e30bdc3868f75b85f0d27cbe4dd1033cfed59354dfdf
|
||||
DIST libgpg-error-1.26.tar.bz2 798096 SHA256 4c4bcbc90116932e3acd37b37812d8653b1b189c1904985898e860af818aee69 SHA512 3f0c2bcba82156639b077d25b01ad41df1b8c960fbd90591e9c18eb7c6835d6cc8315100624cfdfec1d62d1df1ae8ebac55033af25e0a6474d1b7f7980b06a72 WHIRLPOOL e3ff86a4e1ae8c2b838726873fad8cc52fea2cb38ec993069788824995bea6d535afce1d869ee22cc6f4d42cef1008d3811eae44b553d949220dacbe229a8cee
|
||||
DIST libgpg-error-1.27.tar.bz2 813060 SHA256 4f93aac6fecb7da2b92871bb9ee33032be6a87b174f54abf8ddf0911a22d29d2 SHA512 51b313c1159074fdbbce84f63bd8afd84b3b58cd608714865b25bed84c1862d050708aa06ac3dab92f1906593df5121161e594c2809653b0fb2c236cae5dcc2f WHIRLPOOL 7d6e68c1d2388f0599573b3d56187582e5302777466e517ac22eafed50e1c3bc6bb8e81cd6d1561b917c4bfc627bf358344f47342449471c5ddf8175a7848396
|
||||
EBUILD libgpg-error-1.24.ebuild 1533 SHA256 53e7037ea495b454d73ce9b0a4dd402d4dc26a96256ec7c86fbc09b7d37fffd4 SHA512 00ef2c08c513bdd8c8222ff477ab28a8a11472735af538f7b3732909eef05f7eb3d5349a9a36eebe45899875fad8e53ce48d1d60a864391dc24a62198cf2330d WHIRLPOOL 087dfde702895946e6f867229fd9610dbc4dda047bf0088a827c347f3e4482f50920dbb4f96bd43b45b37ab2bc5f16e52266570d727a98abd897c62aef2db9b3
|
||||
EBUILD libgpg-error-1.25.ebuild 1546 SHA256 164001a229b45a1324f868b0ae1f0eb76405c75d42ab968d15b9f12ab915ed45 SHA512 cba03a1579bc034510f343e3b8e962e0ca652526fca13e725d9dfbb3bb997074c3291930e1dec4d172d88cebf7cb31be0837885f4943b5f85a8bac040208a60c WHIRLPOOL 044c8254937ca30eea26de05923f6da23515d015580197beda37654e7bb7093dead6e8e0a71c758bf207657b0d622eb9aed71703ee6188e7757a6e4c362f1781
|
||||
EBUILD libgpg-error-1.26.ebuild 1429 SHA256 11c8beedd770f18aa70e0cfc1d91551d1cbb1eb7f6b39b8890142364b4f7ba19 SHA512 f0cfe5964a53b6867d17b3b37819457e9a9d820e7ba69e17890f190c17616af51a66a058315f3760b13e1d057e0e6cf2f9775af6e161105cc603c69031ac5aea WHIRLPOOL a9de68774d266d09a0cf3747d75a336b96f79d0868b87d91154a1242fe0e3c3791552f79c552f390d959225b9915b8276ae4a16d56afca99f7980d6a6065799c
|
||||
EBUILD libgpg-error-1.27.ebuild 1429 SHA256 11c8beedd770f18aa70e0cfc1d91551d1cbb1eb7f6b39b8890142364b4f7ba19 SHA512 f0cfe5964a53b6867d17b3b37819457e9a9d820e7ba69e17890f190c17616af51a66a058315f3760b13e1d057e0e6cf2f9775af6e161105cc603c69031ac5aea WHIRLPOOL a9de68774d266d09a0cf3747d75a336b96f79d0868b87d91154a1242fe0e3c3791552f79c552f390d959225b9915b8276ae4a16d56afca99f7980d6a6065799c
|
||||
MISC ChangeLog 6461 SHA256 dda1db2e2bac5362693f9dd2b2a2e089532827fe4090a0fd42ac5e2cd1348a34 SHA512 2ad55a77630f9f9bc9e99ab652abda482e975ddc1e58ceaec4d1bcd342a0ae89045d70edbcb8b0603d842970c752f06a3342d1374432f1957f25c6c0df61f305 WHIRLPOOL 24829611ebcfa69000cfe17e7156cb44bb1eb0df072af367945d9a7d1fb2591f3fa96bb140b63c54233f521f83489f42952e0d1dcafceb5352d6bf1a4eb96867
|
||||
MISC ChangeLog-2015 16286 SHA256 4ec9a01ae6a0c01729945e756811b8dc46f96404493e23c94bf9e5efc7f67eea SHA512 c9adae3171f331d9a14e9d3df76c59562077f7b7f19a0c0b500549daaf5141b761bd73498e97b0326e127ffc9cddcf186acef469dc1ab3317e922aff7598cd2d WHIRLPOOL 0fc041b43d096b41b201d3673cffc42ed3e6d544dece6b8ba97649513c4d5a5f81ed2c7e64920583274bf665d461f3423ab6148ea4bef4c120b425d4e82c9cde
|
||||
MISC metadata.xml 315 SHA256 2090c9e52f91c000c11e53d0215dd327d8274ab13f3a4930340a608afe10c5e8 SHA512 502b5daf04f1b706514aba7d18cd454e1e99f63462159d3f5baebd1617bfa4760c7ea6fae9b7624fae2bc5943f8950211c6f4b326b6b62c3cf7eba4fc1255334 WHIRLPOOL dfd45c75e635ff36c55dd60b7c31a59ea22792fc07f6ba4cf493e99a4d55c3466e86cab704736a6b1547b9fb0b30670e839150f163643b1ebd9d98d6af814576
|
||||
|
@ -1,14 +1,7 @@
|
||||
AUX softhsm-2.2.0-build.patch 8055 SHA256 707238a785cdbd9f0faaffe1df34fab37e9edefa7abb6d43d328ae40fb3220cc SHA512 f71922296840738be89ea861901bcb9dc25cbe1fe5a5b73f12ac956f91722b7bafb1da116c56838df4f9d889786fdd054b7a84090a55b146bcc67bbd180e84ee WHIRLPOOL 03f4b1b76f4f2e0dfcff0821502541210d4d2bdd3073707b718eda2db5aea6bc16b5c9ea86f271819813d7471bc5af65765c547f88025d38dc0650c9e3988e85
|
||||
AUX softhsm-2.2.0-libressl.patch 7502 SHA256 6c2ba0cc39b544aef39becd446d4ee6d2670625f15c8e4d10825fd9784f0560f SHA512 5bff86d46d1fcd22266354b4fcf80e30c0de3c043338a07a880d1e14e9fc085ba9b5de3c161e654db717f52c866a80aa0d065c6eec07413b7189ed0f8894288c WHIRLPOOL d6c1ac8bbcfb24a887f95353a4dc3f35243cc49d0af695a263d382b19c418fde4f850a0b4072caec670845b839c49050d4cc13580fca05d0b14aaabe85490e13
|
||||
DIST softhsm-1.3.6.tar.gz 435893 SHA256 e39ac8e851220edd2b2afbe4d9e06d956bccc20bc72752740eabf95692359486 SHA512 fa344b298da6f15a616eaaa90e9e2153cb48ee1a5d4c3089a4195080efc5d15cccf27536279206587f8e1a55ac1b3745303712797296aba560be5ca958783b70 WHIRLPOOL 6451e039d31932306627f6af23041dbd7d386d1b137eb529332f45ce523ae0c61b736876815ca614a8ec54b0dbae9d83b510bbf126dafd17cbf6d12c745ed7a8
|
||||
DIST softhsm-1.3.7.tar.gz 438437 SHA256 d12d6456a85561266d9da427565f3ee3746a35df6670d5e6be75de253c2810a4 SHA512 287400b981b7b420a300593129696e4739afe085a8106047ef429bc741d205bed214386b422572327c3bda63f0fb1b7558bb4d30d184ca3ec2ba9900153f075d WHIRLPOOL 47e66a8ae7f85b6505bdd751114a1594bc2e4b7bea71c6681bf77e8b7cc226d3515d9bdbd74ef0327899257d1844722c95446115f22724474f03cee0a99ca4f3
|
||||
DIST softhsm-2.0.0.tar.gz 936954 SHA256 eae8065f6c472af24f4c056d6728edda0fd34306f41a818697f765a6a662338d SHA512 1db5b79bc59707d97a3c8ba5306d6778cd02d7049a6b294ef5e60214ef7b1dcc4d51405cc32f3720443d9477377e8b04b68d6cee143731f87b6357e4e5565fe2 WHIRLPOOL 014213f4501145c493ad4c22d0cfd262f7ca8693c3d13ca74d34bd7b24f85cf60a5117d0869e7544d9d61b0473b676e582ea41bdeba647427ffc1067def9f8f7
|
||||
DIST softhsm-2.2.0.tar.gz 966806 SHA256 eb6928ae08da44fca4135d84d6b79ad7345f408193208c54bf69f5b2e71f85f7 SHA512 6ef17deef491f7298244a3d2ddefe25843fc17534c4e5f2e08927f05cafdaf05601beb953539fce5d34fa02fe355cbd4ab3aaabb6e5a106936b04c06aae9793c WHIRLPOOL 9e2ead19b2091fc46c6cdf63d2aaa26ad21dfe7d69d047ea85b38d725576885c8a1c6656cbec9d79e480158a9b8f9a90d36cf3fad0a80af317b883ee59ffba06
|
||||
EBUILD softhsm-1.3.6.ebuild 677 SHA256 65536c8f0a9b8268c95ff26043467457fca85a4d313a9bc7d7fb32c3c23734ad SHA512 bde816e49415da6503a8e4ec9f076f4727ac462401fc270220cf47998cbfc627e8146224275791ff6b4c3c9f4535df33958909de6513b585768b5b6116e35bc6 WHIRLPOOL 70738c931caa210532bc705c62a8376a116503c5d4c3f7139c6b3e878ad5ca4e0710edb26f1b53f8d42e4eaf2414b23ab540436580ece633400b08e4705ec21a
|
||||
EBUILD softhsm-1.3.7.ebuild 668 SHA256 abe9c44c7022b259a3a117c1858073e52a98a78d52914dd276c5c61cb901ae81 SHA512 b3561ce2e0aff82814f10402bf272948243bc97d6163f3e481717cab04ff2ce0fb8e3b034ad18adaffde710645a19762899694c07e4c0b3b29d277885407a366 WHIRLPOOL 6e7ed086d407f01da7b7737954a027f790206122ac8e8f1c89a50be9ccff1e6db5ca84a8ca906240380c4c6ccc23e3abaa55268838453927a64b6825a323929a
|
||||
EBUILD softhsm-2.0.0-r1.ebuild 734 SHA256 f735d7a95496533139655856f1e1c6f06c5d688b274132b9131f21e676685b3a SHA512 a4933c19f54eacf934b2b0039ab4683941baf01dbcb463b85e2406e1973e7102a88f3819561d03aac3a785c8fbfc10ce6b1299feeff5de01afcd145ccb8cfdb5 WHIRLPOOL de98a706c542c5ddb746828435c27a6b0aa6aef01713a1feab1bebc439fa5b5d4b548df77ede26ab48ccd7321e0e45ca998dcc5eb174830215f33730101d7e19
|
||||
EBUILD softhsm-2.2.0-r3.ebuild 1078 SHA256 91b6d757f5399bc1b3e0b7b757e6bf58220bc65532de3fc4d60ea6e36f838be0 SHA512 b428dd2c37ca1519a74796c2b1711485c0a5b66cc7dd1b46d5cfd821c0b43c921a606107cae91d3ca146124dfefaf5f946b6fbf9671a294e56b5219ccbc4d381 WHIRLPOOL cc96451e098e522671bf2e23463f66fdee8daadad6c43358d82cb69c3aca99eb3b06e5a633c05516741f8e1d6298ecd0dfaf594bf710a3d9456aac9f380021be
|
||||
EBUILD softhsm-2.2.0.ebuild 768 SHA256 65e592c71da9c67dee3b205a35dd6ae1518d5fc27ce886ded837edbca10cdaeb SHA512 d085daadd8a88af625b77b583c381ba6c013f144f08a759da48b48dbea1230874ccd34f08dbc4b176971f82618024b163be0036fe3aee6c16f35ecc6d3061f66 WHIRLPOOL 9228e326b1fbcf051c263cd9cb65f8bc57542d3808d254f7e1b61276631f2c58ba440f8f063f95acd49fdff2e2e0174dbc599b546f5d0999a757e70bf34f7399
|
||||
MISC ChangeLog 3956 SHA256 b04b868a4e535db12e137099d1b232ebcd0e79863f8fdc80c19e472ef83a81af SHA512 ee4b50b425ba3fc469e9c75a377ce3550487cae63363d3db17f7d156ed73ec141af4deada482496dc39933b2a98275cb1f744c4bc877044ae453cd6954d47fef WHIRLPOOL 4b117d7f3ee25dcf516539f7e2c71e08f6603caa916f28f586b393fb2fd65dd091814567212e24f0e2590c74943419c3c0f45457e7a1f67ca88198a73295c19a
|
||||
MISC ChangeLog-2015 2219 SHA256 bb6dda1e4918bea692071a48634bc05ea3a2325f915ef51664e5ea27259ce2c9 SHA512 2e536d610699c9ce731133ca679ffcf6eb9c010e2fe7705133c05806e05570d757b3608261d4ec4d220c031b2ffbdfdc438fdcd6fecdb1a689a3bb32037738b1 WHIRLPOOL a18a7a59e7064981d5ae8b77496bae749271720f822ecd696817316d0b1a88a673405bf00deba0ba6a51fac395146a8f56b87f72f067a0f87ef28e0685df0aa0
|
||||
MISC metadata.xml 322 SHA256 d4dbce7730a371f59235d9b7502766fce1fccedaa76eea1f79b4f786dbdf6e58 SHA512 b145c1ee8c20a9aad9c9b8e6f6526c596dd80a993faecb8e8caf6e930cf05e32f3e6ef5ad72c337a43c48cf57224f209e65d177567e3c5c577d3872eb11841a8 WHIRLPOOL a4e4ff193b51c7fb4afdd5193a36ab6dbe46b2f270ba7439527064baf30224bd1365c3e367db4c8299b88334180e2b21d2e689ebbd3a076911102c9ba6dfbff9
|
||||
|
@ -1,35 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
DESCRIPTION="A software PKCS#11 implementation"
|
||||
HOMEPAGE="http://www.opendnssec.org/"
|
||||
SRC_URI="http://www.opendnssec.org/files/source/${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="debug"
|
||||
SLOT="0"
|
||||
LICENSE="BSD"
|
||||
|
||||
RDEPEND="
|
||||
dev-db/sqlite:3
|
||||
>=dev-libs/botan-1.10.1[threads]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
DOCS=( AUTHORS NEWS )
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-static \
|
||||
--localstatedir=/var \
|
||||
--with-botan="${EPREFIX}/usr/" \
|
||||
$(use_enable amd64 64bit) \
|
||||
$(use debug && echo "--with-loglevel=4")
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete
|
||||
}
|
@ -1,35 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
DESCRIPTION="A software PKCS#11 implementation"
|
||||
HOMEPAGE="http://www.opendnssec.org/"
|
||||
SRC_URI="http://www.opendnssec.org/files/source/${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="debug"
|
||||
SLOT="0"
|
||||
LICENSE="BSD"
|
||||
|
||||
RDEPEND="
|
||||
dev-db/sqlite:3
|
||||
dev-libs/botan[threads]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
DOCS=( AUTHORS NEWS )
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-static \
|
||||
--localstatedir=/var \
|
||||
--with-botan="${EPREFIX}/usr/" \
|
||||
$(use_enable amd64 64bit) \
|
||||
$(use debug && echo "--with-loglevel=4")
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
DESCRIPTION="A software PKCS#11 implementation"
|
||||
HOMEPAGE="http://www.opendnssec.org/"
|
||||
SRC_URI="http://www.opendnssec.org/files/source/${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="debug +migration-tool"
|
||||
SLOT="2"
|
||||
LICENSE="BSD"
|
||||
|
||||
RDEPEND="
|
||||
dev-db/sqlite:3
|
||||
dev-libs/botan[threads,-bindist]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
DOCS=( NEWS README.md )
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-static \
|
||||
--localstatedir=/var \
|
||||
--with-botan="${EPREFIX}/usr/" \
|
||||
$(use_with migration-tool migrate) \
|
||||
$(use_enable amd64 64bit) \
|
||||
$(use debug && echo "--with-loglevel=4")
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
DESCRIPTION="A software PKCS#11 implementation"
|
||||
HOMEPAGE="http://www.opendnssec.org/"
|
||||
SRC_URI="http://www.opendnssec.org/files/source/${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64 ~hppa ~x86"
|
||||
IUSE="debug +migration-tool"
|
||||
SLOT="2"
|
||||
LICENSE="BSD"
|
||||
|
||||
RDEPEND="
|
||||
dev-db/sqlite:3
|
||||
dev-libs/botan[threads,-bindist]
|
||||
!=dev-libs/softhsm-2.0.0:0
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
DOCS=( NEWS README.md )
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-static \
|
||||
--localstatedir=/var \
|
||||
--with-botan="${EPREFIX}/usr/" \
|
||||
$(use_with migration-tool migrate) \
|
||||
$(use_enable amd64 64bit) \
|
||||
$(use debug && echo "--with-loglevel=4")
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
AUX README.gentoo 383 SHA256 ded85eb05b14162aceb7ba67e49be207bbe15591fa519743478618def88cee85 SHA512 e4d8f8e0edeb6773dd7ef6329074d1e40b694b9e7e10b6a429d8c5dd4fe1170594f447a42eb41446ec2355829a1da1606bf6c544434551c5c931b0794422e786 WHIRLPOOL 8bc2485d91a399eb9d283ec3363546852be9a1a3e69214b3c7cc9a6427c4e10355dc8732de0d8b688f9df8a4bc03df25c3ce7b33c19773b7a47616c93f82bd81
|
||||
DIST weston-1.11.0.tar.xz 1242244 SHA256 05e086e9f186a06843b9f7a5e1abf19347b1a6e4be26d7e74927abc17b6b7125 SHA512 30c43058aeca2d90d8c57ee3beb824aa42474eb2d0fa942622949b49c7771eb5d8d9c452d496a13950baabffef3c343d7386821778ae931939039fab2f782ad5 WHIRLPOOL 5e76484c1413ddc14c426c80845790e6b636bb2d827188563ca9b41f23ca4afd6cf20c8a743c0ff1b6c09d371c3e6988d0e9765333660aeb8723ddf62208b876
|
||||
DIST weston-1.9.0.tar.xz 1238240 SHA256 9c1b03f3184fa0b0dfdf67e215048085156e1a2ca344af6613fed36794ac48cf SHA512 9bcbb5971b8a55d9e10aacf0aae868ff03750a98daee5233dcbff5698ed84e41c4b147fa1fdb1e2be916e3b1e13f259e0eec62354517d6e2a7e1d301a8522f66 WHIRLPOOL 3329a1783da2c7509fb93a64343b6b70f6d45de614a15e17d3a2a2439b440298e25c3dd4504042de38e501877cf47d909849fd6263b081c6ccc0bf8e1362287b
|
||||
EBUILD weston-1.11.0.ebuild 3596 SHA256 7c496b929dd36a02fabc7c7776f35b036a971f4c78eaee550b4b8d8601303413 SHA512 5a92821fc836152074cb03fb958793f60a3a6f502da152b06b5c34e55f62237e058cf025b7bf48b508149bfbade462388d357e2b5bc370274e41f923b73a2706 WHIRLPOOL 17264734cd0072554d1c287c9ede89b275dca82caf947abb06795c62132977b4add60d783b41528b947ff8f19183e42f7e403a40db1e7c976a0fbabe62e21d7a
|
||||
EBUILD weston-1.11.0.ebuild 3481 SHA256 6b415ebee1532a8620ffe9aa2a3f4e160cece6efb62a6d36106bf997cfc5be19 SHA512 c7865d5af3dcb66956d958b927771d9b6d3cf0e0ca40ac7467dd6f844d54e6c7cbe3a2ec7b44f5f9772713c7b91c9d98238f065031dcf01d502596151df87016 WHIRLPOOL c982220eb91fe305d30e8585ebac5b0fb1a870fecd743626d136f7649de3fb8ff073a7ca5c8bf352ad93fd0d488cf7a357fb3bf4e6b67683f4f6cbfa5859bda6
|
||||
EBUILD weston-1.9.0.ebuild 3143 SHA256 6a57ea1da020cb6b3c61cd8da4a867b91b346401531137186f96998eb767c42c SHA512 a4e656dc7f4c4ddf682907d286cad9cdea9b946e7be96bc0d7bb97929072335543a2dc019fa5cc1373e1dcd2a0d7ccc5b1ce7eece3c25c75a2b1941a74643a8a WHIRLPOOL 8223b609c1caac143380fd52c420d1c13d088cb93bd0275613eae9c80384b0d89b4dfdc8eb60b2b18cb9a3aad174e0e158e5bbc1e750880a62763b060ebffe52
|
||||
EBUILD weston-9999.ebuild 3586 SHA256 31adf1b88babc28c8d4290c0fae0e8b1c2c88163de93ce131b0a94e5dfa8c4ba SHA512 35510a6adbd751950b21527f6124ebbf8073b9205f77e70a66bd65f9652333d4b42723bc136e431719b21b25807de4dcf4282c1a36dc222c7b8ec1a15f436549 WHIRLPOOL bf77a25f24d11aad092ea1e818f37ff5f62eb88e59969b6d8e28002a79747551eba635c0aa4b5b014ba55d48726f9eb7014e6a594bb14b7b13f9917b22072951
|
||||
EBUILD weston-9999.ebuild 3471 SHA256 353ddad0c92cf391424caa61c0fb2c485080469add7ba87483b45677d7bdc49f SHA512 54efa8d5da2d4ef8f9d9e48c4d9e3fae6a2e1b9d15b3daf1e17044c585e85606cb341ee0a73f723601bf696c29565d4ac818d718d637c76c766e3a381083a30d WHIRLPOOL ad8381be58379c15cb22b9f97c975610c8b4f680e75415dd94329461b599002cb8181cbb0666268a538f41679b4dad5525381163c56ee68f861f65edb3134739
|
||||
MISC ChangeLog 7038 SHA256 bdd4a88eff0330184e82f421522216019a273d07df364faa8d47200c20315e3b SHA512 6d4ff49905d91a585d6ee94a4ff5785c2e8b7a4f0bed390c17be9f352fb9adfd62d0639e564c5ef515ccb7d10f1f8933c2d5e9bb5cedaeec2eceedef5c014521 WHIRLPOOL 92ef7ac43971bf8a0ba44cabed041e9383938a9caa7f70d92b420d544178d3b77c17a3122e20c1d9aeaa67043b2873d842465370d36a21e71d0b96f735960c17
|
||||
MISC ChangeLog-2015 2826 SHA256 4e6d46d6a6ac53c0b663f625bf1b281ff31e8836e7a79a4931555b37a0cca00e SHA512 062085dac3dbea20f869179c7b688bf80414ede43f028773deb2e2d611add235d0bc88267fbfc8de2b24b597327c43a0e5ababc7eba4327e351a9c4df521136e WHIRLPOOL db5189244d3802a2e01dadbf9bb90e222c2af27db95923bbc760622099bb1c95576dd13cc17505ff2c854cd393459983f7250f74247d1757ea23d5e8fdb9c1de
|
||||
MISC metadata.xml 1346 SHA256 2710b274618784eb36f2c67fa8778b95c49ff2eeb3b52757bca963a363f455e4 SHA512 27e5e3fde5db5d9e04138b1abdeb77a09a3a0c726c28b1ba63db4aec44c1be8804cfc171893573ac2b4365dc94c725129843267cb0ab938bc5599aa186f26094 WHIRLPOOL 70f1a3c35da4948698ab39fc95d3b433d50b9170090050a0b8f4f1c2669011f2bd0d0f177414ae4744fcebdf7728174339578666b26d1508c56720cdb530fbfe
|
||||
|
@ -0,0 +1,167 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
MY_PN="${PN/PEAR-/}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="PEAR Base System"
|
||||
HOMEPAGE="http://pear.php.net/package/${MY_PN}"
|
||||
SRC_URI="http://pear.php.net/get/${MY_P}.tgz"
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="dev-lang/php:*[cli,xml,zlib]
|
||||
>=dev-php/PEAR-Archive_Tar-1.4.0
|
||||
>=dev-php/PEAR-Console_Getopt-1.4.1
|
||||
>=dev-php/PEAR-Structures_Graph-1.1.0
|
||||
>=dev-php/PEAR-XML_Util-1.3.0"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
PATCHES=( "${FILESDIR}/gentoo-libtool-mismatch-fix-v2.patch" )
|
||||
|
||||
pkg_setup() {
|
||||
[[ -z "${PEAR_CACHEDIR}" ]] && PEAR_CACHEDIR="${EPREFIX}/var/cache/pear"
|
||||
[[ -z "${PEAR_DOWNLOADDIR}" ]] && PEAR_DOWNLOADDIR="${EPREFIX}/var/tmp/pear"
|
||||
[[ -z "${PEAR_TEMPDIR}" ]] && PEAR_TEMPDIR="${EPREFIX}/tmp"
|
||||
|
||||
elog
|
||||
elog "cache_dir is set to: ${PEAR_CACHEDIR}"
|
||||
elog "download_dir is set to: ${PEAR_DOWNLOADDIR}"
|
||||
elog "temp_dir is set to: ${PEAR_TEMPDIR}"
|
||||
elog
|
||||
elog "If you want to change the above values, you need to set"
|
||||
elog "PEAR_CACHEDIR, PEAR_DOWNLOADDIR and PEAR_TEMPDIR variable(s)"
|
||||
elog "accordingly in /etc/portage/make.conf and re-emerge ${PN}."
|
||||
elog
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto /usr/share/php
|
||||
doins -r PEAR/
|
||||
doins -r OS/
|
||||
doins PEAR.php System.php
|
||||
doins scripts/pearcmd.php
|
||||
doins scripts/peclcmd.php
|
||||
|
||||
newbin scripts/pear.sh pear
|
||||
newbin scripts/peardev.sh peardev
|
||||
newbin scripts/pecl.sh pecl
|
||||
|
||||
# adjust some scripts for current version
|
||||
[[ -z "${PEAR}" ]] && PEAR="${PV}"
|
||||
for i in pearcmd.php peclcmd.php ; do
|
||||
sed "s:@pear_version@:${PEAR}:g" -i "${D}/usr/share/php/${i}" \
|
||||
|| die "failed to sed pear_version"
|
||||
done
|
||||
|
||||
for i in pear peardev pecl ; do
|
||||
sed "s:@bin_dir@:${EPREFIX}/usr/bin:g" -i "${D}/usr/bin/${i}" \
|
||||
|| die "failed to sed @bin_dir@ in ${i}"
|
||||
sed "s:@php_dir@:${EPREFIX}/usr/share/php:g" -i "${D}/usr/bin/${i}" \
|
||||
|| die "failed to sed @php_dir@ in ${i}"
|
||||
done
|
||||
|
||||
sed "s:-d output_buffering=1:-d output_buffering=1 -d memory_limit=32M:g" \
|
||||
-i "${D}/usr/bin/pear" \
|
||||
|| die "failed to set PHP ini values in pear executable"
|
||||
|
||||
sed "s:@package_version@:${PEAR}:g" \
|
||||
-i "${D}/usr/share/php/PEAR/Command/Package.php" \
|
||||
|| die "failed to sed @package_version@"
|
||||
|
||||
sed "s:@PEAR-VER@:${PEAR}:g" \
|
||||
-i "${D}/usr/share/php/PEAR/Dependency2.php" \
|
||||
|| die "failed to sed @PEAR-VER@ in Dependency2.php"
|
||||
|
||||
sed "s:@PEAR-VER@:${PEAR}:g" \
|
||||
-i "${D}/usr/share/php/PEAR/PackageFile/Parser/v1.php" \
|
||||
|| die "failed to sed @PEAR-VER@ in v1.php"
|
||||
|
||||
sed "s:@PEAR-VER@:${PEAR}:g" \
|
||||
-i "${D}/usr/share/php/PEAR/PackageFile/Parser/v2.php" \
|
||||
|| die "failed to sed @PEAR-VER@ in v2.php"
|
||||
|
||||
# finalize install
|
||||
insinto /etc
|
||||
newins "${FILESDIR}"/pear.conf-r2 pear.conf
|
||||
|
||||
sed "s|s:PHPCLILEN:\"PHPCLI\"|s:${#PHPCLI}:\"${PHPCLI}\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed PHPCLILEN in pear.conf"
|
||||
|
||||
sed "s|s:CACHEDIRLEN:\"CACHEDIR\"|s:${#PEAR_CACHEDIR}:\"${PEAR_CACHEDIR}\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed CACHEDIRLEN in pear.conf"
|
||||
|
||||
sed "s|s:DOWNLOADDIRLEN:\"DOWNLOADDIR\"|s:${#PEAR_DOWNLOADDIR}:\"${PEAR_DOWNLOADDIR}\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed DOWNLOADDIRLEN in pear.conf"
|
||||
|
||||
sed "s|s:TEMPDIRLEN:\"TEMPDIR\"|s:${#PEAR_TEMPDIR}:\"${PEAR_TEMPDIR}\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed TEMPDIRLEN in pear.conf"
|
||||
|
||||
# Change the paths for eprefix!
|
||||
sed "s|s:19:\"/usr/share/php/docs\"|s:$(( ${#EPREFIX}+19 )):\"${EPREFIX}/usr/share/php/docs\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed the docs path (prefix) in pear.conf"
|
||||
|
||||
sed "s|s:19:\"/usr/share/php/data\"|s:$(( ${#EPREFIX}+19 )):\"${EPREFIX}/usr/share/php/data\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed the data path (prefix) in pear.conf"
|
||||
|
||||
sed "s|s:20:\"/usr/share/php/tests\"|s:$(( ${#EPREFIX}+20 )):\"${EPREFIX}/usr/share/php/tests\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed the tests path (prefix) in pear.conf"
|
||||
|
||||
sed "s|s:14:\"/usr/share/php\"|s:$(( ${#EPREFIX}+14 )):\"${EPREFIX}/usr/share/php\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed the PHP include path (prefix) in pear.conf"
|
||||
|
||||
sed "s|s:8:\"/usr/bin\"|s:$(( ${#EPREFIX}+8 )):\"${EPREFIX}/usr/bin\"|g" \
|
||||
-i "${D}/etc/pear.conf" \
|
||||
|| die "failed to sed the bin path (prefix) in pear.conf"
|
||||
|
||||
[[ "${PEAR_TEMPDIR}" != "/tmp" ]] && keepdir "${PEAR_TEMPDIR#${EPREFIX}}"
|
||||
keepdir "${PEAR_CACHEDIR#${EPREFIX}}"
|
||||
diropts -m1777
|
||||
keepdir "${PEAR_DOWNLOADDIR#${EPREFIX}}"
|
||||
|
||||
insinto /usr/share/php/.packagexml
|
||||
newins "${WORKDIR}/package.xml" "${MY_P}.xml"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
pear clear-cache || die "failed to clear PEAR cache"
|
||||
|
||||
# Update PEAR/PECL channels as needed, add new ones to the list if needed
|
||||
elog "Updating PEAR/PECL channels"
|
||||
local pearchans="pear.php.net pecl.php.net pear.phing.info "
|
||||
pearchans+="pear.symfony-project.com"
|
||||
|
||||
for chan in ${pearchans} ; do
|
||||
# The first command may fail if, for example, the channels have
|
||||
# already been initialized.
|
||||
pear channel-discover ${chan}
|
||||
pear channel-update ${chan} || die "failed to update channels: ${chan}"
|
||||
done
|
||||
|
||||
# Register the package from the package.xml file
|
||||
# It is not critical to complete so only warn on failure
|
||||
if [[ -f "${EROOT}usr/share/php/.packagexml/${MY_P}.xml" ]] ; then
|
||||
"${EROOT}usr/bin/peardev" install -nrO --force \
|
||||
"${EROOT}usr/share/php/.packagexml/${MY_P}.xml" 2> /dev/null \
|
||||
|| ewarn "Failed to insert package into local PEAR database"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_prerm() {
|
||||
# Uninstall known dependency
|
||||
"${EROOT}usr/bin/peardev" uninstall -nrO "pear.php.net/PEAR"
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A client for the OpenStack Nova API"
|
||||
HOMEPAGE="https://github.com/openstack-dev/hacking"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc test"
|
||||
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
>=dev-python/pbr-0.11.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
|
||||
>=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
|
||||
>=dev-python/mock-1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
|
||||
>=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
|
||||
>=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
|
||||
<dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
|
||||
${RDEPEND}
|
||||
)
|
||||
doc? (
|
||||
>=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
|
||||
<dev-python/sphinx-1.3[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep 'dev-python/oslo-sphinx[${PYTHON_USEDEP}]' python2_7 )
|
||||
)"
|
||||
RDEPEND="
|
||||
~dev-python/pep8-1.5.7[${PYTHON_USEDEP}]
|
||||
~dev-python/pyflakes-0.8.1[${PYTHON_USEDEP}]
|
||||
~dev-python/flake8-2.2.5[${PYTHON_USEDEP}]
|
||||
~dev-python/mccabe-0.2.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.7.0[${PYTHON_USEDEP}]"
|
||||
|
||||
DISTUTILS_IN_SOURCE_BUILD=1
|
||||
|
||||
python_prepare_all() {
|
||||
# Prevent d'loading and correct ?typo to oslosphinx in conf.py
|
||||
sed -e 's:intersphinx_mapping:#&:' \
|
||||
-e 's:oslosphinx:oslo.sphinx:' \
|
||||
-i doc/source/conf.py || die
|
||||
# relax deps
|
||||
rm *requirements.txt hacking.egg-info/requires.txt || die
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_compile_all() {
|
||||
use doc && sphinx-build -b html -c doc/source/ doc/source/ doc/source/html
|
||||
}
|
||||
|
||||
python_test() {
|
||||
testr init || die "testr init died"
|
||||
testr run || die "testsuite failed under ${EPYTHON}"
|
||||
flake8 "${PN}"/tests || die "flake8 drew error on a run over ${PN}/tests folder"
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use doc && local HTML_DOCS=( doc/source/html/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
DIST libarchive-c-2.7.tar.gz 42299 SHA256 56eadbc383c27ec9cf6aad3ead72265e70f80fa474b20944328db38bab762b04 SHA512 809319cffc250130c1414885d4e2de399a8ba92f6025848f1423bde79eadc6f686f934f4b17fc0a90ea84379b94c5c38d4849b2b28e2e03f8d16548152dbc856 WHIRLPOOL d6de46b5df8a6997fe4e701345ec29ba47ac93970a9b7277a393e0a18470b6cc27dc90abb8b025351fa6b4568a613aa895e17d2578bc74e2da9df2f193d599fa
|
||||
EBUILD libarchive-c-2.7.ebuild 440 SHA256 3125d2d98494c40bf2de3a4e32684599bb9dc67200e71e9c78358ab7f9c8ddcb SHA512 a36ac3adecd9b288cc73768ccdac8f9ddc8e7f36b549f8f1d19002b709a24ebc2238c030d5a5a8f963fdc64ba55114be97064a6fd5eed409f3aaf95cd916a612 WHIRLPOOL 26327ac3df6cd04c9314dcd9c2e846cde73a2c9ef06072e8a4889d3031166b57282f8f0b15404ff8d452980a7c892537da3773185f86b5cac2be44b8f25ad20f
|
||||
MISC metadata.xml 473 SHA256 56094685c12322050f6101d11b30e7610cd051c3a06d8e26287878d08b5ba901 SHA512 2a4ab350b99d4cbe74c85c7fcf68a64cafe5adee0718c2dc5feae1ad96039ce784ee4b25e752bc209db8fe36a6458c28a258d2e52e03b087ef2a3df3dcd0dfde WHIRLPOOL 0213fc8d1216fa9edf1940fa1f8c906ac9da47756c441b38b099ef08ecb3396d4b343d44cc4f7cfd8764388e0941ba6add3584cd9e099e9a1b5dc81d7ae1b6a4
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
||||
inherit distutils-r1
|
||||
DESCRIPTION="A Python interface to libarchive"
|
||||
HOMEPAGE="https://github.com/Changaco/python-libarchive-c/ https://pypi.python.org/pypi/libarchive-c/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
LICENSE="CC0-1.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>grozin@gentoo.org</email>
|
||||
<name>Andrey Grozin</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
A Python interface to libarchive.
|
||||
It uses the standard ctypes module to dynamically load and access the C library.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="pypi">libarchive-c</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,4 +1,6 @@
|
||||
DIST yaql-1.1.1.tar.gz 68366 SHA256 2e06a56e39da21765306e4709cd87ec3ed366223badc95499576f0662f69a04c SHA512 07e41e58d85a357f7b980501501558d50264a7e3c9b81b0117e3bd202ac06bd562d1b4ea505a613ed11051f5e45ae1687f010a3c75d2f9dbff673f81a04644e9 WHIRLPOOL 8adef15359e80070d15022162b4b0ade6df15e6350c20d966a46109adda17b1e9e7db31a1b68a55c1b96eee683f5a06fd7c13f29656924d10556224218a6aaaf
|
||||
DIST yaql-1.1.3.tar.gz 111546 SHA256 1134d9e9a8b61c97ac03f80d27fa60439397a6ff7aac3c3180c0a6908c05d209 SHA512 e85712f65dc932126c75cc84403d14639f76098f4bd22ff2106a68afb6685794e1797154bbf1343e1f82a8b4a13e351d2d0dec1f235e31eecd96f6394116cd4b WHIRLPOOL 12f203d7aa863df727dc6fbc241694bea1f9f4e9df61d1b417d1275945b63254394d001d4441939118026eed516403421751d473f2825702166209d17a5d1e9a
|
||||
EBUILD yaql-1.1.1.ebuild 731 SHA256 c0f70575442c76931579a4f7182030056736490d616ad9a688ad9a13a2906582 SHA512 0aca892b4de6afe626a0b3687979690655e4e68c41e984f146a52040c10cf173c505bad442242582bae7d37e0a66bfb58e1ebf58ea59c4e33912639afa8943fb WHIRLPOOL 8f272c2a76f6ba4ba2e323a81a46452127fd1d4bc6f6ee2ba80ab7c1a5267dc9f06bf85d39cd396b216cc10f0afe318d0a82030c64067db2103092ec0ebb4ab0
|
||||
EBUILD yaql-1.1.3.ebuild 733 SHA256 78d9aabad2f6942624c1c7946f2af0a4918342a03e7b639fe76eb7da749b0e85 SHA512 b04f3f5a446953a8b2ea389f2c4e57e22ce61e15e399773b9e47f9f81617c9e7fef061eff6e1b2f3d8e576d22e8bec5d6efe8a03b3a09ac3151fc619d3977ff0 WHIRLPOOL 9e51801155dd73caaf398bd49393dceda5d25638a7e9112aa8500f16908be2f9e5f22375f5fadbecb56a92a8482aa2bd7282f60e781a38151b26672d4e6d374b
|
||||
MISC ChangeLog 449 SHA256 a29aa6ac47cec325777f3761c7495bc8071f5a27cf0122598d720f69f64962a2 SHA512 c1f34ec5d9acde1a98a0543196ef7c84a775be715e80a263e234e00d874ea4f83176ee98240d91c8292c3dbd95d6f1bd2e55d4985cd549fa36e2ff60a29b1cc9 WHIRLPOOL 9d8e1833db86dcc7076dbde23850d04f5eb827debf1457c700b4dfe55e157a04bfa530da6840906fcd5c920f59019240233f4152a291cbacfab6fbfc9240e300
|
||||
MISC metadata.xml 913 SHA256 e9f23ba475331b3853c28d67cc7d3ae06646e1870c387761d7778ff545fd39f6 SHA512 84e10769ee26a26b79179fc63fb51cf94a4c5b2ec128270eb9b775f90079e7c3e527e2c7a2d4ba3d58a68411e0c83bb94c3aa544889442e1679c4771e4028a72 WHIRLPOOL 7d34796becc2f59b6365b5d9da6cf411f62412fae2d374fe62466cc558e8c44b7a4f93bdf48f9791aa6514296ebdace01b693c1c0445e485ba580512e39a4599
|
||||
|
@ -0,0 +1,27 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="YAQL: Yet Another Query Language"
|
||||
HOMEPAGE="https://github.com/openstack/yaql"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
${CDEPEND}"
|
||||
RDEPEND="
|
||||
${CDEPEND}
|
||||
>=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}]
|
||||
dev-python/ply[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
|
@ -0,0 +1,3 @@
|
||||
DIST diffoscope-78.tar.gz 466619 SHA256 f6b444b57dc70bb1ad6e682b3e5fe4a65141488980436b4ca89b55d1b589a8af SHA512 6d83c8297727ebd0dce49805d6cc3dcca1ea5a2c1b8d56097e3c7ef14c9058851f3504aaa2bed0f0ea905796f5c704937320f8bbcd7dad2a73ab940d96f693aa WHIRLPOOL 3245255abfcded1bbaa3c39bf046711cb82cf1a6c1625379421a47454ee6fd01692f42f56050bab2c8525a1a9fbef84290d7e96554c50df683d36b00e91df094
|
||||
EBUILD diffoscope-78.ebuild 504 SHA256 0eb1f75d8b8aee75148920914045dc44ed163d1cb5a7c428effabf6c4e07485c SHA512 b816699acae647dfe59329b3b33fa458d02556041b63b7e75d5e28361b62dc2e4931ab6de19a4a7a63525a781f3c940aa5005475456d375c9c035bde91118ae2 WHIRLPOOL 8fc6e88f421e8f13f8dede0d5b3da1ebef03db6a5150718753f1ae785f546579707323ada2e3ccc15a3f3ac4a420053e3e7c50a6973ed1e1253b50d33d54be7a
|
||||
MISC metadata.xml 645 SHA256 3dacf9e64ae72bae7efaab10d9a437545c158e8da41e63665c2bed91ab11021b SHA512 eebf7b928e71f982cb33200bc8f04c4948a0cee4fad86109aacf9fc5ccb69831fbc9b7d54599700c114e640984bc16479971bc5414e60a20c0e8bb079491112f WHIRLPOOL 53aab0ada0c9498bff4293610c6eff8ba8d8a944d68e5b33da5fe9faa4f7eaa554663cabc81993806ec0d0c04488f6907b1f6f800caad86ff52945ce0845bdc8
|
@ -0,0 +1,16 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python3_{4,5,6} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Will try to get to the bottom of what makes files or directories different"
|
||||
HOMEPAGE="https://diffoscope.org/ https://pypi.python.org/pypi/diffoscope/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
RDEPEND="dev-python/python-magic
|
||||
dev-python/libarchive-c"
|
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>grozin@gentoo.org</email>
|
||||
<name>Andrey Grozin</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
diffoscope will try to get to the bottom of what makes files or directories different.
|
||||
It will recursively unpack archives of many kinds and transform various binary formats
|
||||
into more human readable form to compare them.
|
||||
It can compare two tarballs, ISO images, or PDF just as easily.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="pypi">diffoscope</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,96 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit eutils gnome2-utils cmake-utils
|
||||
|
||||
DESCRIPTION="An open source reimplementation of TES III: Morrowind"
|
||||
HOMEPAGE="http://openmw.org/"
|
||||
SRC_URI="https://github.com/OpenMW/openmw/archive/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3 MIT BitstreamVera OFL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc devtools"
|
||||
|
||||
RDEPEND="
|
||||
app-arch/unshield
|
||||
>=dev-games/mygui-3.2.2
|
||||
>=dev-games/openscenegraph-3.3.4[ffmpeg,jpeg,png,qt5,sdl,svg,truetype,zlib]
|
||||
>=dev-libs/boost-1.56.0-r1
|
||||
dev-libs/tinyxml
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
media-libs/freetype:2
|
||||
media-libs/libsdl2[joystick,opengl,X,video]
|
||||
|| ( media-libs/libtxc_dxtn x11-drivers/ati-drivers x11-drivers/nvidia-drivers )
|
||||
media-libs/openal
|
||||
>=sci-physics/bullet-2.80
|
||||
virtual/ffmpeg
|
||||
virtual/opengl
|
||||
devtools? ( dev-qt/qtxmlpatterns:5 )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
doc? ( app-doc/doxygen media-gfx/graphviz )"
|
||||
|
||||
S=${WORKDIR}/${PN}-${P}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBINDIR="/usr/bin"
|
||||
-DBUILD_BSATOOL="$(usex devtools)"
|
||||
-DBUILD_ESMTOOL="$(usex devtools)"
|
||||
-DBUILD_OPENCS="$(usex devtools)"
|
||||
-DBUILD_UNITTESTS=OFF
|
||||
-DDATADIR="/usr/share/${PN}"
|
||||
-DICONDIR="/usr/share/icons/hicolor/256x256/apps"
|
||||
-DLIBDIR="/usr/$(get_libdir)"
|
||||
-DMORROWIND_DATA_FILES="/usr/share/morrowind-data"
|
||||
-DOPENMW_RESOURCE_FILES="/usr/share/${PN}/resources"
|
||||
-DGLOBAL_CONFIG_PATH="/etc"
|
||||
-DUSE_SYSTEM_TINYXML=ON
|
||||
-DDESIRED_QT_VERSION=5
|
||||
)
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake-utils_src_compile
|
||||
|
||||
if use doc ; then
|
||||
emake -C "${CMAKE_BUILD_DIR}" doc
|
||||
find "${CMAKE_BUILD_DIR}"/docs/Doxygen/html \
|
||||
-name '*.md5' -type f -delete || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
dodoc README.md
|
||||
|
||||
# about 47k files, dodoc seems to have trouble
|
||||
if use doc ; then
|
||||
dodir "/usr/share/doc/${PF}"
|
||||
mv "${CMAKE_BUILD_DIR}"/docs/Doxygen/html \
|
||||
"${D}/usr/share/doc/${PF}/" || die
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_icon_cache_update
|
||||
|
||||
elog "You need the original Morrowind Data files. If you haven't"
|
||||
elog "installed them yet, you can install them straight via the"
|
||||
elog "installation wizard which is the officially"
|
||||
elog "supported method (either by using the launcher or by calling"
|
||||
elog "'openmw-wizard' directly)."
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
Fix install paths and don't precompress man pages.
|
||||
|
||||
--- wkhtmltopdf-0.12.1.2/src/image/image.pro
|
||||
+++ wkhtmltopdf-0.12.1.2/src/image/image.pro
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
unix {
|
||||
man.path=$$INSTALLBASE/share/man/man1
|
||||
- man.extra=LD_LIBRARY_PATH=../../bin/ ../../bin/wkhtmltoimage --manpage | gzip > $(INSTALL_ROOT)/share/man/man1/wkhtmltoimage.1.gz
|
||||
+ man.extra=LD_LIBRARY_PATH=../../bin/ ../../bin/wkhtmltoimage --manpage > $(INSTALL_ROOT)$$INSTALLBASE/share/man/man1/wkhtmltoimage.1
|
||||
|
||||
QMAKE_EXTRA_TARGETS += man
|
||||
INSTALLS += man
|
||||
--- wkhtmltopdf-0.12.1.2/src/pdf/pdf.pro
|
||||
+++ wkhtmltopdf-0.12.1.2/src/pdf/pdf.pro
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
unix {
|
||||
man.path=$$INSTALLBASE/share/man/man1
|
||||
- man.extra=LD_LIBRARY_PATH=../../bin/ ../../bin/wkhtmltopdf --manpage | gzip > $(INSTALL_ROOT)/share/man/man1/wkhtmltopdf.1.gz
|
||||
+ man.extra=LD_LIBRARY_PATH=../../bin/ ../../bin/wkhtmltopdf --manpage > $(INSTALL_ROOT)$$INSTALLBASE/share/man/man1/wkhtmltopdf.1
|
||||
|
||||
QMAKE_EXTRA_TARGETS += man
|
||||
INSTALLS += man
|
@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit qt4-r2 multilib eutils
|
||||
|
||||
DESCRIPTION="Convert html to pdf (and various image formats) using webkit"
|
||||
HOMEPAGE="http://wkhtmltopdf.org/ https://github.com/wkhtmltopdf/wkhtmltopdf/"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="examples"
|
||||
|
||||
RDEPEND="dev-qt/qtgui:4
|
||||
dev-qt/qtwebkit:4
|
||||
dev-qt/qtcore:4
|
||||
dev-qt/qtsvg:4
|
||||
dev-qt/qtxmlpatterns:4"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
# fix install paths and don't precompress man pages
|
||||
epatch "${FILESDIR}"/${P}-manpages.patch
|
||||
|
||||
sed -i "s:\(INSTALLBASE/\)lib:\1$(get_libdir):" src/lib/lib.pro || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake4 INSTALLBASE=/usr
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
dodoc AUTHORS CHANGELOG* README.md
|
||||
use examples && dodoc -r examples
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit qt4-r2 multilib eutils
|
||||
|
||||
DESCRIPTION="Convert html to pdf (and various image formats) using webkit"
|
||||
HOMEPAGE="http://wkhtmltopdf.org/ https://github.com/wkhtmltopdf/wkhtmltopdf/"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="examples"
|
||||
|
||||
RDEPEND="dev-qt/qtgui:4
|
||||
dev-qt/qtwebkit:4
|
||||
dev-qt/qtcore:4
|
||||
dev-qt/qtsvg:4
|
||||
dev-qt/qtxmlpatterns:4"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
# fix install paths and don't precompress man pages
|
||||
epatch "${FILESDIR}"/${PN}-0.12.1.2-manpages.patch
|
||||
|
||||
sed -i "s:\(INSTALLBASE/\)lib:\1$(get_libdir):" src/lib/lib.pro || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
eqmake4 INSTALLBASE=/usr
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
dodoc AUTHORS CHANGELOG* README.md
|
||||
use examples && dodoc -r examples
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
From 71a2b2e8a580d2c0bee84b898d8531b27f3c7811 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Turner <mattst88@gmail.com>
|
||||
Date: Thu, 2 Mar 2017 04:43:21 +0000
|
||||
Subject: [PATCH] clover: Work around build failure with AltiVec.
|
||||
|
||||
Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=587210
|
||||
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68504
|
||||
Acked-by: Francisco Jerez <currojerez@riseup.net>
|
||||
(cherry picked from commit 7d1195c1e4d071fe796bf5f210c468ea1cc86225)
|
||||
---
|
||||
configure.ac | 14 ++++++++++++++
|
||||
src/gallium/state_trackers/clover/Makefile.am | 3 +++
|
||||
2 files changed, 17 insertions(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index fd78fbb..3646e45 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1974,6 +1974,20 @@ if test "x$enable_opencl" = xyes; then
|
||||
if test "x$have_libelf" != xyes; then
|
||||
AC_MSG_ERROR([Clover requires libelf])
|
||||
fi
|
||||
+
|
||||
+ if test "x${ac_cv_cxx_compiler_gnu}" = xyes; then
|
||||
+ altivec_enabled=no
|
||||
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
||||
+ #if !defined(__VEC__) || !defined(__ALTIVEC__)
|
||||
+ #error "AltiVec not enabled"
|
||||
+ #endif
|
||||
+ ])], altivec_enabled=yes)
|
||||
+
|
||||
+ if test "$altivec_enabled" = yes; then
|
||||
+ CLOVER_STD_OVERRIDE="-std=gnu++11"
|
||||
+ fi
|
||||
+ AC_SUBST([CLOVER_STD_OVERRIDE])
|
||||
+ fi
|
||||
fi
|
||||
AM_CONDITIONAL(HAVE_CLOVER, test "x$enable_opencl" = xyes)
|
||||
AM_CONDITIONAL(HAVE_CLOVER_ICD, test "x$enable_opencl_icd" = xyes)
|
||||
diff --git a/src/gallium/state_trackers/clover/Makefile.am b/src/gallium/state_trackers/clover/Makefile.am
|
||||
index 8abcfec..edf1e26 100644
|
||||
--- a/src/gallium/state_trackers/clover/Makefile.am
|
||||
+++ b/src/gallium/state_trackers/clover/Makefile.am
|
||||
@@ -33,6 +33,7 @@ noinst_LTLIBRARIES = libclover.la libcltgsi.la libclllvm.la
|
||||
|
||||
libcltgsi_la_CXXFLAGS = \
|
||||
-std=c++11 \
|
||||
+ $(CLOVER_STD_OVERRIDE) \
|
||||
$(VISIBILITY_CXXFLAGS)
|
||||
|
||||
libcltgsi_la_SOURCES = $(TGSI_SOURCES)
|
||||
@@ -41,6 +42,7 @@ libclllvm_la_CXXFLAGS = \
|
||||
-std=c++11 \
|
||||
$(VISIBILITY_CXXFLAGS) \
|
||||
$(LLVM_CXXFLAGS) \
|
||||
+ $(CLOVER_STD_OVERRIDE) \
|
||||
$(DEFINES) \
|
||||
$(LIBELF_CFLAGS) \
|
||||
-DLIBCLC_INCLUDEDIR=\"$(LIBCLC_INCLUDEDIR)/\" \
|
||||
@@ -51,6 +53,7 @@ libclllvm_la_SOURCES = $(LLVM_SOURCES)
|
||||
|
||||
libclover_la_CXXFLAGS = \
|
||||
-std=c++11 \
|
||||
+ $(CLOVER_STD_OVERRIDE) \
|
||||
$(VISIBILITY_CXXFLAGS)
|
||||
|
||||
libclover_la_LIBADD = \
|
||||
--
|
||||
2.10.2
|
||||
|
@ -0,0 +1,69 @@
|
||||
From 7d1195c1e4d071fe796bf5f210c468ea1cc86225 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Turner <mattst88@gmail.com>
|
||||
Date: Thu, 2 Mar 2017 04:43:21 +0000
|
||||
Subject: [PATCH] clover: Work around build failure with AltiVec.
|
||||
|
||||
Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=587210
|
||||
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68504
|
||||
Acked-by: Francisco Jerez <currojerez@riseup.net>
|
||||
---
|
||||
configure.ac | 14 ++++++++++++++
|
||||
src/gallium/state_trackers/clover/Makefile.am | 3 +++
|
||||
2 files changed, 17 insertions(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index a3d1a00..57c4b1e 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -2033,6 +2033,20 @@ if test "x$enable_opencl" = xyes; then
|
||||
AC_MSG_ERROR([Clover requires libelf])
|
||||
fi
|
||||
|
||||
+ if test "x${ac_cv_cxx_compiler_gnu}" = xyes; then
|
||||
+ altivec_enabled=no
|
||||
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
||||
+ #if !defined(__VEC__) || !defined(__ALTIVEC__)
|
||||
+ #error "AltiVec not enabled"
|
||||
+ #endif
|
||||
+ ])], altivec_enabled=yes)
|
||||
+
|
||||
+ if test "$altivec_enabled" = yes; then
|
||||
+ CLOVER_STD_OVERRIDE="-std=gnu++11"
|
||||
+ fi
|
||||
+ AC_SUBST([CLOVER_STD_OVERRIDE])
|
||||
+ fi
|
||||
+
|
||||
llvm_require_version $LLVM_REQUIRED_OPENCL "opencl"
|
||||
|
||||
llvm_add_default_components "opencl"
|
||||
diff --git a/src/gallium/state_trackers/clover/Makefile.am b/src/gallium/state_trackers/clover/Makefile.am
|
||||
index a657e5b..3213935 100644
|
||||
--- a/src/gallium/state_trackers/clover/Makefile.am
|
||||
+++ b/src/gallium/state_trackers/clover/Makefile.am
|
||||
@@ -32,6 +32,7 @@ noinst_LTLIBRARIES = libclover.la libcltgsi.la libclllvm.la
|
||||
|
||||
libcltgsi_la_CXXFLAGS = \
|
||||
-std=c++11 \
|
||||
+ $(CLOVER_STD_OVERRIDE) \
|
||||
$(VISIBILITY_CXXFLAGS)
|
||||
|
||||
libcltgsi_la_SOURCES = $(TGSI_SOURCES)
|
||||
@@ -40,6 +41,7 @@ libclllvm_la_CXXFLAGS = \
|
||||
-std=c++11 \
|
||||
$(VISIBILITY_CXXFLAGS) \
|
||||
$(LLVM_CXXFLAGS) \
|
||||
+ $(CLOVER_STD_OVERRIDE) \
|
||||
$(DEFINES) \
|
||||
$(LIBELF_CFLAGS) \
|
||||
-DLIBCLC_INCLUDEDIR=\"$(LIBCLC_INCLUDEDIR)/\" \
|
||||
@@ -50,6 +52,7 @@ libclllvm_la_SOURCES = $(LLVM_SOURCES)
|
||||
|
||||
libclover_la_CXXFLAGS = \
|
||||
-std=c++11 \
|
||||
+ $(CLOVER_STD_OVERRIDE) \
|
||||
$(VISIBILITY_CXXFLAGS)
|
||||
|
||||
libclover_la_LIBADD = \
|
||||
--
|
||||
2.10.2
|
||||
|
@ -1,504 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"
|
||||
|
||||
if [[ ${PV} = 9999 ]]; then
|
||||
GIT_ECLASS="git-r3"
|
||||
EXPERIMENTAL="true"
|
||||
fi
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}
|
||||
|
||||
OPENGL_DIR="xorg-x11"
|
||||
|
||||
MY_P="${P/_/-}"
|
||||
FOLDER="${PV/_rc*/}"
|
||||
|
||||
DESCRIPTION="OpenGL-like graphic library for Linux"
|
||||
HOMEPAGE="https://www.mesa3d.org/"
|
||||
|
||||
if [[ $PV == 9999 ]]; then
|
||||
SRC_URI=""
|
||||
KEYWORDS=""
|
||||
else
|
||||
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
RESTRICT="!bindist? ( bindist )"
|
||||
|
||||
INTEL_CARDS="i915 i965 intel"
|
||||
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
|
||||
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vc4 vmware"
|
||||
for card in ${VIDEO_CARDS}; do
|
||||
IUSE_VIDEO_CARDS+=" video_cards_${card}"
|
||||
done
|
||||
|
||||
IUSE="${IUSE_VIDEO_CARDS}
|
||||
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gcrypt gles1 gles2
|
||||
libressl +llvm +nettle +nptl opencl osmesa pax_kernel openmax openssl pic
|
||||
selinux vaapi valgrind vdpau vulkan wayland xvmc xa"
|
||||
|
||||
REQUIRED_USE="
|
||||
|| ( gcrypt libressl nettle openssl )
|
||||
d3d9? ( dri3 gallium )
|
||||
llvm? ( gallium )
|
||||
opencl? ( gallium llvm )
|
||||
openmax? ( gallium )
|
||||
gles1? ( egl )
|
||||
gles2? ( egl )
|
||||
vaapi? ( gallium )
|
||||
vdpau? ( gallium )
|
||||
vulkan? ( || ( video_cards_i965 video_cards_radeonsi )
|
||||
video_cards_radeonsi? ( llvm ) )
|
||||
wayland? ( egl gbm )
|
||||
xa? ( gallium )
|
||||
video_cards_freedreno? ( gallium )
|
||||
video_cards_intel? ( classic )
|
||||
video_cards_i915? ( || ( classic gallium ) )
|
||||
video_cards_i965? ( classic )
|
||||
video_cards_nouveau? ( || ( classic gallium ) )
|
||||
video_cards_radeon? ( || ( classic gallium )
|
||||
gallium? ( x86? ( llvm ) amd64? ( llvm ) ) )
|
||||
video_cards_r100? ( classic )
|
||||
video_cards_r200? ( classic )
|
||||
video_cards_r300? ( gallium x86? ( llvm ) amd64? ( llvm ) )
|
||||
video_cards_r600? ( gallium )
|
||||
video_cards_radeonsi? ( gallium llvm )
|
||||
video_cards_vmware? ( gallium )
|
||||
${PYTHON_REQUIRED_USE}
|
||||
"
|
||||
|
||||
LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.72"
|
||||
# keep correct libdrm and dri2proto dep
|
||||
# keep blocks in rdepend for binpkg
|
||||
RDEPEND="
|
||||
!<x11-base/xorg-server-1.7
|
||||
!<=x11-proto/xf86driproto-2.0.3
|
||||
abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )
|
||||
classic? ( app-eselect/eselect-mesa )
|
||||
gallium? ( app-eselect/eselect-mesa )
|
||||
>=app-eselect/eselect-opengl-1.3.0
|
||||
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
|
||||
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
|
||||
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
|
||||
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
|
||||
>=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}]
|
||||
>=x11-libs/libXxf86vm-1.1.3:=[${MULTILIB_USEDEP}]
|
||||
>=x11-libs/libxcb-1.9.3:=[${MULTILIB_USEDEP}]
|
||||
x11-libs/libXfixes:=[${MULTILIB_USEDEP}]
|
||||
llvm? (
|
||||
video_cards_radeonsi? (
|
||||
virtual/libelf:0=[${MULTILIB_USEDEP}]
|
||||
vulkan? ( >=sys-devel/llvm-3.9.0:0=[${MULTILIB_USEDEP}] )
|
||||
)
|
||||
>=sys-devel/llvm-3.6.0:0=[${MULTILIB_USEDEP}]
|
||||
)
|
||||
nettle? ( dev-libs/nettle:=[${MULTILIB_USEDEP}] )
|
||||
!nettle? (
|
||||
gcrypt? ( dev-libs/libgcrypt:=[${MULTILIB_USEDEP}] )
|
||||
!gcrypt? (
|
||||
libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
|
||||
!libressl? ( dev-libs/openssl:=[${MULTILIB_USEDEP}] )
|
||||
)
|
||||
)
|
||||
opencl? (
|
||||
app-eselect/eselect-opencl
|
||||
dev-libs/libclc
|
||||
virtual/libelf:0=[${MULTILIB_USEDEP}]
|
||||
)
|
||||
openmax? ( >=media-libs/libomxil-bellagio-0.9.3:=[${MULTILIB_USEDEP}] )
|
||||
vaapi? (
|
||||
>=x11-libs/libva-1.6.0:=[${MULTILIB_USEDEP}]
|
||||
video_cards_nouveau? ( !<=x11-libs/libva-vdpau-driver-0.7.4-r3 )
|
||||
)
|
||||
vdpau? ( >=x11-libs/libvdpau-1.1:=[${MULTILIB_USEDEP}] )
|
||||
wayland? ( >=dev-libs/wayland-1.2.0:=[${MULTILIB_USEDEP}] )
|
||||
xvmc? ( >=x11-libs/libXvMC-1.0.8:=[${MULTILIB_USEDEP}] )
|
||||
${LIBDRM_DEPSTRING}[video_cards_freedreno?,video_cards_nouveau?,video_cards_vc4?,video_cards_vmware?,${MULTILIB_USEDEP}]
|
||||
"
|
||||
for card in ${INTEL_CARDS}; do
|
||||
RDEPEND="${RDEPEND}
|
||||
video_cards_${card}? ( ${LIBDRM_DEPSTRING}[video_cards_intel] )
|
||||
"
|
||||
done
|
||||
|
||||
for card in ${RADEON_CARDS}; do
|
||||
RDEPEND="${RDEPEND}
|
||||
video_cards_${card}? ( ${LIBDRM_DEPSTRING}[video_cards_radeon] )
|
||||
"
|
||||
done
|
||||
RDEPEND="${RDEPEND}
|
||||
video_cards_radeonsi? ( ${LIBDRM_DEPSTRING}[video_cards_amdgpu] )
|
||||
"
|
||||
|
||||
# FIXME: kill the sys-devel/llvm[video_cards_radeon] compat once
|
||||
# LLVM < 3.9 is out of the game
|
||||
DEPEND="${RDEPEND}
|
||||
llvm? (
|
||||
video_cards_radeonsi? ( || (
|
||||
sys-devel/llvm[llvm_targets_AMDGPU]
|
||||
sys-devel/llvm[video_cards_radeon]
|
||||
) )
|
||||
)
|
||||
opencl? (
|
||||
>=sys-devel/llvm-3.4.2:0=[${MULTILIB_USEDEP}]
|
||||
>=sys-devel/clang-3.4.2:0=[${MULTILIB_USEDEP}]
|
||||
>=sys-devel/gcc-4.6
|
||||
)
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
valgrind? ( dev-util/valgrind )
|
||||
>=x11-proto/dri2proto-2.8-r1:=[${MULTILIB_USEDEP}]
|
||||
dri3? (
|
||||
>=x11-proto/dri3proto-1.0:=[${MULTILIB_USEDEP}]
|
||||
>=x11-proto/presentproto-1.0:=[${MULTILIB_USEDEP}]
|
||||
)
|
||||
>=x11-proto/glproto-1.4.17-r1:=[${MULTILIB_USEDEP}]
|
||||
>=x11-proto/xextproto-7.2.1-r1:=[${MULTILIB_USEDEP}]
|
||||
>=x11-proto/xf86driproto-2.1.1-r1:=[${MULTILIB_USEDEP}]
|
||||
>=x11-proto/xf86vidmodeproto-2.3.1-r1:=[${MULTILIB_USEDEP}]
|
||||
"
|
||||
[[ ${PV} == 9999 ]] && DEPEND+="
|
||||
sys-devel/bison
|
||||
sys-devel/flex
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_any_dep ">=dev-python/mako-0.7.3[\${PYTHON_USEDEP}]")
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
EGIT_CHECKOUT_DIR=${S}
|
||||
|
||||
QA_WX_LOAD="
|
||||
x86? (
|
||||
!pic? (
|
||||
usr/lib*/libglapi.so.0.0.0
|
||||
usr/lib*/libGLESv1_CM.so.1.1.0
|
||||
usr/lib*/libGLESv2.so.2.0.0
|
||||
usr/lib*/libGL.so.1.2.0
|
||||
usr/lib*/libOSMesa.so.8.0.0
|
||||
)
|
||||
)"
|
||||
|
||||
pkg_setup() {
|
||||
# warning message for bug 459306
|
||||
if use llvm && has_version sys-devel/llvm[!debug=]; then
|
||||
ewarn "Mismatch between debug USE flags in media-libs/mesa and sys-devel/llvm"
|
||||
ewarn "detected! This can cause problems. For details, see bug 459306."
|
||||
fi
|
||||
|
||||
python-any-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
[[ ${PV} == 9999 ]] && eautoreconf
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myconf
|
||||
|
||||
if use classic; then
|
||||
# Configurable DRI drivers
|
||||
driver_enable swrast
|
||||
|
||||
# Intel code
|
||||
driver_enable video_cards_i915 i915
|
||||
driver_enable video_cards_i965 i965
|
||||
if ! use video_cards_i915 && \
|
||||
! use video_cards_i965; then
|
||||
driver_enable video_cards_intel i915 i965
|
||||
fi
|
||||
|
||||
# Nouveau code
|
||||
driver_enable video_cards_nouveau nouveau
|
||||
|
||||
# ATI code
|
||||
driver_enable video_cards_r100 radeon
|
||||
driver_enable video_cards_r200 r200
|
||||
if ! use video_cards_r100 && \
|
||||
! use video_cards_r200; then
|
||||
driver_enable video_cards_radeon radeon r200
|
||||
fi
|
||||
fi
|
||||
|
||||
if use egl; then
|
||||
myconf+=" --with-egl-platforms=x11$(use wayland && echo ",wayland")$(use gbm && echo ",drm")"
|
||||
fi
|
||||
|
||||
if use gallium; then
|
||||
myconf+="
|
||||
$(use_enable d3d9 nine)
|
||||
$(use_enable llvm gallium-llvm)
|
||||
$(use_enable openmax omx)
|
||||
$(use_enable vaapi va)
|
||||
$(use_enable vdpau)
|
||||
$(use_enable xa)
|
||||
$(use_enable xvmc)
|
||||
"
|
||||
use vaapi && myconf+=" --with-va-libdir=/usr/$(get_libdir)/va/drivers"
|
||||
|
||||
gallium_enable swrast
|
||||
gallium_enable video_cards_vc4 vc4
|
||||
gallium_enable video_cards_vmware svga
|
||||
gallium_enable video_cards_nouveau nouveau
|
||||
gallium_enable video_cards_i915 i915
|
||||
if ! use video_cards_i915 && \
|
||||
! use video_cards_i965; then
|
||||
gallium_enable video_cards_intel i915
|
||||
fi
|
||||
|
||||
gallium_enable video_cards_r300 r300
|
||||
gallium_enable video_cards_r600 r600
|
||||
gallium_enable video_cards_radeonsi radeonsi
|
||||
if ! use video_cards_r300 && \
|
||||
! use video_cards_r600; then
|
||||
gallium_enable video_cards_radeon r300 r600
|
||||
fi
|
||||
|
||||
gallium_enable video_cards_freedreno freedreno
|
||||
# opencl stuff
|
||||
if use opencl; then
|
||||
myconf+="
|
||||
$(use_enable opencl)
|
||||
--with-clang-libdir="${EPREFIX}/usr/lib"
|
||||
"
|
||||
fi
|
||||
fi
|
||||
|
||||
if use vulkan; then
|
||||
vulkan_enable video_cards_i965 intel
|
||||
vulkan_enable video_cards_radeonsi radeon
|
||||
fi
|
||||
|
||||
# x86 hardened pax_kernel needs glx-rts, bug 240956
|
||||
if [[ ${ABI} == x86 ]]; then
|
||||
myconf+=" $(use_enable pax_kernel glx-read-only-text)"
|
||||
fi
|
||||
|
||||
# on abi_x86_32 hardened we need to have asm disable
|
||||
if [[ ${ABI} == x86* ]] && use pic; then
|
||||
myconf+=" --disable-asm"
|
||||
fi
|
||||
|
||||
if use gallium; then
|
||||
myconf+=" $(use_enable osmesa gallium-osmesa)"
|
||||
else
|
||||
myconf+=" $(use_enable osmesa)"
|
||||
fi
|
||||
|
||||
# build fails with BSD indent, bug #428112
|
||||
use userland_GNU || export INDENT=cat
|
||||
|
||||
ECONF_SOURCE="${S}" \
|
||||
econf \
|
||||
--enable-dri \
|
||||
--enable-glx \
|
||||
--enable-shared-glapi \
|
||||
--disable-shader-cache \
|
||||
$(use_enable !bindist texture-float) \
|
||||
$(use_enable d3d9 nine) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable dri3) \
|
||||
$(use_enable egl) \
|
||||
$(use_enable gbm) \
|
||||
$(use_enable gles1) \
|
||||
$(use_enable gles2) \
|
||||
$(use_enable nptl glx-tls) \
|
||||
--enable-valgrind=$(usex valgrind auto no) \
|
||||
--enable-llvm-shared-libs \
|
||||
--with-dri-drivers=${DRI_DRIVERS} \
|
||||
--with-gallium-drivers=${GALLIUM_DRIVERS} \
|
||||
--with-vulkan-drivers=${VULKAN_DRIVERS} \
|
||||
--with-sha1=$(usex nettle libnettle $(usex gcrypt libgcrypt libcrypto)) \
|
||||
PYTHON2="${PYTHON}" \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
emake install DESTDIR="${D}"
|
||||
|
||||
if use classic || use gallium; then
|
||||
ebegin "Moving DRI/Gallium drivers for dynamic switching"
|
||||
local gallium_drivers=( i915_dri.so i965_dri.so r300_dri.so r600_dri.so swrast_dri.so )
|
||||
keepdir /usr/$(get_libdir)/dri
|
||||
dodir /usr/$(get_libdir)/mesa
|
||||
for x in ${gallium_drivers[@]}; do
|
||||
if [ -f "$(get_libdir)/gallium/${x}" ]; then
|
||||
mv -f "${ED}/usr/$(get_libdir)/dri/${x}" "${ED}/usr/$(get_libdir)/dri/${x/_dri.so/g_dri.so}" \
|
||||
|| die "Failed to move ${x}"
|
||||
fi
|
||||
done
|
||||
if use classic; then
|
||||
emake -C "${BUILD_DIR}/src/mesa/drivers/dri" DESTDIR="${D}" install
|
||||
fi
|
||||
for x in "${ED}"/usr/$(get_libdir)/dri/*.so; do
|
||||
if [ -f ${x} -o -L ${x} ]; then
|
||||
mv -f "${x}" "${x/dri/mesa}" \
|
||||
|| die "Failed to move ${x}"
|
||||
fi
|
||||
done
|
||||
pushd "${ED}"/usr/$(get_libdir)/dri || die "pushd failed"
|
||||
ln -s ../mesa/*.so . || die "Creating symlink failed"
|
||||
# remove symlinks to drivers known to eselect
|
||||
for x in ${gallium_drivers[@]}; do
|
||||
if [ -f ${x} -o -L ${x} ]; then
|
||||
rm "${x}" || die "Failed to remove ${x}"
|
||||
fi
|
||||
done
|
||||
popd
|
||||
eend $?
|
||||
fi
|
||||
if use opencl; then
|
||||
ebegin "Moving Gallium/Clover OpenCL implementation for dynamic switching"
|
||||
local cl_dir="/usr/$(get_libdir)/OpenCL/vendors/mesa"
|
||||
dodir ${cl_dir}/{lib,include}
|
||||
if [ -f "${ED}/usr/$(get_libdir)/libOpenCL.so" ]; then
|
||||
mv -f "${ED}"/usr/$(get_libdir)/libOpenCL.so* \
|
||||
"${ED}"${cl_dir}
|
||||
fi
|
||||
if [ -f "${ED}/usr/include/CL/opencl.h" ]; then
|
||||
mv -f "${ED}"/usr/include/CL \
|
||||
"${ED}"${cl_dir}/include
|
||||
fi
|
||||
eend $?
|
||||
fi
|
||||
|
||||
if use openmax; then
|
||||
echo "XDG_DATA_DIRS=\"${EPREFIX}/usr/share/mesa/xdg\"" > "${T}/99mesaxdgomx"
|
||||
doenvd "${T}"/99mesaxdgomx
|
||||
keepdir /usr/share/mesa/xdg
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
prune_libtool_files --all
|
||||
einstalldocs
|
||||
|
||||
if use !bindist; then
|
||||
dodoc docs/patents.txt
|
||||
fi
|
||||
|
||||
# Install config file for eselect mesa
|
||||
insinto /usr/share/mesa
|
||||
newins "${FILESDIR}/eselect-mesa.conf.9.2" eselect-mesa.conf
|
||||
|
||||
# Mesa should not install these
|
||||
if use vulkan; then
|
||||
rm "${ED}"/usr/include/vulkan/{vulkan.h,vk_platform.h} || die
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
if use llvm; then
|
||||
local llvm_tests='lp_test_arit lp_test_arit lp_test_blend lp_test_blend lp_test_conv lp_test_conv lp_test_format lp_test_format lp_test_printf lp_test_printf'
|
||||
pushd src/gallium/drivers/llvmpipe >/dev/null || die
|
||||
emake ${llvm_tests}
|
||||
pax-mark m ${llvm_tests}
|
||||
popd >/dev/null || die
|
||||
fi
|
||||
emake check
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
# Switch to the xorg implementation.
|
||||
echo
|
||||
eselect opengl set --use-old ${OPENGL_DIR}
|
||||
|
||||
# Select classic/gallium drivers
|
||||
if use classic || use gallium; then
|
||||
eselect mesa set --auto
|
||||
fi
|
||||
|
||||
# Switch to mesa opencl
|
||||
if use opencl; then
|
||||
eselect opencl set --use-old ${PN}
|
||||
fi
|
||||
|
||||
# run omxregister-bellagio to make the OpenMAX drivers known system-wide
|
||||
if use openmax; then
|
||||
ebegin "Registering OpenMAX drivers"
|
||||
BELLAGIO_SEARCH_PATH="${EPREFIX}/usr/$(get_libdir)/libomxil-bellagio0" \
|
||||
OMX_BELLAGIO_REGISTRY=${EPREFIX}/usr/share/mesa/xdg/.omxregister \
|
||||
omxregister-bellagio
|
||||
eend $?
|
||||
fi
|
||||
|
||||
# warn about patent encumbered texture-float
|
||||
if use !bindist; then
|
||||
elog "USE=\"bindist\" was not set. Potentially patent encumbered code was"
|
||||
elog "enabled. Please see patents.txt for an explanation."
|
||||
fi
|
||||
|
||||
if ! has_version media-libs/libtxc_dxtn; then
|
||||
elog "Note that in order to have full S3TC support, it is necessary to install"
|
||||
elog "media-libs/libtxc_dxtn as well. This may be necessary to get nice"
|
||||
elog "textures in some apps, and some others even require this to run."
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_prerm() {
|
||||
if use openmax; then
|
||||
rm "${EPREFIX}"/usr/share/mesa/xdg/.omxregister
|
||||
fi
|
||||
}
|
||||
|
||||
# $1 - VIDEO_CARDS flag
|
||||
# other args - names of DRI drivers to enable
|
||||
# TODO: avoid code duplication for a more elegant implementation
|
||||
driver_enable() {
|
||||
case $# in
|
||||
# for enabling unconditionally
|
||||
1)
|
||||
DRI_DRIVERS+=",$1"
|
||||
;;
|
||||
*)
|
||||
if use $1; then
|
||||
shift
|
||||
for i in $@; do
|
||||
DRI_DRIVERS+=",${i}"
|
||||
done
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
gallium_enable() {
|
||||
case $# in
|
||||
# for enabling unconditionally
|
||||
1)
|
||||
GALLIUM_DRIVERS+=",$1"
|
||||
;;
|
||||
*)
|
||||
if use $1; then
|
||||
shift
|
||||
for i in $@; do
|
||||
GALLIUM_DRIVERS+=",${i}"
|
||||
done
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
vulkan_enable() {
|
||||
case $# in
|
||||
# for enabling unconditionally
|
||||
1)
|
||||
VULKAN_DRIVERS+=",$1"
|
||||
;;
|
||||
*)
|
||||
if use $1; then
|
||||
shift
|
||||
for i in $@; do
|
||||
VULKAN_DRIVERS+=",${i}"
|
||||
done
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
@ -1 +1 @@
|
||||
Thu, 02 Mar 2017 18:08:54 +0000
|
||||
Fri, 03 Mar 2017 05:08:54 +0000
|
||||
|
@ -1 +1 @@
|
||||
Thu, 02 Mar 2017 18:08:54 +0000
|
||||
Fri, 03 Mar 2017 05:08:54 +0000
|
||||
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install postinst prepare setup test unpack
|
||||
DEPEND=sys-libs/readline:= virtual/awk app-arch/tar dev-lang/perl:= app-arch/dump net-misc/openssh >=dev-libs/glib-2.26.0 dev-perl/JSON dev-perl/Encode-Locale nls? ( virtual/libintl ) s3? ( >=net-misc/curl-7.10.0 ) !s3? ( curl? ( >=net-misc/curl-7.10.0 ) ) samba? ( net-fs/samba:= ) kerberos? ( app-crypt/mit-krb5 ) xfs? ( sys-fs/xfsdump ) !minimal? ( dev-perl/XML-Simple virtual/mailx app-arch/mt-st:= sys-block/mtx gnuplot? ( sci-visualization/gnuplot ) app-crypt/aespipe app-crypt/gnupg ) virtual/pkgconfig nls? ( sys-devel/gettext ) >=app-text/docbook-xsl-stylesheets-1.72.0 app-text/docbook-xml-dtd dev-libs/libxslt dev-lang/swig !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 dev-lang/perl:= virtual/pkgconfig
|
||||
DESCRIPTION=The Advanced Maryland Automatic Network Disk Archiver
|
||||
EAPI=6
|
||||
HOMEPAGE=http://www.amanda.org/
|
||||
IUSE=curl gnuplot ipv6 kerberos minimal nls readline s3 samba systemd xfs
|
||||
KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86
|
||||
LICENSE=HPND BSD BSD-2 GPL-2+ GPL-3+
|
||||
RDEPEND=sys-libs/readline:= virtual/awk app-arch/tar dev-lang/perl:= app-arch/dump net-misc/openssh >=dev-libs/glib-2.26.0 dev-perl/JSON dev-perl/Encode-Locale nls? ( virtual/libintl ) s3? ( >=net-misc/curl-7.10.0 ) !s3? ( curl? ( >=net-misc/curl-7.10.0 ) ) samba? ( net-fs/samba:= ) kerberos? ( app-crypt/mit-krb5 ) xfs? ( sys-fs/xfsdump ) !minimal? ( dev-perl/XML-Simple virtual/mailx app-arch/mt-st:= sys-block/mtx gnuplot? ( sci-visualization/gnuplot ) app-crypt/aespipe app-crypt/gnupg ) dev-lang/perl:=
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/amanda/amanda-3.4.3.tar.gz
|
||||
_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c perl-functions ca1237f4863eb3e83ab1462927f981c2 perl-module e64d78a54693f92bbe90a62f2efeb6cb systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 53b75b4a49cf3e61530a523804045432 user e4b567c44272a719fabf53f0f885d3f7
|
||||
_md5_=61dbea7a5523f47ecbdf8f56863cf921
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=compile install
|
||||
DEPEND=qt5? ( dev-qt/qtprintsupport:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 ) !qt5? ( dev-qt/qtwebkit:4 )
|
||||
DESCRIPTION=A cross-platform, aesthetic, distraction-free Markdown editor
|
||||
EAPI=5
|
||||
HOMEPAGE=http://wereturtle.github.io/ghostwriter/
|
||||
IUSE=qt5
|
||||
KEYWORDS=~x86 ~amd64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=qt5? ( dev-qt/qtprintsupport:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 ) !qt5? ( dev-qt/qtwebkit:4 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/wereturtle/ghostwriter/archive/v1.2.5.tar.gz -> ghostwriter-1.2.5.tar.gz
|
||||
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 qmake-utils ea78a9056543346cdc8cbbd07f16c6fb toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=0ae68541a9756ecb29700f60962e21ff
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
DESCRIPTION=Golden Disk Image builder.
|
||||
EAPI=6
|
||||
HOMEPAGE=http://docs.openstack.org/developer/diskimage-builder/
|
||||
IUSE=python_targets_python2_7
|
||||
KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/dib-utils[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyyaml-3.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/flake8-2.5.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/flake8-2.6.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-emulation/qemu sys-block/parted sys-fs/multipath-tools python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/d/diskimage-builder/diskimage-builder-1.28.0.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=270b52ee48b0834836b8a38e6e535d06
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=configure install prepare
|
||||
DEPEND=dev-libs/librevenge zlib? ( sys-libs/zlib ) doc? ( app-doc/doxygen )
|
||||
DESCRIPTION=Import filter for old StarOffice documents
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/fosnola/libstaroffice
|
||||
IUSE=debug doc tools +zlib
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=|| ( LGPL-2.1+ MPL-2.0 )
|
||||
RDEPEND=dev-libs/librevenge zlib? ( sys-libs/zlib )
|
||||
SLOT=0
|
||||
SRC_URI=http://dev-www.libreoffice.org/src/libstaroffice-0.0.2.tar.bz2
|
||||
_md5_=e894f98475921ed26cb8d7756d743ef1
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=configure install
|
||||
DEPEND=>=dev-db/sqlite-3.7.5:3[extensions(+)] geos? ( sci-libs/geos ) proj? ( sci-libs/proj )
|
||||
DESCRIPTION=A complete Spatial DBMS in a nutshell built upon sqlite
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.gaia-gis.it/gaia-sins/
|
||||
IUSE=+geos iconv +proj
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=MPL-1.1
|
||||
RDEPEND=>=dev-db/sqlite-3.7.5:3[extensions(+)] geos? ( sci-libs/geos ) proj? ( sci-libs/proj )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.gaia-gis.it/spatialite-2.4.0-4/libspatialite-2.4.0.tar.gz
|
||||
_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=878af56282eaf0b45d0504095798274e
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=configure install
|
||||
DEPEND=>=dev-db/sqlite-3.7.5:3[extensions(+)] geos? ( >=sci-libs/geos-3.3 ) proj? ( sci-libs/proj ) xls? ( dev-libs/freexl )
|
||||
DESCRIPTION=A complete Spatial DBMS in a nutshell built upon sqlite
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.gaia-gis.it/gaia-sins/
|
||||
IUSE=+geos iconv +proj +xls
|
||||
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
|
||||
LICENSE=MPL-1.1
|
||||
RDEPEND=>=dev-db/sqlite-3.7.5:3[extensions(+)] geos? ( >=sci-libs/geos-3.3 ) proj? ( sci-libs/proj ) xls? ( dev-libs/freexl )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-3.0.1.tar.gz
|
||||
_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=cdbc6c6da336c9a805c471b2b1f3a369
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=configure
|
||||
DEPEND=>=dev-db/spatialite-3.0.1[geos,xls] dev-libs/expat >=sci-libs/geos-3.3 sci-libs/proj sci-geosciences/readosm readline? ( sys-libs/ncurses sys-libs/readline )
|
||||
DESCRIPTION=A complete Spatial DBMS in a nutshell built upon sqlite
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.gaia-gis.it/spatialite
|
||||
IUSE=readline
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=MPL-1.1
|
||||
RDEPEND=>=dev-db/spatialite-3.0.1[geos,xls] dev-libs/expat >=sci-libs/geos-3.3 sci-libs/proj sci-geosciences/readosm readline? ( sys-libs/ncurses sys-libs/readline )
|
||||
SLOT=0
|
||||
SRC_URI=http://www.gaia-gis.it/gaia-sins/spatialite-tools-sources/spatialite-tools-3.1.0.tar.gz
|
||||
_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=7ea3ddc6b301deaef88bb5c9908a0fe9
|
@ -1,13 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=>=dev-libs/libgpg-error-1.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r19 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32] ) doc? ( virtual/texi2dvi ) !<sys-devel/gettext-0.18.1.1-r3 =sys-devel/automake-1.14* >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
|
||||
DEPEND=>=dev-libs/libgpg-error-1.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r19 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32] ) doc? ( virtual/texi2dvi ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
|
||||
DESCRIPTION=General purpose crypto library based on the code used in GnuPG
|
||||
EAPI=5
|
||||
EAPI=6
|
||||
HOMEPAGE=http://www.gnupg.org/
|
||||
IUSE=doc static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=LGPL-2.1 MIT
|
||||
RDEPEND=>=dev-libs/libgpg-error-1.12[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r19 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32] )
|
||||
SLOT=0/20
|
||||
SRC_URI=mirror://gnupg/libgcrypt/libgcrypt-1.7.5.tar.bz2
|
||||
_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 042d779bc872564b26c4e5cf018db8ed eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 libtool 48b1b9f6194d2842456514d1184ca72e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=a6d6259ae073962956c09a89c6d565e6
|
||||
SRC_URI=mirror://gnupg/libgcrypt/libgcrypt-1.7.6.tar.bz2
|
||||
_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 libtool 48b1b9f6194d2842456514d1184ca72e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=a2e8b42ebec68de9be5e97d2b5995159
|
@ -1,13 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20131008-r12 ) nls? ( sys-devel/gettext )
|
||||
DESCRIPTION=Contains error handling functions used by GnuPG software
|
||||
EAPI=5
|
||||
EAPI=6
|
||||
HOMEPAGE=http://www.gnupg.org/related_software/libgpg-error
|
||||
IUSE=common-lisp nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
|
||||
LICENSE=GPL-2 LGPL-2.1
|
||||
RDEPEND=nls? ( >=virtual/libintl-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20131008-r12 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnupg/libgpg-error/libgpg-error-1.25.tar.bz2
|
||||
SRC_URI=mirror://gnupg/libgpg-error/libgpg-error-1.27.tar.bz2
|
||||
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c libtool 48b1b9f6194d2842456514d1184ca72e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=b81c663c2cc34d5c028772355b973976
|
||||
_md5_=cbb0615f8cd5bf2d1d90d22126ab8040
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=configure install
|
||||
DEPEND=dev-db/sqlite:3 >=dev-libs/botan-1.10.1[threads]
|
||||
DESCRIPTION=A software PKCS#11 implementation
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.opendnssec.org/
|
||||
IUSE=debug
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-db/sqlite:3 >=dev-libs/botan-1.10.1[threads]
|
||||
SLOT=0
|
||||
SRC_URI=http://www.opendnssec.org/files/source/softhsm-1.3.6.tar.gz
|
||||
_md5_=2de238be52b948c15c096b06c873885a
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=configure install
|
||||
DEPEND=dev-db/sqlite:3 dev-libs/botan[threads]
|
||||
DESCRIPTION=A software PKCS#11 implementation
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.opendnssec.org/
|
||||
IUSE=debug
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-db/sqlite:3 dev-libs/botan[threads]
|
||||
SLOT=0
|
||||
SRC_URI=http://www.opendnssec.org/files/source/softhsm-1.3.7.tar.gz
|
||||
_md5_=d63c0a1b505b6e7d8b24c5636fd9bcda
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=configure install
|
||||
DEPEND=dev-db/sqlite:3 dev-libs/botan[threads,-bindist]
|
||||
DESCRIPTION=A software PKCS#11 implementation
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.opendnssec.org/
|
||||
IUSE=debug +migration-tool
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-db/sqlite:3 dev-libs/botan[threads,-bindist]
|
||||
SLOT=2
|
||||
SRC_URI=http://www.opendnssec.org/files/source/softhsm-2.0.0.tar.gz
|
||||
_md5_=61da13f2a4e2eea434b21326509af419
|
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=configure install
|
||||
DEPEND=dev-db/sqlite:3 dev-libs/botan[threads,-bindist] !=dev-libs/softhsm-2.0.0:0
|
||||
DESCRIPTION=A software PKCS#11 implementation
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.opendnssec.org/
|
||||
IUSE=debug +migration-tool
|
||||
KEYWORDS=~amd64 ~hppa ~x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-db/sqlite:3 dev-libs/botan[threads,-bindist] !=dev-libs/softhsm-2.0.0:0
|
||||
SLOT=2
|
||||
SRC_URI=http://www.opendnssec.org/files/source/softhsm-2.2.0.tar.gz
|
||||
_md5_=9929bf9d6c9451aae2fb5d8a9796d436
|
@ -0,0 +1,10 @@
|
||||
DEFINED_PHASES=install postinst prerm setup
|
||||
DESCRIPTION=PEAR Base System
|
||||
EAPI=6
|
||||
HOMEPAGE=http://pear.php.net/package/PEAR
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-lang/php:*[cli,xml,zlib] >=dev-php/PEAR-Archive_Tar-1.4.0 >=dev-php/PEAR-Console_Getopt-1.4.1 >=dev-php/PEAR-Structures_Graph-1.1.0 >=dev-php/PEAR-XML_Util-1.3.0
|
||||
SLOT=0
|
||||
SRC_URI=http://pear.php.net/get/PEAR-1.10.3.tgz
|
||||
_md5_=6fae8f082cfbd1e9a5d017559b9ae3fd
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/pbr-0.11.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( >=dev-python/coverage-3.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/fixtures-0.3.14[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/mock-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/subunit-0.0.18[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/testrepository-0.0.18[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/testscenarios-0.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/testtools-0.9.36[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] <dev-python/testtools-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) doc? ( >=dev-python/sphinx-1.2.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] <dev-python/sphinx-1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( dev-python/oslo-sphinx[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)]
|
||||
DESCRIPTION=A client for the OpenStack Nova API
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/openstack-dev/hacking
|
||||
IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6
|
||||
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=~dev-python/pep8-1.5.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-python/pyflakes-0.8.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-python/flake8-2.2.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ~dev-python/mccabe-0.2.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/six-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/h/hacking/hacking-0.10.3.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 eutils 3c847a0129fed780bd709b98e426f89c multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=b0812e982c079a24d7f56e3aeb5dd50e
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)]
|
||||
DESCRIPTION=A Python interface to libarchive
|
||||
EAPI=5
|
||||
HOMEPAGE=https://github.com/Changaco/python-libarchive-c/ https://pypi.python.org/pypi/libarchive-c/
|
||||
IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=CC0-1.0
|
||||
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/l/libarchive-c/libarchive-c-2.7.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 eutils 3c847a0129fed780bd709b98e426f89c multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=261fac40aa05e8bedb1756d3bb6644ef
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
DESCRIPTION=YAQL: Yet Another Query Language
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/openstack/yaql
|
||||
IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5
|
||||
KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-dateutil-2.4.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/ply[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/y/yaql/yaql-1.1.3.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=3a12122049c94f647b7111f8657a3093
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)]
|
||||
DESCRIPTION=Will try to get to the bottom of what makes files or directories different
|
||||
EAPI=5
|
||||
HOMEPAGE=https://diffoscope.org/ https://pypi.python.org/pypi/diffoscope/
|
||||
IUSE=python_targets_python3_4 python_targets_python3_5 python_targets_python3_6
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3+
|
||||
RDEPEND=dev-python/python-magic dev-python/libarchive-c python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/d/diffoscope/diffoscope-78.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 eutils 3c847a0129fed780bd709b98e426f89c multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=591fe0c6a939efb462d34507191746bb
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
||||
DEPEND=app-arch/unshield >=dev-games/mygui-3.2.2 >=dev-games/openscenegraph-3.3.4[ffmpeg,jpeg,png,qt5,sdl,svg,truetype,zlib] >=dev-libs/boost-1.56.0-r1 dev-libs/tinyxml dev-qt/qtcore:5 dev-qt/qtgui:5 media-libs/freetype:2 media-libs/libsdl2[joystick,opengl,X,video] || ( media-libs/libtxc_dxtn x11-drivers/ati-drivers x11-drivers/nvidia-drivers ) media-libs/openal >=sci-physics/bullet-2.80 virtual/ffmpeg virtual/opengl devtools? ( dev-qt/qtxmlpatterns:5 ) virtual/pkgconfig doc? ( app-doc/doxygen media-gfx/graphviz ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-3.6.3
|
||||
DESCRIPTION=An open source reimplementation of TES III: Morrowind
|
||||
EAPI=6
|
||||
HOMEPAGE=http://openmw.org/
|
||||
IUSE=doc devtools
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3 MIT BitstreamVera OFL-1.1
|
||||
RDEPEND=app-arch/unshield >=dev-games/mygui-3.2.2 >=dev-games/openscenegraph-3.3.4[ffmpeg,jpeg,png,qt5,sdl,svg,truetype,zlib] >=dev-libs/boost-1.56.0-r1 dev-libs/tinyxml dev-qt/qtcore:5 dev-qt/qtgui:5 media-libs/freetype:2 media-libs/libsdl2[joystick,opengl,X,video] || ( media-libs/libtxc_dxtn x11-drivers/ati-drivers x11-drivers/nvidia-drivers ) media-libs/openal >=sci-physics/bullet-2.80 virtual/ffmpeg virtual/opengl devtools? ( dev-qt/qtxmlpatterns:5 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/OpenMW/openmw/archive/openmw-0.39.0.tar.gz
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 gnome2-utils fe8e9099c6fc74a40946623c593c7236 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=8ce08789487dc9788f46b93978abd17a
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install prepare unpack
|
||||
DEPEND=dev-qt/qtgui:4 dev-qt/qtwebkit:4 dev-qt/qtcore:4 dev-qt/qtsvg:4 dev-qt/qtxmlpatterns:4
|
||||
DESCRIPTION=Convert html to pdf (and various image formats) using webkit
|
||||
EAPI=5
|
||||
HOMEPAGE=http://wkhtmltopdf.org/ https://github.com/wkhtmltopdf/wkhtmltopdf/
|
||||
IUSE=examples
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=dev-qt/qtgui:4 dev-qt/qtwebkit:4 dev-qt/qtcore:4 dev-qt/qtsvg:4 dev-qt/qtxmlpatterns:4
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/wkhtmltopdf/wkhtmltopdf/archive/0.12.1.2.tar.gz -> wkhtmltopdf-0.12.1.2.tar.gz
|
||||
_eclasses_=base df2aa567b3f0595aae0d0923889f7631 eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 qmake-utils ea78a9056543346cdc8cbbd07f16c6fb qt4-r2 b7985a3197fbc3a22d059f19904e735b toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=df3b2280f4197e052d808fdb791d29b1
|
@ -1,13 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install prepare unpack
|
||||
DEPEND=dev-qt/qtgui:4 dev-qt/qtwebkit:4 dev-qt/qtcore:4 dev-qt/qtsvg:4 dev-qt/qtxmlpatterns:4
|
||||
DESCRIPTION=Convert html to pdf (and various image formats) using webkit
|
||||
EAPI=5
|
||||
HOMEPAGE=http://wkhtmltopdf.org/ https://github.com/wkhtmltopdf/wkhtmltopdf/
|
||||
IUSE=examples
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=dev-qt/qtgui:4 dev-qt/qtwebkit:4 dev-qt/qtcore:4 dev-qt/qtsvg:4 dev-qt/qtxmlpatterns:4
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/wkhtmltopdf/wkhtmltopdf/archive/0.12.2.1.tar.gz -> wkhtmltopdf-0.12.2.1.tar.gz
|
||||
_eclasses_=base df2aa567b3f0595aae0d0923889f7631 eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 qmake-utils ea78a9056543346cdc8cbbd07f16c6fb qt4-r2 b7985a3197fbc3a22d059f19904e735b toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=678cd5a7762ff2e450fcbfc690aa1a1f
|
File diff suppressed because one or more lines are too long
@ -1,12 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install postinst prepare test
|
||||
DEPEND=dev-libs/libdnet net-libs/libnet:1.1 net-libs/libpcap sys-devel/make >=dev-util/cmake-3.6.3
|
||||
DESCRIPTION=ArpON (Arp handler inspectiON) is a portable Arp handler
|
||||
EAPI=4
|
||||
HOMEPAGE=http://arpon.sourceforge.net/
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=BSD
|
||||
RDEPEND=dev-libs/libdnet net-libs/libnet:1.1 net-libs/libpcap
|
||||
SLOT=0
|
||||
SRC_URI=mirror://sourceforge/arpon/ArpON-2.7.tar.gz
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c readme.gentoo 589f4c6d735919e293942dd66311dc40 toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=2cc287cc0be40747aa2219c9ef60d688
|
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup
|
||||
DEPEND=>=dev-libs/glib-2.32:2 >=net-misc/networkmanager-1.2.0:= >=net-misc/openvpn-2.1_rc9 gtk? ( >=app-crypt/libsecret-0.18 >=gnome-extra/nm-applet-1.2.0 >=x11-libs/gtk+-3.4:3 ) sys-devel/gettext >=dev-util/intltool-0.35 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
DESCRIPTION=NetworkManager OpenVPN plugin
|
||||
EAPI=6
|
||||
HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager
|
||||
IUSE=gtk test
|
||||
KEYWORDS=~amd64 ~arm ~x86
|
||||
LICENSE=GPL-2+
|
||||
RDEPEND=>=dev-libs/glib-2.32:2 >=net-misc/networkmanager-1.2.0:= >=net-misc/openvpn-2.1_rc9 gtk? ( >=app-crypt/libsecret-0.18 >=gnome-extra/nm-applet-1.2.0 >=x11-libs/gtk+-3.4:3 )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnome/sources/NetworkManager-openvpn/1.2/NetworkManager-openvpn-1.2.8.tar.xz
|
||||
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 d37ffcd1731600f2d196e77cd77ed727 gnome2-utils fe8e9099c6fc74a40946623c593c7236 libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432 user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=b81c3dc44f3e8853b85720464a36488e
|
@ -1,14 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/numpy[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/psutil[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyzmq[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] net-libs/libhackrf net-wireless/rtl-sdr python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/numpy[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/psutil[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyzmq[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] hackrf? ( net-libs/libhackrf ) rtlsdr? ( net-wireless/rtl-sdr ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
DESCRIPTION=Universal Radio Hacker: investigate wireless protocols like a boss
|
||||
EAPI=6
|
||||
HOMEPAGE=https://github.com/jopohl/urh
|
||||
IUSE=python_targets_python3_4 python_targets_python3_5
|
||||
IUSE=hackrf rtlsdr python_targets_python3_4 python_targets_python3_5
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/numpy[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/psutil[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyzmq[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] net-libs/libhackrf net-wireless/rtl-sdr dev-python/PyQt5[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] net-wireless/gr-osmosdr python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
RDEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/numpy[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/psutil[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyzmq[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] hackrf? ( net-libs/libhackrf ) rtlsdr? ( net-wireless/rtl-sdr ) dev-python/PyQt5[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] net-wireless/gr-osmosdr python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/jopohl/urh/archive/v1.5.2.tar.gz -> urh-1.5.2.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=32dbbba769ff67dc4f07a34d069418c7
|
||||
SRC_URI=https://github.com/jopohl/urh/archive/v1.5.5.tar.gz -> urh-1.5.5.tar.gz
|
||||
_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 eutils 3c847a0129fed780bd709b98e426f89c multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e0edbf5130eaefe107b8c8872bd818bc python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=7827383b0d3210d9d773d7cf075beeb6
|
@ -1,14 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install prepare unpack
|
||||
DEPEND=dev-libs/expat sci-libs/shapelib virtual/libusb:0 qt4? ( dev-qt/qtgui:4 dev-qt/qtwebkit:4 ) doc? ( dev-lang/perl dev-libs/libxslt app-text/docbook-xml-dtd:4.1.2 ) !<sys-devel/gettext-0.18.1.1-r3 || ( >=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4
|
||||
DESCRIPTION=GPS waypoints, tracks and routes converter
|
||||
EAPI=4
|
||||
HOMEPAGE=http://www.gpsbabel.org/
|
||||
IUSE=doc qt4
|
||||
KEYWORDS=amd64 ~ppc x86 ~x86-fbsd
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/expat sci-libs/shapelib virtual/libusb:0 qt4? ( dev-qt/qtgui:4 dev-qt/qtwebkit:4 )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gentoo/gpsbabel-1.4.3.tar.gz doc? ( http://www.gpsbabel.org/style3.css -> gpsbabel.org-style3.css )
|
||||
_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 base df2aa567b3f0595aae0d0923889f7631 eutils 3c847a0129fed780bd709b98e426f89c libtool 48b1b9f6194d2842456514d1184ca72e multilib 0236be304ee52e7f179ed2f337075515 qmake-utils ea78a9056543346cdc8cbbd07f16c6fb qt4-r2 b7985a3197fbc3a22d059f19904e735b toolchain-funcs 53b75b4a49cf3e61530a523804045432
|
||||
_md5_=bd46940e83d1dfa5e217f68a18c93a94
|
@ -1,12 +1,11 @@
|
||||
DEFINED_PHASES=configure postinst postrm preinst prepare unpack
|
||||
DEPEND=!qt5? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsingleapplication[qt4] dev-qt/qtsvg:4 dev-qt/qtwebkit:4 ) qt5? ( dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 ) dev-qt/qtsingleapplication[X,qt5?] >=sci-libs/gdal-1.6.0 >=sci-libs/proj-4.6 sys-libs/zlib exif? ( media-gfx/exiv2:= ) gps? ( >=sci-geosciences/gpsd-3.13[cxx] ) libproxy? ( net-libs/libproxy ) qrcode? ( media-gfx/zbar[qt4] ) qt5? ( dev-qt/linguist-tools:5 ) virtual/pkgconfig >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=A Qt based map editor for the openstreetmap.org project
|
||||
DEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsingleapplication[X,qt5] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 sci-libs/gdal sci-libs/proj sys-libs/zlib exif? ( media-gfx/exiv2:= ) gps? ( >=sci-geosciences/gpsd-3.13[cxx] ) libproxy? ( net-libs/libproxy ) webengine? ( dev-qt/qtwebengine:5 ) dev-qt/linguist-tools:5 virtual/pkgconfig >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=Qt based map editor for the openstreetmap.org project
|
||||
EAPI=6
|
||||
HOMEPAGE=http://www.merkaartor.be https://github.com/openstreetmap/merkaartor
|
||||
IUSE=debug exif gps libproxy qrcode qt5 linguas_ar linguas_cs linguas_de linguas_en linguas_es linguas_et linguas_fr linguas_hr linguas_hu linguas_id_ID linguas_it linguas_ja linguas_nl linguas_pl linguas_pt_BR linguas_pt linguas_ru linguas_sk linguas_sv linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW
|
||||
IUSE=debug exif gps libproxy webengine linguas_ar linguas_cs linguas_de linguas_en linguas_es linguas_et linguas_fr linguas_hr linguas_hu linguas_id_ID linguas_it linguas_ja linguas_nl linguas_pl linguas_pt_BR linguas_pt linguas_ru linguas_sk linguas_sv linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=!qt5? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsingleapplication[qt4] dev-qt/qtsvg:4 dev-qt/qtwebkit:4 ) qt5? ( dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 ) dev-qt/qtsingleapplication[X,qt5?] >=sci-libs/gdal-1.6.0 >=sci-libs/proj-4.6 sys-libs/zlib exif? ( media-gfx/exiv2:= ) gps? ( >=sci-geosciences/gpsd-3.13[cxx] ) libproxy? ( net-libs/libproxy ) qrcode? ( media-gfx/zbar[qt4] )
|
||||
REQUIRED_USE=qrcode? ( !qt5 )
|
||||
RDEPEND=dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtprintsupport:5 dev-qt/qtsingleapplication[X,qt5] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 sci-libs/gdal sci-libs/proj sys-libs/zlib exif? ( media-gfx/exiv2:= ) gps? ( >=sci-geosciences/gpsd-3.13[cxx] ) libproxy? ( net-libs/libproxy ) webengine? ( dev-qt/qtwebengine:5 )
|
||||
SLOT=0
|
||||
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c fdo-mime 21ef5adf81836863efa968f2a25cff64 git-r3 08c5be5f8bdc203ed54d5ff5fef3c34d gnome2-utils fe8e9099c6fc74a40946623c593c7236 l10n 8f52d9ce1814aca2ed1a46920084ea66 multilib 0236be304ee52e7f179ed2f337075515 qmake-utils ea78a9056543346cdc8cbbd07f16c6fb toolchain-funcs 53b75b4a49cf3e61530a523804045432 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=14f7a7970cc2f6020c6744bb1d127d46
|
||||
_md5_=0e29644dba082e767b97747b31ede44d
|
||||
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=app-arch/bzip2 dev-db/postgresql:= dev-libs/expat <sci-libs/geos-3.6.0 sci-libs/proj sys-libs/zlib lua? ( dev-lang/lua:= ) dev-libs/boost sys-devel/make >=dev-util/cmake-3.6.3
|
||||
DESCRIPTION=Converts OSM data to SQL and insert into PostgreSQL db
|
||||
EAPI=6
|
||||
HOMEPAGE=http://wiki.openstreetmap.org/wiki/Osm2pgsql https://github.com/openstreetmap/osm2pgsql
|
||||
IUSE=+lua
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-arch/bzip2 dev-db/postgresql:= dev-libs/expat <sci-libs/geos-3.6.0 sci-libs/proj sys-libs/zlib lua? ( dev-lang/lua:= ) dev-db/postgis
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/openstreetmap/osm2pgsql/archive/0.92.0.tar.gz -> osm2pgsql-0.92.0.tar.gz
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=92ef31116d3463fc75786c84ddc14835
|
@ -1,11 +1,12 @@
|
||||
DEFINED_PHASES=compile configure install prepare test unpack
|
||||
DEPEND=app-arch/bzip2 dev-db/postgresql:= dev-libs/expat dev-libs/boost <sci-libs/geos-3.6.0 sci-libs/proj sys-libs/zlib lua? ( dev-lang/lua:= ) sys-devel/make >=dev-util/cmake-3.6.3 dev-vcs/git
|
||||
DEPEND=dev-libs/boost sys-devel/make >=dev-util/cmake-3.6.3 >=dev-vcs/git-1.8.2.1
|
||||
DESCRIPTION=Converts OSM planet.osm data to a PostgreSQL/PostGIS database
|
||||
EAPI=5
|
||||
EAPI=6
|
||||
HOMEPAGE=http://wiki.openstreetmap.org/wiki/Osm2pgsql
|
||||
IUSE=+lua
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=app-arch/bzip2 dev-db/postgresql:= dev-libs/expat dev-libs/boost <sci-libs/geos-3.6.0 sci-libs/proj sys-libs/zlib lua? ( dev-lang/lua:= )
|
||||
RDEPEND=dev-db/postgis
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 git-2 195a672bfaf52d868442171c9469bbb6 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=abc34a7e4e7655a7908607aa70f47e6d
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 git-r3 08c5be5f8bdc203ed54d5ff5fef3c34d multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=8baa9c121f2c55a5da72fd569c61657c
|
||||
|
@ -1,14 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
|
||||
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-libs/expat dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 dev-qt/qtsql:4 dev-qt/qtwebkit:4 sci-geosciences/gpsbabel >=sci-libs/gdal-1.6.1[geos,python?] sci-libs/geos sci-libs/libspatialindex sci-libs/proj x11-libs/qwt:5[svg] !bundled-libs? ( <x11-libs/qwtpolar-1 ) gsl? ( sci-libs/gsl ) postgres? ( >=dev-db/postgresql-8.4:= ) python? ( dev-python/PyQt4[X,sql,svg,webkit,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/sip:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) spatialite? ( dev-db/sqlite:3 dev-db/spatialite ) sys-devel/bison sys-devel/flex >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-3.6.3
|
||||
DESCRIPTION=User friendly Geographic Information System
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.qgis.org/
|
||||
IUSE=bundled-libs examples gsl postgres python spatialite test python_targets_python2_7
|
||||
KEYWORDS=amd64 x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-libs/expat dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 dev-qt/qtsql:4 dev-qt/qtwebkit:4 sci-geosciences/gpsbabel >=sci-libs/gdal-1.6.1[geos,python?] sci-libs/geos sci-libs/libspatialindex sci-libs/proj x11-libs/qwt:5[svg] !bundled-libs? ( <x11-libs/qwtpolar-1 ) gsl? ( sci-libs/gsl ) postgres? ( >=dev-db/postgresql-8.4:= ) python? ( dev-python/PyQt4[X,sql,svg,webkit,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/sip:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) spatialite? ( dev-db/sqlite:3 dev-db/spatialite )
|
||||
REQUIRED_USE=python? ( python_targets_python2_7 )
|
||||
SLOT=0
|
||||
SRC_URI=http://qgis.org/downloads/qgis-1.8.0.tar.bz2 examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz )
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 gnome2-utils fe8e9099c6fc74a40946623c593c7236 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-single-r1 4346485bdd137b2d301e993dad734668 python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=cc0595a5339bbfbbe411eff1e4b706e4
|
@ -1,15 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test
|
||||
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-libs/expat sci-geosciences/gpsbabel >=sci-libs/gdal-1.6.1:=[geos,python?,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] sci-libs/geos gsl? ( sci-libs/gsl:= ) sci-libs/libspatialindex:= sci-libs/proj dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qtsvg:4 dev-qt/qtsql:4 dev-qt/qtwebkit:4 x11-libs/qscintilla:=[qt4(-)] || ( ( || ( <x11-libs/qwt-6.1.2:6[svg] >=x11-libs/qwt-6.1.2:6[svg,qt4] ) >=x11-libs/qwtpolar-1[qt4(+)] ) ( x11-libs/qwt:5[svg] <x11-libs/qwtpolar-1 ) ) grass? ( || ( >=sci-geosciences/grass-7.0.0:= ) ) mapserver? ( dev-libs/fcgi ) oracle? ( dev-db/oracle-instantclient:= ) postgres? ( dev-db/postgresql:= ) python? ( dev-python/PyQt4[X,sql,svg,webkit,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/sip[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/qscintilla-python[qt4(+),python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/markupsafe[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pygments[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pytz[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/six[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] postgres? ( dev-python/psycopg:2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) dev-db/sqlite:3 dev-db/spatialite app-crypt/qca:2[qt4,ssl] sys-devel/bison sys-devel/flex >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-3.6.3
|
||||
DESCRIPTION=User friendly Geographic Information System
|
||||
EAPI=6
|
||||
HOMEPAGE=http://www.qgis.org/
|
||||
IUSE=examples grass gsl mapserver oracle postgres python python_targets_python2_7
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2+ GPL-3+
|
||||
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-libs/expat sci-geosciences/gpsbabel >=sci-libs/gdal-1.6.1:=[geos,python?,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] sci-libs/geos gsl? ( sci-libs/gsl:= ) sci-libs/libspatialindex:= sci-libs/proj dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qtsvg:4 dev-qt/qtsql:4 dev-qt/qtwebkit:4 x11-libs/qscintilla:=[qt4(-)] || ( ( || ( <x11-libs/qwt-6.1.2:6[svg] >=x11-libs/qwt-6.1.2:6[svg,qt4] ) >=x11-libs/qwtpolar-1[qt4(+)] ) ( x11-libs/qwt:5[svg] <x11-libs/qwtpolar-1 ) ) grass? ( || ( >=sci-geosciences/grass-7.0.0:= ) ) mapserver? ( dev-libs/fcgi ) oracle? ( dev-db/oracle-instantclient:= ) postgres? ( dev-db/postgresql:= ) python? ( dev-python/PyQt4[X,sql,svg,webkit,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/sip[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/qscintilla-python[qt4(+),python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/markupsafe[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pygments[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pytz[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/six[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] postgres? ( dev-python/psycopg:2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) dev-db/sqlite:3 dev-db/spatialite app-crypt/qca:2[qt4,ssl]
|
||||
REQUIRED_USE=python? ( python_targets_python2_7 ) mapserver? ( python )
|
||||
RESTRICT=test
|
||||
SLOT=0
|
||||
SRC_URI=http://qgis.org/downloads/qgis-2.14.5.tar.bz2 examples? ( http://download.osgeo.org/qgis/data/qgis_sample_data.tar.gz )
|
||||
_eclasses_=cmake-utils dd1d263f83f0791bd433b134f40db39b eutils 3c847a0129fed780bd709b98e426f89c flag-o-matic 979af9133d4de419fa98992355b07ca4 gnome2-utils fe8e9099c6fc74a40946623c593c7236 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-single-r1 4346485bdd137b2d301e993dad734668 python-utils-r1 316c531873247e48befb99900e5aa2ed toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils 178a84136f416b8ea1a857717eacd21c
|
||||
_md5_=74e5ab19e38277eaa70f238fe28c4ddb
|
File diff suppressed because one or more lines are too long
@ -1,11 +0,0 @@
|
||||
DEFINED_PHASES=compile install prepare test
|
||||
DESCRIPTION=Library for manipulating ESRI Shapefiles
|
||||
EAPI=4
|
||||
HOMEPAGE=http://shapelib.maptools.org/
|
||||
IUSE=static-libs
|
||||
KEYWORDS=amd64 ~arm ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux
|
||||
LICENSE=GPL-2 LGPL-2
|
||||
SLOT=0
|
||||
SRC_URI=http://download.osgeo.org/shapelib/shapelib-1.3.0.tar.gz
|
||||
_eclasses_=eutils 3c847a0129fed780bd709b98e426f89c multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=f7731c82f41a61ab3bc8e9bb203a5679
|
@ -0,0 +1,12 @@
|
||||
DEFINED_PHASES=install prepare setup unpack
|
||||
DESCRIPTION=A fast and secure web browser
|
||||
EAPI=5
|
||||
HOMEPAGE=http://www.opera.com/
|
||||
IUSE=+l10n_af +l10n_az +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_es-419 +l10n_es +l10n_fil +l10n_fi +l10n_fr-CA +l10n_fr +l10n_fy +l10n_gd +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kk +l10n_ko +l10n_lt +l10n_lv +l10n_mk +l10n_ms +l10n_nb +l10n_nl +l10n_nn +l10n_pa +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sr +l10n_sr-ME +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_uz +l10n_vi +l10n_zh-CN +l10n_zh-TW +l10n_zu
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=OPERA-2014
|
||||
RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-misc/curl net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libnotify x11-libs/pango[X]
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( http://get.geo.opera.com/pub/opera-beta/44.0.2510.401/linux/opera-beta_44.0.2510.401_amd64.deb ) x86? ( http://get.geo.opera.com/pub/opera-beta/44.0.2510.401/linux/opera-beta_44.0.2510.401_i386.deb )
|
||||
_eclasses_=chromium-2 0668536c674abbd0cfa509b879fc1b74 eutils 3c847a0129fed780bd709b98e426f89c linux-info ca370deef9d44125d829f2eb6ebc83e0 multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432 unpacker 76ddf385f3c212c12857bb8ec2a8bd35 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=86d8890a39f2eee37a8113e720422b6c
|
@ -0,0 +1,14 @@
|
||||
DEFINED_PHASES=install prepare setup unpack
|
||||
DEPEND=virtual/libiconv
|
||||
DESCRIPTION=A new browser for our friends
|
||||
EAPI=5
|
||||
HOMEPAGE=http://vivaldi.com/
|
||||
IUSE=+l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW
|
||||
KEYWORDS=-* ~amd64 ~x86
|
||||
LICENSE=Vivaldi
|
||||
RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss >=dev-libs/openssl-1.0.1:0 gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-misc/curl net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X]
|
||||
RESTRICT=bindist mirror
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_1.8.770.9-1_amd64.deb -> vivaldi-1.8.770.9_p1-amd64.deb ) x86? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_1.8.770.9-1_i386.deb -> vivaldi-1.8.770.9_p1-i386.deb )
|
||||
_eclasses_=chromium-2 0668536c674abbd0cfa509b879fc1b74 eutils 3c847a0129fed780bd709b98e426f89c linux-info ca370deef9d44125d829f2eb6ebc83e0 multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 53b75b4a49cf3e61530a523804045432 unpacker 76ddf385f3c212c12857bb8ec2a8bd35 versionator c80ccf29e90adea7c5cae94b42eb76d0
|
||||
_md5_=268b6a50d816dd24780442454b1ce07e
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue