mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 20:20:30 -04:00
There have been lots of missing CONFLICTS_INSTALL entries, either because conflicting ports were added without updating existing ports, due to name changes of generated packages, due to mis-understanding the format and semantics of the conflicts entries, or just due to typoes in package names. This patch is the result of a comparison of all files contained in the official packages with each other. This comparison was based on packages built with default options and may therefore have missed further conflicts with optionally installed files. Where possible, version numbers in conflicts entries have been generalized, some times taking advantage of the fact that a port cannot conflict with itself (due to logic in bsd.port.mk that supresses the pattern match result in that case). A few ports that set the conflicts variables depending on complex conditions (e.g. port options), have been left unmodified, despite probably containing outdated package names. These changes should only affect the installation of locally built ports, not the package building with poudriere. They should give an early indication of the install conflict in cases where currently the pkg command aborts an installation when it detects that an existing file would be overwritten, Approved by: portmgr (implicit)
61 lines
1.8 KiB
Makefile
61 lines
1.8 KiB
Makefile
# Created by: Devin Teske <dteske@FreeBSD.org>
|
|
|
|
PORTNAME= shx
|
|
PORTVERSION= 0.2.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= http://synhxd.sourceforge.net/releases/
|
|
|
|
PATCH_SITES= ${MASTER_SITES}
|
|
PATCHFILES= ${DISTNAME}.diff.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Text based Hotline Communications client for Unix
|
|
|
|
LICENSE= GPLv1
|
|
|
|
OPTIONS_DEFINE= WARNINGS HTXF_PTHREAD HFS HOPE CIPHER COMPRESS HAL XMMS NOIPV4
|
|
OPTIONS_DEFAULT=HTXF_PTHREAD HFS HOPE CIPHER COMPRESS XMMS
|
|
|
|
WARNINGS_DESC= Show compiler warnings
|
|
HTXF_PTHREAD_DESC= Use pthread instead of fork or clone for htxf
|
|
HFS_DESC= Enable HFS file system emulation
|
|
HOPE_DESC= Enable HOPE (required by Cipher/Compress)
|
|
CIPHER_DESC= Enable Cipher (HOPE required)
|
|
COMPRESS_DESC= Enable Compress (HOPE required)
|
|
HAL_DESC= Compile MegaHAL (enables hal command)
|
|
XMMS_DESC= Enable trackname command
|
|
NOIPV4_DESC= IPv6 support (disables IPv4 support)
|
|
|
|
USES= readline ssl tar:tgz
|
|
MAKEFILE= makefile
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -I${OPENSSLINC}
|
|
LDFLAGS+= -L${OPENSSLLIB}
|
|
|
|
CONFLICTS_INSTALL= helix # bin/hx
|
|
|
|
CIPHER_IMPLIES= HOPE
|
|
COMPRESS_IMPLIES= HOPE
|
|
|
|
CIPHER_CONFIGURE_ENABLE= cipher
|
|
COMPRESS_CONFIGURE_ENABLE= compress
|
|
HAL_CONFIGURE_ENABLE= hal
|
|
HFS_CONFIGURE_ENABLE= hfs
|
|
HOPE_CONFIGURE_ENABLE= hope
|
|
HTXF_PTHREAD_CONFIGURE_ENABLE= htxf-pthread
|
|
NOIPV4_CONFIGURE_ENABLE= ipv6
|
|
XMMS_CONFIGURE_ENABLE= xmms
|
|
WARNINGS_CONFIGURE_ENABLE= warnings
|
|
|
|
PLIST_FILES= bin/hx \
|
|
share/examples/shx/hxrc \
|
|
share/examples/shx/hxvars
|
|
|
|
do-install:
|
|
${CP} -fv ${WRKSRC}/run/hx ${STAGEDIR}${PREFIX}/bin/
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/examples/${PORTNAME}
|
|
${CP} -fv ${WRKSRC}/run/hxrc ${STAGEDIR}${PREFIX}/share/examples/${PORTNAME}/
|
|
${CP} -fv ${WRKSRC}/run/hxvars ${STAGEDIR}${PREFIX}/share/examples/${PORTNAME}/
|
|
|
|
.include <bsd.port.mk>
|