SPECS: binfmt-detector.spec (NEW) - new

wolf wolf at pld-linux.org
Mon May 1 17:02:47 CEST 2006


Author: wolf                         Date: Mon May  1 15:02:47 2006 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- new

---- Files affected:
SPECS:
   binfmt-detector.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SPECS/binfmt-detector.spec
diff -u /dev/null SPECS/binfmt-detector.spec:1.1
--- /dev/null	Mon May  1 17:02:47 2006
+++ SPECS/binfmt-detector.spec	Mon May  1 17:02:42 2006
@@ -0,0 +1,82 @@
+# $Revision$, $Date$
+Summary:	Microsoft PE executable type detector
+Summary(pl):	Detector typu plików wykonywalnych PE Microsoftu
+Name:		binfmt-detector
+Version:	0.1
+Release:	1
+License:	GPL
+Group:		Base
+Source0:	http://team.pld-linux.org/~wolf/%{name}.tar.gz
+# Source0-md5:	11623bddbeb536e88c47c8a1aedc9189
+Source1:	%{name}.init
+Conflicts:	wine <= 1:0.9.12-1
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This utility determines the Microsoft PE executable file's type
+(Native, .NET CLR) and runs it using the appropriate runtime (Wine,
+Mono).
+
+It is inteded to be used in a Linux binfmt configuration, since binfmt
+itself is incapable of reliably distinguishing between various PE file
+types (since they have no different "magic string") and runtimes
+refuse to run files which they don't support (CLR runtimes refuse to
+run Native images and vice versa).
+
+%description -l pl
+To narzędzie określa typ pliku wykonywalnego PE Microsoftu (natywny,
+.NET CLR) i uruchamia odpowiednie środowisko wykonawcze (Wine, Mono).
+
+Jest używane w połączeniu z Linuksowym binfmt, ponieważ samo binfmt
+nie jest w stanie odróżnić różnych typów plików PE (nie zawierają one
+różnych "magicznych ciągów"), a środowiska uruchomieniowe nie
+pozwalają uruchomić nieobsługiwanych przez siebie plików (CLR nie
+uruchamia natywnych obrazów i vice versa).
+
+%prep
+%setup -q -n %{name}
+
+%build
+%{__cc} %{rpmcflags} binfmt-detector-cli.c -o binfmt-detector-cli
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_sysconfdir}/rc.d/init.d}
+
+install binfmt-detector-cli $RPM_BUILD_ROOT%{_bindir}
+install binfmt-detector.sh $RPM_BUILD_ROOT%{_bindir}
+
+install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/binfmt-detector
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+/sbin/chkconfig --add binfmt-detector
+if [ ! -f /var/lock/subsys/binfmt-detector ]; then
+	echo "Run \"/etc/rc.d/init.d/binfmt-detector start\" to start binfmt-detector service." >&2
+fi
+
+%preun
+if [ "$1" = "0" ]; then
+	if [ -f /var/lock/subsys/binfmt-detector ]; then
+		/etc/rc.d/init.d/binfmt-detector stop >&2
+	fi
+	/sbin/chkconfig --del binfmt-detector
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc README
+%attr(755,root,root) %{_bindir}/*
+%attr(754,root,root) %{_sysconfdir}/rc.d/init.d/binfmt-detector
+
+%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2006/05/01 15:02:42  wolf
+- new
+
================================================================


More information about the pld-cvs-commit mailing list