2004-11-08 04:39:51 +00:00
|
|
|
Name: lablgl
|
2005-02-12 11:37:23 +00:00
|
|
|
Version: 1.01
|
|
|
|
Release: 2
|
2004-11-08 04:39:51 +00:00
|
|
|
Epoch: 0
|
|
|
|
Summary: LablGL is an OpenGL interface for Objective Caml
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: BSD
|
|
|
|
URL: http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgl.html
|
2005-02-12 11:37:23 +00:00
|
|
|
Source: http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/lablgl-1.01.tar.gz
|
2004-11-08 04:39:51 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2005-02-12 11:37:23 +00:00
|
|
|
BuildRequires: XFree86-devel, freeglut-devel
|
|
|
|
BuildRequires: ocaml >= 0:3.08, labltk >= 0:3.08, camlp4 >= 0:3.08
|
|
|
|
BuildRequires: tcl-devel, tk-devel
|
|
|
|
Requires: ocaml >= 0:3.08, labltk >= 0:3.08
|
2004-11-08 04:39:51 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
LablGL is is an Objective Caml interface to OpenGL. Support is
|
|
|
|
included for use inside LablTk, and LablGTK also includes specific
|
|
|
|
support for LablGL. It can be used either with proprietary OpenGL
|
|
|
|
implementations (SGI, Digital Unix, Solaris...), with XFree86 GLX
|
|
|
|
extension, or with open-source Mesa.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
cat > Makefile.config <<EOF
|
|
|
|
CAMLC = ocamlc.opt
|
|
|
|
CAMLOPT = ocamlopt.opt
|
|
|
|
BINDIR = /usr/bin
|
|
|
|
XINCLUDES = -I/usr/X11R6/include
|
|
|
|
XLIBS = -L/usr/X11R6/lib -lXext -lXmu -lX11
|
|
|
|
TKINCLUDES = -I/usr/include
|
|
|
|
GLINCLUDES =
|
|
|
|
GLLIBS = -lGL -lGLU
|
2005-02-12 11:37:23 +00:00
|
|
|
GLUTLIBS = -lglut -lXxf86vm
|
2004-11-08 04:39:51 +00:00
|
|
|
RANLIB = :
|
|
|
|
LIBDIR = %{_libdir}/ocaml
|
|
|
|
DLLDIR = %{_libdir}/ocaml/stublibs
|
|
|
|
INSTALLDIR = %{_libdir}/ocaml/lablGL
|
|
|
|
TOGLDIR=Togl
|
|
|
|
COPTS = $RPM_OPT_FLAGS
|
|
|
|
EOF
|
2005-02-12 11:37:23 +00:00
|
|
|
make
|
2004-11-08 04:39:51 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/lablGL
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs
|
|
|
|
make INSTALLDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml/lablGL \
|
|
|
|
DLLDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs \
|
|
|
|
BINDIR=$RPM_BUILD_ROOT%{_bindir} \
|
|
|
|
install
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc CHANGES COPYRIGHT README Togl/examples LablGlut/examples
|
|
|
|
%{_bindir}/*
|
|
|
|
%{_libdir}/ocaml/lablGL
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so
|
|
|
|
|
|
|
|
%changelog
|
2005-02-12 11:37:23 +00:00
|
|
|
* Sat Feb 12 2005 Gerard Milmeister <gemi@bluewin.ch> - 0:1.01-2
|
|
|
|
- Removed %{_smp_mflags} as it breaks the build
|
|
|
|
|
|
|
|
* Thu Aug 19 2004 Gerard Milmeister <gemi@bluewin.ch> - 0:1.01-0.fdr.1
|
|
|
|
- New Version 1.01
|
|
|
|
|
2004-11-08 04:39:51 +00:00
|
|
|
* Mon Dec 1 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:1.00-0.fdr.4
|
|
|
|
- Patch to used GL/freeglut.h instead of GL/glut.h
|
|
|
|
- Add BuildRequires for labltk
|
|
|
|
|
|
|
|
* Fri Nov 28 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:1.00-0.fdr.3
|
|
|
|
- Add BuildRequires for camlp4
|