saving uncommitted changes in /etc prior to emerge run
This commit is contained in:
8
backup-paludis/bashrc
Normal file
8
backup-paludis/bashrc
Normal file
@@ -0,0 +1,8 @@
|
||||
# bashrc
|
||||
# This file created by portage2paludis.bash
|
||||
CHOST="x86_64-pc-linux-gnu"
|
||||
CFLAGS="-march=core-avx2 -O2 -pipe -Wall -g"
|
||||
CXXFLAGS="${CFLAGS}"
|
||||
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,--hash-style=gnu"
|
||||
MAKEOPTS="-j8"
|
||||
|
||||
52
backup-paludis/fetchers/docurl
Executable file
52
backup-paludis/fetchers/docurl
Executable file
@@ -0,0 +1,52 @@
|
||||
#!/usr/bin/env bash
|
||||
# vim: set sw=4 sts=4 et :
|
||||
|
||||
# Curl fetcher for paludis
|
||||
# Create a symbolic link to this file under SHAREDIR/paludis/fetchers/, where
|
||||
# SHAREDIR is probably /usr/share, with the name doftp, dohttp or dohttps
|
||||
# depending on the protocols you want to use it with.
|
||||
# Set EXTRA_CURL in paludis' bashrc for extra options for curl.
|
||||
|
||||
export PATH="$(${PALUDIS_EBUILD_DIR}/utils/canonicalise ${PALUDIS_EBUILD_DIR}/utils/ ):${PATH}"
|
||||
source ${PALUDIS_EBUILD_DIR}/echo_functions.bash
|
||||
|
||||
old_set=$-
|
||||
set -a
|
||||
for f in ${PALUDIS_BASHRC_FILES}; do
|
||||
[[ -f "${f}" ]] && source "${f}"
|
||||
done
|
||||
[[ "${old_set}" == *a* ]] || set +a
|
||||
|
||||
if [[ -n "${PALUDIS_USE_SAFE_RESUME}" ]] ; then
|
||||
|
||||
if [[ -f "${2}.-PARTIAL-" ]] ; then
|
||||
if [[ $(wrapped_getfsize "${2}".-PARTIAL- ) -ge 123456 ]] ; then
|
||||
einfo_unhooked "Attempting resume using ${2}.-PARTIAL-"
|
||||
else
|
||||
einfo_unhooked "Not attempting resume using ${2}.-PARTIAL- (too small)"
|
||||
echo rm -f "${2}".-PARTIAL-
|
||||
rm -f "${2}".-PARTIAL-
|
||||
fi
|
||||
fi
|
||||
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" ; then
|
||||
echo mv -f "${2}".-PARTIAL- "${2}"
|
||||
mv -f "${2}".-PARTIAL- "${2}"
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
else
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" ; then
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
52
backup-paludis/fetchers/doftp
Executable file
52
backup-paludis/fetchers/doftp
Executable file
@@ -0,0 +1,52 @@
|
||||
#!/usr/bin/env bash
|
||||
# vim: set sw=4 sts=4 et :
|
||||
|
||||
# Curl fetcher for paludis
|
||||
# Create a symbolic link to this file under SHAREDIR/paludis/fetchers/, where
|
||||
# SHAREDIR is probably /usr/share, with the name doftp, dohttp or dohttps
|
||||
# depending on the protocols you want to use it with.
|
||||
# Set EXTRA_CURL in paludis' bashrc for extra options for curl.
|
||||
|
||||
export PATH="$(${PALUDIS_EBUILD_DIR}/utils/canonicalise ${PALUDIS_EBUILD_DIR}/utils/ ):${PATH}"
|
||||
source ${PALUDIS_EBUILD_DIR}/echo_functions.bash
|
||||
|
||||
old_set=$-
|
||||
set -a
|
||||
for f in ${PALUDIS_BASHRC_FILES}; do
|
||||
[[ -f "${f}" ]] && source "${f}"
|
||||
done
|
||||
[[ "${old_set}" == *a* ]] || set +a
|
||||
|
||||
if [[ -n "${PALUDIS_USE_SAFE_RESUME}" ]] ; then
|
||||
|
||||
if [[ -f "${2}.-PARTIAL-" ]] ; then
|
||||
if [[ $(wrapped_getfsize "${2}".-PARTIAL- ) -ge 123456 ]] ; then
|
||||
einfo_unhooked "Attempting resume using ${2}.-PARTIAL-"
|
||||
else
|
||||
einfo_unhooked "Not attempting resume using ${2}.-PARTIAL- (too small)"
|
||||
echo rm -f "${2}".-PARTIAL-
|
||||
rm -f "${2}".-PARTIAL-
|
||||
fi
|
||||
fi
|
||||
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" ; then
|
||||
echo mv -f "${2}".-PARTIAL- "${2}"
|
||||
mv -f "${2}".-PARTIAL- "${2}"
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
else
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" ; then
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
52
backup-paludis/fetchers/dohttp
Executable file
52
backup-paludis/fetchers/dohttp
Executable file
@@ -0,0 +1,52 @@
|
||||
#!/usr/bin/env bash
|
||||
# vim: set sw=4 sts=4 et :
|
||||
|
||||
# Curl fetcher for paludis
|
||||
# Create a symbolic link to this file under SHAREDIR/paludis/fetchers/, where
|
||||
# SHAREDIR is probably /usr/share, with the name doftp, dohttp or dohttps
|
||||
# depending on the protocols you want to use it with.
|
||||
# Set EXTRA_CURL in paludis' bashrc for extra options for curl.
|
||||
|
||||
export PATH="$(${PALUDIS_EBUILD_DIR}/utils/canonicalise ${PALUDIS_EBUILD_DIR}/utils/ ):${PATH}"
|
||||
source ${PALUDIS_EBUILD_DIR}/echo_functions.bash
|
||||
|
||||
old_set=$-
|
||||
set -a
|
||||
for f in ${PALUDIS_BASHRC_FILES}; do
|
||||
[[ -f "${f}" ]] && source "${f}"
|
||||
done
|
||||
[[ "${old_set}" == *a* ]] || set +a
|
||||
|
||||
if [[ -n "${PALUDIS_USE_SAFE_RESUME}" ]] ; then
|
||||
|
||||
if [[ -f "${2}.-PARTIAL-" ]] ; then
|
||||
if [[ $(wrapped_getfsize "${2}".-PARTIAL- ) -ge 123456 ]] ; then
|
||||
einfo_unhooked "Attempting resume using ${2}.-PARTIAL-"
|
||||
else
|
||||
einfo_unhooked "Not attempting resume using ${2}.-PARTIAL- (too small)"
|
||||
echo rm -f "${2}".-PARTIAL-
|
||||
rm -f "${2}".-PARTIAL-
|
||||
fi
|
||||
fi
|
||||
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" ; then
|
||||
echo mv -f "${2}".-PARTIAL- "${2}"
|
||||
mv -f "${2}".-PARTIAL- "${2}"
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
else
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" ; then
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
52
backup-paludis/fetchers/dohttps
Executable file
52
backup-paludis/fetchers/dohttps
Executable file
@@ -0,0 +1,52 @@
|
||||
#!/usr/bin/env bash
|
||||
# vim: set sw=4 sts=4 et :
|
||||
|
||||
# Curl fetcher for paludis
|
||||
# Create a symbolic link to this file under SHAREDIR/paludis/fetchers/, where
|
||||
# SHAREDIR is probably /usr/share, with the name doftp, dohttp or dohttps
|
||||
# depending on the protocols you want to use it with.
|
||||
# Set EXTRA_CURL in paludis' bashrc for extra options for curl.
|
||||
|
||||
export PATH="$(${PALUDIS_EBUILD_DIR}/utils/canonicalise ${PALUDIS_EBUILD_DIR}/utils/ ):${PATH}"
|
||||
source ${PALUDIS_EBUILD_DIR}/echo_functions.bash
|
||||
|
||||
old_set=$-
|
||||
set -a
|
||||
for f in ${PALUDIS_BASHRC_FILES}; do
|
||||
[[ -f "${f}" ]] && source "${f}"
|
||||
done
|
||||
[[ "${old_set}" == *a* ]] || set +a
|
||||
|
||||
if [[ -n "${PALUDIS_USE_SAFE_RESUME}" ]] ; then
|
||||
|
||||
if [[ -f "${2}.-PARTIAL-" ]] ; then
|
||||
if [[ $(wrapped_getfsize "${2}".-PARTIAL- ) -ge 123456 ]] ; then
|
||||
einfo_unhooked "Attempting resume using ${2}.-PARTIAL-"
|
||||
else
|
||||
einfo_unhooked "Not attempting resume using ${2}.-PARTIAL- (too small)"
|
||||
echo rm -f "${2}".-PARTIAL-
|
||||
rm -f "${2}".-PARTIAL-
|
||||
fi
|
||||
fi
|
||||
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -C - -o "${2}".-PARTIAL- "${1}" ; then
|
||||
echo mv -f "${2}".-PARTIAL- "${2}"
|
||||
mv -f "${2}".-PARTIAL- "${2}"
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
else
|
||||
echo ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" 1>&2
|
||||
if ${CURL_WRAPPER} ${LOCAL_CURL:-curl} ${EXTRA_CURL} --connect-timeout 30 --retry 1 --fail -L -o "${2}" "${1}" ; then
|
||||
exit 0
|
||||
else
|
||||
rm -f "${2}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
3
backup-paludis/general.conf
Normal file
3
backup-paludis/general.conf
Normal file
@@ -0,0 +1,3 @@
|
||||
# general.conf
|
||||
# This file created by portage2paludis.bash
|
||||
world="/var/db/pkg/world"
|
||||
7
backup-paludis/hooks/ebuild_postinst_post/some.bash
Normal file
7
backup-paludis/hooks/ebuild_postinst_post/some.bash
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo -e '\033[1;32metckeeper postinst phase...\033[0m'
|
||||
etckeeper post-install
|
||||
if [[ $(ld --version) =~ "gold" ]] ; then
|
||||
echo -e "\033[1;31mld gold is in use!!\033[0m"
|
||||
fi
|
||||
8
backup-paludis/hooks/ebuild_postrm_post/some.bash
Normal file
8
backup-paludis/hooks/ebuild_postrm_post/some.bash
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo -e '\033[1;32metckeeper postinst phase...\033[0m'
|
||||
etckeeper post-install
|
||||
if [[ $(ld --version) =~ "gold" ]] ; then
|
||||
echo -e "\033[1;31mld gold is in use!!\033[0m"
|
||||
fi
|
||||
|
||||
4
backup-paludis/hooks/ebuild_preinst_post/some.bash
Normal file
4
backup-paludis/hooks/ebuild_preinst_post/some.bash
Normal file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo -e '\033[1;32metckeeper preinst phase...\033[0m'
|
||||
etckeeper pre-install
|
||||
4
backup-paludis/hooks/ebuild_prerm_post/some.bash
Normal file
4
backup-paludis/hooks/ebuild_prerm_post/some.bash
Normal file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo -e '\033[1;32metckeeper preinst phase...\033[0m'
|
||||
etckeeper pre-install
|
||||
4
backup-paludis/hooks/ebuild_pretend_pre/some.bash
Executable file
4
backup-paludis/hooks/ebuild_pretend_pre/some.bash
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
if [[ $(ld --version) =~ "gold" ]] ; then
|
||||
echo -e "\033[1;31mld gold is in use!!\033[0m"
|
||||
fi
|
||||
4
backup-paludis/hooks/ebuild_setup_pre/some.bash
Executable file
4
backup-paludis/hooks/ebuild_setup_pre/some.bash
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
if [[ $(ld --version) =~ "gold" ]] ; then
|
||||
echo -e "\033[1;31mld gold is in use!!\033[0m"
|
||||
fi
|
||||
10
backup-paludis/hooks/install_all_post/some.bash
Executable file
10
backup-paludis/hooks/install_all_post/some.bash
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo -e "\033[1;33mcompressing logs...\033[0m"
|
||||
find "$(portageq envvar PORT_LOGDIR)" -type f -name "*.log" -exec xz -z -9 '{}' \; && echo -e "\033[1;32mcompressing logs finished!\033[0m" || echo -e "\033[1;31mfailed!\033[0m"
|
||||
|
||||
|
||||
# updatedb
|
||||
/root/updatedb.sh
|
||||
echo -e "\033[1;33mstarting database-update...\033[0m"
|
||||
updatedb && echo -e "\033[1;32mupdating database finished!\033[0m" || echo -e "\033[1;31mfailed!\033[0m"
|
||||
1695
backup-paludis/keywords.conf
Normal file
1695
backup-paludis/keywords.conf
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,6 @@
|
||||
cross-i686-pc-linux-gnu/* -*
|
||||
cross-i686-pc-linux-gnu/binutils x86 ~x86
|
||||
cross-i686-pc-linux-gnu/gcc x86 ~x86
|
||||
cross-i686-pc-linux-gnu/linux-headers x86 ~x86
|
||||
cross-i686-pc-linux-gnu/glibc x86 ~x86
|
||||
cross-i686-pc-linux-gnu/gdb x86 ~x86
|
||||
36
backup-paludis/licenses.conf
Normal file
36
backup-paludis/licenses.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
# licenses.conf
|
||||
# This is a stub, it accepts all licenses.
|
||||
# This file created by portage2paludis.bash
|
||||
*/* * -@EULA
|
||||
|
||||
net-im/skype skype-eula skype-4.0.0.7-copyright
|
||||
sci-geosciences/googleearth googleearth
|
||||
games-fps/quake3-data Q3AEULA
|
||||
games-action/postalplus LOKI-EULA
|
||||
app-emulation/virtualbox-bin PUEL
|
||||
app-emulation/virtualbox-additions PUEL
|
||||
app-emulation/virtualbox-extpack-oracle PUEL
|
||||
dev-java/sun-jdk Oracle-BCLA-JavaSE
|
||||
dev-java/oracle-jdk-bin Oracle-BCLA-JavaSE
|
||||
www-plugins/adobe-flash AdobeFlash-11.x
|
||||
games-fps/urbanterror Q3AEULA Q3AEULA-20000111
|
||||
|
||||
games-strategy/defcon-demo Introversion
|
||||
games-strategy/smac LOKI-EULA
|
||||
>=app-emulation/emul-linux-x86-java-1.6.0.39 Oracle-BCLA-JavaSE
|
||||
net-misc/teamviewer TeamViewer
|
||||
|
||||
#required by dev-lang/ifc-13.1.2.146, required by dev-lang/ifc (argument)
|
||||
>=dev-libs/intel-common-13.1.2.146 Intel-SDP
|
||||
#required by dev-lang/ifc (argument)
|
||||
>=dev-lang/ifc-13.1.2.146 Intel-SDP
|
||||
|
||||
games-rpg/arx-fatalis-data ArxFatalis-EULA-JoWooD
|
||||
|
||||
games-action/swordandsworcery CAPYBARA-EULA
|
||||
|
||||
games-misc/little-inferno Gameplay-Group-EULA
|
||||
|
||||
app-misc/test Q3AEULA
|
||||
games-fps/enemy-territory RTCW-ETEULA
|
||||
dev-util/nvidia-cuda-toolkit NVIDIA-CUDA
|
||||
3
backup-paludis/mirrors.conf
Normal file
3
backup-paludis/mirrors.conf
Normal file
@@ -0,0 +1,3 @@
|
||||
# mirrors.conf
|
||||
# This file created by portage2paludis.bash
|
||||
* ftp://mirror.netcologne.de/gentoo//distfiles ftp://gentoo.imj.fr/pub/gentoo//distfiles ftp://de-mirror.org/gentoo//distfiles
|
||||
104
backup-paludis/package_mask.conf
Normal file
104
backup-paludis/package_mask.conf
Normal file
@@ -0,0 +1,104 @@
|
||||
# package_mask.conf
|
||||
# This file created by portage2paludis.bash
|
||||
# gtk3 version sucks
|
||||
>=app-text/evince-3
|
||||
|
||||
|
||||
# problems with libreoffice
|
||||
=media-libs/harfbuzz-0.9.23
|
||||
|
||||
|
||||
# multilib blockers
|
||||
#=app-emulation/emul-linux-x86-baselibs-20131008-r4
|
||||
#=app-emulation/emul-linux-x86-opengl-20131008
|
||||
#=app-emulation/emul-linux-x86-xlibs-20131008
|
||||
#=app-emulation/emul-linux-x86-gtklibs-20131008
|
||||
#=app-emulation/emul-linux-x86-medialibs-20131008-r1
|
||||
#=app-emulation/emul-linux-x86-soundlibs-20131008-r1
|
||||
#=app-emulation/emul-linux-x86-sdl-20131008
|
||||
#=app-emulation/emul-linux-x86-gstplugins-20131008
|
||||
|
||||
|
||||
dev-python/imaging
|
||||
|
||||
# sumwars
|
||||
#>=dev-games/cegui-0.8.0
|
||||
|
||||
#temporary
|
||||
=net-misc/dropbox-1.2.51-r2
|
||||
=dev-libs/glib-2.34.3
|
||||
|
||||
>=gnome-base/nautilus-3.0.0
|
||||
#>=gnome-base/gnome-common-3.0.0
|
||||
=sys-apps/portage-9999
|
||||
sys-kernel/gentoo-sources:3.2.12
|
||||
=games-strategy/opendungeons-9999-r1
|
||||
#=media-sound/gmusicbrowser-9999
|
||||
#>=app-emulation/wine-1.3.35
|
||||
|
||||
*/*::dev-zero
|
||||
*/*::d-overlay
|
||||
*/*::gentoo-zh
|
||||
*/*::maggu2810-overlay
|
||||
*/*::neurogeek
|
||||
*/*::hasufell
|
||||
*/*::science
|
||||
*/*::cj-overlay
|
||||
*/*::libressl
|
||||
sys-devel/gdb::toolchain
|
||||
games-rpg/penumbra-collection::sunrise
|
||||
>=games-strategy/0ad-10000::hasufell
|
||||
>=games-strategy/0ad-10000::hasufell-overlay
|
||||
games-strategy/0ad::mrueg
|
||||
|
||||
#games-rpg/sumwars::hasufell-overlay
|
||||
net-im/skypetab-ng::hasufell-overlay
|
||||
|
||||
#=x11-misc/wbar-2.3.1
|
||||
|
||||
games-strategy/freeorion::gentoo
|
||||
#dev-games/gigi::gentoo
|
||||
|
||||
|
||||
# specific version unmasked in p.unmask
|
||||
#dev-libs/boost
|
||||
|
||||
|
||||
# fails test
|
||||
=dev-vcs/git-1.8.0
|
||||
=dev-vcs/git-1.8.0-r1
|
||||
=dev-vcs/git-1.8.0-r2
|
||||
|
||||
sys-fs/udev
|
||||
#=media-video/gnome-mplayer-1.0.7
|
||||
#=www-plugins/gecko-mediaplayer-1.0.7
|
||||
|
||||
# unstable shit
|
||||
#x11-drivers/nvidia-drivers
|
||||
|
||||
# https://bugs.gentoo.org/show_bug.cgi?id=475482
|
||||
#=dev-lang/python-2.7.5
|
||||
|
||||
=app-admin/syslog-ng-3.4.2
|
||||
|
||||
|
||||
=x11-drivers/nvidia-drivers-334.21
|
||||
=x11-drivers/nvidia-drivers-334.21-r3
|
||||
|
||||
dev-python/pypy:1.9
|
||||
dev-python/pypy:2.0
|
||||
|
||||
#>=x11-drivers/nvidia-drivers-331.79
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# needs pulseaudio
|
||||
>net-im/skype-4.2.0.13
|
||||
|
||||
>=x11-drivers/nvidia-drivers-331.89
|
||||
114
backup-paludis/package_unmask.conf
Normal file
114
backup-paludis/package_unmask.conf
Normal file
@@ -0,0 +1,114 @@
|
||||
|
||||
|
||||
# package_unmask.conf
|
||||
# This file created by portage2paludis.bash
|
||||
=net-libs/webkit-gtk-2.2.2
|
||||
|
||||
sci-geosciences/osgearth
|
||||
|
||||
net-libs/libotr
|
||||
x11-plugins/pidgin-otr
|
||||
|
||||
sys-boot/grub:2
|
||||
sys-power/suspend
|
||||
=sys-fs/btrfs-progs-9999
|
||||
#sys-devel/gcc:4.8
|
||||
sys-devel/gcc:4.9
|
||||
|
||||
app-antivirus/avast4workstation::gentoo-zh
|
||||
app-misc/xmind-portable::gentoo-zh
|
||||
app-portage/autodep::neurogeek
|
||||
#games-fps/warsow::maggu2810-overlay
|
||||
#net-libs/raknet::maggu2810-overlay
|
||||
www-client/torbrowser
|
||||
|
||||
media-sound/esound
|
||||
|
||||
#=media-libs/mesa-8.0.3-r1
|
||||
#=app-admin/eselect-opengl-1.2.6
|
||||
#=x11-proto/glproto-1.4.15-r1
|
||||
|
||||
#=media-video/ffmpeg-0.11.1
|
||||
|
||||
=app-emulation/wine-1.3.34
|
||||
|
||||
# desura testing
|
||||
#=x11-libs/wxGTK-2.9.4.1
|
||||
=x11-libs/wxGTK-2.9.3.1
|
||||
|
||||
=dev-libs/boost-1.48.0-r2
|
||||
#=dev-libs/boost-1.49.0-r2
|
||||
=dev-libs/boost-1.52.0-r5
|
||||
|
||||
=media-video/libav-9_beta2
|
||||
|
||||
#media-video/ffmpeg
|
||||
|
||||
games-roguelike/noegnud-nethack
|
||||
games-roguelike/nethack
|
||||
|
||||
dev-lang/lua
|
||||
|
||||
x11-libs/gtk+
|
||||
|
||||
dev-lang/luajit
|
||||
|
||||
sci-visualization/paraview
|
||||
|
||||
|
||||
#media-libs/freetype:2
|
||||
|
||||
media-gfx/blender
|
||||
|
||||
dev-lang/python:3.3
|
||||
|
||||
net-analyzer/wireshark
|
||||
|
||||
=x11-drivers/nvidia-drivers-310.40
|
||||
|
||||
#media-video/libav
|
||||
|
||||
media-libs/libv4l
|
||||
media-libs/alsa-lib
|
||||
|
||||
games-rpg/flare::hasufell
|
||||
|
||||
sci-libs/fplll::science
|
||||
|
||||
sci-geosciences/googleearth
|
||||
|
||||
|
||||
virtual/perl-Devel-PPPort
|
||||
|
||||
|
||||
#>=media-libs/libsfml-2.0
|
||||
|
||||
#dev-games/ogre
|
||||
|
||||
|
||||
games-fps/doom3-eventhorizon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# multilib
|
||||
>=sys-libs/slang-2.2.4-r1
|
||||
>=media-libs/giflib-4.2.3-r1
|
||||
>=app-emulation/emul-linux-x86-baselibs-20140406-r2
|
||||
>=media-libs/aalib-1.4_rc5-r6
|
||||
>=media-libs/imlib-1.9.15-r4
|
||||
>=app-emulation/emul-linux-x86-gtklibs-20140406-r1
|
||||
=media-libs/imlib2-1.4.6-r2
|
||||
>=media-libs/imlib2-9999-r1
|
||||
>=media-libs/libcaca-0.99_beta18-r2
|
||||
>=media-libs/libsdl-1.2.15-r5
|
||||
>=media-libs/sdl-image-1.2.12-r1
|
||||
>=media-libs/smpeg-0.4.4-r10
|
||||
>=media-libs/sdl-net-1.2.8-r1
|
||||
>=media-libs/sdl-ttf-2.0.11-r1
|
||||
>=media-libs/freealut-1.1.0-r3
|
||||
>=media-libs/sdl-sound-1.0.3-r1
|
||||
>=media-libs/sdl-gfx-2.0.24-r1
|
||||
>=app-emulation/emul-linux-x86-sdl-20140406-r1
|
||||
1
backup-paludis/profile/eapi
Normal file
1
backup-paludis/profile/eapi
Normal file
@@ -0,0 +1 @@
|
||||
5
|
||||
8
backup-paludis/profile/use.stable.mask
Normal file
8
backup-paludis/profile/use.stable.mask
Normal file
@@ -0,0 +1,8 @@
|
||||
-python_targets_python3_4
|
||||
-python_single_target_python3_4
|
||||
-pypy
|
||||
-python_targets_pypy
|
||||
-system-wine
|
||||
-abi_x86_32
|
||||
-polarssl
|
||||
-luajit
|
||||
9
backup-paludis/repositories/arx-libertatis.conf
Normal file
9
backup-paludis/repositories/arx-libertatis.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /var/lib/layman/arx-libertatis
|
||||
sync =
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
9
backup-paludis/repositories/gentoo-haskell.conf
Normal file
9
backup-paludis/repositories/gentoo-haskell.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /var/lib/layman/gentoo-haskell
|
||||
sync = git+https://github.com/gentoo-haskell/gentoo-haskell.git
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass /var/lib/layman/gentoo-haskell/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
7
backup-paludis/repositories/gentoo.conf
Normal file
7
backup-paludis/repositories/gentoo.conf
Normal file
@@ -0,0 +1,7 @@
|
||||
location = /usr/portage
|
||||
sync =
|
||||
profiles = /usr/portage/profiles/default/linux/amd64/13.0 /etc/paludis/profile
|
||||
distdir = /var/cache/distfiles
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
9
backup-paludis/repositories/hasufell-overlay.conf
Normal file
9
backup-paludis/repositories/hasufell-overlay.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /usr/local/portage
|
||||
sync =
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass /usr/local/portage/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
9
backup-paludis/repositories/hasufell-science.conf
Normal file
9
backup-paludis/repositories/hasufell-science.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /usr/local/portage-science
|
||||
sync =
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass /usr/local/portage-science/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
9
backup-paludis/repositories/hasufell.conf
Normal file
9
backup-paludis/repositories/hasufell.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /var/lib/layman/hasufell
|
||||
sync = git+https://bitbucket.org/hasufell/hasufell-overlay.git
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
4
backup-paludis/repositories/installed.conf
Normal file
4
backup-paludis/repositories/installed.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
location = /var/db/pkg/
|
||||
format = vdb
|
||||
names_cache = /var/empty
|
||||
provides_cache = /var/empty
|
||||
5
backup-paludis/repositories/layman.conf
Normal file
5
backup-paludis/repositories/layman.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
format = unavailable
|
||||
name = layman
|
||||
location = /var/db/paludis/repositories/layman
|
||||
sync = tar+http://git.exherbo.org/layman_repositories.tar.bz2
|
||||
importance = -100
|
||||
4
backup-paludis/repositories/libressl.conf
Normal file
4
backup-paludis/repositories/libressl.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
format = e
|
||||
location = /var/lib/layman/libressl
|
||||
sync = git+file://git@github.com:gentoo/libressl.git git+https://github.com/gentoo/libressl.git
|
||||
names_cache = /var/empty
|
||||
9
backup-paludis/repositories/mrueg.conf
Normal file
9
backup-paludis/repositories/mrueg.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /var/lib/layman/mrueg
|
||||
sync =
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
3
backup-paludis/repositories/repository.conf
Normal file
3
backup-paludis/repositories/repository.conf
Normal file
@@ -0,0 +1,3 @@
|
||||
format = repository
|
||||
config_filename = /etc/paludis/repositories/%{repository_template_name}.conf
|
||||
config_template = /etc/paludis/repository.template
|
||||
9
backup-paludis/repositories/sunrise.conf
Normal file
9
backup-paludis/repositories/sunrise.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /var/lib/layman/sunrise
|
||||
sync =
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
9
backup-paludis/repositories/toolchain.conf
Normal file
9
backup-paludis/repositories/toolchain.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
location = /var/lib/layman/toolchain
|
||||
sync = svn://overlays.gentoo.org/proj/toolchain
|
||||
#profiles = /usr/portage/profiles/default/linux/amd64/13.0
|
||||
#eclassdirs = /usr/portage/eclass
|
||||
#distdir = /home/distfiles
|
||||
#master_repository = gentoo
|
||||
format = e
|
||||
names_cache = /var/empty
|
||||
write_cache = /var/cache/paludis/metadata
|
||||
4
backup-paludis/repositories/torbrowser.conf
Normal file
4
backup-paludis/repositories/torbrowser.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
format = e
|
||||
location = /var/lib/layman/torbrowser
|
||||
sync = git://github.com/MeisterP/torbrowser-overlay.git git+https://github.com/MeisterP/torbrowser-overlay.git git+file://git@github.com:MeisterP/torbrowser-overlay.git
|
||||
names_cache = /var/empty
|
||||
3
backup-paludis/repository.template
Normal file
3
backup-paludis/repository.template
Normal file
@@ -0,0 +1,3 @@
|
||||
format = %{repository_template_format}
|
||||
location = /var/db/paludis/repositories/%{repository_template_name}
|
||||
sync = %{repository_template_sync}
|
||||
63
backup-paludis/sets/development.conf
Normal file
63
backup-paludis/sets/development.conf
Normal file
@@ -0,0 +1,63 @@
|
||||
#app-editors/bluefish
|
||||
* app-editors/gvim
|
||||
* app-editors/vim
|
||||
* app-office/dia
|
||||
* app-text/xmlstarlet
|
||||
* app-vim/bnf-syntax
|
||||
* app-vim/brainfuck-syntax
|
||||
#app-vim/bufexplorer
|
||||
* app-vim/cfengine-syntax
|
||||
* app-vim/colorschemes
|
||||
* app-vim/cmdalias
|
||||
#app-vim/conque
|
||||
* app-vim/csound-syntax
|
||||
* app-vim/delimitMate
|
||||
* app-vim/dhcpd-syntax
|
||||
* app-vim/ebnf-syntax
|
||||
* app-vim/eselect-syntax
|
||||
* app-vim/exheres-syntax
|
||||
* app-vim/extra-syntax
|
||||
* app-vim/fluxbox-syntax
|
||||
* app-vim/fuzzyfinder
|
||||
* app-vim/genindent
|
||||
* app-vim/gitolite-syntax
|
||||
#app-vim/gitv
|
||||
#app-vim/gnupg
|
||||
* app-vim/help-extra-syntax
|
||||
* app-vim/nagios-syntax
|
||||
* app-vim/nerdcommenter
|
||||
* app-vim/nerdtree
|
||||
* app-vim/nginx-syntax
|
||||
* app-vim/ntp-syntax
|
||||
* app-vim/pathogen
|
||||
* app-vim/pgn-syntax
|
||||
* app-vim/selinux-syntax
|
||||
* app-vim/simple-bookmarks
|
||||
* app-vim/solarized
|
||||
* app-vim/taglist
|
||||
* app-vim/tt2-syntax
|
||||
* app-vim/udev-syntax
|
||||
#app-vim/vimcommander
|
||||
* app-vim/vim-spell-de
|
||||
* app-vim/vim-spell-en
|
||||
* app-vim/vimpython
|
||||
* app-vim/wikipedia-syntax
|
||||
* app-vim/xquery-syntax
|
||||
* app-vim/xsl-syntax
|
||||
* app-vim/youcompleteme
|
||||
* dev-embedded/gnome-avrdude
|
||||
#dev-lang/lazarus
|
||||
* dev-python/jedi
|
||||
#dev-util/a8
|
||||
#dev-util/bluej
|
||||
#dev-util/codeblocks
|
||||
* dev-util/cloc
|
||||
* dev-util/cunit
|
||||
* dev-util/ddd
|
||||
* dev-util/devhelp
|
||||
#dev-util/geany
|
||||
#dev-util/geany-plugins
|
||||
#dev-util/monodevelop
|
||||
* dev-util/nemiver
|
||||
#dev-util/ninja-ide
|
||||
* dev-util/splint
|
||||
131
backup-paludis/sets/games.conf
Normal file
131
backup-paludis/sets/games.conf
Normal file
@@ -0,0 +1,131 @@
|
||||
* app-emulation/wine
|
||||
* app-emulation/winetricks
|
||||
#dev-games/higan-ananke
|
||||
#games-action/awesomenauts
|
||||
#games-action/beathazardultra
|
||||
* games-action/brutal-legend
|
||||
#games-action/chromium-bsu
|
||||
* games-action/cs2d
|
||||
#games-action/hotline-miami
|
||||
#games-action/intrusion2
|
||||
* games-action/minetest
|
||||
#games-action/minetest_build
|
||||
* games-action/minetest_game
|
||||
#games-action/minetest_survival
|
||||
#games-action/openastromenace
|
||||
#games-action/openclonk
|
||||
* games-action/solar2
|
||||
* games-action/supertuxkart
|
||||
#games-action/super-hexagon
|
||||
#games-action/swordandsworcery
|
||||
* games-action/teeworlds
|
||||
#games-action/trine2
|
||||
* games-action/trosh
|
||||
#games-arcade/cervi
|
||||
* games-arcade/commandergenius
|
||||
#games-arcade/dynamitejack
|
||||
* games-arcade/mari0
|
||||
#games-arcade/notpacman
|
||||
#games-arcade/nottetris2
|
||||
* games-arcade/opensonic
|
||||
#games-arcade/retrobattle
|
||||
* games-arcade/supertux
|
||||
* games-board/awale
|
||||
* games-board/capicity
|
||||
#games-board/cockatrice
|
||||
* games-board/pioneers
|
||||
* games-board/pychess
|
||||
* games-board/pysolfc
|
||||
* games-board/xmahjongg
|
||||
* games-emulation/dosbox
|
||||
#games-emulation/epsxe
|
||||
* games-emulation/gambatte
|
||||
#games-emulation/higan
|
||||
* games-emulation/mupen64plus
|
||||
* games-emulation/vbam
|
||||
#games-emulation/zsnes
|
||||
* games-engines/gemrb
|
||||
* games-engines/love:0.8
|
||||
* games-engines/odamex
|
||||
* games-engines/openmw
|
||||
* games-engines/renpy
|
||||
* games-engines/renpy:6.14
|
||||
* games-engines/renpy:6.15
|
||||
* games-engines/renpy:6.16
|
||||
* games-engines/renpy:6.17
|
||||
* games-engines/residualvm
|
||||
* games-engines/scummvm
|
||||
#games-fps/doomsday
|
||||
* games-fps/eduke32
|
||||
* games-fps/freedoom
|
||||
* games-fps/quake3
|
||||
* games-fps/sauerbraten
|
||||
#games-fps/turtlearena
|
||||
* games-fps/unvanquished
|
||||
* games-fps/urbanterror
|
||||
* games-fps/warsow
|
||||
#games-kids/crayon-physics
|
||||
* games-misc/cowsay
|
||||
* games-misc/dont-starve
|
||||
* games-misc/fortune-mod
|
||||
* games-misc/fortune-mod-chucknorris
|
||||
* games-misc/fortune-mod-firefly
|
||||
* games-misc/fortune-mod-futurama
|
||||
* games-misc/fortune-mod-starwars
|
||||
* games-misc/fortune-mod-tao
|
||||
* games-misc/katawa-shoujo
|
||||
#games-misc/little-inferno
|
||||
* games-misc/lolcat
|
||||
#games-misc/papers-please
|
||||
#games-puzzle/bastet
|
||||
* games-puzzle/larry
|
||||
* games-puzzle/meandmyshadow
|
||||
#games-puzzle/nightsky
|
||||
#games-puzzle/picpuz
|
||||
* games-puzzle/splice
|
||||
* games-puzzle/tiny-and-big
|
||||
* games-roguelike/FTL
|
||||
* games-roguelike/stone-soup
|
||||
* games-roguelike/tome4
|
||||
* games-rpg/arx-fatalis-data
|
||||
* games-rpg/arx-libertatis
|
||||
* games-rpg/avadon
|
||||
#games-rpg/bastion
|
||||
#games-rpg/dear-esther
|
||||
#games-rpg/dungeon-defenders
|
||||
* games-rpg/flare
|
||||
* games-rpg/grimrock
|
||||
* games-rpg/kqlives
|
||||
* games-rpg/mana
|
||||
* games-rpg/manaplus
|
||||
* games-rpg/morrowind-data
|
||||
* games-rpg/penumbra-collection
|
||||
* games-rpg/sumwars
|
||||
* games-rpg/tmw
|
||||
* games-rpg/to-the-moon
|
||||
* games-rpg/valyriatear
|
||||
* games-rpg/zsdx
|
||||
* games-rpg/zsxd
|
||||
* games-strategy/0ad
|
||||
#games-strategy/defcon-demo
|
||||
* games-strategy/dunelegacy
|
||||
* games-strategy/freeciv
|
||||
#games-strategy/freecol
|
||||
* games-strategy/freeorion
|
||||
* games-strategy/freeserf
|
||||
#games-strategy/freesynd
|
||||
#games-strategy/hedgewars
|
||||
* games-strategy/ja2-stracciatella
|
||||
#games-strategy/opendungeons
|
||||
* games-strategy/openra
|
||||
* games-strategy/s25rttr
|
||||
#games-strategy/ufo-ai
|
||||
* games-strategy/uqm
|
||||
#games-strategy/wargus
|
||||
* games-strategy/wesnoth
|
||||
#games-strategy/widelands
|
||||
* games-strategy/zod-engine
|
||||
* games-util/desurium-meta
|
||||
* games-util/joystick
|
||||
* games-util/osavul
|
||||
#games-util/xgamer
|
||||
22
backup-paludis/sets/optional.conf
Normal file
22
backup-paludis/sets/optional.conf
Normal file
@@ -0,0 +1,22 @@
|
||||
* x11-themes/gtk-engines-xfce:3
|
||||
|
||||
# udevil
|
||||
* net-fs/davfs2
|
||||
|
||||
# for elogv xz file parsing
|
||||
* dev-python/pyliblzma
|
||||
|
||||
# for sftp access to tahoe-lafs node
|
||||
* dev-python/twisted-conch
|
||||
|
||||
# youtube-viewer
|
||||
* dev-perl/Text-CharWidth
|
||||
* dev-perl/LWP-Protocol-https
|
||||
* dev-perl/TermReadKey
|
||||
* dev-perl/Term-ReadLine-Gnu
|
||||
* dev-perl/Text-CharWidth
|
||||
* dev-perl/XML-Fast
|
||||
* net-misc/gcap
|
||||
* virtual/perl-File-Temp
|
||||
* virtual/perl-Scalar-List-Utils
|
||||
|
||||
10
backup-paludis/sets/steam.conf
Normal file
10
backup-paludis/sets/steam.conf
Normal file
@@ -0,0 +1,10 @@
|
||||
* >=app-emulation/emul-linux-x86-baselibs-20121028[development]
|
||||
* >=app-emulation/emul-linux-x86-gtklibs-20121028[development]
|
||||
* >=app-emulation/emul-linux-x86-opengl-20121028[development]
|
||||
* >=app-emulation/emul-linux-x86-sdl-20121028[development]
|
||||
* >=app-emulation/emul-linux-x86-soundlibs-20121028[development]
|
||||
* >=app-emulation/emul-linux-x86-xlibs-20121028[development]
|
||||
* >=sys-devel/gcc-4.6.0[multilib]
|
||||
* >=sys-libs/glibc-2.15[multilib]
|
||||
* virtual/opengl
|
||||
|
||||
6
backup-paludis/sets/test.conf
Normal file
6
backup-paludis/sets/test.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
#app-emulation/vboxgtk
|
||||
* dev-lua/luvit
|
||||
* media-gfx/pornview
|
||||
* www-misc/profile-sync-daemon
|
||||
#x11-misc/sunflower
|
||||
|
||||
25
backup-paludis/sets/xfce.conf
Normal file
25
backup-paludis/sets/xfce.conf
Normal file
@@ -0,0 +1,25 @@
|
||||
#x11-misc/dzen
|
||||
#x11-misc/obconf
|
||||
#x11-misc/obmenu-generator
|
||||
#x11-misc/obmenugen
|
||||
#x11-misc/obtheme
|
||||
#x11-misc/openbox-menu
|
||||
#x11-misc/openbox-themes
|
||||
#x11-wm/openbox
|
||||
* xfce-base/xfce4-meta
|
||||
#xfce-base/xfwm4
|
||||
#xfce-extra/xfce4-clipman-plugin
|
||||
#xfce-extra/xfce4-cpufreq-plugin
|
||||
#xfce-extra/xfce4-cpugraph-plugin
|
||||
#xfce-extra/xfce4-mailwatch-plugin
|
||||
* xfce-extra/xfce4-mixer
|
||||
#xfce-extra/xfce4-netload-plugin
|
||||
* xfce-extra/xfce4-notes-plugin
|
||||
#xfce-extra/xfce4-notifyd
|
||||
* xfce-extra/xfce4-power-manager
|
||||
* xfce-extra/xfce4-screenshooter
|
||||
#xfce-extra/xfce4-sensors-plugin
|
||||
#xfce-extra/xfce4-timer-plugin
|
||||
* xfce-extra/xfce4-taskmanager
|
||||
#xfce-extra/xfce4-whiskermenu-plugin
|
||||
#xfce-extra/xfce4-xkb-plugin
|
||||
14
backup-paludis/use.conf
Normal file
14
backup-paludis/use.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
# use.conf
|
||||
# This file created by portage2paludis.bash
|
||||
*/* -cups qt3support -qt4 -gnutls a52 aac acpi alsa apng bash-completion cairo cdr consolekit cscope css dbus dri dv dvd dvdr exif fat ffmpeg flac fontconfig gif gpm gstreamer hddtemp icq icu ipv6 jabber jpeg jpeg2k lame libnotify lm_sensors matroska mmx mp3 mp4 mpeg musepack nsplugin ntfs ogg opengl oscar pdf png policykit python raw sdl sound sse sse2 ssse3 svg tcpd tiff timidity truetype threads udev unicode usb v4l vcd vdpau vim-syntax vnc vorbis wavpack wayland win32codecs wmf x264 xv xvmc xvid X
|
||||
*/* ABI_X86: -* 64
|
||||
*/* INPUT_DEVICES: -* evdev keyboard mouse joystick
|
||||
*/* LIBREOFFICE_EXTENSIONS: -* pdfimport presenter-console presenter-minimizer
|
||||
*/* LINGUAS: -* en de
|
||||
*/* PYTHON_TARGETS: -* pypy python2_7 python3_2 python3_3 python3_4
|
||||
*/* PYTHON_SINGLE_TARGET: -* python2_7
|
||||
*/* QEMU_SOFTMMU_TARGETS: -* arm i386 ppc ppc64 x86_64
|
||||
*/* QEMU_USER_TARGETS: -* arm i386 ppc ppc64 x86_64
|
||||
*/* RUBY_TARGETS: -* ruby20
|
||||
*/* VIDEO_CARDS: -* nvidia nouveau
|
||||
*/* BUILD_OPTIONS: symbols=split
|
||||
4
backup-paludis/use.conf.d/cross-i686-pc-linux-gnu.conf
Normal file
4
backup-paludis/use.conf.d/cross-i686-pc-linux-gnu.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
cross-i686-pc-linux-gnu/binutils -selinux -multilib
|
||||
cross-i686-pc-linux-gnu/linux-headers -selinux -multilib
|
||||
cross-i686-pc-linux-gnu/glibc -selinux -multilib
|
||||
cross-i686-pc-linux-gnu/gcc -selinux -boundschecking -d -gtk -gcj -libffi -mudflap -objc -objc++ -objc-gc -multilib
|
||||
349
backup-paludis/use.conf.d/some.use.conf
Normal file
349
backup-paludis/use.conf.d/some.use.conf
Normal file
@@ -0,0 +1,349 @@
|
||||
gnome-extra/zenity -webkit
|
||||
|
||||
# required by sys-devel/prelink-20110511
|
||||
# required by app-emulation/wine-1.7.0[prelink]
|
||||
# required by @games
|
||||
# required by @selected
|
||||
# required by @world (argument)
|
||||
>=dev-libs/elfutils-0.156 static-libs
|
||||
|
||||
# required by gnome-base/gnome-keyring-3.8.2
|
||||
# required by gnome-base/libgnome-keyring-3.8.0
|
||||
# required by x11-plugins/pidgin-opensteamworks-1.3::hasufell-overlay
|
||||
# required by @selected
|
||||
# required by @world (argument)
|
||||
>=app-crypt/gcr-3.8.2 gtk
|
||||
|
||||
net-misc/spice-gtk gtk3
|
||||
|
||||
app-emulation/winetricks gtk
|
||||
|
||||
dev-java/icedtea -webstart -nsplugin
|
||||
|
||||
dev-db/firebird doc
|
||||
net-fs/cifs-utils ads
|
||||
net-fs/samba winbind
|
||||
|
||||
www-client/netsurf gtk
|
||||
# required by media-libs/libsvgtiny-0.1.0
|
||||
# required by www-client/netsurf-3.0-r1[svg,svgtiny]
|
||||
# required by netsurf (argument)
|
||||
net-libs/libdom xml
|
||||
|
||||
|
||||
dev-util/codeblocks contrib
|
||||
|
||||
# required by net-p2p/retroshare-0.5.4e::hasufell-overlay[cli]
|
||||
net-libs/libssh server
|
||||
|
||||
# required by virtual/python-imaging-2
|
||||
# required by games-board/pysolfc-2.0-r2
|
||||
dev-python/pillow tk
|
||||
|
||||
net-voip/linphone gtk
|
||||
|
||||
media-libs/mediastreamer video
|
||||
|
||||
dev-libs/openssl vanilla
|
||||
|
||||
dev-vcs/git-annex feed
|
||||
net-p2p/retroshare qt4 feedreader links-cloud voip
|
||||
dev-qt/qt-mobility multimedia
|
||||
|
||||
sci-libs/hdf5 -threads -mpi
|
||||
kde-base/marble -kde -python -handbook
|
||||
|
||||
sys-boot/grub:2 -libzfs device-mapper
|
||||
|
||||
dev-games/openscenegraph qt4 curl
|
||||
sci-geosciences/osgearth qt4
|
||||
|
||||
media-gfx/pngcrush -system-libs
|
||||
|
||||
games-strategy/wesnoth server
|
||||
|
||||
games-misc/fortune-mod offensive
|
||||
|
||||
games-strategy/openra tools
|
||||
|
||||
virtual/python-imaging tk
|
||||
|
||||
sys-apps/portage python3
|
||||
|
||||
dev-python/pypy sqlite
|
||||
mail-client/mutt gpg imap mbox pop smime smtp
|
||||
mail-filter/procmail mbox
|
||||
net-mail/fetchmail tk
|
||||
|
||||
games-emulation/higan profile_accuracy -profile_balanced
|
||||
|
||||
mail-client/claws-mail pdf perl pgp smime spamassassin spell webkit
|
||||
# required by mail-client/claws-mail-3.9.1-r1[notification,libindicate]
|
||||
# required by claws-mail (argument)
|
||||
>=dev-libs/libindicate-12.10.1 gtk
|
||||
|
||||
|
||||
sys-process/lsof rpc
|
||||
# required by media-sound/teamspeak-client-bin-3.0.10
|
||||
# required by media-sound/teamspeak-client-bin (argument)
|
||||
dev-qt/qtgui xinerama
|
||||
|
||||
games-util/desurium-meta -games-deps
|
||||
|
||||
# threads? ( !adns )
|
||||
net-misc/curl adns -threads
|
||||
|
||||
games-emulation/gambatte qt4 sdl
|
||||
|
||||
dev-cpp/glog gflags
|
||||
|
||||
games-action/trine2 system-libs bundled-libs
|
||||
#required by games-action/d2x-rebirth-0.57.3, required by d2x-rebirth (argument)
|
||||
dev-games/physfs hog
|
||||
|
||||
games-fps/eduke32 cdinstall gtk offensive textures sc55-musicpack
|
||||
games-fps/duke3d-data gog
|
||||
media-libs/alsa-lib alisp
|
||||
|
||||
# fixme
|
||||
games-emulation/vbam -ffmpeg
|
||||
|
||||
#temp
|
||||
net-firewall/pglinux cron logrotate networkmanager qt4
|
||||
games-engines/stratagus doc
|
||||
|
||||
games-strategy/ja2-stracciatella linguas_de -linguas_en cdinstall
|
||||
dev-python/imaging tk
|
||||
|
||||
dev-util/eclipse-sdk doc gnome
|
||||
|
||||
dev-games/gigi ogre ois sdl
|
||||
|
||||
# leak
|
||||
net-im/pidgin -dbus spell -gstreamer
|
||||
|
||||
# for awesomewm
|
||||
x11-libs/cairo xcb
|
||||
|
||||
=dev-games/cegui-0.7.6-r1 xml ogre
|
||||
|
||||
net-misc/pglinux qt4
|
||||
x11-libs/qt-assistant compat
|
||||
|
||||
sys-block/gparted gtk jfs
|
||||
# x11-misc/spacefm gtk3
|
||||
|
||||
app-admin/conky nvidia audacious curl rss
|
||||
app-arch/p7zip wxwidgets rar -pch
|
||||
# thunderbird/enigmail
|
||||
app-crypt/pinentry gtk
|
||||
app-editors/editra spell
|
||||
app-editors/gvim cscope gtk ruby perl
|
||||
app-editors/vim cscope ruby perl
|
||||
app-emulation/qemu gtk
|
||||
app-emulation/virtualbox python qt4 vnc
|
||||
# installs sys-power/acpi otherwise
|
||||
app-misc/bashstyle-ng -acpi
|
||||
app-office/abiword plugins
|
||||
app-office/libreoffice binfilter gtk mysql pdfimport -nsplugin -cups
|
||||
app-office/libreoffice-bin -cups java
|
||||
app-office/openoffice-bin java
|
||||
app-office/writerscafe gtk2
|
||||
app-text/evince djvu dvi
|
||||
app-text/texlive dvi2tty dvipdfm extra graphics png pstricks science truetype xml X
|
||||
app-text/poppler qt4
|
||||
#dev-db/mysql embedded ## für amarok
|
||||
# for games-arcade/smc
|
||||
dev-games/cegui ogre devil tinyxml gtk irrlicht lua zip
|
||||
## for mana world
|
||||
dev-games/guichan sdl
|
||||
dev-games/ode double-precision
|
||||
dev-games/ogre cg ois -boost freeimage opengl zip -threads tools doc gles2
|
||||
# sqlite for firefox7
|
||||
dev-lang/python sqlite tk
|
||||
# for lazarus
|
||||
dev-lang/fpc source
|
||||
# required_use of cxx
|
||||
dev-libs/beecrypt threads
|
||||
dev-libs/libdbusmenu gtk
|
||||
# for suspend/hibernate-script
|
||||
dev-libs/libgcrypt static-libs
|
||||
## for suspend/hibernate-script
|
||||
dev-libs/libgpg-error static-libs
|
||||
## for suspend/hibernate-script
|
||||
dev-libs/lzo static-libs
|
||||
dev-python/numpy lapack
|
||||
dev-python/PyQt4 declarative webkit
|
||||
dev-util/anjuta devhelp doc
|
||||
dev-util/geany-plugins debugger enchant gpg gtkspell lua nls soup webkit scope
|
||||
dev-util/netbeans debug doc
|
||||
dev-vcs/git gtk tk
|
||||
dev-vcs/mercurial tk gpg
|
||||
games-action/babylon-mediavps campaigns yal
|
||||
games-action/fs2_open babylon inferno speech
|
||||
games-board/awale tk
|
||||
games-board/cockatrice server
|
||||
games-board/pysolfc extra-cardsets
|
||||
app-emulation/emul-linux-x86-baselibs development
|
||||
app-emulation/emul-linux-x86-gtklibs development
|
||||
app-emulation/emul-linux-x86-opengl development
|
||||
app-emulation/emul-linux-x86-sdl development
|
||||
app-emulation/emul-linux-x86-soundlibs development -pulseaudio
|
||||
app-emulation/emul-linux-x86-xlibs development
|
||||
games-emulation/vbam gtk link
|
||||
games-emulation/visualboyadvance gtk
|
||||
# crash with opengl
|
||||
games-emulation/zsnes -opengl
|
||||
games-engines/openmw ffmpeg devtools -mpg123
|
||||
games-engines/stratagus theora
|
||||
games-fps/urbanterror server
|
||||
games-fps/warsow openal irc server
|
||||
games-roguelike/stone-soup lua tiles
|
||||
games-rpg/arx-libertatis c++0x tools
|
||||
games-rpg/arx-fatalis-data cdinstall
|
||||
games-strategy/0ad editor
|
||||
games-strategy/freeorion cg
|
||||
games-strategy/s25rttr debug glfw
|
||||
games-strategy/uqm remix music voice
|
||||
# for thunarr
|
||||
gnome-base/gvfs gdu cdda fuse http udisks
|
||||
mail-client/thunderbird -custom-cflags -custom-optimization -crypt system-icu system-cairo system-jpeg
|
||||
media-gfx/blender game-engine boost bullet player openal verse
|
||||
media-gfx/blender PYTHON_SINGLE_TARGET: python3_3
|
||||
media-gfx/gthumb -cdr slideshow
|
||||
media-gfx/imagemagick corefonts truetype
|
||||
media-gfx/nvidia-texture-tools cg glew glut openexr
|
||||
media-libs/devil nvtt mng glut
|
||||
media-libs/freetype kpathsea
|
||||
media-libs/libexif ABI_X86: 64 32
|
||||
media-libs/mesa gles1 gles2 -llvm g3dvl gbm
|
||||
# for frozenbubble
|
||||
media-libs/sdl-mixer mikmod mod timidity midi mp3 smpeg
|
||||
media-libs/sdl2-mixer mikmod mod timidity midi mp3 smpeg
|
||||
media-sound/audacity id3tag -ffmpeg
|
||||
media-sound/gmusicbrowser doc
|
||||
media-sound/idjc mp3-streaming mp3-tagging speex
|
||||
media-sound/mumble speech
|
||||
|
||||
## ffmpeg and mplayer shit
|
||||
media-video/ffmpeg avx theora vaapi mmxext -bindist
|
||||
virtual/ffmpeg theora vaapi
|
||||
media-video/mplayer mmxext
|
||||
media-video/mplayer2 mmxext
|
||||
|
||||
media-video/gnome-mplayer libnotify
|
||||
media-video/mediainfo wxwidgets
|
||||
media-video/vlc X a52 alsa dts dvd flac fbcon ffmpeg lua matroska mp3 mpeg musepack ncurses ogg opengl png sdl skins speex sse svg theora truetype vorbis win32codecs wxwindows xinerama xv x264
|
||||
net-analyzer/nmap gtk
|
||||
net-analyzer/wireshark gtk
|
||||
net-im/skype qt-static
|
||||
net-irc/hexchat libcanberra libnotify perl plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo theme-manager spell
|
||||
net-irc/hexchat PYTHON_SINGLE_TARGET: python3_3
|
||||
net-irc/xchat libnotify otr osd perl
|
||||
net-irc/xchat-xsys audacious
|
||||
net-misc/dropbox librsync-bundled
|
||||
net-misc/rsync xattr
|
||||
net-misc/youtube-viewer gtk
|
||||
net-irc/irssi perl ssl
|
||||
net-p2p/transmission gtk
|
||||
sci-astronomy/celestia gtk
|
||||
sci-geosciences/googleearth qt-bundled -mdns-bundled
|
||||
sci-misc/boinc cuda
|
||||
# for wxmaxima
|
||||
sci-visualization/gnuplot wxwidgets
|
||||
sys-apps/man-pages -linguas_de
|
||||
sys-apps/pkgcore doc
|
||||
sys-apps/smartmontools minimal
|
||||
sys-devel/distcc gtk
|
||||
sys-devel/gcc:4.5 gcj
|
||||
sys-devel/llvm gold clang multitarget
|
||||
sys-devel/llvm PYTHON_TARGETS: pypy
|
||||
#sys-fs/ntfs3g-acl
|
||||
sys-fs/ntfs3g ntfsprogs
|
||||
sys-fs/eudev gudev hwdb kmod keymap
|
||||
# gudev for thunar
|
||||
sys-fs/udev extras gudev hwdb
|
||||
virtual/udev gudev hwdb
|
||||
sys-libs/zlib minizip
|
||||
www-client/midori -unique
|
||||
www-client/opera gtk
|
||||
www-client/firefox libnotify -custom-cflags -custom-optimization system-icu system-cairo system-jpeg
|
||||
www-client/w3m gtk imlib fbcon nntp
|
||||
www-plugins/adobe-flash 32bit
|
||||
#www-plugins/lightspark
|
||||
xfce-base/xfdesktop thunar
|
||||
# for FF
|
||||
x11-base/xorg-server xvfb
|
||||
x11-misc/redshift gtk
|
||||
x11-misc/wbar gtk
|
||||
x11-drivers/nvidia-drivers gtk acpi
|
||||
#icon support
|
||||
x11-wm/openbox imlib xdg
|
||||
|
||||
#### for splashutils
|
||||
#media-libs/lcms static-libs
|
||||
#media-libs/freetype static-libs
|
||||
#app-arch/bzip2 static-libs
|
||||
#media-libs/libpng static-libs
|
||||
#media-libs/jpeg static-libs
|
||||
#virtual/jpeg static-libs
|
||||
#media-libs/libmng static-libs
|
||||
#sys-apps/fbset static
|
||||
sys-apps/busybox static -pam
|
||||
|
||||
# netbeans
|
||||
dev-java/swing-layout source
|
||||
|
||||
#required by dev-java/commons-beanutils-1.8.0[test], required by dev-java/commons-digester-1.8.1-r1, required by dev-java/netbeans-enterprise-7.1.2, required by dev-java/netbeans-mobility-7.1.2, required by dev-java/netbeans-javadoc-7.1.2, required by dev-util/netbeans-7.1.2[doc], required by dev-util/netbeans (argument)
|
||||
>=dev-java/commons-collections-3.2.1 test-framework
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#media-libs/libsdl custom-cflags
|
||||
|
||||
media-libs/libsdl2 xscreensaver xinerama gles
|
||||
|
||||
|
||||
# required by sys-fs/lvm2-2.02.103[static,udev]
|
||||
>=virtual/udev-208 static-libs
|
||||
# required by virtual/udev-208[kmod]
|
||||
# required by sys-fs/lvm2-2.02.103[udev]
|
||||
>=sys-fs/eudev-1.3 static-libs
|
||||
|
||||
media-gfx/nvidia-cg-toolkit -multilib
|
||||
|
||||
sys-libs/glibc nscd
|
||||
sys-apps/paludis xml search-index pbins
|
||||
app-arch/libarchive xattr
|
||||
sys-fs/lvm2 static
|
||||
x11-misc/dzen xft xpm
|
||||
www-plugins/gnash gtk -nsplugin curl vaapi egl
|
||||
www-plugins/lightspark curl
|
||||
net-misc/tor tor-hardening
|
||||
x11-terms/rxvt-unicode xft 256-color fading-colors blink
|
||||
www-client/torbrowser system-icu system-cairo system-jpeg
|
||||
app-text/ghostscript-gpl gtk
|
||||
games-util/desurium -bundled-wxgtk
|
||||
sys-devel/gcc objc objc-gc
|
||||
dev-lang/luajit lua52compat
|
||||
net-libs/polarssl havege
|
||||
dev-libs/libtommath doc
|
||||
games-board/xboard -default-font
|
||||
dev-embedded/arduino doc examples
|
||||
sys-power/suspend -crypt
|
||||
sys-devel/clang multitarget
|
||||
x11-libs/libxcb xkb
|
||||
sci-mathematics/flint doc
|
||||
virtual/pypy tk
|
||||
dev-python/pypy-bin tk
|
||||
dev-util/nemiver memoryview
|
||||
=virtual/libudev-208 static-libs
|
||||
=virtual/libgudev-208 static-libs
|
||||
app-emulation/wine mono -gstreamer -xml -dbus
|
||||
app-emulation/wine ABI_X86: 64 32
|
||||
games-action/hotline-miami bundled-libs
|
||||
|
||||
|
||||
dev-vcs/subversion java
|
||||
Reference in New Issue
Block a user