summaryrefslogtreecommitdiff
path: root/distro
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2012-07-05 14:29:27 -0400
committerSteve Zesch <[email protected]>2012-07-05 14:29:27 -0400
commit90229ab4ea11be5c7c8220f89455b702700ffa7a (patch)
tree61eac409878a28f904dc292523e66e303299aa85 /distro
parent306d7aca16e3ec6498414be1d289bb9e708a6259 (diff)
downloadmate-notification-daemon-90229ab4ea11be5c7c8220f89455b702700ffa7a.tar.bz2
mate-notification-daemon-90229ab4ea11be5c7c8220f89455b702700ffa7a.tar.xz
Preparing for 1.4 release.mate-notification-daemon-1.4.0
Diffstat (limited to 'distro')
-rwxr-xr-xdistro/ubuntu/build35
-rwxr-xr-xdistro/ubuntu/postinst11
-rwxr-xr-xdistro/ubuntu/postrm8
-rwxr-xr-xdistro/ubuntu/preinst8
-rwxr-xr-xdistro/ubuntu/prerm11
5 files changed, 0 insertions, 73 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build
deleted file mode 100755
index e875e2c..0000000
--- a/distro/ubuntu/build
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-# fill it
-pkgname=mate-notification-daemon
-pkgver=2011.12.01
-pkgrel=1
-pkgdesc="Notification daemon for MATE"
-#depends="libmatenotify"
-# editar esta funcion!
-build() {
- cd $pkgsrc
- # descomprimir
- tar xvzf download
- # entramos a la carpeta
- cd ${pkgname}
-
- automake
- autoreconf -i --force
- intltoolize --copy --force --automake --debug
-
- ./configure --prefix=/usr --sysconfdir=/etc \
- --localstatedir=/var --disable-static \
- --libexecdir=/usr/lib/mate-notification-daemon \
- --disable-schemas-install || return 1
-
- 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
-}
-
-# 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 96a2df9..0000000
--- a/distro/ubuntu/postinst
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-pkgname=mate-notification-daemon
-
-if [ -f /usr/sbin/mateconfpkg ]; then
- /usr/sbin/mateconfpkg --install ${pkgname}
-fi
-
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-
-exit 0
diff --git a/distro/ubuntu/postrm b/distro/ubuntu/postrm
deleted file mode 100755
index 2b7bfec..0000000
--- a/distro/ubuntu/postrm
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-set -e
-
-pkgname=mate-notification-daemon
-
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-
-exit 0
diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst
deleted file mode 100755
index 429b988..0000000
--- a/distro/ubuntu/preinst
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh -e
-
-pkgname=mate-notification-daemon
-
-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 6e4b0a5..0000000
--- a/distro/ubuntu/prerm
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-set -e
-
-pkgname=mate-notification-daemon
-
-if [ -f /usr/sbin/mateconfpkg ]; then
- /usr/sbin/mateconfpkg --uninstall ${pkgname}
-fi
-
-exit 0