Changeset 2622
- Timestamp:
- Oct 19, 2016, 8:53:58 AM (4 years ago)
- Location:
- lliurex-acpi/trunk/fuentes
- Files:
-
- 2 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-acpi/trunk/fuentes/debian/control
r2606 r2622 4 4 Maintainer: Equipo LliureX <lliurex@gva.es> 5 5 Uploaders: Angel Berlanas Vicente <angel.berlanas@gmail.com>,Raul Rodrigo Segura <raurodse.gva@gmail.com>, Alfons Lloret Sananton <alloret.gva@gmail.com>, Enrique Medina Gremaldos <lth.gva@gmail.com>, Hector Garcia Huerta <lliurex_devel1@edu.gva.es> 6 Build-Depends: debhelper (>= 8) 7 Standards-Version: 0. 0.16 Build-Depends: debhelper (>= 8), config-package-dev (>= 5.1) 7 Standards-Version: 0.1 8 8 9 9 Package: lliurex-acpi 10 10 Architecture: all 11 Depends: ${shlibs:Depends}, ${misc:Depends}, acpi11 Depends: acpid 12 12 Description: Lliurex acpi 13 13 Replace mate's power button screen with lliurex one and locks the related setting in dconf -
lliurex-acpi/trunk/fuentes/debian/debhelper-build-stamp
r2606 r2622 1 1 lliurex-acpi 2 lliurex-acpi -
lliurex-acpi/trunk/fuentes/debian/files
r2606 r2622 1 lliurex-acpi_0. 0.1_all.deb misc standard1 lliurex-acpi_0.1_all.deb misc standard -
lliurex-acpi/trunk/fuentes/debian/lliurex-acpi.postinst
r2606 r2622 1 1 #!/bin/sh 2 2 set -e 3 4 # Template for diversions 5 ORIG_FILE="/etc/acpi/powerbtn.sh" 6 OUR_FILE="/etc/acpi/powerbtn.sh.lliurex" 7 OUR_PACKAGE="lliurex-acpi" 8 9 case $1 in 10 configure) 11 if dpkg-divert --package ${OUR_PACKAGE} --add --rename --divert ${ORIG_FILE}.diverted ${ORIG_FILE} ; then 12 ln -fs ${OUR_FILE} ${ORIG_FILE} 13 else 14 echo "Unabe to divert file ${ORIG_FILE}" 15 fi 16 ;; 17 *) 18 echo "Nothing to do" 19 ;; 20 esac 21 3 22 dconf update 23 service acpid restart 24 #DEBHELPER# 4 25 exit 0 -
lliurex-acpi/trunk/fuentes/debian/lliurex-acpi.postrm
r2606 r2622 1 1 #!/bin/sh 2 version=2.0.26-1ubuntu2 2 3 set -e 3 if [ remove = "$1" -o abort-install = "$1" -o disappear = "$1" ]; then 4 dpkg-divert --package lliurex-acpi --remove --rename --divert /etc/acpi/powerbtn.sh.diverted /etc/acpi/powerbtn.sh 5 fi 4 #DEBHELPER# 5 rm -f /etc/dconf/db/lliurex.d/locks/00_button-power 6 rm -f /etc/dconf/db/lliurex.d/20_lliurex_power-button.settings 7 dconf update 8 exit 0 -
lliurex-acpi/trunk/fuentes/debian/lliurex-acpi.preinst
r2606 r2622 1 1 #!/bin/sh 2 2 set -e 3 dpkg-divert --package lliurex-acpi --add --rename --divert /etc/acpi/powerbtn.sh.diverted /etc/acpi/powerbtn.sh4 3 4 #DEBHELPER# 5 5 exit 0 -
lliurex-acpi/trunk/fuentes/debian/rules
r2606 r2622 12 12 %: 13 13 dh $@ 14
Note: See TracChangeset
for help on using the changeset viewer.