From 39ff014c05e8d8634680cc229b60c9e1aab561f3 Mon Sep 17 00:00:00 2001 From: milisman Date: Sun, 16 Oct 2016 02:28:31 +0300 Subject: [PATCH] guake.paketlendi --- talimatname/genel/guake/talimat | 25 +++++++++++++++++ talimatname/genel/libutempter/talimat | 2 +- talimatname/genel/python-gconf/talimat | 2 +- talimatname/genel/python-vte/talimat | 37 ++++++++++++++++++++++++++ 4 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 talimatname/genel/guake/talimat create mode 100644 talimatname/genel/python-vte/talimat diff --git a/talimatname/genel/guake/talimat b/talimatname/genel/guake/talimat new file mode 100644 index 000000000..8d850f13e --- /dev/null +++ b/talimatname/genel/guake/talimat @@ -0,0 +1,25 @@ +# Description: Drop-down terminal for GNOME +# URL: http://guake-project.org/ +# Packager: milisarge aydinyakar +# Depends on: intltool gnome-common python-notify vte python-vte python-gconf dbus-python python-keybinder python-xdg libutempter + +name=guake +version=0.8.7 +release=1 +source=(https://github.com/Guake/$name/archive/$version.tar.gz) + +build() { + # Python2 fix + cd $name-$version + sed -i 's|/usr/bin/env python|/usr/bin/python2|' src/guake/prefs.py + + NOCONFIGURE=1 ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-schemas-install \ + --with-gconf-schema-file-dir=/usr/share/gconf/schemas \ + PYTHON=python2 + make + make DESTDIR="$PKG" install + python2 -m compileall "$PKG"/usr/lib/python2.7/site-packages/guake/ + +} diff --git a/talimatname/genel/libutempter/talimat b/talimatname/genel/libutempter/talimat index bb7d3d365..41bd690c0 100644 --- a/talimatname/genel/libutempter/talimat +++ b/talimatname/genel/libutempter/talimat @@ -1,6 +1,6 @@ # Description: Interface for terminal emulators to record user sessions to utmp and wtmp files. # URL: ftp://ftp.altlinux.org/pub/people/ldv/utempter -# Packager: tnut at nutyx dot org +# Packager: milisarge # Depends on: name=libutempter diff --git a/talimatname/genel/python-gconf/talimat b/talimatname/genel/python-gconf/talimat index 9deef109c..ca5046c34 100644 --- a/talimatname/genel/python-gconf/talimat +++ b/talimatname/genel/python-gconf/talimat @@ -1,6 +1,6 @@ # Description: Bindings Python2 for GConf. # URL: http://www.gnome.org/ -# Packager: pierre at nutyx dot org +# Packager: milisarge # Depends on: python-gtk gconf _name=gnome-python diff --git a/talimatname/genel/python-vte/talimat b/talimatname/genel/python-vte/talimat new file mode 100644 index 000000000..fdeca53e5 --- /dev/null +++ b/talimatname/genel/python-vte/talimat @@ -0,0 +1,37 @@ +# Description: Python modules Virtual Terminal Emulator +# URL: http://developer.gnome.org/arch/gnome/widgets/vte.html +# Packager: milisarge +# Depends on: vte vala + +name=python-vte +version=0.28.2 +release=1 +source=(ftp://ftp.gnome.org/pub/gnome/sources/vte/${version%.*}/vte-$version.tar.xz ) + +build() { + cd vte-$version + + ./configure --prefix=/usr \ + --libexecdir=/usr/lib/$name \ + --disable-static \ + --disable-debugging \ + --enable-python \ + --disable-gtk-doc \ + --with-xft2 \ + --with-pangox + + make + make DESTDIR=$PKG install + + + rm -rf $PKG/usr/lib/libvte.la + rm -rf $PKG/usr/lib/libvte.so* + rm -rf $PKG/usr/lib/libvte.so.9.2800.2 + rm -rf $PKG/usr/lib/pkgconfig/ + rm -rf $PKG/usr/lib/vte/ + rm -rf $PKG/usr/include + rm -rf $PKG/usr/share + rm -rf $PKG/usr/bin + rm -rf $PKG/usr/{share}/{gtk-doc,locale} + rm -rf $PKG/usr/lib/vte/gnome-pty-helper +}