148 lines
4.5 KiB
RPMSpec
148 lines
4.5 KiB
RPMSpec
#
|
|
# spec file for package jdepend (Version 2.9.1)
|
|
#
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
# icecream 0
|
|
|
|
%define section free
|
|
|
|
Name: jdepend
|
|
Version: 2.9.1
|
|
Release: 72
|
|
Summary: Java Design Quality Metrics
|
|
License: BSD 3-Clause
|
|
Url: http://www.clarkware.com/
|
|
Group: Development/Libraries/Java
|
|
Source0: %{url}software/%{name}-%{version}.tar.bz2
|
|
Patch0: jdepend-target15.patch
|
|
BuildRequires: ant
|
|
BuildRequires: java-devel
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
JDepend traverses a set of Java class and source file directories and
|
|
generates design quality metrics for each Java package. JDepend allows
|
|
you to automatically measure the quality of a design in terms of its
|
|
extensibility, reusability, and maintainability to effectively manage
|
|
and control package dependencies.
|
|
|
|
|
|
|
|
%package javadoc
|
|
License: BSD 3-Clause
|
|
Summary: Javadoc for jdepend
|
|
Group: Development/Libraries/Java
|
|
|
|
%description javadoc
|
|
JDepend traverses a set of Java class and source file directories and
|
|
generates design quality metrics for each Java package. JDepend allows
|
|
you to automatically measure the quality of a design in terms of its
|
|
extensibility, reusability, and maintainability to effectively manage
|
|
and control package dependencies.
|
|
|
|
This package contains the javadoc documentation for JDepend.
|
|
|
|
|
|
|
|
%package demo
|
|
License: BSD 3-Clause
|
|
Summary: Demonstration and sample files for jdepend
|
|
Group: Development/Libraries/Java
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
%description demo
|
|
JDepend traverses a set of Java class and source file directories and
|
|
generates design quality metrics for each Java package. JDepend allows
|
|
you to automatically measure the quality of a design in terms of its
|
|
extensibility, reusability, and maintainability to effectively manage
|
|
and control package dependencies.
|
|
|
|
This package contains demonstration and sample files for JDepend.
|
|
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
# remove all binary libs
|
|
find . -name "*.jar" -exec rm -f {} \;
|
|
# fix strange permissions
|
|
find . -type d -exec chmod 755 {} \;
|
|
%patch0 -b .target15
|
|
|
|
%build
|
|
ant jar javadoc
|
|
|
|
%install
|
|
# jars
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
|
install -m 644 dist/%{name}-%{version}.jar \
|
|
$RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
|
|
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} ${jar/-%{version}/}; done)
|
|
# javadoc
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
|
cp -pr build/docs/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
|
ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|
rm -rf docs/api
|
|
# demo
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
|
|
cp -pr sample $RPM_BUILD_ROOT%{_datadir}/%{name}
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc CHANGES README LICENSE
|
|
%{_javadir}/*
|
|
|
|
%files javadoc
|
|
%defattr(-,root,root)
|
|
%doc docs
|
|
%{_javadocdir}/%{name}-%{version}
|
|
%doc %{_javadocdir}/%{name}
|
|
|
|
%files demo
|
|
%defattr(-,root,root)
|
|
%{_datadir}/%{name}
|
|
|
|
%changelog
|
|
* Fri Aug 29 2008 mvyskocil@suse.cz
|
|
- source=1.5 -target=1.5
|
|
- bzipped source code
|
|
- removed the gcj support
|
|
- removed a javadoc scripplets
|
|
* Fri Mar 14 2008 mvyskocil@suse.cz
|
|
- merged with jpackage 1.7:
|
|
- update to version 2.9.1
|
|
- removed a java14compat patch
|
|
- added a gcj build support
|
|
- added post(un) scripts for javadoc subpackage
|
|
* Fri Mar 30 2007 ro@suse.de
|
|
- added unzip to buildreq
|
|
* Mon Sep 25 2006 skh@suse.de
|
|
- don't use icecream
|
|
- use source="1.4" and target="1.4" for build with java 1.5
|
|
* Wed Jan 25 2006 mls@suse.de
|
|
- converted neededforbuild to BuildRequires
|
|
* Thu Jul 28 2005 jsmeix@suse.de
|
|
- Adjustments in the spec file.
|
|
* Mon Jul 18 2005 jsmeix@suse.de
|
|
- Current version 2.6 from JPackage.org
|
|
* Thu Sep 02 2004 skh@suse.de
|
|
- Initial package created with version 2.6 (JPackage 1.5)
|