packages: jstun/jstun.spec (NEW) - stun server, initial PLD release
pawelz
pawelz at pld-linux.org
Thu Feb 24 20:28:51 CET 2011
Author: pawelz Date: Thu Feb 24 19:28:51 2011 GMT
Module: packages Tag: HEAD
---- Log message:
- stun server, initial PLD release
---- Files affected:
packages/jstun:
jstun.spec (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: packages/jstun/jstun.spec
diff -u /dev/null packages/jstun/jstun.spec:1.1
--- /dev/null Thu Feb 24 20:28:51 2011
+++ packages/jstun/jstun.spec Thu Feb 24 20:28:46 2011
@@ -0,0 +1,111 @@
+# $Revision$, $Date$
+# TODO:
+# - shell wrapper
+# - init scripts
+#
+# Conditional build:
+%bcond_without source # don't build source jar
+
+%include /usr/lib/rpm/macros.java
+
+Summary: A Java-based STUN server.
+Summary(pl.UTF-8): Serwer STUN napisany w języku Java.
+Name: jstun
+Version: 0.7.3
+Release: 0.1
+License: GPL v2 or Apache v2
+Group: Development/Languages/Java
+Source0: http://jstun.javawi.de/jstun-0.7.3.src.tar.gz
+# Source0-md5: 0e2e0c5d52ba339a33472fc3a492e96d
+URL: http://jstun.javawi.de
+BuildRequires: ant
+BuildRequires: jar
+BuildRequires: jpackage-utils
+BuildRequires: rpm-javaprov
+BuildRequires: rpmbuild(macros) >= 1.300
+%if %{with source}
+BuildRequires: rpmbuild(macros) >= 1.555
+%endif
+BuildRequires: sed >= 4.0
+# for %{_javadir}
+Requires: jpackage-utils
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+"JSTUN" is a Java-based STUN (Simple Traversal of User Datagram Protocol (UDP)
+Through Network Address Translation (NAT)) implementation. STUN provides a mean
+for applications to discover the presence and type of firewalls or NATs between
+them and the public internet. Additionally, in presence of a NAT STUN can be
+used by applications to learn the public Internet Protocol (IP) address
+assigned to the NAT.
+
+So far, most of the message headers and attributes as standardized in RFC 3489
+are part of "JSTUN". The current "JSTUN" version also includes a STUN client
+and a STUN server.
+
+%package source
+Summary: Source code of %{name}
+Summary(pl.UTF-8): Kod źródłowy %{name}
+Group: Documentation
+Requires: jpackage-utils >= 1.7.5-2
+
+%description source
+Source code of %{name}.
+
+%description source -l pl.UTF-8
+Kod źródłowy %{name}.
+
+%prep
+%setup -q -n STUN
+
+%build
+export JAVA_HOME="%{java_home}"
+
+export CLASSPATH
+
+cd build
+%ant
+cd ..
+
+cd src
+%if %{with source}
+%jar cf ../%{name}.src.jar $(find -name '*.java')
+%endif
+cd ..
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_javadir}
+
+# jars
+cp -a target/%{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
+ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
+
+# source
+install -d $RPM_BUILD_ROOT%{_javasrcdir}
+cp -a %{name}.src.jar $RPM_BUILD_ROOT%{_javasrcdir}/%{name}.src.jar
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%{_javadir}/%{name}.jar
+%{_javadir}/%{name}-%{version}.jar
+
+%if %{with source}
+%files source
+%defattr(644,root,root,755)
+%{_javasrcdir}/%{name}.src.jar
+%endif
+
+%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 2011/02/24 19:28:46 pawelz
+- stun server, initial PLD release
+
================================================================
More information about the pld-cvs-commit
mailing list