blob: 772f63adfd58d609235bbd4a57366894c9b45ba7 (
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
36
37
38
|
# $NetBSD: Makefile,v 1.36 2013/04/06 20:27:25 rodent Exp $
#
DISTNAME= pinfo-0.6.1
PKGREVISION= 6
CATEGORIES= misc
MASTER_SITES= # http://alioth.debian.org/download.php/1502/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://pinfo.alioth.debian.org/
COMMENT= Przemek's Info Viewer
USE_PKGLOCALEDIR= yes
USE_TOOLS+= msgfmt
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
CPPFLAGS+= -DDFLT_INFOPATH="\"/usr/share/info:${PREFIX}/${PKGINFODIR}:${X11BASE}/${PKGINFODIR}:${LOCALBASE}/${PKGINFODIR}:/usr/local/info\""
EGDIR= ${PREFIX}/share/examples/pinfo
CONF_FILES= ${EGDIR}/pinforc ${PKG_SYSCONFDIR}/pinforc
INFO_FILES= yes
INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} sysconfdir=${EGDIR:Q}
PKG_OPTIONS_VAR= PKG_OPTIONS.pinfo
PKG_SUPPORTED_OPTIONS= pinfo-native-curses
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpinfo-native-curses)
CONFIGURE_ARGS+= --with-vcurses
.else
.include "../../devel/ncurses/buildlink3.mk"
CONFIGURE_ARGS+= --with-ncurses=${BUILDLINK_PREFIX.ncurses}
.endif
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|