wok annotate libboost-dev/receipt @ rev 22624
updated cv (0.4.1 -> 0.7.1)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 12 16:09:01 2020 +0100 (2020-01-12) |
parents | 86790a278e70 |
children | 65d7d867e0c1 |
rev | line source |
---|---|
pascal@1136 | 1 # SliTaz package receipt. |
pascal@1136 | 2 |
pascal@1136 | 3 # Boost is a set of two types of libraries. Most of them are just |
pascal@1136 | 4 # headers with inline functions, these are included in this package |
pascal@1136 | 5 # named libboost-dev. Some few set of libraries require build and |
pascal@1136 | 6 # installation steps. These will be relocated and have their own two |
pascal@1136 | 7 # packages : libboost-name and libboost-name-dev. |
pascal@1136 | 8 |
pascal@1136 | 9 PACKAGE="libboost-dev" |
Hans-G?nter@21149 | 10 VERSION="1.69.0" |
pascal@1136 | 11 CATEGORY="development" |
pascal@1136 | 12 SHORT_DESC="Free peer-reviewed portable C++ source libraries." |
pascal@1136 | 13 MAINTAINER="chadi.elahmad@gmail.com" |
pascal@15472 | 14 LICENSE="MIT" |
Hans-G?nter@21149 | 15 WEB_SITE="https://www.boost.org/" |
pascal@1136 | 16 |
Hans-G?nter@21149 | 17 # We have to do it this way because of the underscores |
Hans-G?nter@21149 | 18 # to get a package with the slitaz version numbering |
Hans-G?nter@21149 | 19 SOURCE="boost" |
Hans-G?nter@21149 | 20 WGET_SOURCE="boost_1_69_0" |
pascal@1136 | 21 TARBALL="$WGET_SOURCE.tar.bz2" |
Hans-G?nter@21149 | 22 #EXTRA_SOURCE_FILES="boost_changeset_75540.u" |
rcx@3702 | 23 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" |
pascal@1136 | 24 |
Hans-G?nter@21149 | 25 DEPENDS="gcc-lib-base libboost-chrono-dev libboost-date-time-dev \ |
Hans-G?nter@21149 | 26 libboost-math-dev" |
Hans-G?nter@21149 | 27 BUILD_DEPENDS="bzip2-dev expat expat-dev python python-dev zlib-dev" |
pascal@1136 | 28 RELOCATE_LIBS="{ date_time filesystem graph iostreams \ |
rcx@3702 | 29 math program_options python regex serialization \ |
rcx@3702 | 30 signal system test thread tr1 wave }" |
pascal@1136 | 31 |
pascal@1136 | 32 |
pascal@1136 | 33 # Rules to configure and make the package. |
pascal@1136 | 34 # Uses boost:build building tool for the compilation: |
pascal@1136 | 35 # Doesn't use DESTDIR. |
pascal@1136 | 36 # Doesn't recognize the $CONFIGURE_ARGS, gives an error back |
pascal@1136 | 37 # Have to add some params to get static libs compiled too |
pascal@1136 | 38 compile_rules() |
pascal@1136 | 39 { |
rcx@3702 | 40 # Determine if TOOLPREFIX has been defined in tazwok.conf as it should |
rcx@3702 | 41 if [ -z "$TOOLPREFIX" ] ; then |
rcx@3702 | 42 # Provide a default TOOLPREFIX value |
pascal@13878 | 43 TOOLPREFIX=$ARCH-pc-linux-gnu- |
rcx@3702 | 44 fi |
rcx@3702 | 45 |
Hans-G?nter@21149 | 46 # [ -s $SOURCES_REPOSITORY/boost_changeset_75540.u ] || |
Hans-G?nter@21149 | 47 # wget -O $SOURCES_REPOSITORY/boost_changeset_75540.u --no-check-certificate \ |
Hans-G?nter@21149 | 48 # 'https://svn.boost.org/trac/boost/changeset/75540?format=diff&new=75540' |
Hans-G?nter@21149 | 49 # patch -p2 < $SOURCES_REPOSITORY/boost_changeset_75540.u || return 1 |
Hans-G?nter@21149 | 50 |
Hans-G?nter@21149 | 51 ./bootstrap.sh \ |
Hans-G?nter@21149 | 52 --prefix=$DESTDIR/usr \ |
Hans-G?nter@21149 | 53 --exec-prefix=$DESTDIR/usr \ |
Hans-G?nter@21149 | 54 --libdir=$DESTDIR/usr/lib \ |
Hans-G?nter@21149 | 55 --includedir=$DESTDIR/usr/include \ |
rcx@3702 | 56 --without-icu && |
rcx@3702 | 57 EXPAT_INCLUDE=/usr/include \ |
rcx@3702 | 58 EXPAT_LIBPATH=/usr/lib \ |
Hans-G?nter@21149 | 59 ./bjam \ |
Hans-G?nter@21149 | 60 --prefix=$DESTDIR/usr \ |
Hans-G?nter@21149 | 61 --exec-prefix=$DESTDIR/usr \ |
Hans-G?nter@21149 | 62 --libdir=$DESTDIR/usr/lib \ |
Hans-G?nter@21149 | 63 --includedir=$DESTDIR/usr/include \ |
Hans-G?nter@21149 | 64 --build-type=minimal \ |
rcx@3702 | 65 install |
rcx@3702 | 66 |
pascal@1136 | 67 # create the missing links to the shared libs |
gokhlayeh@8305 | 68 cd $DESTDIR/usr/lib |
pascal@14338 | 69 #for i in `ls *-mt.so`; do |
pascal@14338 | 70 # boost_tmp=`echo $i | sed s/-gcc.*-mt//g` |
pascal@14338 | 71 # boost_tmp_mt=`echo $i | sed s/-gcc.*-mt/-mt/g` |
pascal@14338 | 72 # ln -s $i $boost_tmp |
pascal@14338 | 73 # ln -s $i $boost_tmp_mt |
pascal@14338 | 74 #done |
pascal@14338 | 75 #for i in `ls *-mt.a`; do |
pascal@14338 | 76 # boost_tmp=`echo $i | sed s/-gcc.*-mt//g` |
pascal@14338 | 77 # boost_tmp_mt=`echo $i | sed s/-gcc.*-mt/-mt/g` |
pascal@14338 | 78 # ln -s $i $boost_tmp |
pascal@14338 | 79 # ln -s $i $boost_tmp_mt |
pascal@14338 | 80 #done |
pascal@1136 | 81 } |
pascal@1136 | 82 |
pascal@1136 | 83 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1136 | 84 genpkg_rules() |
pascal@1136 | 85 { |
pascal@1136 | 86 mkdir -p $fs/usr |
Hans-G?nter@21149 | 87 |
Hans-G?nter@21149 | 88 cp -a $install/usr/lib $fs/usr |
Hans-G?nter@21149 | 89 cp -a $install/usr/include $fs/usr |
Hans-G?nter@21149 | 90 |
pascal@1136 | 91 for i in $RELOCATE_LIBS; do |
gokhlayeh@8305 | 92 rm -f $fs/usr/lib/*$i* |
gokhlayeh@8305 | 93 rm -r -f $fs/usr/include/boost/*$i* |
pascal@1136 | 94 done |
Hans-G?nter@21149 | 95 |
al@18514 | 96 # libboost-chrono{-dev} |
al@18514 | 97 rm $fs/usr/lib/libboost_chrono* |
al@18514 | 98 rm $fs/usr/include/boost/chrono* |
al@18514 | 99 rm -r $fs/usr/include/boost/chrono |
pascal@1136 | 100 } |