2007-01-15 23:10:37 +00:00
|
|
|
#
|
2011-03-30 07:18:47 +00:00
|
|
|
# spec file for package doxywizard
|
2007-01-15 23:10:37 +00:00
|
|
|
#
|
2012-02-27 09:54:11 +00:00
|
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:10:37 +00:00
|
|
|
#
|
2009-01-13 17:42:16 +00:00
|
|
|
# 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.
|
|
|
|
|
2007-01-15 23:10:37 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: doxywizard
|
2012-07-13 08:46:49 +00:00
|
|
|
BuildRequires: bison
|
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: libjpeg-devel
|
- updated to 1.8.3:
Changes
* Expanding the tree in an index page of the HTML output, will
now expand only one level instead of the whole sub-tree.
* A blockquote in Markdown does no longer require a whitespace
after the last '>' if the '>' is followed by a newline.
* id 682718: Included patch to add version info to all
generated template files (headers, footers, stylesheets,
layout files, etc).
New features
* Added support for using external tools to index and search
through the HTML documentation. An example index tool is
provided (doxyindexer) and an example search engine
(doxysearch.cgi). To configure the external search engine
the following new options are added to the configuration
file: EXTERNAL_SEARCH (to enable the feature),
SEARCHENGINE_URL (to specify the URL of the search engine),
SEARCHDATA_FILE (to specify the name of the raw search
data to index), EXTRA_SEARCH_MAPPINGS (for search through
multiple projects). See the manual for details.
* Added USE_MDFILE_AS_MAINPAGE config option to select a
markdown page to be used as the main page.
* id 630645: This patch (contributed by Albert) adds support
for simple logic expressions for \cond, \if, and friends,
i.e. you can do \if (SOME_SECTION_NAME &&
(!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
* id 684152: Patch (contributed by Albert) adds a new
configuration option MATHJAX_FORMAT to select the MathJax
output format. Options are HTML-CSS, NativeMML, or SVG.
Bug Fixes
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=58
2012-12-31 08:42:17 +00:00
|
|
|
Version: 1.8.3
|
2012-07-13 08:46:49 +00:00
|
|
|
Release: 0
|
2007-01-15 23:10:37 +00:00
|
|
|
Requires: doxygen = %{version}
|
2012-07-13 08:46:49 +00:00
|
|
|
Summary: Graphical User Interface for Doxygen
|
2011-12-05 09:58:31 +00:00
|
|
|
License: GPL-2.0+
|
2007-01-15 23:10:37 +00:00
|
|
|
Group: Development/Tools/Doc Generators
|
2007-10-31 15:52:10 +00:00
|
|
|
Url: http://www.stack.nl/~dimitri/doxygen/
|
2007-01-15 23:10:37 +00:00
|
|
|
Source: doxygen-%{version}.src.tar.bz2
|
|
|
|
Source1: doxywizard.desktop
|
2010-01-08 16:30:01 +00:00
|
|
|
Patch: doxygen-1.5.9-64archs.patch
|
|
|
|
Patch2: %{name}-1.5.9-flex.patch
|
|
|
|
Patch5: doxygen-1.5.9-man.patch
|
2010-06-25 19:02:05 +00:00
|
|
|
Patch6: doxygen-1.7.1-qtdir.patch
|
2007-01-15 23:10:37 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-01-08 16:30:01 +00:00
|
|
|
#########################################################################################
|
|
|
|
# SuSE, openSUSE
|
|
|
|
#########################################################################################
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
BuildRequires: libqt4-devel >= 4.3
|
|
|
|
BuildRequires: update-desktop-files
|
|
|
|
%define man_ext gz
|
|
|
|
%endif
|
|
|
|
#########################################################################################
|
|
|
|
# Fedora, RHEL or CentOS
|
|
|
|
#########################################################################################
|
|
|
|
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
|
|
|
|
BuildRequires: desktop-file-utils
|
2012-07-13 08:46:49 +00:00
|
|
|
BuildRequires: qt4-devel >= 4.3.0
|
2010-01-08 16:30:01 +00:00
|
|
|
%define man_ext gz
|
|
|
|
%endif
|
|
|
|
#########################################################################################
|
|
|
|
# Mandrake, Mandriva
|
|
|
|
#########################################################################################
|
|
|
|
%if 0%{?mandriva_version} || 0%{?mdkversion}
|
|
|
|
BuildRequires: libqt4-devel >= 4.3
|
|
|
|
Requires(post): desktop-file-utils
|
|
|
|
Requires(postun): desktop-file-utils
|
|
|
|
%define man_ext lzma
|
|
|
|
%endif
|
2007-01-15 23:10:37 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Doxywizard is a graphical front-end to read/edit/write doxygen
|
|
|
|
configuration files.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n doxygen-%{version}
|
|
|
|
%patch
|
|
|
|
%patch2
|
|
|
|
%patch5
|
2010-01-08 16:30:01 +00:00
|
|
|
%if 0%{?suse_version}
|
2007-02-06 23:27:23 +00:00
|
|
|
%patch6
|
2010-01-08 16:30:01 +00:00
|
|
|
%endif
|
2007-01-15 23:10:37 +00:00
|
|
|
|
|
|
|
%build
|
2010-01-08 16:30:01 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
export QTDIR=/usr
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
|
|
|
|
export QTDIR=%{_libdir}/qt4/
|
|
|
|
export PATH=${QTDIR}/bin:${PATH}
|
|
|
|
%endif
|
|
|
|
%if 0%{?mandriva_version} || 0%{?mdkversion}
|
|
|
|
export QTDIR=/usr/lib/qt4/
|
|
|
|
%if 0%{?mandriva_version} <= 2009 || 0%{?mdkversion} <= 200900
|
|
|
|
export PATH=${QTDIR}/bin:${PATH}
|
|
|
|
%endif
|
|
|
|
%endif
|
2009-02-09 11:29:16 +00:00
|
|
|
mintoc=
|
|
|
|
%ifarch ppc64
|
|
|
|
mintoc="-DENGLISH_ONLY"
|
|
|
|
%endif
|
|
|
|
sed -i~ "/^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS $mintoc@" tmake/lib/linux-g++/tmake.conf
|
2011-09-20 15:57:54 +00:00
|
|
|
# custom configure script
|
2009-01-13 17:42:16 +00:00
|
|
|
./configure --with-doxywizard
|
2011-09-20 15:57:54 +00:00
|
|
|
make %{?_smp_mflags}
|
2007-01-15 23:10:37 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
make install INSTALL=$RPM_BUILD_ROOT/usr
|
|
|
|
rm -f $RPM_BUILD_ROOT/usr/bin/{doxygen,doxytag}
|
2010-01-08 16:30:01 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%suse_update_desktop_file -i doxywizard Development Documentation
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora_version}
|
|
|
|
desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ --add-category Development --add-category Documentation %{SOURCE1}
|
|
|
|
%endif
|
|
|
|
%if 0%{?mandriva_version} || 0%{?mdkversion}
|
|
|
|
install -d -m 755 %{buildroot}%{_datadir}/applications/
|
|
|
|
install %{SOURCE1} %{buildroot}%{_datadir}/applications/
|
|
|
|
%endif
|
2007-01-15 23:10:37 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/{doxygen,doxytag}.1
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%attr(755,root,root) /usr/bin/doxywizard
|
2010-01-08 16:30:01 +00:00
|
|
|
%{_datadir}/applications/doxywizard.desktop
|
|
|
|
%attr(444,root,root) %doc %{_mandir}/man1/doxywizard.1.%{man_ext}
|
|
|
|
|
|
|
|
%if 0%{?mandriva_version} || 0%{?mdkversion}
|
2010-07-30 10:41:43 +00:00
|
|
|
|
2010-06-15 15:01:06 +00:00
|
|
|
%post
|
2010-01-08 16:30:01 +00:00
|
|
|
%update_menus
|
|
|
|
%{update_desktop_database}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?mandriva_version} || 0%{?mdkversion}
|
2010-07-30 10:41:43 +00:00
|
|
|
|
2010-06-15 15:01:06 +00:00
|
|
|
%postun
|
2010-01-08 16:30:01 +00:00
|
|
|
%clean_menus
|
|
|
|
%{clean_desktop_database}
|
|
|
|
%endif
|
2008-02-28 00:54:14 +00:00
|
|
|
|
2007-03-29 11:58:33 +00:00
|
|
|
%changelog
|