From ae165d56585c9ab13b8969ea733057e965cc9ede Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Sat, 23 Jun 2012 15:31:38 +0300 Subject: [PATCH] python16: enable extra modules: termios, crypt, resource, Tkinter --- PKGBUILD | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index e7f695483020..031d9b6ad317 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,7 +9,7 @@ arch=('i686' 'x86_64') license=('PSF') url="http://www.python.org/" depends=('bash') -makedepends=() +makedepends=(tk tcl) optdepends=() options=('!makeflags') source=(http://www.python.org/download/releases/$pkgver/Python-$pkgver.tar.gz) @@ -18,8 +18,15 @@ sha1sums=('3cc7f523ae529384ea78b41d1c48011484407442') build() { cd "$srcdir/Python-$pkgver" + # enable more modules + echo 'termios termios.c' >> Modules/Setup.in + echo 'crypt cryptmodule.c -lcrypt' >> Modules/Setup.in + echo 'resource resource.c' >> Modules/Setup.in + echo '_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -lX11 -ltk8.5 -ltcl8.5' >> Modules/Setup.in + export OPT="$CFLAGS" ./configure --prefix=/usr + make }