Preparing for 1.4 release.

This commit is contained in:
Steve Zesch 2012-07-12 14:57:02 -04:00
parent 501849698a
commit fed1c689d7
7 changed files with 1784 additions and 72 deletions

1788
ChangeLog

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.63.2)
m4_define(pluma_major_version, 1)
m4_define(pluma_minor_version, 2)
m4_define(pluma_minor_version, 4)
m4_define(pluma_micro_version, 0)
m4_define(pluma_version, pluma_major_version.pluma_minor_version.pluma_micro_version)

View File

@ -1,31 +0,0 @@
#!/bin/bash
# fill it
pkgname=mate-text-editor
pkgver=1.1.0
pkgrel=1
pkgdesc="An powerfull text editor for MATE"
depends=('mate-conf' 'python')
# editar esta funcion!
build() {
cd $pkgsrc
# descomprimir
tar xvzf download
# entramos a la carpeta
cd ${pkgname}
./autogen.sh --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libexecdir=/usr/lib/ \
--disable-scrollkeeper --enable-python || 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

View File

@ -1,11 +0,0 @@
#!/bin/sh -e
pkgname=mate-text-editor
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

View File

@ -1,7 +0,0 @@
#!/bin/sh -e
pkgname=mate-text-editor
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
exit 0

View File

@ -1,8 +0,0 @@
#!/bin/sh -e
pkgname=mate-text-editor
if [ -f /usr/sbin/mateconfpkg ]; then
/usr/sbin/mateconfpkg --uninstall ${pkgname}
fi

View File

@ -1,9 +0,0 @@
#!/bin/sh -e
pkgname=mate-text-editor
if [ -f /usr/sbin/mateconfpkg ]; then
/usr/sbin/mateconfpkg --uninstall ${pkgname}
fi
exit 0