2000-02-26 00:29:44 +08:00
|
|
|
# Per-platform rpm configuration file.
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# ---- per-platform macros.
|
|
|
|
#
|
Hi!
I'd like to start building sparc64 packages (eventhough the install rule
details are yet to be designed - IMHO if 64bit SPARC userland is going into
7.0 we should rebuild all packages into 64bit in the next months or so to
have time to chase bugs etc.), and this is about what I need.
Basically I'd like to have %{_lib} to stand for the last part (normally
"lib") of dirname for directories like /lib, /usr/lib, /usr/X11R6/lib
because on sparc64-linux they are /lib64, /usr/lib64, /usr/X11R6/lib64 (and
on Solaris /lib/sparcv9, /usr/lib/sparcv9 etc.), so that one can use things
like
/usr/%{_lib} in the spec files.
Another thing which I need is an arch specific build root policy.
This patch does a few things:
1) add installplatform into EXTRA_DIST files, so that it is actually invoked
during rpm build not from CVS
2) Define %_lib lib and let target specific macros override it
3) Split __spec_install_post into __arch_install_post and __os_install_post,
--buildpolicy now specifies the __os_install_post part only. spec files
can still override the __arch_install_post if the want to.
brp-sparc64-linux is used to move 64bit libraries to */lib64 directories
from */lib directories if make install of some package left them there.
4) Change installplatform so that on sparc* it creates both sparc and
sparc64 target macro dirs (/usr/lib/rpm/sparc{,64}-redhat-linux in
sparc*-redhat-linux case).
CVS patchset: 3685
CVS date: 2000/04/19 16:03:49
2000-04-20 00:03:49 +08:00
|
|
|
%_arch @RPMRC_ARCH@
|
2000-02-26 00:29:44 +08:00
|
|
|
%_vendor @RPMCANONVENDOR@
|
|
|
|
%_os @RPMCANONOS@
|
2001-06-26 04:01:42 +08:00
|
|
|
%_gnu @RPMRC_GNU@
|
2000-02-26 00:29:44 +08:00
|
|
|
%_target_platform %{_target_cpu}-%{_vendor}-%{_target_os}
|
|
|
|
%optflags @RPMRC_OPTFLAGS@
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# ---- configure macros.
|
|
|
|
#
|
|
|
|
%_prefix @prefix@
|
|
|
|
%_exec_prefix @exec_prefix@
|
|
|
|
%_bindir @bindir@
|
|
|
|
%_sbindir @sbindir@
|
|
|
|
%_libexecdir @libexecdir@
|
|
|
|
%_datadir @datadir@
|
|
|
|
%_sysconfdir @sysconfdir@
|
|
|
|
%_sharedstatedir @sharedstatedir@
|
|
|
|
%_localstatedir @localstatedir@
|
Hi!
I'd like to start building sparc64 packages (eventhough the install rule
details are yet to be designed - IMHO if 64bit SPARC userland is going into
7.0 we should rebuild all packages into 64bit in the next months or so to
have time to chase bugs etc.), and this is about what I need.
Basically I'd like to have %{_lib} to stand for the last part (normally
"lib") of dirname for directories like /lib, /usr/lib, /usr/X11R6/lib
because on sparc64-linux they are /lib64, /usr/lib64, /usr/X11R6/lib64 (and
on Solaris /lib/sparcv9, /usr/lib/sparcv9 etc.), so that one can use things
like
/usr/%{_lib} in the spec files.
Another thing which I need is an arch specific build root policy.
This patch does a few things:
1) add installplatform into EXTRA_DIST files, so that it is actually invoked
during rpm build not from CVS
2) Define %_lib lib and let target specific macros override it
3) Split __spec_install_post into __arch_install_post and __os_install_post,
--buildpolicy now specifies the __os_install_post part only. spec files
can still override the __arch_install_post if the want to.
brp-sparc64-linux is used to move 64bit libraries to */lib64 directories
from */lib directories if make install of some package left them there.
4) Change installplatform so that on sparc* it creates both sparc and
sparc64 target macro dirs (/usr/lib/rpm/sparc{,64}-redhat-linux in
sparc*-redhat-linux case).
CVS patchset: 3685
CVS date: 2000/04/19 16:03:49
2000-04-20 00:03:49 +08:00
|
|
|
%_lib @LIB@
|
|
|
|
%_libdir @LIBDIR@
|
2000-02-26 00:29:44 +08:00
|
|
|
%_includedir @includedir@
|
|
|
|
%_oldincludedir @oldincludedir@
|
|
|
|
%_infodir @infodir@
|
|
|
|
%_mandir @mandir@
|
2001-01-18 00:00:36 +08:00
|
|
|
%_initrddir %{_sysconfdir}/rc.d/init.d
|
2000-02-26 00:29:44 +08:00
|
|
|
|
2000-06-01 13:36:14 +08:00
|
|
|
%_defaultdocdir @DEFAULTDOCDIR@
|
|
|
|
|
2001-06-26 04:01:42 +08:00
|
|
|
#==============================================================================
|
|
|
|
# ---- configure and makeinstall.
|
|
|
|
#
|
|
|
|
%configure \
|
|
|
|
CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
|
|
|
|
CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
|
|
|
|
FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
|
|
|
|
%{?__libtoolize:[ -f configure.in ] && %{__libtoolize} --copy --force} ; \
|
|
|
|
./configure %{_target_platform} \\\
|
|
|
|
--prefix=%{_prefix} \\\
|
|
|
|
--exec-prefix=%{_exec_prefix} \\\
|
|
|
|
--bindir=%{_bindir} \\\
|
|
|
|
--sbindir=%{_sbindir} \\\
|
|
|
|
--sysconfdir=%{_sysconfdir} \\\
|
|
|
|
--datadir=%{_datadir} \\\
|
|
|
|
--includedir=%{_includedir} \\\
|
|
|
|
--libdir=%{_libdir} \\\
|
|
|
|
--libexecdir=%{_libexecdir} \\\
|
|
|
|
--localstatedir=%{_localstatedir} \\\
|
|
|
|
--sharedstatedir=%{_sharedstatedir} \\\
|
|
|
|
--mandir=%{_mandir} \\\
|
|
|
|
--infodir=%{_infodir}
|
|
|
|
|
|
|
|
%makeinstall \
|
|
|
|
make \\\
|
|
|
|
prefix=%{?buildroot:%{buildroot}}%{_prefix} \\\
|
|
|
|
exec_prefix=%{?buildroot:%{buildroot}}%{_exec_prefix} \\\
|
|
|
|
bindir=%{?buildroot:%{buildroot}}%{_bindir} \\\
|
|
|
|
sbindir=%{?buildroot:%{buildroot}}%{_sbindir} \\\
|
|
|
|
sysconfdir=%{?buildroot:%{buildroot}}%{_sysconfdir} \\\
|
|
|
|
datadir=%{?buildroot:%{buildroot}}%{_datadir} \\\
|
|
|
|
includedir=%{?buildroot:%{buildroot}}%{_includedir} \\\
|
|
|
|
libdir=%{?buildroot:%{buildroot}}%{_libdir} \\\
|
|
|
|
libexecdir=%{?buildroot:%{buildroot}}%{_libexecdir} \\\
|
|
|
|
localstatedir=%{?buildroot:%{buildroot}}%{_localstatedir} \\\
|
|
|
|
sharedstatedir=%{?buildroot:%{buildroot}}%{_sharedstatedir} \\\
|
|
|
|
mandir=%{?buildroot:%{buildroot}}%{_mandir} \\\
|
|
|
|
infodir=%{?buildroot:%{buildroot}}%{_infodir} \\\
|
|
|
|
install
|
|
|
|
|
2001-07-11 22:23:01 +08:00
|
|
|
%_smp_mflags %([ -z "$RPM_BUILD_NCPUS" ] \
|
|
|
|
&& RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \
|
|
|
|
[ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-j${RPM_BUILD_NCPUS}")
|
|
|
|
|
2001-06-26 04:01:42 +08:00
|
|
|
@MULTILIBSTART@
|
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Multilibs
|
|
|
|
%_multilibno @MULTILIBNO@
|
|
|
|
%_multilibpatt (/%{_lib}|/usr/%{_lib}(|/gconv)|/usr/local/%{_lib}|/usr/X11R6/%{_lib}|/opt/%{_lib})/[^/]*\\.([oa]|la|so[0-9.]*)$
|
|
|
|
@MULTILIBEND@
|
|
|
|
|
2000-02-26 00:29:44 +08:00
|
|
|
#==============================================================================
|
|
|
|
# ---- Build policy macros.
|
|
|
|
#
|
2001-06-26 04:01:42 +08:00
|
|
|
#---------------------------------------------------------------------
|
|
|
|
# Expanded at end of %install scriptlet.
|
2000-02-26 00:29:44 +08:00
|
|
|
#
|
2000-07-06 04:39:15 +08:00
|
|
|
|
Hi!
I'd like to start building sparc64 packages (eventhough the install rule
details are yet to be designed - IMHO if 64bit SPARC userland is going into
7.0 we should rebuild all packages into 64bit in the next months or so to
have time to chase bugs etc.), and this is about what I need.
Basically I'd like to have %{_lib} to stand for the last part (normally
"lib") of dirname for directories like /lib, /usr/lib, /usr/X11R6/lib
because on sparc64-linux they are /lib64, /usr/lib64, /usr/X11R6/lib64 (and
on Solaris /lib/sparcv9, /usr/lib/sparcv9 etc.), so that one can use things
like
/usr/%{_lib} in the spec files.
Another thing which I need is an arch specific build root policy.
This patch does a few things:
1) add installplatform into EXTRA_DIST files, so that it is actually invoked
during rpm build not from CVS
2) Define %_lib lib and let target specific macros override it
3) Split __spec_install_post into __arch_install_post and __os_install_post,
--buildpolicy now specifies the __os_install_post part only. spec files
can still override the __arch_install_post if the want to.
brp-sparc64-linux is used to move 64bit libraries to */lib64 directories
from */lib directories if make install of some package left them there.
4) Change installplatform so that on sparc* it creates both sparc and
sparc64 target macro dirs (/usr/lib/rpm/sparc{,64}-redhat-linux in
sparc*-redhat-linux case).
CVS patchset: 3685
CVS date: 2000/04/19 16:03:49
2000-04-20 00:03:49 +08:00
|
|
|
%__arch_install_post @ARCH_INSTALL_POST@
|
2000-06-21 05:45:50 +08:00
|
|
|
|
|
|
|
%__os_install_post \
|
|
|
|
@prefix@/lib/rpm/brp-compress \
|
|
|
|
@prefix@/lib/rpm/brp-strip \
|
|
|
|
@prefix@/lib/rpm/brp-strip-comment-note \
|
|
|
|
%{nil}
|
|
|
|
|
Hi!
I'd like to start building sparc64 packages (eventhough the install rule
details are yet to be designed - IMHO if 64bit SPARC userland is going into
7.0 we should rebuild all packages into 64bit in the next months or so to
have time to chase bugs etc.), and this is about what I need.
Basically I'd like to have %{_lib} to stand for the last part (normally
"lib") of dirname for directories like /lib, /usr/lib, /usr/X11R6/lib
because on sparc64-linux they are /lib64, /usr/lib64, /usr/X11R6/lib64 (and
on Solaris /lib/sparcv9, /usr/lib/sparcv9 etc.), so that one can use things
like
/usr/%{_lib} in the spec files.
Another thing which I need is an arch specific build root policy.
This patch does a few things:
1) add installplatform into EXTRA_DIST files, so that it is actually invoked
during rpm build not from CVS
2) Define %_lib lib and let target specific macros override it
3) Split __spec_install_post into __arch_install_post and __os_install_post,
--buildpolicy now specifies the __os_install_post part only. spec files
can still override the __arch_install_post if the want to.
brp-sparc64-linux is used to move 64bit libraries to */lib64 directories
from */lib directories if make install of some package left them there.
4) Change installplatform so that on sparc* it creates both sparc and
sparc64 target macro dirs (/usr/lib/rpm/sparc{,64}-redhat-linux in
sparc*-redhat-linux case).
CVS patchset: 3685
CVS date: 2000/04/19 16:03:49
2000-04-20 00:03:49 +08:00
|
|
|
%__spec_install_post\
|
2001-06-26 04:01:42 +08:00
|
|
|
%{__arch_install_post}\
|
|
|
|
%{__os_install_post}\
|
Hi!
I'd like to start building sparc64 packages (eventhough the install rule
details are yet to be designed - IMHO if 64bit SPARC userland is going into
7.0 we should rebuild all packages into 64bit in the next months or so to
have time to chase bugs etc.), and this is about what I need.
Basically I'd like to have %{_lib} to stand for the last part (normally
"lib") of dirname for directories like /lib, /usr/lib, /usr/X11R6/lib
because on sparc64-linux they are /lib64, /usr/lib64, /usr/X11R6/lib64 (and
on Solaris /lib/sparcv9, /usr/lib/sparcv9 etc.), so that one can use things
like
/usr/%{_lib} in the spec files.
Another thing which I need is an arch specific build root policy.
This patch does a few things:
1) add installplatform into EXTRA_DIST files, so that it is actually invoked
during rpm build not from CVS
2) Define %_lib lib and let target specific macros override it
3) Split __spec_install_post into __arch_install_post and __os_install_post,
--buildpolicy now specifies the __os_install_post part only. spec files
can still override the __arch_install_post if the want to.
brp-sparc64-linux is used to move 64bit libraries to */lib64 directories
from */lib directories if make install of some package left them there.
4) Change installplatform so that on sparc* it creates both sparc and
sparc64 target macro dirs (/usr/lib/rpm/sparc{,64}-redhat-linux in
sparc*-redhat-linux case).
CVS patchset: 3685
CVS date: 2000/04/19 16:03:49
2000-04-20 00:03:49 +08:00
|
|
|
%{nil}
|
2000-06-21 05:45:50 +08:00
|
|
|
|
2001-06-26 04:01:42 +08:00
|
|
|
@redhat@#---------------------------------------------------------------------
|
|
|
|
@redhat@# Expanded at end of %prep
|
|
|
|
@redhat@#
|
|
|
|
@redhat@%__id_u @__ID_U@
|
|
|
|
@redhat@%__chown_Rhf @__CHOWN_RHF@
|
|
|
|
@redhat@%__chgrp_Rhf @__CHGRP_RHF@
|
|
|
|
@redhat@%_fixowner [ `%{__id_u}` = '0' ] && %{__chown_Rhf} root
|
|
|
|
@redhat@%_fixgroup [ `%{__id_u}` = '0' ] && %{__chgrp_Rhf} @ROOT_GROUP@
|
|
|
|
@redhat@%_fixperms %{__chmod} -Rf @FIXPERMS@
|
2001-01-18 00:00:36 +08:00
|
|
|
|
2001-06-26 04:01:42 +08:00
|
|
|
@mandrake@#---------------------------------------------------------------------
|
2001-01-18 00:00:36 +08:00
|
|
|
@mandrake@# Mandrake vendor specific macros
|
|
|
|
@mandrake@# XXX Add a support e-mail address here, please.
|
|
|
|
@mandrake@#
|
|
|
|
@mandrake@#
|
|
|
|
@mandrake@# XXX These values, particularly vendor, need to be regularized, please.
|
|
|
|
@mandrake@%_vendor MandrakeSoft
|
|
|
|
@mandrake@%_real_vendor mandrake
|
|
|
|
@mandrake@%_target_platform %{_target_cpu}-%{_real_vendor}-%{_target_os}
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# XXX I'll make these the default linux values soon as I can.
|
|
|
|
@mandrake@%_libexecdir %{_libdir}
|
|
|
|
@mandrake@%_localstatedir %{_var}/lib
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# XXX A copy of brp-mandrake, please. I'd suggest break down by
|
|
|
|
@mandrake@# functionality rather than vendor <shrug>.
|
|
|
|
@mandrake@%__os_install_post \
|
|
|
|
@mandrake@ /usr/lib/rpm/brp-mandrake \
|
|
|
|
@mandrake@%{nil}
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# make
|
|
|
|
@mandrake@%_make_bin make
|
|
|
|
@mandrake@%make if [ -z "$NPROCS" -a -f /proc/stat ]; then NPROCS=`egrep -c ^cpu[0-9]+ /proc/stat || :`; fi \
|
|
|
|
@mandrake@if [ -z "$NPROCS" -o "$NPROCS" -le "0" ]; then \
|
|
|
|
@mandrake@ NPROCS=1 \
|
|
|
|
@mandrake@fi \
|
|
|
|
@mandrake@%{_make_bin} -j$NPROCS
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Menu directories
|
|
|
|
@mandrake@%_menudir %{_libdir}/menu
|
|
|
|
@mandrake@%_iconsdir %{_datadir}/icons
|
|
|
|
@mandrake@%_miconsdir %{_datadir}/icons/mini
|
|
|
|
@mandrake@%_liconsdir %{_datadir}/icons/large
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Update Menu
|
|
|
|
@mandrake@%_update_menus_bin %{_bindir}/update-menus
|
|
|
|
@mandrake@%update_menus if [ -x %{_update_menus_bin} ]; then %{_update_menus_bin} || true ; fi
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Clean Menu
|
|
|
|
@mandrake@%clean_menus if [ "$1" = "0" -a -x %{_update_menus_bin} ]; then %{_update_menus_bin} || true ; fi
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Update Window Managers session.
|
|
|
|
@mandrake@%_fndsession_bin %{_sbindir}/fndSession
|
|
|
|
@mandrake@%make_session if [ -x %{_fndsession_bin} ]; then %{_fndsession_bin} || true ; fi
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Where install-info is located
|
|
|
|
@mandrake@%__install_info /sbin/install-info
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Macros to install info-files.
|
|
|
|
@mandrake@%_install_info() %{__install_info} %{_infodir}/%{1}%{_extension} --dir=%{_infodir}/dir\;
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Macros to remove info-files. (keep the "alone on its line ';'")
|
|
|
|
@mandrake@%_remove_install_info() if [ "$1" = "0" ]; then %{__install_info} \\\
|
|
|
|
@mandrake@ %{_infodir}/%{1}%{_extension} --dir=%{_infodir}/dir --remove ; fi\
|
|
|
|
@mandrake@%{nil}
|
|
|
|
@mandrake@
|
|
|
|
@mandrake@# Games macros
|
|
|
|
@mandrake@%_gamesdir games
|
|
|
|
@mandrake@%_gamesbindir %{_prefix}/%{_gamesdir}
|
|
|
|
@mandrake@%_gamesdatadir %{_datadir}/%{_gamesdir}
|