This commit is contained in:
Perberos
2011-11-07 16:46:58 -03:00
commit 528c1e5ff5
532 changed files with 709826 additions and 0 deletions

39
distro/archlinux/PKGBUILD Normal file
View File

@@ -0,0 +1,39 @@
# Maintainer: neocrust
pkgname=mate-text-editor
pkgver=2011.08.31
pkgrel=1
pkgdesc="An powerfull text editor for MATE"
arch=('i686' 'x86_64')
license=('GPL')
depends=('mate-conf' 'gtk2' 'gtksourceview2' 'libxml2' 'pygtksourceview2')
makedepends=('pkgconfig' 'mate-doc-utils' 'intltool')
options=('!emptydirs' '!libtool')
conflicts=('gedit')
url="http://matsusoft.com.ar/projects"
groups=('mate-extras')
install=mate-text-editor.install
source=(http://sourceforge.net/projects/matede/files/${pkgver}/${pkgname}.tar.gz/download)
sha256sums=('181779b25161a030f6ed25bce1af160d1d82bbbda43f26ab2329219e3e2539ec')
build() {
cd "${srcdir}/${pkgname}"
intltoolize --force --copy --automake || die "intltoolize failed"
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libexecdir=/usr/lib/ \
--disable-scrollkeeper --enable-python || return 1
make || return 1
}
package() {
cd "${srcdir}/${pkgname}"
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
}

View File

@@ -0,0 +1,22 @@
pkgname=mate-text-editor
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}
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}

33
distro/ubuntu/build Executable file
View File

@@ -0,0 +1,33 @@
#!/bin/bash
# fill it
pkgname=mate-text-editor
pkgver=2011.08.31
pkgrel=1
pkgdesc="An powerfull text editor for MATE"
depends=('mate-conf')
# editar esta funcion!
build() {
cd $pkgsrc
# descomprimir
tar xvzf download
# entramos a la carpeta
cd ${pkgname}
intltoolize --force --copy --automake || die "intltoolize failed"
./configure --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

8
distro/ubuntu/postinst Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh -e
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --install ${pkgname}
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
exit 0

7
distro/ubuntu/postrm Executable file
View File

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

6
distro/ubuntu/preinst Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh -e
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --uninstall ${pkgname}

7
distro/ubuntu/prerm Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh -e
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --uninstall ${pkgname}
exit 0