mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
5933ac0b09
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)
44 lines
797 B
Makefile
44 lines
797 B
Makefile
# Created by: Gabor Kovesdan <gabor@FreeBSD.org>
|
|
|
|
PORTNAME= bc
|
|
DISTVERSION= 1.07.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= math
|
|
MASTER_SITES= GNU
|
|
PKGNAMEPREFIX= gnu
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNU bc/dc calculator
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_powerpc64= fails to build: tests fail with error code 2
|
|
|
|
USES= cpe libedit makeinfo
|
|
CPE_VENDOR= gnu
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-libedit
|
|
INFO= bc \
|
|
dc
|
|
PLIST_FILES= bin/bc \
|
|
bin/dc \
|
|
man/man1/bc.1.gz \
|
|
man/man1/dc.1.gz
|
|
PORTEXAMPLES= ckbook.b \
|
|
pi.b \
|
|
primes.b \
|
|
twins.b
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
CONFLICTS_INSTALL= gh-bc
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
.for f in ${PORTEXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/Examples/${f} ${STAGEDIR}${EXAMPLESDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|