Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
21288bf928 | ||
|
|
3383701ca5 | ||
|
|
4d3cfcfeb3 |
4 changed files with 108 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1 +1 @@
|
|||
gdl-0.7.3.tar.bz2
|
||||
gdl-0.6.1.tar.gz
|
||||
|
|
|
|||
106
anjuta-gdl.spec
Normal file
106
anjuta-gdl.spec
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
Name: anjuta-gdl
|
||||
Summary: Components and library for GNOME development tools
|
||||
Version: 0.6.1
|
||||
Release: 5%{?dist}
|
||||
License: GPL
|
||||
Group: Development/Libraries
|
||||
Source: http://ftp.gnome.org/pub/GNOME/sources/gdl/0.6/gdl-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
URL: http://www.gnome.org
|
||||
BuildRequires: gtk2-devel, libgnomeui-devel, libbonoboui-devel, libxml2-devel, librsvg2-devel, intltool, gettext, libglade2-devel, libgnome-devel
|
||||
|
||||
%description
|
||||
This package contains components and libraries that are intended to be
|
||||
shared between GNOME development tools, including gnome-build and anjuta2.
|
||||
|
||||
%package devel
|
||||
Summary: Libraries and include files for gdl
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: gtk2-devel, libxml2-devel, libglade2-devel, libgnome-devel, libbonoboui-devel
|
||||
|
||||
%description devel
|
||||
Libraries and header files if you want to make use of the gdl library in your
|
||||
own programs.
|
||||
|
||||
%prep
|
||||
%setup -q -n gdl-%{version}
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/gdl/images
|
||||
make DESTDIR=${RPM_BUILD_ROOT} install
|
||||
find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';'
|
||||
%find_lang gdl-1
|
||||
|
||||
%clean
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files -f gdl-1.lang
|
||||
%doc AUTHORS COPYING ChangeLog NEWS README
|
||||
%defattr (-, root, root)
|
||||
%{_libdir}/libgdl-1.so.*
|
||||
%{_datadir}/gdl
|
||||
|
||||
%files devel
|
||||
%defattr (-, root, root)
|
||||
%{_includedir}/libgdl-1.0
|
||||
%{_libdir}/libgdl-1.so
|
||||
%{_libdir}/pkgconfig/gdl-1.0.pc
|
||||
|
||||
%changelog
|
||||
* Sat Sep 30 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.1-5
|
||||
- rebuild
|
||||
|
||||
* Sun Jul 09 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.1-4
|
||||
- fixed the missing -devel package deps properly (thanks Mike)
|
||||
|
||||
* Sat Jul 08 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.1-3
|
||||
- spec file fixes
|
||||
- fixed missing -devel package deps
|
||||
- fixed post/postun
|
||||
|
||||
* Wed May 31 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.1-2
|
||||
- Added addition buildreqs
|
||||
|
||||
* Tue May 23 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.1-1
|
||||
- bump to new version
|
||||
|
||||
* Sun Apr 23 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.0-5
|
||||
- added --disable-static and removed the .a delete line
|
||||
- very minor spec changes
|
||||
- added find_lang again
|
||||
- Thanks to rc040203 -at- freenet.de for spec changes
|
||||
|
||||
* Sat Apr 22 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.0-4
|
||||
- Added %%find_lang
|
||||
- Altered all buildreqs to be -devel
|
||||
- Added requires gtk2
|
||||
|
||||
* Mon Apr 03 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.0-3
|
||||
- Fixes to Requires (made to BuildRequires)
|
||||
|
||||
* Tue Feb 21 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.0-2
|
||||
- Multiple fixes to the spec file
|
||||
- Renamed rpm to anjuta-gdl to avoid conflict with another package called gdl
|
||||
|
||||
* Sat Feb 18 2006 Paul F. Johnson <paul@all-the-johnsons.co.uk> 0.6.0-1
|
||||
- Inital import for FC
|
||||
- Large changes to the original spec file provided in the src file
|
||||
|
||||
* Tue Aug 10 2004 Pierre Sarrazin <http://sarrazip.com/>
|
||||
- Update for version 0.4.0
|
||||
|
||||
* Tue Oct 24 2002 Jean Schurger <jschurger@schurger.org>
|
||||
- Update for gnome 2 version
|
||||
|
||||
* Wed Aug 8 2001 Jens Finke <jens@gnome.org>
|
||||
- created spec file
|
||||
|
|
@ -1 +0,0 @@
|
|||
Renamed to libgdl.
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
6dfe748f15799f46cd8cfb8f80837ed0 gdl-0.6.1.tar.gz
|
||||
Reference in a new issue