Skip to content
Snippets Groups Projects
Commit bd0d59d5 authored by Thiago H. S. Picharski's avatar Thiago H. S. Picharski
Browse files

Merge remote branch 'ubiquity-desktop-icon/master'

parents baea1fde baefeb14
No related branches found
No related tags found
No related merge requests found
1.1.2
#!/bin/bash
# gerar.sh
# Copyright (c) 2006 by Bruno Ribas <ribas@ufpr.br>
DIRTMP=$(mktemp -d)
VERSAO=$(cat VERSAO)
#arrumar versao
#$1 tipo de incremento
MAJOR=$(echo $VERSAO| cut -d'.' -f1)
MINOR=$(echo $VERSAO| cut -d'.' -f2)
REVISION=$(echo $VERSAO| cut -d'.' -f3)
case $1 in
Minor)
((MINOR++))
REVISION=0
;;
Major)
((MAJOR++))
MINOR=0
REVISION=0
;;
help)
echo "Uso: $0 Major|Minor|Revision"
echo ' Major - Altera versao Major'
echo ' Minor - Altera versao Minor'
exit
;;
*)
((REVISION++))
;;
esac
VERSAO="${MAJOR}.${MINOR}.${REVISION}"
echo "$VERSAO" > VERSAO
#Compila a documentacao do pacote no diretorio doc/
#cd doc/
#hevea -text *.tex
#hevea -text *.tex
#cd ../
cp -r pacote $DIRTMP
#Copia a documentacao compilada para dentro do pacote.
#cp doc/*.txt $DIRTMP/pacote/usr/share/doc/prd-*
cd $DIRTMP
find . -name ".svn" -exec rm -rf {} \; &>/dev/null
sed -i -e "s/Version:/Version: $VERSAO/" pacote/DEBIAN/control
fakeroot dpkg -b pacote .
cd -
cp $DIRTMP/*deb .
rm -rf $DIRTMP
# vim:tabstop=4:shiftwidth=4:encoding=iso-8859-1
Package: ubiquity-desktop-icon
Version:
Architecture: all
Depends: ubiquity-frontend-kde-le, le-interface | le-light-interface
Priority: important
Section: x11
Maintainer: LE Maintainer <le-maintainer@c3sl.ufpr.br>
Description: Ubiquity Desktop Icon for KDE4
#!/bin/bash
# Copyright (C) 2004-2010 Centro de Computacao Cientifica e Software Livre
# Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
#
# This file is part of le-base
#
# le-base is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA.
# The KDE default configuration path
KDEDEFAULT="/usr/share/kubuntu-default-settings/kde4-profile/default"
# Configuration files
PDA=plasma-desktop-appletsrc
# List of files to divert
divertList="
$KDEDEFAULT/share/config/$PDA
"
# Divert files
for file in $divertList; do
if test -f $file; then
cp -f $file{,.before-ubiquity-desktop-icon}
fi
cp -f $file{.ubiquity,}
done
#!/bin/bash
# Copyright (C) 2004-2010 Centro de Computacao Cientifica e Software Livre
# Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
#
# This file is part of le-base
#
# le-base is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA.
# The KDE default configuration path
KDEDEFAULT="/usr/share/kubuntu-default-settings/kde4-profile/default"
# Configuration files
PDA=plasma-desktop-appletsrc
# List of files to divert
divertList="
$KDEDEFAULT/share/config/$PDA
"
# Divert files
if [[ "$1" != "upgrade" ]]; then
for file in $divertList; do
if test -e $file.before-ubiquity-desktop-icon; then
rm -f $file
mv -f $file{.before-ubiquity-desktop-icon,}
fi
done
fi
Adriano da Luz
Bruno Cesar Ribas
Carlos Carvalho
Cleide Luzia Bonfim Possamai
Danilo Kiyoshi Simizu Yorinori
Diego Giovane Pasqualin
Eduardo Todt
Erik Alexandre Pucci
Felipe Cys Laskoski
Guilherme Zasyeki Machado
Josiney de Souza
Juliana Bueno
Klismann Smoger Mottin
Laura Sanchez Garcia
Luis Carlos Erpen de Bona
Marcela Saragioto
Marcos Castilho
Pedro Eugenio Rocha
Renan Franca De Miranda
Ricardo Tavares De Oliveira
Rubens Massayuki Suguimoto
Thiago Henrique Dos Santos Picharski
Tiago Rodrigo Kepe
Victor Tarabola Cortiano
Vinicius Kwiecien Ruoso
[AppletGlobals][plasma_applet_launcher]
SwitchTabsOnHover=false
askBeforeRemoval=true
[Containments][1][Wallpaper][image]
wallpaper=/usr/share/wallpapers/LE
[Containments][2][Applets][5][Configuration]
iconUrls=file:///usr/share/applications/le/panel/dolphin.desktop,file:///usr/share/applications/le/panel/firefox.desktop,file:///usr/share/applications/le/panel/konsole.desktop
visibleIcons=3
iconSize=22
[Containments][2][Applets][9][Configuration]
iconUrls=file:///usr/share/applications/le/panel/Help.desktop
visibleIcons=1
iconSize=22
[Containments][1][Applets][13]
geometry=25,25,92,96
immutability=1
plugin=icon
zvalue=0
[Containments][1][Applets][13][Configuration]
Url=file:///usr/share/applications/kde4/ubiquity-kdeui.desktop
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment