blob: fad1cd78340b2999cfd46664718e3e660a79edaf (
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
|
# $NetBSD: Makefile,v 1.11 2003/02/13 19:20:21 grant Exp $
DISTNAME= sh-utils-2.0
PKGREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GNU:=sh-utils/}
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.gnu.org/software/shellutils/shellutils.html
COMMENT= GNU shell utilities
USE_BUILDLINK2= YES
USE_PKGLOCALEDIR= YES
USE_PERL5= build
USE_GMAKE= YES
GNU_CONFIGURE= YES
.include "../../mk/bsd.prefs.mk"
.if defined(GNU_PROGRAM_PREFIX)
CONFIGURE_ARGS+= --program-prefix=${GNU_PROGRAM_PREFIX}
# devel/id-utils installs a 'gid' program, so conflict with it if
# GNU_PROGRAM_PREFIX == 'g'
. if ${GNU_PROGRAM_PREFIX} == "g"
CONFLICTS+= id-utils-[0-9]*
. endif
.endif
PLIST_SUBST+= GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX}
BUILD_DEFS+= GNU_PROGRAM_PREFIX
CONFIGURE_ENV+= ac_cv_func_uname=no
.include "../../mk/texinfo.mk"
.include "../../mk/bsd.pkg.mk"
|