summaryrefslogtreecommitdiff
path: root/template.spec
blob: 23a5039b83db2e9df95bd4aee54837f61482b30d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# >> macros
# << macros
?include_ftests?
%bcond_with ftests=1

Name:       xorg-x11-drv-exynos
Summary:    X.Org X server driver for exynos
Version:    1.0.0
Release:    3
ExclusiveArch:  %arm
Group:      System/X Hardware Support
License:    MIT
Source0:    %{name}-%{version}.tar.gz

BuildRequires:  prelink
BuildRequires:  pkgconfig(xorg-macros)
BuildRequires:  pkgconfig(xorg-server)
BuildRequires:  pkgconfig(xproto)
BuildRequires:  pkgconfig(fontsproto)
BuildRequires:  pkgconfig(randrproto)
BuildRequires:  pkgconfig(renderproto)
BuildRequires:  pkgconfig(videoproto)
BuildRequires:  pkgconfig(resourceproto)
BuildRequires:  pkgconfig(libudev)
BuildRequires:  pkgconfig(libtbm)
BuildRequires:  pkgconfig(xdbg)
BuildRequires:  pkgconfig(libdrm)
BuildRequires:  pkgconfig(libpng)
BuildRequires:  pkgconfig(dri3proto)
BuildRequires:  pkgconfig(presentproto)
BuildRequires:  pkgconfig(ttrace)
BuildRequires:  pkgconfig(xcb)
BuildRequires:  pkgconfig(xcb-util)
BuildRequires:  pkgconfig(xrandr)
BuildRequires:  pkgconfig(hwaproto)

%description
This package provides the driver for the Samsung display device exynos

%prep
%setup -q


%build
rm -rf %{buildroot}

%if %{?tizen_profile_name} == "wearable"
export CFLAGS+=" -D_F_WEARABLE_FEATURE_ "
%endif

%if %{with ftests}
export FTESTS="--enable-ftests"
%endif

?SUBSTITUTE_PARAMETERS?

make %{?jobs:-j%jobs}

%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/license
cp -af COPYING %{buildroot}/usr/share/license/%{name}
%make_install

%if %{without ftests}
 # >> install post
 execstack -c %{buildroot}%{_libdir}/xorg/modules/drivers/exynos_drv.so
 # << install post
%endif

%files
%defattr(-,root,root,-)
%if %{without ftests}
 %{_libdir}/xorg/modules/drivers/*.so
 %{_datadir}/man/man4/*
 /usr/share/license/%{name}
%else
 /usr/share/license/%{name}

 # to build functional tests simple add option to gbs "--define with_ftests=1"
 # Note: if you build functional tests, ddx driver willn't be built
 %{_libdir}/libdri2_dri3.so
 %{_bindir}/test_xv
 %{_bindir}/hwc-sample
 %{_bindir}/square-bubbles
 %{_bindir}/clock
 %{_bindir}/snowflake
 %{_bindir}/wander-stripe
 %{_bindir}/hwa_sample
 %{_bindir}/pixmap_copy
 %{_datadir}/launch.sh

%post
 chmod +x %{_datadir}/launch.sh
%endif