diff options
author | Stefano Karapetsas <[email protected]> | 2012-02-29 01:03:41 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-02-29 01:03:41 +0100 |
commit | 6671aa0dcd07a2af3961936abe33f4f3cdd8305e (patch) | |
tree | d2be83fa4f4aebecbdb0d0a8a9c297717ea1605c /distro | |
parent | c5dfae990e8a774fa3b88454dd5a303cee902573 (diff) | |
download | mate-control-center-6671aa0dcd07a2af3961936abe33f4f3cdd8305e.tar.bz2 mate-control-center-6671aa0dcd07a2af3961936abe33f4f3cdd8305e.tar.xz |
prepare for 1.2 release
Diffstat (limited to 'distro')
-rwxr-xr-x | distro/ubuntu/build | 33 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 13 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 10 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 11 |
5 files changed, 0 insertions, 75 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index cf538273..00000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-control-center -pkgver=1.1.0 -pkgrel=1 -pkgdesc="The Control Center for MATE" -#depends="mate-window-manager, libxss, desktop-file-utils, mate-settings-daemon, libmatekbd, libcanberra, sound-theme-freedesktop, libunique, mate-menus, librsvg" -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var --disable-static \ - --disable-scrollkeeper --disable-update-mimedb || return 1 - # --enable-aboutme <- this requires libebook (from evolution) - make || return 1 - make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 - - install -m755 -d "${pkgdir}/usr/share/mateconf/schemas" - mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1 - rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas - - # --disable-update-mimedb? - rm -f "${pkgdir}/usr/share/applications/mimeinfo.cache" -} - -# esto incluye la parte que se repite en la mayoria de los builds -. /usr/share/mate-doc-utils/mate-debian.sh diff --git a/distro/ubuntu/postinst b/distro/ubuntu/postinst deleted file mode 100755 index 850107d9..00000000 --- a/distro/ubuntu/postinst +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -pkgname=mate-control-center - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --install ${pkgname} -fi - -update-desktop-database -q -gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor -update-mime-database /usr/share/mime - -exit 0 diff --git a/distro/ubuntu/postrm b/distro/ubuntu/postrm deleted file mode 100755 index c27940a4..00000000 --- a/distro/ubuntu/postrm +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -set -e - -pkgname=mate-control-center - -update-desktop-database -q -gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor -update-mime-database /usr/share/mime - -exit 0 diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst deleted file mode 100755 index 9d1435d8..00000000 --- a/distro/ubuntu/preinst +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -e - -pkgname=mate-control-center - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --uninstall ${pkgname} -fi - diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm deleted file mode 100755 index aeada993..00000000 --- a/distro/ubuntu/prerm +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -pkgname=mate-control-center - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --uninstall ${pkgname} -fi - -exit 0 |