From d65821e1e25ead2652ef0e70394067d5a6c88cba Mon Sep 17 00:00:00 2001 From: ojab Date: Sun, 15 Nov 2009 17:12:36 +0300 Subject: [PATCH] Switch Python to build shared libs, remove customs CFLAGS. --HG-- extra : convert_revision : 81777a26f8cfcf6eb2d7f43b69515c8be3e47d94 --- templates/python/devel.template | 2 +- templates/python/template | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/templates/python/devel.template b/templates/python/devel.template index e25d685982..89332d5852 100644 --- a/templates/python/devel.template +++ b/templates/python/devel.template @@ -12,5 +12,5 @@ do_install() mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/bin mv ${SRCPKGDESTDIR}/usr/bin/python*-config ${DESTDIR}/usr/bin mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr - mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib + mv ${SRCPKGDESTDIR}/usr/lib/lib*.so* ${DESTDIR}/usr/lib } diff --git a/templates/python/template b/templates/python/template index 01e0cf8ef2..f93949c2dd 100644 --- a/templates/python/template +++ b/templates/python/template @@ -1,9 +1,11 @@ # Template build file for 'python'. pkgname=python version=2.6.4 +revision=1 wrksrc="Python-$version" distfiles="http://www.python.org/ftp/python/$version/Python-$version.tar.bz2" -configure_args="--with-threads --enable-ipv6 --with-signal-module" +configure_args="--with-threads --enable-ipv6 --with-signal-module + --enable-shared" build_style=gnu_configure short_desc="Interpreted, interactive, object-oriented programming language" maintainer="Juan RP " @@ -31,8 +33,3 @@ Add_dependency full expat Add_dependency full db Add_dependency build ncurses Add_dependency run ncurses-libs - -pre_configure() -{ - export OPT="${XBPS_CFLAGS} -fwrapv" -}