blob: aba8ca4ca1b76babad426c3950a7884dccac3131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Note this is NOT a relocatable thing :)
%define name gnome-common
%define ver @VERSION@
%define RELEASE 0_cvs_0
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
%define prefix /usr
%define sysconfdir /etc
Name: %name
Summary: gnome-common contains usefull things common to building gnome packages
Version: %ver
Distribution: GNOME
Vendor: CVS
Release: %rel
Copyright: GPL
Group: Development/Tools
Source: %{name}-%{ver}.tar.gz
URL: http://gnome.org
BuildRoot: /var/tmp/%{name}-%{ver}-root
Docdir: %{prefix}/doc
%description
gnome-common is for developing various GNOME modules that have to do similar things
%changelog
* Mon Mar 26 2000 Robin * Slomkowski <rslomkow@rslomkow.org>
- created this thing, and replaced the generic specfile
%prep
%setup
%build
%ifarch alpha
MYARCH_FLAGS="--host=alpha-redhat-linux"
%endif
LC_ALL=""
LINGUAS=""
LANG=""
export LC_ALL LINGUAS LANG
CFLAGS="$RPM_OPT_FLAGS" ./configure $MYARCH_FLAGS \
--prefix=%{prefix} \
--enable-platform-gnome-2 \
--sysconfdir=%{sysconfdir}
if [ "$SMP" != "" ]; then
(make "MAKE=make -k -j $SMP"; exit 0)
make
else
make
fi
%install
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{prefix} sysconfdir=$RPM_BUILD_ROOT%{sysconfdir} install
for FILE in "$RPM_BUILD_ROOT/bin/*"; do
file "$FILE" | grep -q not\ stripped && strip $FILE
done
%clean
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
%post
if ! grep %{prefix}/lib /etc/ld.so.conf > /dev/null ; then
echo "%{prefix}/lib" >> /etc/ld.so.conf
fi
/sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(0555, bin, bin)
%{prefix}/bin/*
%defattr (0444, bin, bin)
%{prefix}/share/aclocal/gnome-macros/*
%{prefix}/share/aclocal/gnome2-macros/*
|