CBEm4.spec
author xlucas
Tue, 15 Dec 2009 11:02:29 +0000
changeset 50 c265167ce53c
parent 48 7279c3f9140d
permissions -rw-r--r--
2009-12-15 Lukas (Luc) Oboril <[email protected]> * CBEcmake.spec: add fix Boost and JNI find modules
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     1
#
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     2
# spec file for package CBEm4
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     3
#
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     4
# Copyright 2008 Sun Microsystems, Inc.
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     5
# This file and all modifications and additions to the pristine
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     6
# package are under the same license as the package itself.
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     7
#
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     8
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
     9
%include CBE.inc
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    10
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    11
Name:			CBEm4
48
7279c3f9140d 2009-11-15 Lukas (Luc) Oboril <[email protected]> * CBEm4: bump to 1.4.12, as same as Opensolaris has * CBEautoconf.spec: bump to 2.63 as same as Opensolaris has * CBEcoreutils.spec: bump to 7.4 as same as Opensolaris has * CBErsync.spec: bump to 3.0.6
xlucas
parents: 10
diff changeset
    12
Version:		1.4.12
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    13
License:		GPL
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    14
Group:			system/cbe
7
fe5233293a17 2008-04-20 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 1
diff changeset
    15
Distribution:		Desktop CBE
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    16
Vendor:			Sun Microsystems, Inc.
7
fe5233293a17 2008-04-20 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 1
diff changeset
    17
Summary:		Desktop CBE: GNU m4
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    18
Source:			ftp://ftp.gnu.org/pub/gnu/m4/m4-%{version}.tar.gz
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    19
URL:			http://www.gnu.org/
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    20
BuildRoot:		%{_tmppath}/%{name}-%{version}-build
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    21
SUNW_BaseDir:		%{_prefix}
7
fe5233293a17 2008-04-20 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 1
diff changeset
    22
SUNW_Category:          CBE,KDE,JDS,application
10
a65a967018ee 2008-06-11 Laszlo (Laca) Peter <[email protected]>
laca
parents: 9
diff changeset
    23
SUNW_Rev:		%{?cbe_version}%{?!cbe_version:0.0}
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    24
%include default-depend.inc
10
a65a967018ee 2008-06-11 Laszlo (Laca) Peter <[email protected]>
laca
parents: 9
diff changeset
    25
BuildRequires: %make_dep
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    26
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    27
%description
7
fe5233293a17 2008-04-20 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 1
diff changeset
    28
GNU m4 for the Desktop build environment
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    29
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    30
%prep
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    31
%setup -q -n m4-%{version}
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    32
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    33
%build
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    34
CPUS=`/usr/sbin/psrinfo | grep on-line | wc -l | tr -d ' '`
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    35
if test "x$CPUS" = "x" -o $CPUS = 0; then
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    36
  CPUS=1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    37
fi
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    38
CFLAGS="$RPM_OPT_FLAGS"			\
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    39
./configure --prefix=%{_prefix}         \
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    40
    --infodir=%{_infodir}
10
a65a967018ee 2008-06-11 Laszlo (Laca) Peter <[email protected]>
laca
parents: 9
diff changeset
    41
gmake -j$CPUS
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    42
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    43
%install
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    44
rm -rf $RPM_BUILD_ROOT
10
a65a967018ee 2008-06-11 Laszlo (Laca) Peter <[email protected]>
laca
parents: 9
diff changeset
    45
gmake install \
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    46
    prefix=$RPM_BUILD_ROOT%{_prefix} \
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    47
    infodir=$RPM_BUILD_ROOT%{_infodir}
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    48
rm -rf $RPM_BUILD_ROOT%{_infodir}
9
6b2dd986c0ad 2008-05-27 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 7
diff changeset
    49
rm -rf $RPM_BUILD_ROOT%{_libdir}
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    50
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    51
%clean
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    52
rm -rf $RPM_BUILD_ROOT
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    53
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    54
%files
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    55
%defattr(-, root, bin)
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    56
%dir %attr (0755, root, bin) %{_bindir}
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    57
%{_bindir}/*
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    58
%dir %attr (0755, root, sys) %{_datadir}
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    59
%{_mandir}/man1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    60
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    61
%changelog
48
7279c3f9140d 2009-11-15 Lukas (Luc) Oboril <[email protected]> * CBEm4: bump to 1.4.12, as same as Opensolaris has * CBEautoconf.spec: bump to 2.63 as same as Opensolaris has * CBEcoreutils.spec: bump to 7.4 as same as Opensolaris has * CBErsync.spec: bump to 3.0.6
xlucas
parents: 10
diff changeset
    62
* Sat Nov 15 2009 <[email protected]>
7279c3f9140d 2009-11-15 Lukas (Luc) Oboril <[email protected]> * CBEm4: bump to 1.4.12, as same as Opensolaris has * CBEautoconf.spec: bump to 2.63 as same as Opensolaris has * CBEcoreutils.spec: bump to 7.4 as same as Opensolaris has * CBErsync.spec: bump to 3.0.6
xlucas
parents: 10
diff changeset
    63
- bump to 1.4.12 as same as Opensolaris has
10
a65a967018ee 2008-06-11 Laszlo (Laca) Peter <[email protected]>
laca
parents: 9
diff changeset
    64
* Wed Jun 11 2008  <[email protected]>
a65a967018ee 2008-06-11 Laszlo (Laca) Peter <[email protected]>
laca
parents: 9
diff changeset
    65
- update rev, make depedency
9
6b2dd986c0ad 2008-05-27 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 7
diff changeset
    66
* Tue May 27 2008  <[email protected]>
6b2dd986c0ad 2008-05-27 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 7
diff changeset
    67
- bump to 1.4.9
6b2dd986c0ad 2008-05-27 Lukas (Luc) Oboril <[email protected]>
xlucas
parents: 7
diff changeset
    68
- remove ${_libdir} files from install
1
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    69
* Tue Aug 22 2006  <[email protected]>
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    70
- fix %files attributes
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    71
- move to /opt/jdsbld by default
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    72
* Wed Aug 16 2006  <[email protected]>
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    73
- add missing deps
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    74
- bump to 1.4.5
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    75
* Fri Sep 02 2004  <[email protected]>
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    76
- remove unpackaged files
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    77
* Sun Sep 05 2004  <[email protected]>
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    78
- enable parallel build
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    79
* Fri Mar 05 2004  <[email protected]>
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    80
- fix %files
102c9870ef63 initial import -- still incomplete
laca
parents:
diff changeset
    81
- change the pkg category