d6fdd397ab
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. PR pkg/52546, which I neglected for a year.
17 lines
381 B
Makefile
17 lines
381 B
Makefile
# $NetBSD: options.mk,v 1.1 2018/11/09 12:50:49 bsiegert Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.renameutils
|
|
PKG_SUPPORTED_OPTIONS= nls
|
|
PKG_SUGGESTED_OPTIONS= nls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= nls
|
|
|
|
.if !empty(PKG_OPTIONS:Mnls)
|
|
USE_PKGLOCALEDIR= yes
|
|
PLIST.nls= yes
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
.endif
|