vp-build/srcpkgs/python3-tkinter/template

92 lines
2.8 KiB
Bash

# Template file for 'python3-tkinter'
#
# THIS PACKAGE MUST BE SYNCHRONIZED WITH "srcpkgs/python3"
#
# IT IS SPLIT TO AVOID A CYCLIC DEPENDENCY:
# python3 -> tk -> libX11 -> libxcb -> xcb-proto -> python3
_desc="Python programming language"
pkgname=python3-tkinter
version=3.10.4
revision=1
wrksrc="Python-${version}"
build_style="gnu-configure"
configure_args="--enable-shared --enable-ipv6
--enable-loadable-sqlite-extensions --with-computed-gotos
--with-dbmliborder=gdbm:ndbm --with-system-expat --with-system-ffi
--without-ensurepip"
pycompile_dirs="
usr/lib/python${version%.*}/tkinter
usr/lib/python${version%.*}/turtledemo
usr/lib/python${version%.*}/turtle.py"
hostmakedepends="pkg-config"
makedepends="libffi-devel readline-devel gdbm-devel openssl-devel
expat-devel sqlite-devel bzip2-devel zlib-devel liblzma-devel tk-devel"
depends="python3"
short_desc="${_desc} - GUI toolkit for Python3"
maintainer="Andrew J. Hesford <ajh@sideband.org>"
homepage="https://www.python.org"
license="Python-2.0"
distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"
checksum=80bf925f571da436b35210886cf79f6eb5fa5d6c571316b73568343451f77a19
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" python3"
fi
post_extract() {
# Ensure that internal copies of expat and libffi are not used.
rm -r Modules/expat
rm -r Modules/_ctypes/{darwin,libffi}*
}
post_patch() {
if [ "$CROSS_BUILD" ]; then
patch -Np0 -i ${FILESDIR}/cross.patch
fi
}
do_configure() {
unset GCC CC CXX CPP LD AR AS RANLIB
./configure ${configure_args}
}
do_check() {
# The test_tk suite requires DISPLAY, so just test idle and tcl
make ${makejobs} EXTRATESTOPTS="test_tcl test_idle test_ttk_textonly" test
}
do_install() {
mkdir -p ${wrksrc}/tmp-destdir/usr/lib
ln -s lib ${wrksrc}/tmp-destdir/usr/lib${XBPS_TARGET_WORDSIZE}
make DESTDIR=${wrksrc}/tmp-destdir altinstall
vlicense LICENSE
# We only care for the idle and tkinter modules.
vmkdir usr/bin
vmkdir usr/lib/python${version%.*}/lib-dynload
mv ${wrksrc}/tmp-destdir/usr/bin/idle${version%.*} \
${DESTDIR}/usr/bin/idle${version%.*}
for lib in idlelib tkinter turtledemo turtle.py; do
mv ${wrksrc}/tmp-destdir/usr/lib/python${version%.*}/${lib} \
${DESTDIR}/usr/lib/python${version%.*}/
done
mv ${wrksrc}/tmp-destdir/usr/lib/python${version%.*}/lib-dynload/_tkinter.cpython-*.so \
${DESTDIR}/usr/lib/python${version%.*}/lib-dynload/
ln -sf idle${version%.*} ${DESTDIR}/usr/bin/idle3
}
idle-python3_package() {
short_desc="${_desc} - IDE for Python3 using Tkinter"
pycompile_dirs="usr/lib/python${version%.*}/idlelib"
depends="${sourcepkg}-${version}_${revision}"
pkg_install() {
vmove usr/bin/idle3*
vmove usr/lib/python${version%.*}/idlelib
vinstall ${FILESDIR}/idle3.xpm 644 usr/share/pixmaps
vinstall ${FILESDIR}/idle3.desktop 644 usr/share/applications
}
}