123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- Summary: A window manager for MATE
- Name: mate-window-manager
- Version: 1.1.0
- Release: 2%{?_dist_release}
- Source0: %{name}-%{version}.tar.xz
- License: GPLv2
- Group: User Interface/Desktops
- URL: https://matsusoft.com.ar/projects/mate/
- BuildRequires: mate-common
- BuildRequires: mate-doc-utils
- BuildRequires: mate-conf-devel
- BuildRequires: mate-dialogs
- BuildRequires: gtk2-devel
- BuildRequires: libcanberra-devel
- BuildRequires: libSM-devel
- BuildRequires: startup-notification-devel
- BuildRequires: gtk-doc
- BuildRequires: autoconf
- BuildRequires: automake
- Requires(post,pre,preun): mate-conf
- Requires(post,postun): desktop-file-utils
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- Marco is not a meta-City as in an urban center, but rather
- Meta-ness as in the state of being meta. i.e. marco : meta as
- opacity : opaque. Also it may have something to do with the Meta key
- on UNIX keyboards.
- %package devel
- Summary: Development tools for mate-window-manager
- Summary(ja): mate-window-manager の開発環境
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- Header files and libraries for building a extension library for the
- mate-window-manager.
- %prep
- %setup -q
- %build
- (if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi)
- %configure \
- --disable-static \
- --disable-scrollkeeper
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- export MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
- %{__make} install DESTDIR=${RPM_BUILD_ROOT}
- unset MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
- find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %find_lang marco
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %post
- /sbin/ldconfig
- export MATECONF_CONFIG_SOURCE=`mateconftool-2 --get-default-source`
- SCHEMAS=" \
- marco.schemas"
- for S in $SCHEMAS; do
- echo %{_sysconfdir}/mateconf/schemas/$S; done \
- | xargs mateconftool-2 --makefile-install-rule >& /dev/null ||:
- update-desktop-database %{_datadir}/applications >& /dev/null ||:
- %pre
- if [ "$1" -gt 1 ]; then
- export MATECONF_CONFIG_SOURCE=`mateconftool-2 --get-default-source`
- SCHEMAS=" \
- marco.schemas"
- for S in $SCHEMAS; do
- echo %{_sysconfdir}/mateconf/schemas/$S; done \
- | xargs mateconftool-2 --makefile-uninstall-rule >& /dev/null ||:
- fi
- %preun
- if [ "$1" -eq 0 ]; then
- export MATECONF_CONFIG_SOURCE=`mateconftool-2 --get-default-source`
- SCHEMAS=" \
- marco.schemas"
- for S in $SCHEMAS; do
- echo %{_sysconfdir}/mateconf/schemas/$S; done \
- | xargs mateconftool-2 --makefile-uninstall-rule >& /dev/null ||:
- fi
- %postun
- /sbin/ldconfig
- update-desktop-database %{_datadir}/applications >& /dev/null ||:
- %files -f marco.lang
- %defattr(-,root,root,-)
- %doc COPYING ChangeLog NEWS README
- %{_sysconfdir}/mateconf/schemas/marco.schemas
- %{_bindir}/marco
- %{_bindir}/marco-message
- %{_bindir}/marco-theme-viewer
- %{_bindir}/marco-window-demo
- %{_libdir}/libmarco-private.so.*
- %{_datadir}/applications/marco.desktop
- %{_datadir}/marco/icons/marco-window-demo.png
- %{_datadir}/mate/help
- %{_datadir}/mate/wm-properties/marco-wm.desktop
- %{_datadir}/mate-control-center/keybindings/*.xml
- %{_datadir}/themes
- %{_mandir}/man1/*.1.gz
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/marco-1
- %{_libdir}/libmarco-private.so
- %{_libdir}/pkgconfig/libmarco-private.pc
- %changelog
- * Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-2
- - change category
- * Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
- - initial build for Vine Linux
|