1
0
Fork 0

Using distutils eclass directly for the Python subpackage

This commit is contained in:
Horea Christian 2024-01-18 02:15:03 -05:00
parent ca35e3c4a7
commit f12e08a643
1 changed files with 18 additions and 11 deletions

View File

@ -79,8 +79,8 @@ src_configure() {
fi fi
export CFLAGS="-pthread ${CFLAGS}" export CFLAGS="-pthread ${CFLAGS}"
export GIT_REPO_VERSION=3.0.1.1 export GIT_REPO_VERSION=3.0.1.1
export DO_NOT_USE_PIP=true #export DO_NOT_USE_PIP=true
export EXPLICIT_AFNIPY_INSTALL=false #export EXPLICIT_AFNIPY_INSTALL=false
#export LDFLAGS="-lpthread ${LDFLAGS}" #export LDFLAGS="-lpthread ${LDFLAGS}"
#-CC="$(tc-getCC)" #-CC="$(tc-getCC)"
#-DFETCHCONTENT_SOURCE_DIR_GTS="${WORKDIR}/${P}/gts-${GTS_HASH}" #-DFETCHCONTENT_SOURCE_DIR_GTS="${WORKDIR}/${P}/gts-${GTS_HASH}"
@ -102,8 +102,8 @@ src_configure() {
-DCOMP_GUI=ON -DCOMP_GUI=ON
-DCOMP_PLUGINS=ON -DCOMP_PLUGINS=ON
-DUSE_OMP=ON -DUSE_OMP=ON
#-DCOMP_PYTHON=OFF -DCOMP_PYTHON=OFF
-DCOMP_PYTHON=ON #-DCOMP_PYTHON=ON
#-DSTANDARD_PYTHON_INSTALL=OFF #-DSTANDARD_PYTHON_INSTALL=OFF
#-DPython_FIND_VIRTUALENV=STANDARD #-DPython_FIND_VIRTUALENV=STANDARD
#-DPython_FIND_STRATEGY=LOCATION #-DPython_FIND_STRATEGY=LOCATION
@ -111,13 +111,17 @@ src_configure() {
) )
#-DBUILD_SHARED_LIBS=OFF #-DBUILD_SHARED_LIBS=OFF
tc-export CC tc-export CC
python_foreach_impl cmake_src_configure cmake_src_configure
python_foreach_impl python_optimize #python_foreach_impl cmake_src_configure
#python_foreach_impl python_optimize
} }
src_compile() { src_compile() {
python_foreach_impl cmake_src_compile #python_foreach_impl cmake_src_compile
distutils-r1_src_compile cmake_src_compile
pushd src/python_scripts
distutils-r1_src_compile
popd
#cmake_src_compile #cmake_src_compile
#cd ../afni-9999_build #cd ../afni-9999_build
#default #default
@ -127,9 +131,12 @@ src_compile() {
#/work/afni-9999/nifti_clib-65f801b9c2f1f15f4de4a19d45e6595c25765632 #/work/afni-9999/nifti_clib-65f801b9c2f1f15f4de4a19d45e6595c25765632
src_install() { src_install() {
python_foreach_impl cmake_src_install #python_foreach_impl cmake_src_install
python_foreach_impl python_optimize #python_foreach_impl python_optimize
distutils-r1_src_install cmake_src_install
pushd src/python_scripts
distutils-r1_src_install
popd
#cd ../afni-9999_build #cd ../afni-9999_build
#DESTDIR=${D} eninja install #DESTDIR=${D} eninja install
# File collision, upstream confirmation here: # File collision, upstream confirmation here: