mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 15:33:55 +02:00
43ef74eec9
bc/scan.c wrote 8 bytes to a 4-byte int on LP64_ARCHS. This broke the build on big-endian powerpc64, which was reading the wrong end of the oversize value. It might have caused a bus error on sparc64. ok Ivan Ivanov (maintainer)
22 lines
435 B
Makefile
22 lines
435 B
Makefile
COMMENT = GNU version of the arbitrary precision calculators bc and dc
|
|
DISTNAME = bc-1.07.1
|
|
PKGNAME = g${DISTNAME}
|
|
REVISION = 1
|
|
CATEGORIES = math
|
|
|
|
HOMEPAGE = https://www.gnu.org/software/bc/
|
|
MAINTAINER = Ivan Ivanov <rambiusparkisanius@gmail.com>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c curses edit
|
|
|
|
SITES = ${SITE_GNU:=bc/}
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --program-prefix=g \
|
|
--with-libedit
|
|
|
|
.include <bsd.port.mk>
|