blob: 62199609cdbaef797f950716c11cfbcc74dd4a48 (
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
|
# $NetBSD: Makefile,v 1.29 2009/05/20 00:58:28 wiz Exp $
DISTNAME= devtodo-0.1.20
PKGREVISION= 3
CATEGORIES= time
MASTER_SITES= http://swapoff.org/files/devtodo/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://swapoff.org/DevTodo
COMMENT= Display and manage a list of items that are outstanding
PKG_DESTDIR_SUPPORT= user-destdir
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_GNU_READLINE= # uses rl_startup_hook()
GNU_CONFIGURE= yes
EGDIR= ${PREFIX}/share/examples/devtodo
INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR}
post-install:
.for CFILE in changelog2html \
changelog2todo \
tdrec \
todo-nodone-html.xslt \
todo2html-2.xslt \
todo2html.xslt \
todo2pdf.README \
todo2pdf.sh \
todo2pdf.xslt
${INSTALL_DATA} ${WRKSRC}/contrib/${CFILE} ${DESTDIR}${EGDIR}
.endfor
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|