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)
32 lines
626 B
Makefile
32 lines
626 B
Makefile
# Created by: ijliao
|
|
|
|
PORTNAME= gts
|
|
PORTVERSION= 0.7.6
|
|
PORTREVISION= 5
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= erik@bz.bzflag.bz
|
|
COMMENT= GNU Triangulated Surface Library
|
|
|
|
LICENSE= LGPL20
|
|
|
|
CONFLICTS= pcb
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USES= gnome libtool localbase pathfix pkgconfig
|
|
USE_GNOME= glib20
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= NETPBM
|
|
OPTIONS_SUB= yes
|
|
|
|
NETPBM_CONFIGURE_ENV_OFF= ac_cv_lib_netpbm_pgm_init=no
|
|
NETPBM_LIB_DEPENDS= libnetpbm.so:graphics/netpbm
|
|
|
|
post-patch-NETPBM-on:
|
|
@${REINPLACE_CMD} -e 's|<pgm.h>|<netpbm/pgm.h>|' \
|
|
${WRKSRC}/examples/happrox.c
|
|
|
|
.include <bsd.port.mk>
|