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)
31 lines
666 B
Makefile
31 lines
666 B
Makefile
# Created by: rch@richard.eu.org
|
|
|
|
PORTNAME= yudit
|
|
PORTVERSION= 3.0.7
|
|
CATEGORIES= editors converters print
|
|
MASTER_SITES= http://yudit.org/download/ \
|
|
SUNSITE/apps/editors/X
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= Multi-lingual Unicode text editor with TTF support
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.TXT
|
|
|
|
CONFLICTS= netatalk
|
|
|
|
USES= gmake xorg
|
|
USE_XORG= x11
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="Yudit" "${COMMENT}" "${PREFIX}/share/pixmaps/yudit.xpm" \
|
|
"yudit" "Office;" false
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/icons/SS_Yudit_XPM.xpm \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/yudit.xpm
|
|
|
|
.include <bsd.port.mk>
|