Files

52 lines
2.0 KiB
Tcl
Raw Permalink Normal View History

2020-04-10 01:18:39 +05:30
# -*- 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
2005-09-09 19:29:24 +00:00
PortSystem 1.0
2020-04-10 01:18:39 +05:30
PortGroup java 1.0
PortGroup github 1.0
2005-09-09 19:29:24 +00:00
2026-02-08 21:00:54 +01:00
github.setup ehcache ehcache3 3.11.1 v
github.tarball_from releases
2020-04-10 01:18:39 +05:30
name ehcache
distname ${name}-${version}
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
categories java
maintainers nomaintainer
2022-10-31 08:34:53 +11:00
platforms any
2020-04-10 01:18:39 +05:30
license Apache-2
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
description Ehcache is a pure Java, in-process object cache.
long_description Ehcache is a pure Java, in-process cache with the \
following features: \
2020-04-11 03:52:48 -05:00
\n 1. Fast \
\n 2. Simple \
\n 3. Acts as a pluggable cache for Hibernate \
\n 4. Small foot print both in terms of size and memory requirements. \
2020-04-11 03:52:48 -05:00
\n 5. Minimal dependencies. \
\n 6. Fully documented. See the online documentation, FAQ and the online JavaDoc. \
\n 7. Comprehensive test coverage. See the Clover test report. \
\n 8. Scalable to hundreds of caches and large multi-CPU servers. \
2020-04-11 03:52:48 -05:00
\n 9. Provides LRU, LFU and FIFO cache eviction policies. \
\n10. Available under the Apache license. Ehcache's copyright and licensing has \
2020-04-10 01:18:39 +05:30
been reviewed and approved by the Apache Software Foundation, making ehcache \
suitable for use in Apache projects. \
2020-04-11 03:52:48 -05:00
\n11. Production tested. All final versions of ehcache are production tested for \
2020-04-10 01:18:39 +05:30
several weeks on a large and very busy eCommerce site before release.
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
extract.suffix .jar
extract.only
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
supported_archs noarch
2005-09-09 19:29:24 +00:00
2026-02-08 21:00:54 +01:00
checksums sha256 8fcfc71f6d718a9be0c156ba581cc460b23a33d174ea9577228844a898d9fc00 \
rmd160 9c7eef427706c91c8e009b5305f81e72814ff027 \
size 2435086
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
use_configure no
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
build {}
2005-09-09 19:29:24 +00:00
2020-04-10 01:18:39 +05:30
destroot {
xinstall -m 755 -d ${destroot}${prefix}/share/java ${destroot}${prefix}/share/doc/${name}
file copy ${distpath}/${distfiles} ${destroot}${prefix}/share/doc/${name}
2005-09-09 19:29:24 +00:00
}