mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 14:10:30 -04:00
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"). Approved by: portmgr (blanket)
28 lines
716 B
Makefile
28 lines
716 B
Makefile
# Created by: Xin Li <delphij@FreeBSD.org>
|
|
|
|
PORTNAME= cvsup-static
|
|
PORTVERSION= 16.1h
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= LOCAL/delphij
|
|
PKGNAMEPREFIX= binary-
|
|
DISTNAME= cvsup-without-gui-static-${ARCH}-${PORTVERSION}
|
|
|
|
MAINTAINER= delphij@FreeBSD.org
|
|
COMMENT= File distribution system optimized for CVS
|
|
|
|
ONLY_FOR_ARCHS= amd64
|
|
|
|
CONFLICTS_INSTALL= modula3
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/distinfo.${ARCH}
|
|
|
|
NO_BUILD= yes
|
|
USES= tar:xz
|
|
|
|
do-install:
|
|
(cd ${WRKDIR} && ${COPYTREE_BIN} bin ${STAGEDIR}${PREFIX})
|
|
(cd ${WRKDIR} && ${COPYTREE_BIN} sbin ${STAGEDIR}${PREFIX})
|
|
(cd ${WRKDIR} && ${COPYTREE_SHARE} share/cvsup ${STAGEDIR}${PREFIX})
|
|
(cd ${WRKDIR} && ${COPYTREE_SHARE} man ${STAGEDIR}${PREFIX})
|
|
|
|
.include <bsd.port.mk>
|