Removed obsolete packages.
This commit is contained in:
parent
e4fe18af9c
commit
5a0c3f2274
|
@ -1,4 +0,0 @@
|
||||||
DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad SHA512 b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
|
|
||||||
DIST mongo-tools-3.4.23.tar.gz 4712212 BLAKE2B fc84e25696f12cab66fcf9f4f192b3f0e8a827598b6de2b80606c4d00da8134e200cc883626cd74bddcc208efd4e5c7046c1b4c69be12e0dbbb2df801bdc7be1 SHA512 1cfba67daf82837df2a27f8961f78bdcfcd7be57af66b34c090cdd6f385a38272680e5c4d9513b139cb18307576ce23663ae19b283ed92edbf1c5327043585e8
|
|
||||||
EBUILD mongo-tools-3.4.16.ebuild 1191 BLAKE2B 0765a673d50d0d7c8a8dae14e28f5aa27f0bd5896273386700ea3a1e743514f248ed195208b0e4036ffddfe9955471cae138e03502d1e1a5405f5dba2f019663 SHA512 dcf2017a3bd22d0c45d99cf30810d4de6c577a9c9056df1bb2faf8c0466b1018444cb887b76f5711b30f845a9d46d4c03b8aac86be54aaf6d57c34b4715a613b
|
|
||||||
EBUILD mongo-tools-3.4.23.ebuild 1191 BLAKE2B 0765a673d50d0d7c8a8dae14e28f5aa27f0bd5896273386700ea3a1e743514f248ed195208b0e4036ffddfe9955471cae138e03502d1e1a5405f5dba2f019663 SHA512 dcf2017a3bd22d0c45d99cf30810d4de6c577a9c9056df1bb2faf8c0466b1018444cb887b76f5711b30f845a9d46d4c03b8aac86be54aaf6d57c34b4715a613b
|
|
|
@ -1,60 +0,0 @@
|
||||||
# Copyright 1999-2019 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=6
|
|
||||||
|
|
||||||
MY_PV=${PV/_rc/-rc}
|
|
||||||
MY_P=${PN}-r${MY_PV}
|
|
||||||
|
|
||||||
DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
|
|
||||||
HOMEPAGE="https://www.mongodb.com"
|
|
||||||
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mongo-tools-${MY_PV}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="Apache-2.0"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="amd64"
|
|
||||||
IUSE="sasl ssl"
|
|
||||||
|
|
||||||
RDEPEND="!<dev-db/mongodb-3.0.0"
|
|
||||||
DEPEND="${RDEPEND}
|
|
||||||
dev-lang/go:=
|
|
||||||
net-libs/libpcap
|
|
||||||
sasl? ( dev-libs/cyrus-sasl )
|
|
||||||
ssl? ( dev-libs/openssl:0= )"
|
|
||||||
|
|
||||||
S=${WORKDIR}/${MY_P}
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
# 1) ensure we use bash wrt #582906
|
|
||||||
# 2) do not substitute version because it uses git
|
|
||||||
sed -e 's@/bin/sh@/bin/bash@g' \
|
|
||||||
-e '/^sed/,+3d' \
|
|
||||||
-e '/^mv/d' \
|
|
||||||
-i build.sh || die
|
|
||||||
|
|
||||||
# build pie to avoid text relocations wrt #582854
|
|
||||||
# skip on ppc64 wrt #610984
|
|
||||||
if ! use ppc64; then
|
|
||||||
sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
local myconf=()
|
|
||||||
|
|
||||||
if use sasl; then
|
|
||||||
myconf+=(sasl)
|
|
||||||
fi
|
|
||||||
|
|
||||||
if use ssl; then
|
|
||||||
myconf+=(ssl)
|
|
||||||
fi
|
|
||||||
|
|
||||||
./build.sh "${myconf[@]}" || die "build failed"
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dobin bin/*
|
|
||||||
}
|
|
|
@ -1,60 +0,0 @@
|
||||||
# Copyright 1999-2019 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=6
|
|
||||||
|
|
||||||
MY_PV=${PV/_rc/-rc}
|
|
||||||
MY_P=${PN}-r${MY_PV}
|
|
||||||
|
|
||||||
DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
|
|
||||||
HOMEPAGE="https://www.mongodb.com"
|
|
||||||
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mongo-tools-${MY_PV}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="Apache-2.0"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="amd64"
|
|
||||||
IUSE="sasl ssl"
|
|
||||||
|
|
||||||
RDEPEND="!<dev-db/mongodb-3.0.0"
|
|
||||||
DEPEND="${RDEPEND}
|
|
||||||
dev-lang/go:=
|
|
||||||
net-libs/libpcap
|
|
||||||
sasl? ( dev-libs/cyrus-sasl )
|
|
||||||
ssl? ( dev-libs/openssl:0= )"
|
|
||||||
|
|
||||||
S=${WORKDIR}/${MY_P}
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
# 1) ensure we use bash wrt #582906
|
|
||||||
# 2) do not substitute version because it uses git
|
|
||||||
sed -e 's@/bin/sh@/bin/bash@g' \
|
|
||||||
-e '/^sed/,+3d' \
|
|
||||||
-e '/^mv/d' \
|
|
||||||
-i build.sh || die
|
|
||||||
|
|
||||||
# build pie to avoid text relocations wrt #582854
|
|
||||||
# skip on ppc64 wrt #610984
|
|
||||||
if ! use ppc64; then
|
|
||||||
sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
local myconf=()
|
|
||||||
|
|
||||||
if use sasl; then
|
|
||||||
myconf+=(sasl)
|
|
||||||
fi
|
|
||||||
|
|
||||||
if use ssl; then
|
|
||||||
myconf+=(ssl)
|
|
||||||
fi
|
|
||||||
|
|
||||||
./build.sh "${myconf[@]}" || die "build failed"
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dobin bin/*
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
AUX gentoo_config 356 BLAKE2B cb42140b008a937e130c57e98a27f035cded10a0ed32db5f67650d10888717b01e75fc7a4591d4cd6d6b43be747e8a6255b4e7553a6ace9fb6322f346cd7225d SHA512 b7779960461a2b8d674373c1430dc57bd9965e9847d850f7cec4f75c85491c1f3fb838d2abadc61fc3d35bff7d605714c3711b59693bc9f05fafbd7e4c08c0d4
|
|
||||||
DIST AdbeRdr9.5.5-1_i486linux_enu.tar.bz2 57127348 BLAKE2B ff4c1858b5d481ac61214e221dc05f4d9b94fee645e65002904b4266325bb765f324495e5abb8f6b19c314dba5ad5ee6a24730b804a6c55212f813fd9215571d SHA512 0d60f9c0248432445fb0e6ccbc6d7841ed3e63dad61765436c53098b15c2ede77f1dd6369b04004cec020c20df395f195c4aaf464a6e2761e57a9e9ea0cb5361
|
|
||||||
EBUILD acroread-9.5.5-r4.ebuild 6542 BLAKE2B b88c9c88c58dc87f18a149a1942aa0a2a177e5558858ba059cf0771959c454eb45cf5283103723f1d7bfdeef3d818c02a9a6a51192656e49bc728590fa0a6a1d SHA512 fb57856c97fe8445387dd921a5e8e38fdd7866602479e1abbf4625ed707fda4f4891702eb694f660773e47af0eed22ec70bab3aae1d7e789c7edd1685cc648bd
|
|
||||||
MISC metadata.xml 351 BLAKE2B 52161643e436acaec83113e66e05ed69e68c90571e04372a30db26c17c785417091a5dd0e6c0927948f824cffe44dc506a1c5f1bbe120b4fe84f6e8add0bfc69 SHA512 6f27a82dceaaf8c4c547af39c3c483fa8e0e37d08c330cd1a287471e035d26cfbd0013cc316394bf3426d3b97ae5b2acdeec3a3659b94efe2468e63d7e945366
|
|
|
@ -1,205 +0,0 @@
|
||||||
# Copyright 1999-2016 Gentoo Foundation
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
# $Id: 62eeff9dbdf82fe994309eff43475101a88cbd60 $
|
|
||||||
|
|
||||||
EAPI=5
|
|
||||||
|
|
||||||
inherit eutils gnome2-utils nsplugins
|
|
||||||
|
|
||||||
DESCRIPTION="Adobe's PDF reader"
|
|
||||||
SRC_URI="http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/${PV}/enu/AdbeRdr${PV}-1_i486linux_enu.tar.bz2"
|
|
||||||
HOMEPAGE="http://www.adobe.com/products/reader/"
|
|
||||||
|
|
||||||
LICENSE="Adobe"
|
|
||||||
KEYWORDS="-* amd64 x86 ~amd64-linux ~x86-linux"
|
|
||||||
SLOT="0"
|
|
||||||
IUSE="html ldap nsplugin"
|
|
||||||
# asian fonts from separate package:
|
|
||||||
IUSE+=" l10n_ja l10n_ko l10n_zh-CN l10n_zh-TW"
|
|
||||||
|
|
||||||
RESTRICT="strip mirror"
|
|
||||||
|
|
||||||
DEPEND=""
|
|
||||||
RDEPEND="
|
|
||||||
dev-libs/atk[abi_x86_32(-)]
|
|
||||||
dev-libs/glib:2[abi_x86_32(-)]
|
|
||||||
dev-libs/libxml2[abi_x86_32(-)]
|
|
||||||
dev-libs/openssl:0.9.8[abi_x86_32(-)]
|
|
||||||
media-libs/fontconfig[abi_x86_32(-)]
|
|
||||||
virtual/glu[abi_x86_32(-)]
|
|
||||||
<net-dns/libidn-1.35[abi_x86_32(-)]
|
|
||||||
sys-libs/zlib[abi_x86_32(-)]
|
|
||||||
x11-libs/gdk-pixbuf:2[abi_x86_32(-)]
|
|
||||||
>=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)]
|
|
||||||
x11-libs/libX11[abi_x86_32(-)]
|
|
||||||
x11-libs/libXext[abi_x86_32(-)]
|
|
||||||
x11-libs/pango[abi_x86_32(-)]
|
|
||||||
>=x11-libs/pangox-compat-0.0.2[abi_x86_32(-)]
|
|
||||||
nsplugin? ( x11-libs/libXt[abi_x86_32(-)] )
|
|
||||||
ldap? ( >=net-nds/openldap-2.4.38-r1[abi_x86_32(-)] )
|
|
||||||
x86? ( html? (
|
|
||||||
|| (
|
|
||||||
www-client/firefox-bin
|
|
||||||
www-client/firefox
|
|
||||||
www-client/seamonkey-bin
|
|
||||||
www-client/seamonkey
|
|
||||||
)
|
|
||||||
) )
|
|
||||||
l10n_ja? ( media-fonts/acroread-asianfonts[l10n_ja] )
|
|
||||||
l10n_ko? ( media-fonts/acroread-asianfonts[l10n_ko] )
|
|
||||||
l10n_zh-CN? ( media-fonts/acroread-asianfonts[l10n_zh-CN] )
|
|
||||||
l10n_zh-TW? ( media-fonts/acroread-asianfonts[l10n_zh-TW] )"
|
|
||||||
|
|
||||||
QA_EXECSTACK="
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/bin/acroread
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/lib/libauthplay.so.0.0.0
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/lib/libsccore.so
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/lib/libcrypto.so.0.9.8
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/plug_ins/PPKLite.api
|
|
||||||
"
|
|
||||||
QA_FLAGS_IGNORED="
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/plug_ins3d/.*.x3d
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/lib/lib.*
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/bin/SynchronizerApp-binary
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/bin/acroread
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/bin/xdg-user-dirs-update
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/SPPlugins/ADMPlugin.apl
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/plug_ins/AcroForm/PMP/.*.pmp
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/plug_ins/Multimedia/MPP/.*.mpp
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/plug_ins/.*.api
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/sidecars/.*.DEU
|
|
||||||
opt/Adobe/Reader9/Browser/intellinux/nppdf.so
|
|
||||||
opt/netscape/plugins/nppdf.so
|
|
||||||
"
|
|
||||||
QA_TEXTRELS="
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/lib/libextendscript.so
|
|
||||||
opt/Adobe/Reader9/Reader/intellinux/lib/libsccore.so
|
|
||||||
"
|
|
||||||
|
|
||||||
INSTALLDIR=/opt
|
|
||||||
|
|
||||||
S="${WORKDIR}/AdobeReader"
|
|
||||||
|
|
||||||
# remove bundled libs to force use of system version, bug 340527
|
|
||||||
REMOVELIBS="libcrypto libssl"
|
|
||||||
|
|
||||||
pkg_setup() {
|
|
||||||
# x86 binary package, ABI=x86
|
|
||||||
has_multilib_profile && ABI="x86"
|
|
||||||
}
|
|
||||||
|
|
||||||
src_unpack() {
|
|
||||||
unpack ${A}
|
|
||||||
cd "${S}"
|
|
||||||
# lowercase tar extension required for unpack, bug 476734
|
|
||||||
mv ./ILINXR.TAR ./ILINXR.tar || die
|
|
||||||
mv ./COMMON.TAR ./COMMON.tar || die
|
|
||||||
unpack ./ILINXR.tar ./COMMON.tar
|
|
||||||
}
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
# remove cruft
|
|
||||||
rm "${S}"/Adobe/Reader9/bin/UNINSTALL
|
|
||||||
rm "${S}"/Adobe/Reader9/Browser/install_browser_plugin
|
|
||||||
rm "${S}"/Adobe/Reader9/Resource/Support/vnd.*.desktop
|
|
||||||
|
|
||||||
# replace some configuration sections
|
|
||||||
for binfile in "${S}"/Adobe/Reader9/bin/* ; do
|
|
||||||
sed -i -e '/Font-config/,+9d' \
|
|
||||||
-e "/acrogre.conf/r ${FILESDIR}/gentoo_config" -e //N \
|
|
||||||
"${binfile}" || die "sed configuration settings failed."
|
|
||||||
done
|
|
||||||
|
|
||||||
# fix erroneous Exec entry in .desktop
|
|
||||||
sed -i \
|
|
||||||
-e 's/^Exec=acroread[[:space:]]*$/Exec=acroread %F/' \
|
|
||||||
-e 's/^Categories=Application;Office;Viewer;X-Red-Hat-Base;/Categories=Office;Viewer;/' \
|
|
||||||
-e 's/^Caption=/X-Caption=/' \
|
|
||||||
"${S}"/Adobe/Reader9/Resource/Support/AdobeReader.desktop \
|
|
||||||
||die "sed .desktop fix failed"
|
|
||||||
|
|
||||||
# fix braindead error in nppdf.so (bug 412051)
|
|
||||||
sed -i 's#C:\\nppdf32Log\\debuglog\.txt#/dev/null\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#g' \
|
|
||||||
Adobe/Reader9/Browser/intellinux/nppdf.so || die
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
local LAUNCHER="Adobe/Reader9/bin/acroread"
|
|
||||||
|
|
||||||
# Install desktop files
|
|
||||||
domenu Adobe/Reader9/Resource/Support/AdobeReader.desktop
|
|
||||||
|
|
||||||
# Install commonly used icon sizes
|
|
||||||
for res in 16x16 22x22 32x32 48x48 64x64 128x128 ; do
|
|
||||||
insinto /usr/share/icons/hicolor/${res}/apps
|
|
||||||
doins Adobe/Reader9/Resource/Icons/${res}/*
|
|
||||||
done
|
|
||||||
|
|
||||||
dodir /opt
|
|
||||||
chown -R --dereference -L root:0 Adobe
|
|
||||||
cp -dpR Adobe "${ED}"opt/ || die
|
|
||||||
|
|
||||||
# remove some bundled libs
|
|
||||||
for mylib in ${REMOVELIBS}; do
|
|
||||||
einfo Removing bundled ${mylib}
|
|
||||||
rm -v "${ED}"/opt/Adobe/Reader9/Reader/intellinux/lib/${mylib}*
|
|
||||||
done
|
|
||||||
|
|
||||||
doman Adobe/Reader9/Resource/Shell/acroread.1.gz
|
|
||||||
|
|
||||||
if use nsplugin; then
|
|
||||||
inst_plugin /opt/Adobe/Reader9/Browser/intellinux/nppdf.so
|
|
||||||
else
|
|
||||||
rm -v "${ED}"/opt/Adobe/Reader9/Browser/intellinux/nppdf.so
|
|
||||||
fi
|
|
||||||
|
|
||||||
dodir /opt/bin
|
|
||||||
dosym /opt/${LAUNCHER} /opt/bin/${LAUNCHER/*bin\/}
|
|
||||||
|
|
||||||
# NOTE -- this is likely old and broken and should be removed...
|
|
||||||
# We need to set a MOZILLA_COMP_PATH for seamonkey and firefox since
|
|
||||||
# they don't install a configuration file for libgtkembedmoz.so
|
|
||||||
# detection in /etc/gre.d/ like xulrunner did.
|
|
||||||
if use x86 && use html; then
|
|
||||||
for lib in /opt/{seamonkey,firefox} /usr/lib/{seamonkey,firefox,mozilla-firefox}; do
|
|
||||||
if [[ -f ${lib}/libgtkembedmoz.so ]] ; then
|
|
||||||
echo "MOZILLA_COMP_PATH=${lib}" >> "${ED}"${INSTALLDIR}/Adobe/Reader9/Reader/GlobalPrefs/mozilla_config
|
|
||||||
elog "Adobe Reader depends on libgtkembedmoz.so, which I've found on"
|
|
||||||
elog "your system in ${lib}, and configured in ${INSTALLDIR}/Adobe/Reader9/Reader/GlobalPrefs/mozilla_config."
|
|
||||||
break # don't search any more libraries
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
pkg_preinst() {
|
|
||||||
gnome2_icon_savelist
|
|
||||||
}
|
|
||||||
|
|
||||||
pkg_postinst () {
|
|
||||||
if use x86 && ! use html; then
|
|
||||||
echo
|
|
||||||
ewarn "If you want html support and/or view the Adobe Reader help you have"
|
|
||||||
ewarn "to re-emerge acroread with USE=\"html\"."
|
|
||||||
echo
|
|
||||||
fi
|
|
||||||
|
|
||||||
if use amd64; then
|
|
||||||
if use nsplugin && ! has_version www-plugins/nspluginwrapper; then
|
|
||||||
echo
|
|
||||||
elog "If you're running a 64bit browser you may also want to install"
|
|
||||||
elog "\"www-plugins/nspluginwrapper\" to be able to use the Adobe Reader"
|
|
||||||
elog "browser plugin."
|
|
||||||
fi
|
|
||||||
elog ""
|
|
||||||
elog "If you find that Adobe Reader doesn't match your desktop's theme, you"
|
|
||||||
elog "may want to re-emerge the relevant gtk theme package with"
|
|
||||||
elog "USE=\"abi_x86_32\" enabled."
|
|
||||||
fi
|
|
||||||
|
|
||||||
gnome2_icon_cache_update
|
|
||||||
}
|
|
||||||
|
|
||||||
pkg_postrm() {
|
|
||||||
gnome2_icon_cache_update
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
# Enable this if you want Adobe Reader to cache Font-config fonts
|
|
||||||
ACRO_ENABLE_FONT_CONFIG=1
|
|
||||||
export ACRO_ENABLE_FONT_CONFIG
|
|
||||||
|
|
||||||
# Enable this if you want to set the MOZILLA_COMP_PATH globally (for all the users)
|
|
||||||
if [ -f "$ACRO_INSTALL_DIR/GlobalPrefs/mozilla_config" ]; then
|
|
||||||
. "$ACRO_INSTALL_DIR/GlobalPrefs/mozilla_config"
|
|
||||||
export MOZILLA_COMP_PATH
|
|
||||||
fi
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
|
||||||
<pkgmetadata>
|
|
||||||
<maintainer type="project">
|
|
||||||
<email>printing@gentoo.org</email>
|
|
||||||
<name>Gentoo Printing Project</name>
|
|
||||||
</maintainer>
|
|
||||||
<use>
|
|
||||||
<flag name="html">HTML support and help reading capability (only for x86).</flag>
|
|
||||||
</use>
|
|
||||||
</pkgmetadata>
|
|
Loading…
Reference in a new issue