diff options
author | Perberos <[email protected]> | 2011-12-01 22:49:12 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 22:49:12 -0300 |
commit | 781b0ff3f74abd6f5353b6d08763bbba93f2f21c (patch) | |
tree | 20c130b413586219356ec360efb5918a498cee69 /distro | |
download | mate-notification-daemon-781b0ff3f74abd6f5353b6d08763bbba93f2f21c.tar.bz2 mate-notification-daemon-781b0ff3f74abd6f5353b6d08763bbba93f2f21c.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'distro')
-rw-r--r-- | distro/archlinux/PKGBUILD | 43 | ||||
-rw-r--r-- | distro/archlinux/mate-notification-daemon.install | 18 | ||||
-rwxr-xr-x | distro/ubuntu/build | 35 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 11 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 8 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 11 |
7 files changed, 134 insertions, 0 deletions
diff --git a/distro/archlinux/PKGBUILD b/distro/archlinux/PKGBUILD new file mode 100644 index 0000000..b50a8a7 --- /dev/null +++ b/distro/archlinux/PKGBUILD @@ -0,0 +1,43 @@ +pkgname=mate-notification-daemon +pkgver=2011.11.16 +pkgrel=1 +pkgdesc="Notification daemon for MATE" +arch=(i686 x86_64) +license=('GPL' 'LGPL') +depends=('libmatenotify' 'libwnck' 'gtk2') +makedepends=('intltool') +conflicts=('notification-daemon') +provides=('notification-daemon') +url="http://matsusoft.com.ar/projects" +groups=('mate') +options=('!libtool' '!emptydirs') +install=mate-notification-daemon.install +source=(http://sourceforge.net/projects/matede/files/${pkgver}/${pkgname}.tar.gz/download) +sha256sums=('36db424b077488a5786fedf5ea8d15d2c93656b94ba99de0db607e7ceb280767') + +build() { + cd "${srcdir}/${pkgname}" + + ./autogen.sh \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --libexecdir=/usr/lib/mate-notification-daemon \ + --disable-schemas-install || return 1 + + make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}" + + make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 + + # hax! still conflicts with libnotify + #ln -s mate-notify-send ${pkgdir}/usr/bin/notify-send + + 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 +} diff --git a/distro/archlinux/mate-notification-daemon.install b/distro/archlinux/mate-notification-daemon.install new file mode 100644 index 0000000..67875d2 --- /dev/null +++ b/distro/archlinux/mate-notification-daemon.install @@ -0,0 +1,18 @@ +pkgname=mate-notification-daemon + +post_install() { + usr/sbin/mateconfpkg --install ${pkgname} + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + usr/sbin/mateconfpkg --uninstall ${pkgname} +} diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 0000000..d059d32 --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,35 @@ +#!/bin/bash + +# fill it +pkgname=mate-notification-daemon +pkgver=2011.10.29 +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 new file mode 100755 index 0000000..96a2df9 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,11 @@ +#!/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 new file mode 100755 index 0000000..2b7bfec --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,8 @@ +#!/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 new file mode 100755 index 0000000..429b988 --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,8 @@ +#!/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 new file mode 100755 index 0000000..6e4b0a5 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +pkgname=mate-notification-daemon + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + +exit 0 |