215717c41e
Autojump is a tool that acts as a complement to cd: it makes navigating your filesystem a lot faster. It works by automagically maintaining a database of the directories you use the most from the command line, and allows you to jump back and forth between them, by typing just a few letters of the name of the directory you want to jump to. PR: ports/151467 Submitted by: Neeraj Verma <neeraj.verma.ports@vermatech.com>
62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
# New ports collection makefile for: autojump
|
|
# Date created: 12 October 2011
|
|
# Whom: Neeraj Verma <neeraj.verma.ports@vermatech.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= autojump
|
|
PORTVERSION= 13
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://cloud.github.com/downloads/joelthelion/autojump/ \
|
|
http://www.vermatech.com/distfiles/
|
|
DISTNAME= autojump_v${PORTVERSION}
|
|
EXTRACT_SUFX= .tar.gz
|
|
|
|
MAINTAINER= neeraj.verma.ports@vermatech.com
|
|
COMMENT= Autojump is a tool that acts as a complement to cd
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash
|
|
|
|
USE_PYTHON_RUN= YES
|
|
|
|
NO_BUILD= YES
|
|
|
|
SUB_FILES+= pkg-install
|
|
|
|
PLIST_FILES= bin/autojump \
|
|
bin/jumpapplet \
|
|
share/autojump/autojump.bash \
|
|
share/autojump/autojump.zsh \
|
|
share/autojump/icon.png
|
|
MAN1= autojump.1
|
|
|
|
OPTIONS= ZSH "Install zsh version as well." On
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_ZSH)
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/zsh:${PORTSDIR}/shells/zsh
|
|
PLIST_FILES+= share/zsh/site-functions/_j
|
|
.endif
|
|
|
|
PLIST_DIRS= share/autojump
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|/usr/bin/python|${PYTHON_CMD}|' ${WRKSRC}/autojump
|
|
@${REINPLACE_CMD} -e 's|/usr$$|${PREFIX}|' -e 's|/usr/local|${PREFIX}|' -e 's|/bin/bash|${PREFIX}/bin/bash|' ${WRKSRC}/install.sh
|
|
@${REINPLACE_CMD} -e 's|/usr$$|${PREFIX}|' -e 's|/usr/local|${PREFIX}|' -e 's|/bin/zsh|${PREFIX}/bin/zsh|' ${WRKSRC}/install.zsh
|
|
|
|
do-install:
|
|
.if defined(WITH_ZSH)
|
|
@(cd ${INSTALL_WRKSRC} && ${SETENV} PREFIX=${PREFIX} ./install.zsh )
|
|
.else
|
|
@(cd ${INSTALL_WRKSRC} && ${SETENV} PREFIX=${PREFIX} ./install.sh )
|
|
.endif
|
|
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|