mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
819f25b36d
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
21 lines
517 B
Makefile
21 lines
517 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
|
|
PORTNAME= squirrel
|
|
DISTVERSION= 3_1
|
|
PORTREVISION= 3
|
|
CATEGORIES= lang
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}3/${PORTNAME}%20${PORTVERSION}%20stable
|
|
DISTNAME= ${PORTNAME}_${DISTVERSION}_stable
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= High level imperative/OO programming language
|
|
|
|
CONFLICTS= squsq
|
|
|
|
USES= cmake compiler:c++11-lang dos2unix
|
|
CMAKE_ARGS= -DINSTALL_INC_DIR:STRING=include
|
|
USE_LDCONFIG= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}3
|
|
|
|
.include <bsd.port.mk>
|