mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
# New ports collection makefile for: tkman
|
|
# Date created: 27 Dec 1994
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tkman
|
|
PORTVERSION= 2.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= misc tk
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Tcl/Tk based manual browser
|
|
|
|
LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84
|
|
RUN_DEPENDS= rman:${PORTSDIR}/textproc/rman \
|
|
glimpse:${PORTSDIR}/textproc/glimpse
|
|
|
|
USE_GMAKE= yes
|
|
MAKE_ARGS= WISH="${PREFIX}/bin/wish8.4" \
|
|
texinfodir="${PREFIX}/${INFO_PATH}" \
|
|
gzgrep="\"/usr/bin/zgrep -E\"" \
|
|
mastermen="\"/usr/share/man ${PREFIX}/man ${LOCALBASE}/man\"" \
|
|
masterbin="\"/usr/bin ${PREFIX}/bin ${LOCALBASE}/bin\"" \
|
|
manformat="{groff -Tlatin1 -te -mandoc}" \
|
|
manprint="{groff -mandoc -Tps -te -l}"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s;/usr/local/bin/wish;${PREFIX}/bin/wish8.4;" \
|
|
${WRKSRC}/contrib/tkmanclient
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tkman ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/retkman ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/manual.html ${DOCSDIR}
|
|
.endif
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/tkmanclient ${PREFIX}/bin
|
|
@${MKDIR} ${PREFIX}/etc/periodic/weekly
|
|
${INSTALL_SCRIPT} ${FILESDIR}/310.index_manpages ${PREFIX}/etc/periodic/weekly
|
|
|
|
.include <bsd.port.mk>
|