forked from pool/doxygen
- Set proper minimal cmake version required - Use system stack for cmake params and obey cflags - Add patch to build required static libs: * doxygen-no-shared-libs.patch - Refresh patch: * doxygen-no-lowercase-man-names.patch - Add patch to avoid no-return-in-nonvoid function error: * vhdlparser-no-return.patch - Set proper minimal cmake version required - Use system stack for cmake params and obey cflags - Add patch to build required static libs: * doxygen-no-shared-libs.patch - Refresh patch: * doxygen-no-lowercase-man-names.patch - Add patch to avoid no-return-in-nonvoid function error: * vhdlparser-no-return.patch - Set proper minimal cmake version required - Use system stack for cmake params and obey cflags - Add patch to build required static libs: * doxygen-no-shared-libs.patch - Refresh patch: * doxygen-no-lowercase-man-names.patch - Add patch to avoid no-return-in-nonvoid function error: * vhdlparser-no-return.patch OBS-URL: https://build.opensuse.org/request/show/326432 OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=91
76 lines
2.5 KiB
RPMSpec
76 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package doxywizard
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: doxywizard
|
|
Version: 1.8.10
|
|
Release: 0
|
|
Summary: Graphical User Interface for Doxygen
|
|
License: GPL-2.0+
|
|
Group: Development/Tools/Doc Generators
|
|
Url: http://www.stack.nl/~dimitri/doxygen/
|
|
Source: http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
|
|
Source1: doxywizard.desktop
|
|
# PATCH-FIX-UPSTREAM: declare static library where we don't want to provide
|
|
# shared one
|
|
Patch2: doxygen-no-shared-libs.patch
|
|
# PATCH-FIX-UPSTREAM: add missing returns to non-void functions
|
|
Patch3: vhdlparser-no-return.patch
|
|
BuildRequires: bison
|
|
BuildRequires: cmake >= 2.8.12
|
|
BuildRequires: flex
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: libqt4-devel >= 4.3
|
|
BuildRequires: update-desktop-files
|
|
Requires: doxygen = %{version}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Doxywizard is a graphical front-end to read/edit/write doxygen
|
|
configuration files.
|
|
|
|
%prep
|
|
%setup -q -n doxygen-%{version}
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fPIC"
|
|
export CXXFLAGS="%{optflags} -fPIC"
|
|
%cmake \
|
|
-Dbuild_wizard=ON \
|
|
-DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now" \
|
|
-DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now" \
|
|
-DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%cmake_install
|
|
rm %{buildroot}%{_bindir}/doxygen
|
|
mkdir -p %{buildroot}%{_mandir}/man1/
|
|
install -m 644 doc/doxywizard.1 %{buildroot}%{_mandir}/man1/
|
|
%suse_update_desktop_file -i doxywizard Development Documentation
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%attr(755,root,root) %{_bindir}/doxywizard
|
|
%{_datadir}/applications/doxywizard.desktop
|
|
%{_mandir}/man1/doxywizard.1.gz
|
|
|
|
%changelog
|