You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
4.0 KiB
141 lines
4.0 KiB
13 years ago
|
# Default version for this component
|
||
13 years ago
|
%define kdecomp ktechlab
|
||
13 years ago
|
|
||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||
12 years ago
|
%if "%{?tde_prefix}" != "/usr"
|
||
13 years ago
|
%define _variant .opt
|
||
|
%endif
|
||
|
|
||
|
# TDE 3.5.13 specific building variables
|
||
12 years ago
|
%define tde_bindir %{tde_prefix}/bin
|
||
|
%define tde_datadir %{tde_prefix}/share
|
||
|
%define tde_docdir %{tde_datadir}/doc
|
||
|
%define tde_includedir %{tde_prefix}/include
|
||
|
%define tde_libdir %{tde_prefix}/%{_lib}
|
||
|
%define tde_mandir %{tde_datadir}/man
|
||
|
%define tde_appdir %{tde_datadir}/applications
|
||
|
|
||
|
%define tde_tdeappdir %{tde_appdir}/kde
|
||
|
%define tde_tdedocdir %{tde_docdir}/kde
|
||
|
%define tde_tdeincludedir %{tde_includedir}/kde
|
||
|
%define tde_tdelibdir %{tde_libdir}/trinity
|
||
|
|
||
|
%define _docdir %{tde_docdir}
|
||
13 years ago
|
|
||
|
|
||
|
Name: trinity-%{kdecomp}
|
||
13 years ago
|
Summary: circuit simulator for microcontrollers and electronics [Trinity]
|
||
12 years ago
|
Version: 0.3
|
||
|
Release: 2%{?dist}%{?_variant}
|
||
13 years ago
|
|
||
|
License: GPLv2+
|
||
|
Group: Applications/Utilities
|
||
|
|
||
|
Vendor: Trinity Project
|
||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||
|
URL: http://www.trinitydesktop.org/
|
||
|
|
||
12 years ago
|
Prefix: %{tde_prefix}
|
||
13 years ago
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||
|
|
||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||
13 years ago
|
|
||
|
# [ktechlab] Fix list of icons to install [Bug #990]
|
||
13 years ago
|
Patch0: ktechlab-3.5.13-duplicate_icons.patch
|
||
12 years ago
|
# [ktechlab] Missing LDFLAGS cause FTBFS
|
||
|
Patch1: ktechlab-3.5.13-missing_ldflags.patch
|
||
13 years ago
|
|
||
|
BuildRequires: tqtinterface-devel
|
||
12 years ago
|
BuildRequires: trinity-tdelibs-devel
|
||
|
BuildRequires: trinity-tdebase-devel
|
||
13 years ago
|
BuildRequires: desktop-file-utils
|
||
|
BuildRequires: gettext
|
||
|
|
||
|
|
||
|
%description
|
||
13 years ago
|
KTechlab is a circuit simulator with a nice, clickable and discoverable
|
||
|
interface. It supports many discrete components, logic circuits as well
|
||
|
as PIC programming in its own Basic dialect and some form of assembler.
|
||
13 years ago
|
|
||
13 years ago
|
Homepage: http://ktechlab.org/
|
||
13 years ago
|
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n applications/%{kdecomp}
|
||
13 years ago
|
%patch0 -p1
|
||
12 years ago
|
%patch1 -p1
|
||
13 years ago
|
|
||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||
13 years ago
|
%__sed -i admin/acinclude.m4.in \
|
||
12 years ago
|
-e "s|/usr/include/tqt|%{tde_includedir}/tqt|g" \
|
||
|
-e "s|kde_htmldir='.*'|kde_htmldir='%{tde_tdedocdir}/HTML'|g"
|
||
13 years ago
|
|
||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||
13 years ago
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh" || %__cp -f "/usr/share/libtool/ltmain.sh" "admin/ltmain.sh"
|
||
13 years ago
|
%__make -f "admin/Makefile.common"
|
||
|
|
||
|
|
||
|
%build
|
||
12 years ago
|
unset QTDIR; . /etc/profile.d/qt.sh
|
||
|
export PATH="%{tde_bindir}:${PATH}"
|
||
|
export LDFLAGS="-L%{tde_libdir} -I%{tde_includedir}"
|
||
13 years ago
|
|
||
|
%configure \
|
||
12 years ago
|
--prefix=%{tde_prefix} \
|
||
|
--exec-prefix=%{tde_prefix} \
|
||
|
--bindir=%{tde_bindir} \
|
||
|
--datadir=%{tde_datadir} \
|
||
|
--libdir=%{tde_libdir} \
|
||
|
--mandir=%{tde_mandir} \
|
||
|
--includedir=%{tde_tdeincludedir} \
|
||
|
--disable-rpath \
|
||
|
--with-extra-includes=%{tde_includedir}/tqt
|
||
13 years ago
|
|
||
|
%__make %{?_smp_mflags}
|
||
|
|
||
|
|
||
|
%install
|
||
12 years ago
|
export PATH="%{tde_bindir}:${PATH}"
|
||
13 years ago
|
%__rm -rf %{buildroot}
|
||
|
%__make install DESTDIR=%{buildroot}
|
||
|
|
||
13 years ago
|
%find_lang %{kdecomp}
|
||
13 years ago
|
|
||
|
%clean
|
||
|
%__rm -rf %{buildroot}
|
||
|
|
||
|
|
||
|
%post
|
||
12 years ago
|
touch --no-create %{tde_datadir}/icons/hicolor || :
|
||
|
gtk-update-icon-cache --quiet %{tde_datadir}/icons/hicolor || :
|
||
13 years ago
|
|
||
|
%postun
|
||
12 years ago
|
touch --no-create %{tde_datadir}/icons/hicolor || :
|
||
|
gtk-update-icon-cache --quiet %{tde_datadir}/icons/hicolor || :
|
||
13 years ago
|
|
||
|
|
||
13 years ago
|
%files -f %{kdecomp}.lang
|
||
13 years ago
|
%defattr(-,root,root,-)
|
||
12 years ago
|
%{tde_bindir}/ktechlab
|
||
|
%{tde_bindir}/microbe
|
||
|
%{tde_datadir}/applnk/Development/ktechlab.desktop
|
||
|
%{tde_datadir}/apps/katepart/syntax/microbe.xml
|
||
|
%{tde_datadir}/apps/ktechlab
|
||
|
%{tde_datadir}/config.kcfg/ktechlab.kcfg
|
||
|
%{tde_tdedocdir}/HTML/en/ktechlab/
|
||
|
%{tde_datadir}/icons/hicolor/*/*/*.png
|
||
|
%{tde_datadir}/mimelnk/application/x-circuit.desktop
|
||
|
%{tde_datadir}/mimelnk/application/x-flowcode.desktop
|
||
|
%{tde_datadir}/mimelnk/application/x-ktechlab.desktop
|
||
|
%{tde_datadir}/mimelnk/application/x-microbe.desktop
|
||
13 years ago
|
|
||
|
|
||
|
%Changelog
|
||
13 years ago
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 0.3-2
|
||
|
- Fix HTML directory location
|
||
|
|
||
13 years ago
|
* Thu Nov 24 2011 Francois Andriot <francois.andriot@free.fr> - 0.3-1
|
||
13 years ago
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
||
13 years ago
|
- Fix list of icons to install [Bug #990]
|