From 312ba610a1e98fc656fb58178227d7d45a64494e Mon Sep 17 00:00:00 2001 From: Perberos Date: Mon, 14 Nov 2011 18:24:48 -0300 Subject: initial --- mate-applets.spec.in | 151 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 mate-applets.spec.in (limited to 'mate-applets.spec.in') diff --git a/mate-applets.spec.in b/mate-applets.spec.in new file mode 100644 index 00000000..ec4baaad --- /dev/null +++ b/mate-applets.spec.in @@ -0,0 +1,151 @@ +%define name mate-applets +%define ver @VERSION@ +%define RELEASE 1 +%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE} + +Summary: Small applications which embed themselves in the MATE panel +Name: %name +Version: %ver +Release: %rel +Copyright: GPL +Group: User Interface/Desktops +Source: ftp://ftp.mate.org/pub/MATE/sources/unstable/%{name}/%{name}-%{ver}.tar.gz +URL: http://www.mate.org/ +BuildRoot: /var/tmp/%{name}-%{ver}-root +Docdir: %{_prefix}/doc + +Requires: libxml +Requires: libgtop +Requires: libghttp +Requires: mate-core >= 1.1.2 +Requires: gdk-pixbuf >= 0.7.0 + +%description +MATE (GNU Network Object Model Environment) is a user-friendly +set of applications and desktop tools to be used in conjunction with a +window manager for the X Window System. MATE is similar in purpose and +scope to CDE and KDE, but MATE is based completely on Open Source +software. The mate-applets package provides Panel applets which +enhance your MATE experience. + +You should install the mate-applets package if you would like embed small +utilities in the MATE panel. + +%prep +%setup -q + +%build +%ifarch alpha + MYARCH_FLAGS="--host=alpha-redhat-linux" +%endif + +if [ ! -f configure ]; then +CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh $MYARCH_FLAGS --prefix=/usr --sysconfdir=/etc +else +CFLAGS="$RPM_OPT_FLAGS" ./configure $MYARCH_FLAGS --prefix=/usr --sysconfdir=/etc +fi + +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 install \ + prefix=$RPM_BUILD_ROOT%{_prefix} \ + sysconfdir=$RPM_BUILD_ROOT/etc +# no binary stripping +if [ -f %{name}.files ] ; then + rm -f %{name}.files +fi +############################################################################## +## +function ProcessLang() { + # rpm provides a handy scriptlet to do the locale stuff lets use that. + if [ -f /usr/lib/rpm/find-lang.sh ] ; then + /usr/lib/rpm/find-lang.sh $RPM_BUILD_ROOT %name + sed "s:(644, root, root, 755):(444, bin, bin, 555):" %{name}.lang >tmp.lang && mv tmp.lang %{name}.lang + if [ -f %{name}.files ] ; then + cat %{name}.files %{name}.lang >tmp.files && mv tmp.files %{name}.files + fi + fi +} +function ProcessBin() { + # Gather up all the executable files. Stripping if requested. + # This will not recurse. + if [ -d $RPM_BUILD_ROOT%{_prefix}/bin ] ; then + echo "%defattr (0555, bin, bin)" >>%{name}.files + find $RPM_BUILD_ROOT%{_prefix}/bin -type f -print | sed "s:^$RPM_BUILD_ROOT::g" >>%{name}.files + fi +} + +function ProcessLib() { + # Gather up any libraries. + # Usage: ProcessLib + # Type is either 'runtime' or 'devel' + if [ -d $1 ] ; then + echo "%defattr (0555, bin, bin)" >>$3 + case "$2" in + runtime) + # Grab runtime libraries + find $1 -name "*.so.*" -print | sed "s:^$RPM_BUILD_ROOT::g" >>$3 + ;; + devel) + find $1 -name "*.so" -print | sed "s:^$RPM_BUILD_ROOT::g" >>$3 + find $1 -name "*.la" -print | sed "s:^$RPM_BUILD_ROOT::g" >>$3 + find $1 -name "*.a" -print | sed "s:^$RPM_BUILD_ROOT::g" >>$3 + find $1 -name "*.sh" -print | sed "s:^$RPM_BUILD_ROOT::g" >>$3 + ;; + esac + fi +} +function ProcessDir() { + # Build a list of files in the specified dir sticking + # a %defattr line as specified in front of the mess. This is intended + # for normal dirs. Use ProcessLib for library dirs + # for include dirs. Appending to . + # This will recurse. + # + # Usage: ProcessDir + # + if [ -d $1 ] ; then + if [ ! -z "$3" ] ; then + echo "%defattr ($3)" >>$2 + fi + echo "*** Processing $1" + find $1 -type f -print | sed "s:^$RPM_BUILD_ROOT::g" >>$2 + fi +} + +function BuildFiles() { + ProcessBin + ProcessLang + for i in `find $RPM_BUILD_ROOT%{_prefix}/share -maxdepth 1 -type d -print | \ + sed "s:^$RPM_BUILD_ROOT%{_prefix}/share::g"` ; do + echo $i + case $i in + /applets|/asclock|/clockmail|/geyes|/mate|/mateweather|/odometer|/sound-monitor|/pixmaps|/tickastat|/xmodmap|/omf) + + ProcessDir $RPM_BUILD_ROOT%{_prefix}/share$i %{name}.files "0444, bin, bin, 0555" + ;; + *) + ;; + esac + done + ProcessDir $RPM_BUILD_ROOT/etc %{name}.files "0444, bin, bin, 0555" + ProcessLib $RPM_BUILD_ROOT%{_prefix}/lib runtime %{name}.files +} + +BuildFiles + +%clean +[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files -f %{name}.files +%doc AUTHORS COPYING ChangeLog NEWS README -- cgit v1.2.1