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)
27 lines
547 B
Makefile
27 lines
547 B
Makefile
# Created by: KOMATSU Shinichiro
|
|
|
|
PORTNAME= mkbold
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= PORTS_JP
|
|
EXTRACT_SUFX= .bz2
|
|
|
|
MAINTAINER= koma2@lovepeers.org
|
|
COMMENT= Perl script to make BDF font bold
|
|
|
|
CONFLICTS= mkbold-mkitalic
|
|
|
|
PLIST_FILES= bin/mkbold
|
|
USES= shebangfix perl5 tar:bzip2
|
|
SHEBANG_FILES= mkbold
|
|
EXTRACT_CMD= ${BZCAT}
|
|
EXTRACT_BEFORE_ARGS= #
|
|
EXTRACT_AFTER_ARGS= > ${WRKSRC}/mkbold
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/mkbold ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|