- Fix LICENSE - Add LICENSE_FILE According to README.md, this software is distributed under the same terms as ruby with 2 exceptions: - lib/test/unit/diff.rb is a double license of the Ruby license and PSF license. - lib/test-unit.rb is a dual license of the Ruby license and LGPLv2.1 or later. To fit in our LICENSE framework, I changed LICENSE to GPLv2 and RUBY which cover entire software. Changes: https://github.com/test-unit/test-unit/blob/master/doc/text/news.md Reference: https://github.com/test-unit/test-unit/blob/master/README.md#license
24 lines
520 B
Makefile
24 lines
520 B
Makefile
# Created by: Eric Freeman <freebsdports@chillibear.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= test-unit
|
|
PORTVERSION= 3.1.5
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Improved version of Test::Unit bundled in Ruby
|
|
|
|
LICENSE= GPLv2 RUBY
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/GPL
|
|
LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= rubygem-power_assert>=0:${PORTSDIR}/devel/rubygem-power_assert
|
|
|
|
NO_ARCH= yes
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|