You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
61 lines
1.9 KiB
Tcl
61 lines
1.9 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
|
|
name spring-framework31
|
|
version 3.1.2
|
|
revision 1
|
|
set full_version ${version}.RELEASE
|
|
|
|
categories java
|
|
license {Apache-2 BSD}
|
|
maintainers nomaintainer
|
|
supported_archs noarch
|
|
platforms any
|
|
|
|
description Spring application framework for Java
|
|
long_description \
|
|
Spring is a layered Java/J2EE application framework.
|
|
homepage http://www.springsource.org/about
|
|
|
|
distname spring-framework-${full_version}-with-docs
|
|
master_sites http://s3.amazonaws.com/dist.springframework.org/release/SPR
|
|
checksums rmd160 fed31138af34415522a52241232f2813cb875957 \
|
|
sha256 2677b52ec066ca94b7fcf77729ad01dd7c1f1ec8f9f50026587449c4b4ef93ee \
|
|
size 54379925
|
|
|
|
use_zip yes
|
|
|
|
conflicts spring-framework30
|
|
depends_lib bin:java:kaffe
|
|
|
|
use_configure no
|
|
|
|
worksrcdir spring-framework-${full_version}
|
|
|
|
build {}
|
|
|
|
destroot {
|
|
# Ensure needed directories
|
|
xinstall -m 755 -d \
|
|
${destroot}${prefix}/share \
|
|
${destroot}${prefix}/share/doc/${name} \
|
|
${destroot}${prefix}/share/examples
|
|
|
|
# Install the framework
|
|
file copy ${worksrcpath}/dist ${destroot}${prefix}/share/java
|
|
foreach f [glob ${destroot}${prefix}/share/java/*.jar] {
|
|
file rename ${f} [strsed ${f} s/-${full_version}//]
|
|
}
|
|
|
|
# Install the docs
|
|
foreach f {changelog.txt license.txt notice.txt readme.txt} {
|
|
file copy ${worksrcpath}/${f} \
|
|
${destroot}${prefix}/share/doc/${name}/${f}
|
|
}
|
|
file copy ${worksrcpath}/docs/javadoc-api \
|
|
${destroot}${prefix}/share/doc/${name}/api
|
|
file copy ${worksrcpath}/docs/spring-framework-reference \
|
|
${destroot}${prefix}/share/doc/${name}/reference
|
|
}
|