f90faf868a
As noted on ports@ recently, pkg_add -r relies on conflicts, and the sheer existence of updates means we MUST take the past into account in conflicts now. Note the renaming of hugs98 to valid package names where versions are concerned. This commit shows clearly the renaming of the xfce4 plugin packages, the ditching of eclipse flavors, the splitting of nessus into subpackages, the splitting of various other software documentations, some packaging bugs in kdeedu, and a lot of files moving around... okay pvalchev@
37 lines
949 B
Makefile
37 lines
949 B
Makefile
# $OpenBSD: Makefile,v 1.11 2005/08/16 09:49:52 espie Exp $
|
|
|
|
COMMENT= "Haskell 98 interpreter"
|
|
|
|
V= Mar2005
|
|
DISTNAME= hugs98-${V}
|
|
PKGNAME= hugs98-2005.03
|
|
CATEGORIES= lang
|
|
MAINTAINER= Don Stewart <dons@openbsd.org>
|
|
HOMEPAGE= http://www.haskell.org/hugs/
|
|
|
|
MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/${V}/
|
|
MASTER_SITES0= ftp://ftp.cse.unsw.edu.au/pub/users/dons/hugs98/
|
|
|
|
DISTFILES= ${DISTNAME}-patched.tar.gz ${DISTNAME}-regress.tar.bz2:0
|
|
WRKDIST= ${WRKDIR}/${DISTNAME}-patched
|
|
|
|
.if ${MACHINE_ARCH} != "m88k" && ${MACHINE_ARCH} != "vax"
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" CC="${CC}"
|
|
CONFIGURE_ARGS+=--with-pthreads --libdir=${PREFIX}/lib
|
|
|
|
do-regress:
|
|
@cd ${WRKDIST}/tests && sh testScript static tcheck rts libs ffi
|
|
|
|
# BSDish
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m ncurses readline GL X11 GLU
|
|
|
|
.include <bsd.port.mk>
|