[svn] r5195 - in trunk/rpms: . exdump morse mpack
packagers at lists.rpmforge.net
packagers at lists.rpmforge.net
Fri Feb 23 00:13:44 CET 2007
Author: dag
Date: 2007-02-23 00:13:43 +0100 (Fri, 23 Feb 2007)
New Revision: 5195
Added:
trunk/rpms/exdump/
trunk/rpms/exdump/exdump.spec
trunk/rpms/morse/
trunk/rpms/morse/morse.spec
trunk/rpms/mpack/
trunk/rpms/mpack/mpack.spec
Log:
Updates
Added: trunk/rpms/exdump/exdump.spec
===================================================================
--- trunk/rpms/exdump/exdump.spec (rev 0)
+++ trunk/rpms/exdump/exdump.spec 2007-02-22 23:13:43 UTC (rev 5195)
@@ -0,0 +1,45 @@
+# $Id$
+# Authority: dag
+
+Summary: Packet watcher, dumper and logger.
+Name: exdump
+Version: 0.2
+Release: 1
+License: GPL
+Group: Applications/Internet
+URL: http://packetstormsecurity.org/sniffers/exdump/
+
+Source: http://packetstormsecurity.org/sniffers/exdump/exdump-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+%description
+Exdump is a packet watcher, dumper and logger. TCP, UDP and ICMP packets
+that pass a computer on which Exdump resides and runs are logged.
+
+Exdump allows output to be directed to the console/adm or to a user-defined
+file. Exdump also has an option to only display packets that are sent to a
+specified port, and the program can actually show you the data that was in
+the packet.
+
+%prep
+%setup
+
+%build
+%configure
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install-exec bindir="%{buildroot}%{_bindir}"
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc ABOUT HISTORY OUTPUT README
+%{_bindir}/exdump
+
+%changelog
+* Thu Feb 22 2007 Dag Wieers <dag at wieers.com> - 0.2-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/exdump/exdump.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/morse/morse.spec
===================================================================
--- trunk/rpms/morse/morse.spec (rev 0)
+++ trunk/rpms/morse/morse.spec 2007-02-22 23:13:43 UTC (rev 5195)
@@ -0,0 +1,49 @@
+# $Id$
+# Authority: dag
+
+Summary: Morse Classic morse trainer program
+Name: morse
+Version: 2.1
+Release: 1
+License: BSD
+Group: Applications/Communications
+URL: http://catb.org/~esr/morse/
+
+Source: http://catb.org/~esr/morse/morse-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+%description
+Morse Classic is a Morse-code training program for aspiring radio hams. It
+can generate random tests or simulated QSOs resembling those used in
+the ARRL test (a QSO generator is included). There are a plethora of
+options to vary the training method. In one of the simpler modes,
+this program will take text from standard input and render it as
+Morse-code beeps.
+
+%prep
+%setup
+
+%build
+%{__make} %{?_smp_mflags} morse QSO morse.1 QSO.1
+
+%install
+%{__rm} -rf %{buildroot}
+%{__install} -Dp -m0755 morse %{buildroot}%{_bindir}/morse
+%{__install} -Dp -m0755 QSO %{buildroot}%{_bindir}/QSO
+%{__install} -Dp -m0644 morse.1 %{buildroot}%{_mandir}/man1/morse.1
+%{__install} -Dp -m0644 QSO.1 %{buildroot}%{_mandir}/man1/QSO.1
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%doc HISTORY README
+%defattr(-, root, root, 0755)
+%doc %{_mandir}/man1/morse.1*
+%doc %{_mandir}/man1/QSO.1*
+%{_bindir}/morse
+%{_bindir}/QSO
+
+%changelog
+* Fri Feb 23 2007 Dag Wieers <dag at wieers.com> - 2.1-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/morse/morse.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/mpack/mpack.spec
===================================================================
--- trunk/rpms/mpack/mpack.spec (rev 0)
+++ trunk/rpms/mpack/mpack.spec 2007-02-22 23:13:43 UTC (rev 5195)
@@ -0,0 +1,48 @@
+# $Id$
+# Authority: dag
+
+Summary: Pack a file in MIME format for mailing and news
+Name: mpack
+Version: 1.6
+Release: 1
+License: GPL
+Group: Applications/Internet
+URL: http://www.ussg.iu.edu/usail/mail/mime/
+
+Source: http://ftp.andrew.cmu.edu/pub/mpack/mpack-%{version}.tar.gz
+#Patch1: mpack-1.5-Makefile.patch
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+%description
+The mpack program encodes the the named file in one or more MIME
+messages. The resulting messages are mailed to one or more
+recipients, written to a named file or set of files, or posted
+to a set of newsgroups. Lighter than Metamail - unmaintained
+
+About MIME: See RFC 1521 and RFC 1522.
+From: http://ftp.andrew.cmu.edu/pub/mpack/
+
+%prep
+%setup
+#patch1 -p2 -b Makefile
+
+%build
+%configure
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc Changes INSTALL README*
+%doc %{_mandir}/man1/mpack.1*
+%{_bindir}/mpack
+
+%changelog
+* Thu Feb 22 2007 Dag Wieers <dag at wieers.com> - 1.5-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/mpack/mpack.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
More information about the svn-commits
mailing list