mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 15:37:40 -04:00
The OSSP project uses a customized version of the BSD-4-Clause license making the use of this license pattern irrelevant. Update it to keep the correct permissions granted by the OSSP license without confusing the user pretending this is a BSD one. PR: 281423 Reported by: <nabijaczleweli@nabijaczleweli.xyz>
30 lines
688 B
Makefile
30 lines
688 B
Makefile
PORTNAME= mm
|
|
PORTVERSION= 1.4.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= OSSP/lib/${PORTNAME}
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Shared memory allocation library for pre-forked process models
|
|
WWW= http://www.ossp.org/pkg/lib/mm/
|
|
|
|
LICENSE= UNKNOWN
|
|
LICENSE_NAME= unknown
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
USES= libtool
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
|
|
|
|
post-build:
|
|
@${ECHO_MSG} "===> Use 'make test' to run a quick test suite."
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmm.so
|
|
|
|
test:
|
|
@cd ${WRKSRC} && ${MAKE} test
|
|
|
|
.include <bsd.port.mk>
|