# Description: The official text editor of the GNOME desktop environment # URL: http://www.gnome.org/projects/gedit/ # Maintainer: Matt Housh, jaeger at morpheus dot net # Depends on: libgnomeui, libglade, libgnomeprintui, eel, gtksourceview, gnome-python-desktop, pygtksourceview # Group: gnome/desktop name=gedit version=2.20.4 release=1 source=(http://download.gnome.org/desktop/2.20/2.20.2/sources/$name-$version.tar.bz2) build() { cd $name-$version sed -i -e 's/USE_NLS=yes/USE_NLS=no/' \ -e 's/ENABLE_NLS 1/ENABLE_NLS 0/' configure find . -name "Makefile.in" -exec \ sed -i -e 's/scrollkeeper-update/echo s-u/g' '{}' \; ./configure --prefix=/usr \ --mandir=/usr/man \ --enable-python \ --disable-schemas-install \ --disable-deprecations \ --disable-spell # add back later with libenchant? make make DESTDIR=$PKG install rm -rf $PKG/usr/share/gtk-doc }