7ea77df7b2
- remove leftover autoconf log/cache etc. that was leftover in the tarball, include a minimalist config.cache that overrides a handful of the tests.
33 lines
742 B
Makefile
33 lines
742 B
Makefile
# $OpenBSD: Makefile,v 1.12 2001/01/16 15:16:31 brad Exp $
|
|
# $FreeBSD: Makefile,v 1.6 1998/09/22 15:30:37 vanilla Exp $
|
|
|
|
DISTNAME= aalib-1.2
|
|
CATEGORIES= graphics
|
|
NEED_VERSION= 1.336
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= libs/graphics
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ARGS+= --enable-static
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L} == "no_x11"
|
|
CONFIGURE_ARGS+= --without-x
|
|
.endif
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC}; rm -f {config.cache,config.h,config.log,config.status}
|
|
@cp -f ${FILESDIR}/config.cache ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|