freebsd-ports/sysutils/renameutils/Makefile
Pawel Pekala 62287039dd The file renaming utilities consists of five programs designed to make renaming
of files faster and less cumbersome:
- qmv ("quick move") allows a bunch of file names to be edited in a text editor;
- imv ("interactive move") allows a single file name to be edited in the
  terminal using the GNU Readline library
- qcp and icp are similar to qmv and imv but copy files instead of moving them;
- deurlname removes URL encoded characters (such as %20 representing space) from
  file names.

WWW: http://www.nongnu.org/renameutils/

PR:		194045
Submitted by:	Matteo Cypriani <mcy@lm7.fr>
2014-12-12 22:16:44 +00:00

30 lines
600 B
Makefile

# Created by: Matteo Cypriani <mcy@lm7.fr>
# $FreeBSD$
PORTNAME= renameutils
PORTVERSION= 0.12.0
CATEGORIES= sysutils converters
MASTER_SITES= SAVANNAH
MAINTAINER= mcy@lm7.fr
COMMENT= Rename files faster and more easily
LICENSE= GPLv3
RUN_DEPENDS= gls:${PORTSDIR}/sysutils/coreutils
GNU_CONFIGURE= yes
USES= readline charsetfix
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
# This should not be needed any more for the next upstream version
post-patch:
@${REINPLACE_CMD} -e 's/($$bindir)/$$(bindir)/' \
${WRKSRC}/src/Makefile.in
.include <bsd.port.mk>