blob: fee4ffca622f0722b597eb81d5d781a48d934e81 (
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
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.9 2008/09/30 14:41:03 joerg Exp $
#
DISTNAME= 9base-20051114
CATEGORIES= sysutils shells
MASTER_SITES= http://www.suckless.org/download/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.suckless.org/wiki/wmii/download
COMMENT= Port of various original plan9 tools
PKG_DESTDIR_SUPPORT= user-destdir
CONFLICTS= rc-[0-9]*
PKG_SHELL= bin/rc
.include "../../mk/bsd.prefs.mk"
# Darwin doesn't support static link.
# See http://developer.apple.com/qa/qa2001/qa1118.html
.if ${OPSYS} != "Darwin"
LDFLAGS+= -static
.endif
.if ${GNU_PROGRAM_PREFIX} == ""
CONFLICTS+= coreutils-[0-9]*
CONFLICTS+= grep-[0-9]*
CONFLICTS+= gsed-[0-9]*
.endif
post-extract:
${LN} -s getcallerpc-x86_64.c ${WRKSRC}/lib9/getcallerpc-amd64.c
.include "../../mk/bsd.pkg.mk"
|