Compare commits
23 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e1f1c5483d | ||
|
|
c965df5f24 | ||
|
|
0c6c5531ff | ||
|
a6d4a62b01 |
|||
| cfce7e50db | |||
|
|
9182ea4d46 | ||
|
|
71c5eb17eb | ||
|
|
e2b3bb986c | ||
|
|
f585ac69b4 | ||
|
|
717e89890f | ||
|
|
a2c19ef356 | ||
|
|
07d3c8e577 | ||
|
|
6b8912cf1a | ||
|
|
c4fcec8efb | ||
|
|
b2ad7f9299 | ||
|
|
d79d522810 | ||
|
|
6db0b4e1ab | ||
|
|
286a5e4756 | ||
|
|
83e7ba0d17 | ||
|
|
3887d95ed1 | ||
|
|
1000f9feb6 | ||
|
|
f61d60a3bc | ||
|
|
3802db327f |
5 changed files with 1 additions and 116 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +0,0 @@
|
|||
vldocking_2.0.6e.zip
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
fdded00a81262155c3df71d2cc348cc6 vldocking_2.0.6e.zip
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
--- build.xml.orig 2008-08-27 00:16:02.000000000 +0200
|
||||
+++ build.xml 2008-08-27 00:16:33.000000000 +0200
|
||||
@@ -64,9 +64,9 @@
|
||||
|
||||
<target name="jar" depends="compile">
|
||||
|
||||
- <delete dir="${jar.dir}/vldocking_{$vldocking.version}.jar" />
|
||||
+ <delete dir="${jar.dir}/vldocking_${vldocking.version}.jar" />
|
||||
|
||||
- <jar jarfile="${jar.dir}/vldocking_{$vldocking.version}.jar"
|
||||
+ <jar jarfile="${jar.dir}/vldocking_${vldocking.version}.jar"
|
||||
basedir="${build.dir}" >
|
||||
<include name="com/vlsolutions/**"/>
|
||||
<exclude name="**/doc-files/**"/>
|
||||
@@ -82,7 +82,7 @@
|
||||
source="1.4"
|
||||
overview="${src.dir}/com/vlsolutions/swing/docking/overview.html"
|
||||
link="http://java.sun.com/j2se/1.5.0/docs/api"
|
||||
- windowtitle="VLSolutions Docking Framework {$vldocking.version} API">
|
||||
+ windowtitle="VLSolutions Docking Framework ${vldocking.version} API">
|
||||
<classpath>
|
||||
<pathelement path="${java.class.path}/"/>
|
||||
</classpath>
|
||||
|
|
@ -1,91 +0,0 @@
|
|||
Name: vldocking
|
||||
Version: 2.0.6e
|
||||
Release: 4%{?dist}
|
||||
Summary: A Java ™ docking system for JFC Swing applications
|
||||
Group: Development/Tools
|
||||
License: CeCILL
|
||||
URL: http://www.vlsolutions.com/en/download/
|
||||
# the zip file can be downloaded from the redirect
|
||||
# from http://www.vlsolutions.com/en/download/downloader2_0.php
|
||||
|
||||
Source0: vldocking_%{version}.zip
|
||||
Patch1: vldocking-build.patch
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: java-devel >= 1.5
|
||||
BuildRequires: jpackage-utils, ant
|
||||
|
||||
Requires: java >= 1.5
|
||||
Requires: jpackage-utils
|
||||
|
||||
|
||||
%description
|
||||
Docking windows allow the user to reorganize the application's workspace
|
||||
according to his needs:
|
||||
|
||||
* Drag and Drop parts of the application ("Dockables")
|
||||
* Hide the dockables not often used to save screen space
|
||||
* Detach some dockables and have them floating outside the window
|
||||
* Easily switch between different workspaces
|
||||
* And much more...
|
||||
|
||||
%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 -c -n %{name}-%{version}
|
||||
%patch1 -p0
|
||||
|
||||
find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \;
|
||||
|
||||
%build
|
||||
|
||||
ant jar
|
||||
ant javadoc
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
install -D jar/vldocking_2.0.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
|
||||
|
||||
pushd $RPM_BUILD_ROOT%{_javadir}
|
||||
ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}.jar
|
||||
popd
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||
cp -rp doc/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Licence_CeCILL-V1_VF.pdf Licence_CeCILL-V1.1_VA.pdf
|
||||
%{_javadir}/*
|
||||
|
||||
%files javadoc
|
||||
%defattr(-,root,root,-)
|
||||
%{_javadocdir}/*
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.6e-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Sep 17 2008 Ismael Olea <ismael@olea.org> 2.0.6e-4olea
|
||||
- Cosmetic changes.
|
||||
|
||||
* Sun Aug 31 2008 Ismael Olea <ismael@olea.org> 2.0.6e-3olea
|
||||
- Cosmetic changes.
|
||||
|
||||
* Fri Aug 29 2008 Ismael Olea <ismael@olea.org> 2.0.6e-2olea
|
||||
- QA revision
|
||||
|
||||
* Wed Aug 27 2008 Ismael Olea <ismael@olea.org> 2.0.6e-1olea
|
||||
- first version
|
||||
Loading…
Add table
Add a link
Reference in a new issue