recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / tde / dbus1_tqt / recipe
blobc72047488120b422ad35c8feefbd0157465e8fc7
1 # Build recipe for dbus-1-tqt.
3 # Copyright (c) 2020 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=dbus-1-tqt-trinity
18 pkgname=dbus1_tqt
19 version=14.0.7
20 release=2
22 # Define a category for the output of the package name
23 pkgcategory=tde
25 tarname=${program}-${version}.tar.xz
27 # Remote source(s)
28 fetch=http://mirror.ppa.trinitydesktop.org/trinity/releases/R${version}/main/dependencies/$tarname
30 description="
31 A backport of Harald Fernengel's Qt4 D-Bus bindings.
33 Some Qt4 based code had no direct equivalent in Qt3. Cases where this
34 transition to Qt3 might not be fully correct are marked with FIXME-QT4
36 Depending on the use case it might be necessary to extend QDBusMesssage
37 to allow marshalling/de-marshalling based on an application provided
38 helper as the Qt3 QVariant can not handle all cases the Qt4 pendant can
39 (user defined types, etc).
42 homepage=http://www.trinitydesktop.org/
43 license="Academic Free License version 2.1 | MIT Expat Variant, GPLv2+"
45 # Source documentation
46 docs="AUTHORS COPYING* ChangeLog NEWS README TODO"
47 docsdir="${docdir}/${pkgname}-${version}"
49 build()
51     set -e
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     mkdir BUILD
61     cd BUILD
63     cmake \
64      -DCMAKE_CXX_FLAGS_RELEASE:STRING="$QICXXFLAGS"   \
65      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$QILDFLAGS"  \
66      -DCMAKE_INSTALL_PREFIX=/opt/trinity              \
67      -DLIB_SUFFIX=${libSuffix}                        \
68      -DCMAKE_VERBOSE_MAKEFILE=ON                      \
69      -DCMAKE_BUILD_TYPE=Release                       \
70      -DCMAKE_SKIP_INSTALL_RPATH=YES                   \
71      -DWITH_ALL_OPTIONS=ON                            \
72      ..
74     make -j${jobs}
75     make -j${jobs} DESTDIR="$destdir" install
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 '{}' +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     cd ..
93     # Copy documentation
94     mkdir -p "${destdir}${docsdir}"
95     cp -p $docs "${destdir}${docsdir}"