pkgsrc/x11/bbapm/Makefile
jschauma aab069285f For this to work nicely on Linux, we need to:
- add -lapm to LDFLAGS (which was removed during patching)
	- ifdef our own net_apm.cc (created during patching)
	- change ONLY_FOR_PLATFORMS from ... Linux-*-i[3-6]86 to
	  ... Linux-*-* (all Linuxen should have include/apm.h)
2002-09-08 00:03:56 +00:00

41 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.3 2002/09/08 00:03:56 jschauma Exp $
# based on
# FreeBSD port:
# ID: ports/x11-wm/bbapm/Makefile,v 1.5 2002/09/02 01:30:15 lioux Exp
# OpenBSD patch for apm, available from:
# http://bbtools.windsofstorm.net/sources/bbapm-0.0.1-openbsd-patch.diff
DISTNAME= bbapm-0.0.1
CATEGORIES= x11 wm
MASTER_SITES= http://bbtools.windsofstorm.net/sources/
MAINTAINER= jschauma@netbsd.org
HOMEPAGE= http://bbtools.windsofstorm.net/
COMMENT= APM monitor for Blackbox
GNU_CONFIGURE= yes
LDFLAGS+= -Wl,-R${X11BASE}/lib
# For now:
# We use i386/apmvar.h; other architectures will require modification
# of the patches, probably something like ${MACHINE_ARCH}/apmvar.h in
# patch-ak
ONLY_FOR_PLATFORM= NetBSD-*-i386 Linux-*-*
post-patch:
${SED} -e 's,@PREFIX@,${PREFIX},' ${WRKSRC}/data/bbapm.1.tmp > \
${WRKSRC}/data/bbapm.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bbapm ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/data/bbapm.1 ${PREFIX}/man/man1/
${INSTALL_DATA_DIR} ${PREFIX}/share/bbtools
.for a in README.bbapm bbapm.conf bbapm.nobb bbapm.style
${INSTALL_DATA} ${WRKSRC}/data/${a} ${PREFIX}/share/bbtools
.endfor
.include "../../mk/bsd.pkg.mk"
.if ${OPSYS} == "Linux"
LDFLAGS+= -lapm
.endif