developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
41 lines
1.4 KiB
Makefile
41 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.24 2006/03/04 21:29:32 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= manedit-0.5.6
|
|
PKGREVISION= 4
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ftp://wolfpack.twu.net/users/wolfpack/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://wolfpack.twu.net/ManEdit/
|
|
COMMENT= UNIX Manual (man, manpage) page editor, viewer, and browser for X11
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/manedit
|
|
|
|
MAKE_ENV+= CPP=${CXX:Q}
|
|
|
|
# The FreeBSD makefile may be used as "generic UNIX".
|
|
MAKEFILE= Makefile.FreeBSD
|
|
|
|
INSTALLATION_DIRS= bin man/man1 man/man7
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/manedit ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/utils/manview.sh ${PREFIX}/bin/manview
|
|
${INSTALL_SCRIPT} ${WRKSRC}/utils/manwrap.sh ${PREFIX}/bin/manwrap
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/manedit \
|
|
${PREFIX}/share/manedit/templates \
|
|
${PREFIX}/share/manedit/icons
|
|
${INSTALL_MAN} ${WRKSRC}/manedit.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/help/manpage_writing_procedures \
|
|
${PREFIX}/man/man7/manpage_writing_procedures.7
|
|
${INSTALL_MAN} ${WRKSRC}/help/manpage_xml_referance \
|
|
${PREFIX}/man/man7/manpage_xml_reference.7
|
|
cd ${WRKSRC}/templates && ${INSTALL_DATA} api.mpt config.mpt \
|
|
intro.mpt program.mpt ${PREFIX}/share/manedit/templates
|
|
cd ${WRKSRC} && ${INSTALL_DATA} manedit.xpm \
|
|
${PREFIX}/share/manedit/icons
|
|
|
|
.include "../../x11/gtk/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|