4b561b6e90
Updated the configure script for *BSD and GCC 2.95 (-fno-exceptions) Added install rule to documentation directory. Dumped old packages directory; added traditional RPM spec file and EPM list file (that replace all of the packages stuff) The FLUID man page is now "fluid.1" for the formatted page and "fluid.man" for the non-formatted page, since only IRIX uses pack'd formatted man pages. Whew! git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1090 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
86 lines
2.4 KiB
RPMSpec
86 lines
2.4 KiB
RPMSpec
#
|
|
# "$Id: fltk.spec,v 1.1.2.1 2000/04/25 22:15:41 mike Exp $"
|
|
#
|
|
# RPM spec file for FLTK.
|
|
#
|
|
# Copyright 1998-2000 by Bill Spitzak and others.
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Library General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
# USA.
|
|
#
|
|
# Please report all bugs and problems to "fltk-bugs@easysw.com".
|
|
#
|
|
|
|
%define version 1.0.8
|
|
%define release 1
|
|
%define prefix /usr
|
|
|
|
Summary: Fast Light Tool Kit (FLTK)
|
|
Name: fltk
|
|
Version: %{version}
|
|
Release: ${release}
|
|
Copyright: LGPL
|
|
Group: Development/Libraries
|
|
Source: ftp://ftp.fltk.org/pub/fltk/%{version}/fltk-%{version}-source.tar.gz
|
|
URL: http://www.fltk.org
|
|
Packager: Michael Sweet <mike@easysw.com>
|
|
%description
|
|
The Fast Light Tool Kit ("FLTK", pronounced "fulltick") is a LGPL'd
|
|
C++ graphical user interface toolkit for X (UNIX(r)), OpenGL(r),
|
|
and Microsoft(r) Windows(r) NT 4.0, 95, or 98. It was originally
|
|
developed by Mr. Bill Spitzak and is currently maintained by a
|
|
small group of developers across the world with a central
|
|
repository in the US.
|
|
|
|
# use buildroot so as not to disturb the version already installed
|
|
BuildRoot: /tmp/rpmbuild
|
|
|
|
%package devel
|
|
Summary: FLTK - development environment
|
|
Group: Development/Libraries
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --enable-shared
|
|
|
|
# If we got this far, all prerequisite libraries must be here.
|
|
make
|
|
|
|
%install
|
|
# these lines just make sure the directory structure in the
|
|
# RPM_BUILD_ROOT exists
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT
|
|
|
|
make prefix=$RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
|
|
%{prefix}/bin/*
|
|
%{prefix}/include/FL/*
|
|
%{prefix}/include/Fl
|
|
%{prefix}/lib/*
|
|
%{prefix}/share/doc/fltk/*
|
|
|
|
#
|
|
# End of "$Id: fltk.spec,v 1.1.2.1 2000/04/25 22:15:41 mike Exp $".
|
|
#
|