blob: d0c302431000e9ec325d8bd458f961e427c93008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: Makefile,v 1.10 2000/07/11 09:31:33 agc Exp $
# FreeBSD Id: Makefile,v 1.5 1998/11/29 12:43:12 asami Exp
#
DISTNAME= asapm-2.9
CATEGORIES= sysutils x11
MASTER_SITES= http://www.tigr.net/afterstep/as-apps/download/asapm/ \
ftp://ftp.afterstep.org/apps/asapm/ \
ftp://fuf.sh.cvut.cz/pub/AfterStep/apps/asapm/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.tigr.net/afterstep/as-apps/download/asapm/
.if !exists(/usr/include/machine/apmvar.h)
IGNORE+= "APM is not available for ${MACHINE_PLATFORM}"
.endif
DEPENDS+= xpm-*:../../graphics/xpm
GNU_CONFIGURE= yes
USE_X11= yes
CONFIGURE_ARGS+= --disable-jpeg # there actually is no JPEG support
CONFIGURE_ARGS+= --with-xpm \
--with-xpm-includes="`${PKG_INFO} -qp xpm | ${AWK} '{print $$2}'`/include" \
--with-xpm-library="`${PKG_INFO} -qp xpm | ${AWK} '{print $$2}'`/lib"
.include "../../mk/bsd.pkg.mk"
|