12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # $OpenBSD
- COMMENT = interactive fractal zoomer and morpher
- VERSION = 3.6
- DISTNAME = xaos-${VERSION}
- REVISION = 0
- CATEGORIES = graphics
- HOMEPAGE = http://matek.hu/xaos/doku.php
- MAINTAINER = Pascal Stumpf <pascal@stumpf.co>
- # GPLv2
- PERMIT_PACKAGE_CDROM = Yes
- WANTLIB = X11 Xext c gsl gslcblas m png z
- MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=xaos/XaoS/${VERSION}/}
- MODULES = devel/gettext
- LIB_DEPENDS = graphics/png \
- devel/gsl
- USE_GMAKE = Yes
- NO_TEST= Yes
- CONFIGURE_STYLE = gnu
- CONFIGURE_ARGS += --with-gsl=yes \
- --with-libiconv-prefix="${LOCALBASE}" \
- --with-libintl-prefix="${LOCALBASE}"
- CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
- pre-configure:
- perl -pi -e 's#/usr(/share/locale)#${PREFIX}\1#g' \
- ${WRKSRC}/configure ${WRKSRC}/src/ui/ui.c
- .include <bsd.port.mk>
|