]> granicus.if.org Git - fribidi/commitdiff
Remove spec file. Nobody uses upstream spec files these days.
authorbehdad <behdad>
Tue, 15 Jan 2008 19:59:34 +0000 (19:59 +0000)
committerbehdad <behdad>
Tue, 15 Jan 2008 19:59:34 +0000 (19:59 +0000)
configure.ac
fribidi.spec.in [deleted file]

index a8ec382de4361fce1ed210cc7c8ca62c504c34c7..bee9d02c0bf1640f8625ac5cf3b26f82c08721ab 100644 (file)
@@ -3,10 +3,10 @@
 ## Use autoupdate to update this file for newer versions of autoconf.
 ## Use autoscan to check if you need to add something to this file.
 ##############################################################################
-## $Id: configure.ac,v 1.24 2006-01-31 03:23:12 behdad Exp $
+## $Id: configure.ac,v 1.25 2008-01-15 19:59:34 behdad Exp $
 ## $Auther: behdad $
-## $Date: 2006-01-31 03:23:12 $
-## $Revision: 1.24 $
+## $Date: 2008-01-15 19:59:34 $
+## $Revision: 1.25 $
 ## $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/configure.ac,v $
 ##############################################################################
 
@@ -44,7 +44,7 @@ m4_define(fribidi_version,
            fribidi_major_version.fribidi_minor_version.fribidi_micro_version))dnl
 
 AC_INIT([GNU FriBidi],fribidi_version(),[http://fribidi.org/bug])
-AC_REVISION([$Id: configure.ac,v 1.24 2006-01-31 03:23:12 behdad Exp $])
+AC_REVISION([$Id: configure.ac,v 1.25 2008-01-15 19:59:34 behdad Exp $])
 AC_CONFIG_SRCDIR(lib/fribidi.h)
 AC_CONFIG_HEADERS(config.h)
 AM_INIT_AUTOMAKE([gnits])
@@ -207,7 +207,6 @@ AC_SUBST(MISC_PACKAGES)
 
 # Generate output
 AC_CONFIG_FILES([fribidi.pc
-                fribidi.spec
                 lib/fribidi-config.h
                 Makefile
                 charset/Makefile
diff --git a/fribidi.spec.in b/fribidi.spec.in
deleted file mode 100644 (file)
index 056a7ff..0000000
+++ /dev/null
@@ -1,145 +0,0 @@
-# This spec file creates three packages:
-#
-#      Everything:
-#              (this is equivalent to two others together)
-#                      @PACKAGE@N-version-release-arch.rpm
-#      Runtime material: Shared library and command line tool
-#                      lib@PACKAGE@N-version-release-arch.rpm
-#      Development material: Static library and header files
-#              (requires lib@PACKAGE@N)
-#                      lib@PACKAGE@N-devel-version-release-arch.rpm
-#      Where N is the major version number.
-
-%define name @PACKAGE@
-%define ver @FRIBIDI_VERSION@
-%define major @FRIBIDI_MAJOR_VERSION@
-%define minor @FRIBIDI_MINOR_VERSION@
-%define micro @FRIBIDI_MICRO_VERSION@
-%define apiver @FRIBIDI_INTERFACE_VERSION@
-%define rel @FRIBIDI_RPM_RELEASE@
-%define prefix %{_prefix}
-
-Name: %{name}
-Version: %{ver}
-Release: %{rel}
-Serial: %{apiver}
-License: LGPL
-Source: http://prdownloads.sourceforge.net/%{name}/%{name}-%{ver}.tar.gz
-URL: http://%{name}.sourceforge.net/
-BuildRoot: %{_tmppath}/%{name}
-Summary: Library implementing the Unicode Bidirectional Algorithm
-Group: System/Libraries
-%description
-A library to handle bidirectional scripts (eg. hebrew, arabic), so that
-the display is done in the proper way; while the text data itself is
-always written in logical order.
-
-%package -n %{name}%{major}
-Summary: Library implementing the Unicode Bidirectional Algorithm
-Group: System/Libraries
-Provides: lib%{name}%{major}
-Provides: lib%{name}%{major}-devel
-%description -n %{name}%{major}
-A library to handle bidirectional scripts (eg. hebrew, arabic), so that
-the display is done in the proper way; while the text data itself is
-always written in logical order.
-
-Install %{name}%{major} if you want to run or develop programs that use %{name}.
-
-
-%package -n lib%{name}%{major}
-Summary: Library implementing the Unicode Bidirectional Algorithm
-Group: System/Libraries
-Conflicts: %{name}%{major}
-%description -n lib%{name}%{major}
-The lib%{name}%{major} package includes the shared libraries for the %{name}%{major} package.
-
-Install lib%{name}%{major} if you want to run programs which use %{name}.
-
-
-%package -n lib%{name}%{major}-devel
-Summary: Library implementing the Unicode Bidirectional Algorithm
-Group: Development/C
-Requires: lib%{name}%{major} = %{ver}
-Conflicts: %{name}%{major}
-%description -n lib%{name}%{major}-devel
-The lib%{name}%{major}-devel package includes the static libraries and header files
-for the %{name}%{major} package.
-
-Install lib%{name}%{major}-devel if you want to develop programs which will use
-%{name}.
-
-
-%prep
-%setup
-
-%build
-if [ ! -x ./configure ];then 
-./bootstrap
-fi
-
-./configure %{_target_platform}                                         \
-       --prefix=%{_prefix}             --exec-prefix=%{_exec_prefix}   \
-       --bindir=%{_bindir}             --sbindir=%{_sbindir}           \
-       --sysconfdir=%{_sysconfdir}     --datadir=%{_datadir}           \
-       --includedir=%{_includedir}                                     \
-       --libdir=%{_libdir}             --libexecdir=%{_libexecdir}     \
-       --mandir=%{_mandir}             --infodir=%{_infodir}           \
-       --localstatedir=%{_localstatedir} --sharedstatedir=%{_sharedstatedir}
-make OPT_CFLAGS="$RPM_OPT_FLAGS"
-
-%install
-rm -rf "$RPM_BUILD_ROOT"
-mkdir -p "$RPM_BUILD_ROOT%{prefix}"
-make DESTDIR="$RPM_BUILD_ROOT" install
-
-
-%clean
-rm -rf "$RPM_BUILD_ROOT"
-
-%post -n %{name}%{major} -p /sbin/ldconfig
-%postun -n %{name}%{major} -p /sbin/ldconfig
-
-%post -n lib%{name}%{major} -p /sbin/ldconfig
-%postun -n lib%{name}%{major} -p /sbin/ldconfig
-
-%files -n %{name}%{major}
-%defattr(-,root,root)
-%doc README AUTHORS COPYING ChangeLog TODO THANKS NEWS
-%{_bindir}/%{name}
-%{_bindir}/%{name}-config
-%{_libdir}/*.so.*
-%{_libdir}/pkgconfig/%{name}.pc
-%{_libdir}/*.a
-%{_libdir}/*.la
-%{_libdir}/*.so
-%{_includedir}/*
-
-%files -n lib%{name}%{major}
-%defattr(-, root, root)
-%doc README AUTHORS COPYING ChangeLog TODO THANKS NEWS
-%{_bindir}/%{name}
-%{_bindir}/%{name}-config
-%{_libdir}/*.so.*
-
-%files -n lib%{name}%{major}-devel
-%defattr(-, root, root)
-%{_libdir}/*.a
-%{_libdir}/*.la
-%{_libdir}/*.so
-%{_includedir}/*
-%{_libdir}/pkgconfig/%{name}.pc
-
-
-%changelog
-
-* Tue Mar 12 2002  Behdad Esfahbod <behdad@bamdad.org>
-- Use License instead of Copyright
-- Moved pkgconfig to devel package instead of lib package.
-
-* Sat Jan 26 2002  Behdad Esfahbod <behdad@bamdad.org>
-- CFLAGS changed to OPT_CFLAGS.
-
-* Wed Jan  9 2002  Behdad Esfahbod <behdad@bamdad.org>
-- First spec released.