123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- # Build recipe for tdelibs.
- #
- # Copyright (c) 2020 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=tdelibs-trinity
- pkgname=tdelibs
- version=14.0.7
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/tde"
- tarname=${program}-${version}.tar.xz
- # Remote source(s)
- fetch=http://mirror.ppa.trinitydesktop.org/trinity/releases/R${version}/main/$tarname
- description="
- The Trinity Desktop Environment (TDE) libraries.
- This package includes libraries that are central to the development and
- execution of a KDE program, as well as internationalization files for
- these libraries, misc HTML documentation, theme modules, and regression
- tests.
- "
- homepage=http://www.trinitydesktop.org/
- license="GPLv2+, LGPLv2+ | BSD 2-clause"
- # Source documentation
- docs="AUTHORS COPYING* DEBUG NAMING README TODO KDE?PORTING.html"
- docsdir="${docdir}/${pkgname}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- patch -Np1 -i "${worktree}/patches/tdelibs/_isnan.patch"
- patch -Np1 -i "${worktree}/patches/tdelibs/header-redirections.diff"
- patch -Np1 -i "${worktree}/patches/tdelibs/tdeio-kssl_libressl.patch"
- patch -Np1 -i "${worktree}/patches/tdelibs/start_tdeinit.c.diff"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- mkdir BUILD
- cd BUILD
- cmake \
- -DCMAKE_C_FLAGS_RELEASE:STRING="$QICFLAGS" \
- -DCMAKE_CXX_FLAGS_RELEASE:STRING="$QICXXFLAGS" \
- -DCMAKE_SHARED_LINKER_FLAGS:STRING="$QILDFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/opt/trinity \
- -DLIB_SUFFIX=${libSuffix} \
- -DCONFIG_INSTALL_DIR=/etc/trinity \
- -DSYSCONF_INSTALL_DIR=/etc/trinity \
- -DXDG_MENU_INSTALL_DIR=/etc/xdg/menus \
- -DCMAKE_VERBOSE_MAKEFILE=ON \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_INSTALL_RPATH=YES \
- -DBUILD_ALL=ON \
- -DWITH_ALL_OPTIONS=ON \
- -DWITH_SUDO_TDESU_BACKEND=ON \
- -DWITH_OPENEXR=OFF \
- -DWITH_CUPS=OFF \
- -DWITH_UTEMPTER=OFF \
- -DWITH_LIBIDN=OFF \
- -DWITH_LUA=OFF \
- -DWITH_ELFICON=OFF \
- -DWITH_GAMIN=OFF \
- -DWITH_HSPELL=OFF \
- -DWITH_HALL=OFF \
- -DWITH_UPOWER=OFF \
- -DWITH_UDISKS=OFF \
- -DWITH_UDISKS2=OFF \
- -DWITH_CONSOLEKIT=OFF \
- ..
- make -j${jobs}
- make -j${jobs} DESTDIR="$destdir" install
- # Strip remaining binaries and libraries
- find "$destdir" -type f -print0 | xargs -0 file | \
- awk '/ELF/ && /executable/ || /shared object/' | \
- cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
- find "$destdir" -type f -print0 | xargs -0 file | \
- awk '/current ar archive/' | \
- cut -f 1 -d : | xargs strip --strip-debug 2> /dev/null || true
- # To handle (dot) .new files via graft(1)
- find "${destdir}/etc" -type d -print | while read -r directory
- do
- ( cd -- "$directory" && touch .graft-config )
- done
- # Compress and link man pages (if needed)
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 '{}' +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
- cd ..
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}"
- }
|