37 lines
982 B
Makefile
37 lines
982 B
Makefile
# $OpenBSD: Makefile,v 1.9 2000/09/02 14:54:32 espie Exp $
|
|
|
|
STK_VERSION= 3.1.1
|
|
STK_ARCH= $(OPSYS)-$(OPSYS_VER)-$(MACHINE)
|
|
DISTNAME= STk-${STK_VERSION}
|
|
CATEGORIES= lang
|
|
NEED_VERSION= 1.319
|
|
MASTER_SITES= ftp://kaolin.unice.fr/pub/STk/
|
|
|
|
MAINTAINER= ports@openbsd.org
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE=gnu dest
|
|
|
|
.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "arc" || \
|
|
${MACHINE_ARCH} == "pmax" || ${MACHINE_ARCH} == "powerpc")
|
|
CONFIGURE_ARGS+= --disable-dynload
|
|
.endif
|
|
|
|
post-build:
|
|
@cd ${WRKSRC} && mv config.make config.make.org && \
|
|
sed -e 's,${PREFIX},$${DESTDIR}${PREFIX},' \
|
|
<config.make.org >config.make
|
|
SUBST_VARS=STK_VERSION STK_ARCH
|
|
|
|
# fix badlink postinstall-wise
|
|
post-install:
|
|
.for i in stk-${STK_VERSION} snow-${STK_VERSION} stk snow
|
|
k=`readlink ${PREFIX}/bin/$i|sed -e 's,${WRKINST},,'`; echo $$k; ln -sf $$k ${PREFIX}/bin/$i
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|