blob: 471a420a9f731829647c15e42093bc421ec6e4ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: xsearch
# Date created: 26 August 2006
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= xsearch
PORTVERSION= 0.4.1
CATEGORIES= sysutils
MASTER_SITES= SF
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Search using regexes for file names and text
USE_GNOME= gtk20
USE_GCC= 3.3+
USE_GETTEXT= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-libintl-prefix=${LOCALBASE}
CONFIGURE_ENV= CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
PLIST_FILES= bin/xsearch %%DATADIR%%/pixmaps/${PORTNAME}-300x300.png \
%%DATADIR%%/pixmaps/${PORTNAME}-32x32.png
PLIST_DIRS= %%DATADIR%%/pixmaps %%DATADIR%%
CFLAGS= -I${LOCALBASE}/include
LDFLAGS=-L${LOCALBASE}/lib
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
BROKEN= does not compile on 4.x
.endif
.include <bsd.port.post.mk>
|