1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/devel/tdl/Makefile
Stefan Eßer 819f25b36d */*: Remove redundant '-[0-9]*' from CONFLICTS
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)
2021-10-29 11:50:18 +02:00

32 lines
641 B
Makefile

# Created by: petef
PORTNAME= tdl
PORTVERSION= 1.5.2
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://www.rpcurnow.force9.co.uk/tdl/
MAINTAINER= ports@FreeBSD.org
COMMENT= To-do list manager
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
CONFLICTS= devtodo
USES= readline
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=--prefix=${PREFIX} --readline-dir=${LOCALBASE}
post-patch:
@${REINPLACE_CMD} -e 's/-R\$$/-Wl,-rpath,$$/' ${WRKSRC}/configure
post-install:
${CHMOD} u+w ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
${CHMOD} u-w ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>