diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 02:05:57 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 02:20:04 +0100 |
commit | cfcf291b308910b65193adb6ad0f7027ae444b1a (patch) | |
tree | 9673ea729b3892fe9927fdbb463550b08eb925fd | |
parent | 1fb1ca20db29801322c38673b84cdbc38ce09647 (diff) | |
download | aports-cfcf291b308910b65193adb6ad0f7027ae444b1a.tar.bz2 aports-cfcf291b308910b65193adb6ad0f7027ae444b1a.tar.xz |
Remove unused files
-rwxr-xr-x | community/openvswitch/ifupdown.sh | 105 | ||||
-rw-r--r-- | community/slim/slim.install | 7 | ||||
-rw-r--r-- | community/v4l-utils/qv4l2.desktop | 12 | ||||
-rw-r--r-- | community/v4l-utils/qv4l2.svg | 31 | ||||
-rw-r--r-- | community/xfce4-screenshooter/xfce4-screenshooter.install | 13 | ||||
-rw-r--r-- | community/xfce4-wavelan-plugin/tooltip.diff | 19 |
6 files changed, 0 insertions, 187 deletions
diff --git a/community/openvswitch/ifupdown.sh b/community/openvswitch/ifupdown.sh deleted file mode 100755 index c6f43662fe..0000000000 --- a/community/openvswitch/ifupdown.sh +++ /dev/null @@ -1,105 +0,0 @@ -#! /bin/sh - -# Copyright (c) 2012, 2013 Nicira, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at: -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Have a look at /usr/share/doc/openvswitch-switch/README.Debian -# for more information about configuring the /etc/network/interfaces. - -if [ -z "${IF_OVS_TYPE}" ]; then - exit 0 -fi - -ovs_vsctl() { - ovs-vsctl --timeout=5 "$@" -} - -if (ovs_vsctl --version) > /dev/null 2>&1; then :; else - exit 0 -fi - -if ! /etc/init.d/ovs-vswitchd status &>/dev/null; then - /etc/init.d/ovs-modules start - /etc/init.d/ovsdb-server start - /etc/init.d/ovs-vswitchd start -fi - -if [ "${MODE}" = "start" ]; then - eval OVS_EXTRA=\"${IF_OVS_EXTRA}\" - - case "${IF_OVS_TYPE}" in - OVSBridge) - ovs_vsctl -- --may-exist add-br "${IFACE}" ${IF_OVS_OPTIONS}\ - ${OVS_EXTRA+-- $OVS_EXTRA} - - if [ ! -z "${IF_OVS_PORTS}" ]; then -# ifup --allow="${IFACE}" ${IF_OVS_PORTS} - ifup ${IF_OVS_PORTS} - fi - ;; - OVSPort) - ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ - "${IFACE}" ${IF_OVS_OPTIONS} \ - ${OVS_EXTRA+-- $OVS_EXTRA} - - ip link set dev "${IFACE}" up - ;; - OVSIntPort) - ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ - "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}"\ - type=internal ${OVS_EXTRA+-- $OVS_EXTRA} - - ip link set dev "${IFACE}" up - ;; - OVSBond) - ovs_vsctl -- --fake-iface add-bond "${IF_OVS_BRIDGE}"\ - "${IFACE}" ${IF_OVS_BONDS} ${IF_OVS_OPTIONS} \ - ${OVS_EXTRA+-- $OVS_EXTRA} - - ip link set dev "${IFACE}" up - for slave in ${IF_OVS_BONDS} - do - ip link set dev "${slave}" up - done - ;; - OVSTunnel) - ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ - "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}" \ - type=${IF_OVS_TUNNEL_TYPE} ${IF_OVS_TUNNEL_OPTIONS} \ - ${OVS_EXTRA+-- $OVS_EXTRA} - ;; - *) - exit 0 - ;; - esac -elif [ "${MODE}" = "stop" ]; then - case "${IF_OVS_TYPE}" in - OVSBridge) - if [ ! -z "${IF_OVS_PORTS}" ]; then -# ifdown --allow="${IFACE}" ${IF_OVS_PORTS} - ifdown ${IF_OVS_PORTS} - fi - - ovs_vsctl -- --if-exists del-br "${IFACE}" - ;; - OVSPort|OVSIntPort|OVSBond|OVSTunnel) - ovs_vsctl -- --if-exists del-port "${IF_OVS_BRIDGE}" "${IFACE}" - ;; - *) - exit 0 - ;; - esac -fi - -exit 0 diff --git a/community/slim/slim.install b/community/slim/slim.install deleted file mode 100644 index 45eb02fa13..0000000000 --- a/community/slim/slim.install +++ /dev/null @@ -1,7 +0,0 @@ -post_install() { - cat << _EOF - - Add slim to the DAEMONS array in /etc/rc.conf or update /etc/inittab. - -_EOF -} diff --git a/community/v4l-utils/qv4l2.desktop b/community/v4l-utils/qv4l2.desktop deleted file mode 100644 index 55e369c7c5..0000000000 --- a/community/v4l-utils/qv4l2.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=QT V4L2 test Utility -Name[pt]=Utilitário de teste V4L2 -Comment=Allow testing Video4Linux devices -Comment[pt]=Permite testar dispositivos Video4Linux -Exec=qv4l2 -Icon=qv4l2 -Terminal=false -Type=Application -Categories=Application;AudioVideo; - diff --git a/community/v4l-utils/qv4l2.svg b/community/v4l-utils/qv4l2.svg deleted file mode 100644 index 3d4f375cc2..0000000000 --- a/community/v4l-utils/qv4l2.svg +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" inkscape:version="0.47 r22583" version="1.1" id="svg2839" height="297mm" width="210mm" sodipodi:docname="Novo documento 3"> - <defs id="defs2841"> - <linearGradient id="linearGradient2963"> - <stop style="stop-color: rgb(255, 236, 187); stop-opacity: 1;" offset="0" id="stop2965"/> - <stop id="stop2971" offset="1" style="stop-color: rgb(0, 0, 0); stop-opacity: 0.498039;"/> - </linearGradient> - <inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective2847"/> - <inkscape:perspective id="perspective2935" inkscape:persp3d-origin="0.5 : 0.33333333 : 1" inkscape:vp_z="1 : 0.5 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 0.5 : 1" sodipodi:type="inkscape:persp3d"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient2963" id="linearGradient2969" x1="-719.14288" y1="494.69958" x2="-324.21902" y2="968.98529" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.0512, 0, 0, 1.05137, 651.058, -25.2444)"/> - <inkscape:perspective id="perspective2992" inkscape:persp3d-origin="0.5 : 0.33333333 : 1" inkscape:vp_z="1 : 0.5 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 0.5 : 1" sodipodi:type="inkscape:persp3d"/> - </defs> - <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.7" inkscape:cx="376.9721" inkscape:cy="468.42546" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1513" inkscape:window-height="1044" inkscape:window-x="1941" inkscape:window-y="0" inkscape:window-maximized="0"/> - <metadata id="metadata2844"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g inkscape:label="Camada 1" inkscape:groupmode="layer" id="layer1"> - <rect style="fill: rgb(173, 160, 127); fill-opacity: 1;" id="rect2959" width="498.57132" height="402.52496" x="101.42867" y="345.21906" ry="15.848869"/> - <rect style="fill: rgb(214, 207, 189); fill-opacity: 1; fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1.09651px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1;" id="rect2955" width="366.37466" height="268.80539" x="172.03215" y="409.8259" ry="24.860613"/> - <path style="fill: url("#linearGradient2969") rgb(0, 0, 0); fill-opacity: 1;" d="m 111.92284,745.80915 c -1.7443,-0.70488 -4.61634,-3.11878 -6.38231,-5.3642 l -3.21086,-4.08259 0,-189.14299 c 0,-136.34795 0.46823,-190.05871 1.67748,-192.42365 0.92263,-1.80438 3.11889,-4.44845 4.8806,-5.87571 3.00442,-2.43405 17.98923,-2.5971 241.57759,-2.62843 l 238.37448,-0.0334 4.90427,4.38251 4.90429,4.3825 0.39257,189.41161 c 0.43575,210.24489 1.09242,196.30432 -9.4544,200.71175 -4.34407,1.81535 -40.20923,2.12038 -239.80015,2.0394 -129.08065,-0.0523 -236.11926,-0.67193 -237.86356,-1.37681 z m 413.94314,-69.49552 c 4.39946,-2.22093 7.85143,-5.43895 10.06966,-9.38725 l 3.37535,-6.00784 -0.36571,-118.16973 c -0.36124,-116.72035 -0.4037,-118.22058 -3.46195,-122.31682 -4.69144,-6.28374 -10.15101,-9.79936 -17.39001,-11.19809 -8.54594,-1.65125 -316.90144,-1.65125 -325.4474,0 -7.68,1.48394 -13.16379,5.20817 -17.88452,12.146 l -3.40519,5.00442 0.40173,119.03503 c 0.39878,118.15286 0.42505,119.06645 3.54637,123.27494 1.72955,2.33195 5.7842,5.74954 9.01033,7.59462 l 5.8657,3.35471 164.49565,0.0248 164.49566,0.0246 6.69433,-3.3794 z" id="path2961"/> - <rect style="fill: rgb(25, 20, 8); fill-opacity: 1;" id="rect2980" width="63.072273" height="39.050926" x="499.38467" y="744.74005" ry="0"/> - <rect style="fill: rgb(25, 20, 8); fill-opacity: 1;" id="rect2980-1" width="63.072273" height="39.050926" x="130.56888" y="744.74005" ry="0"/> - </g> -</svg>
\ No newline at end of file diff --git a/community/xfce4-screenshooter/xfce4-screenshooter.install b/community/xfce4-screenshooter/xfce4-screenshooter.install deleted file mode 100644 index e4f8fd06c1..0000000000 --- a/community/xfce4-screenshooter/xfce4-screenshooter.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - -# vim:set ts=2 sw=2 et: diff --git a/community/xfce4-wavelan-plugin/tooltip.diff b/community/xfce4-wavelan-plugin/tooltip.diff deleted file mode 100644 index f180f5694a..0000000000 --- a/community/xfce4-wavelan-plugin/tooltip.diff +++ /dev/null @@ -1,19 +0,0 @@ -diff -Naur xfce4-wavelan-plugin-0.5.5.old/panel-plugin/wavelan.c xfce4-wavelan-plugin-0.5.5/panel-plugin/wavelan.c ---- xfce4-wavelan-plugin-0.5.5.old/panel-plugin/wavelan.c 2009-10-09 14:42:54.427988584 +0200 -+++ xfce4-wavelan-plugin-0.5.5/panel-plugin/wavelan.c 2009-10-09 14:45:24.351280223 +0200 -@@ -199,6 +199,14 @@ - if ((wavelan->device = wi_open(wavelan->interface)) != NULL) { - /* register the update timer */ - TRACE ("Opened device"); -+ /* reduce the default tooltip timeout to be smaller than the update interval otherwise -+ * we won't see tooltips on GTK 2.16 or newer */ -+ GtkSettings *settings; -+ settings = gtk_settings_get_default(); -+ if (g_object_class_find_property(G_OBJECT_GET_CLASS(settings), "gtk-tooltip-timeout")) -+ g_object_set(settings, "gtk-tooltip-timeout", -+ 250 - 10, NULL); -+ - wavelan->timer_id = g_timeout_add(250, wavelan_timer, wavelan); - } - } - |