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)
20 lines
507 B
Makefile
20 lines
507 B
Makefile
# Created by: Samuel Tardieu <sam@rfc1149.net>
|
|
|
|
PORTNAME= gputils
|
|
DISTVERSION= 1.5.0-1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/gputils/gputils/${DISTVERSION:C/-.*//}
|
|
|
|
MAINTAINER= tijl@FreeBSD.org
|
|
COMMENT= Utilities for Microchip PIC microcontrollers
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
CONFLICTS= gplink
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-dependency-tracking --disable-html-doc
|
|
USES= bison:alias gmake tar:bz2
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/-.*//}
|
|
|
|
.include <bsd.port.mk>
|