rpms/jjack/F-9 import.log, NONE, 1.1 jjack.sh, NONE, 1.1 jjack.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Orcan Ogetbil oget at fedoraproject.org
Mon Apr 27 07:48:01 UTC 2009


Author: oget

Update of /cvs/pkgs/rpms/jjack/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4416/F-9

Modified Files:
	.cvsignore sources 
Added Files:
	import.log jjack.sh jjack.spec 
Log Message:
* Sun Apr 26 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.3-2
- Minor update on the wrapper script

* Sun Mar 22 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.3-1
- Initial build



--- NEW FILE import.log ---
jjack-0_3-2_fc10:F-9:jjack-0.3-2.fc10.src.rpm:1240818430


--- NEW FILE jjack.sh ---
#! /bin/sh
#
# Shell script to run the JJack Shell Application.
#

JAVA_HOME=/usr/lib/jvm/java
LIBRARY_PATH=/usr/lib
for arch in x86_64 ppc64; do
    if [[ $(uname -i) == "$arch" ]]; then
        LIBRARY_PATH=/usr/lib64
    fi
done
JJACK_HOME=${LIBRARY_PATH}/jjack
CP=${JAVA_HOME}/lib/dt.jar:${JJACK_HOME}/jjack.jar:${JJACK_HOME}/jjack-clients.jar
LP=${CP}
${JAVA_HOME}/bin/java -cp ${CP} -Djava.library.path=${LP} JJack "$@"


--- NEW FILE jjack.spec ---
%global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0}

Name:           jjack
Version:        0.3
Release:        2%{?dist}
Summary:        JACK audio driver for the Java Sound API
Group:          System Environment/Libraries
License:        LGPLv2+
URL:            http://jjack.berlios.de/
# The original source file is 
# http://download.berlios.de/%{name}/%{name}-%{version}.tar.gz
# We re-encoded the MP3 files in the tarball in OGG format to produce
Source0:        %{name}-%{version}-FE.tar.gz
# Shell script to run the JJack Shell Application. Derived from the bin/jjack.sh
# script in the tarball
Source1:        %{name}.sh
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:  jack-audio-connection-kit-devel
BuildRequires:  java-devel >= 1.5
BuildRequires:  ant
BuildRequires:  jpackage-utils
%if %{with_gcj}
BuildRequires:  java-gcj-compat-devel >= 1.0.31
Requires(post):   java-gcj-compat >= 1.0.31
Requires(postun): java-gcj-compat >= 1.0.31
%endif
Requires:       jpackage-utils
Requires:       java >= 1.5


%description
JJack is a JACK audio driver for the Java Sound API  and a framework for the
Java programming language  that allows Java applications to use the JACK Audio
Connection Kit. Audio processor clients can be designed to:

  * create their own sounds (as a synthesizer or sample-player)
  * change the sound-output of other clients (e.g. as an effects-device)
  * analyse the audio streams generated by other clients (e.g. display 
    the wave form)

%package javadoc
Summary:        Javadocs for %{name}
Group:          Documentation
Requires:       %{name} = %{version}-%{release}
Requires:       jpackage-utils

%description javadoc
This package contains the API documentation for %{name}.

%prep
%setup -q

# Remove percompiled binaries
for ext in class jar jnilib o so; do
   find -name "*.$ext" -exec rm -f '{}' \;
done

# Ugly hack to impose optflags
for flag in $RPM_OPT_FLAGS; do
   ANT_GCC_FLAGS+="<arg value=\"$flag\"/>\n      "
done
sed -i "s|\(<arg value=\"-fPIC\"/>\)|\1\n      $ANT_GCC_FLAGS|" make/build.xml

# We don't want do deal with complications during %%install
sed -i 's|/\${os.arch}/\${os.name}||' make/build.xml

# To dlopen the library correctly
sed -i 's|File(.*|File("%{_libdir}/%{name}/lib%{name}.so");|' \
   src/de/gulden/framework/jjack/JJackSystem.java

# We replace mp3 with ogg
for file in doc/www/examples.html README; do
   sed -i 's|mp3|ogg|g' $file
done

# Fix encoding
iconv -f iso8859-1 -t utf8 CHANGELOG -o tmpfile
touch -r CHANGELOG tmpfile
mv -f tmpfile CHANGELOG

%build
pushd make
   %ant -v all
popd

%install
rm -rf $RPM_BUILD_ROOT

mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{name}

# jar files
pushd lib
   for jarfile in %{name}*.jar; do
      jarname=${jarfile%.*}
      install -pm 644 $jarfile \
              $RPM_BUILD_ROOT%{_libdir}/%{name}/$jarname-%{version}.jar
      ln -s $jarname-%{version}.jar $RPM_BUILD_ROOT%{_libdir}/%{name}/$jarfile
   done
# native lib
   install -pm 755 lib%{name}.so $RPM_BUILD_ROOT%{_libdir}/%{name}/
popd

# javadoc
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
cp -rp doc/*  \
   $RPM_BUILD_ROOT%{_javadocdir}/%{name}/

# the wrapper script
mkdir -p $RPM_BUILD_ROOT%{_bindir}
install -pm 755 %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/%{name}

# aot bits
%if %{with_gcj}
%{_bindir}/aot-compile-rpm
%endif

%clean
rm -rf $RPM_BUILD_ROOT

%post
%if %{with_gcj}
if [ -x %{_bindir}/rebuild-gcj-db ] 
then
%{_bindir}/rebuild-gcj-db
fi
%endif

%postun
%if %{with_gcj}
if [ -x %{_bindir}/rebuild-gcj-db ] 
then
%{_bindir}/rebuild-gcj-db
fi
%endif


%files
%defattr(-,root,root,-)
%doc CHANGELOG LICENSE README
%{_libdir}/%{name}/
%{_bindir}/%{name}

%if %{with_gcj}
%{_libdir}/gcj/%{name}
%endif

%files javadoc
%defattr(-,root,root,-)
%{_javadocdir}/%{name}


%changelog
* Sun Apr 26 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.3-2
- Minor update on the wrapper script

* Sun Mar 22 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.3-1
- Initial build


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/jjack/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	27 Apr 2009 05:21:46 -0000	1.1
+++ .cvsignore	27 Apr 2009 07:47:30 -0000	1.2
@@ -0,0 +1 @@
+jjack-0.3-FE.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/jjack/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	27 Apr 2009 05:21:46 -0000	1.1
+++ sources	27 Apr 2009 07:47:30 -0000	1.2
@@ -0,0 +1 @@
+5c45d272344923ee8282c9b39783288c  jjack-0.3-FE.tar.gz




More information about the fedora-extras-commits mailing list