* To search using locate you don't have to switch to a prompt. * The search results are shown to you, as if you were in a directory. Any found file is just one click away. * You could e.g. move all found files using Drag & Drop. * And all that's possible from practically any KDE program, that can open files. WWW: http://arminstraub.com/browse.php?page=programs_kiolocate&lang=en Submitted by: fusselbaer <e-ports (at) gmx.de> Approved by: miwi (mentor)
34 lines
770 B
Makefile
34 lines
770 B
Makefile
# New ports collection makefile for: kio_locate
|
|
# Date created: 2007-08-26
|
|
# Whom: fusselbaer <e-ports@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kio_locate
|
|
PORTVERSION= 0.4.4
|
|
CATEGORIES= deskutils kde
|
|
MASTER_SITES= http://arminstraub.com/downloads/kio-locate/
|
|
DISTNAME= kio-locate_${PORTVERSION}
|
|
|
|
MAINTAINER= e-ports@gmx.de
|
|
COMMENT= Locate KIO for Konqueror
|
|
|
|
WRKSRC= ${WRKDIR}/kio-locate-${PORTVERSION}
|
|
|
|
USE_SCONS= yes
|
|
USE_KDELIBS_VER= 3
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
post-extract:
|
|
${REINPLACE_CMD} 's/LocateProtocol:://' ${WRKSRC}/src/kio_locate.h
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/scons -C ${WRKSRC} prefix=${PREFIX}
|
|
|
|
.include <bsd.port.mk>
|