blob: b3cff746a45384731774f990f5f331e6a3334356 (
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
35
36
37
|
# New ports collection makefile for: pkgconfig
# Date created: 30 April 2001
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/devel/pkg-config/Makefile,v 1.9 2007/07/01 20:46:42 mezz Exp $
#
PORTNAME= pkg-config
PORTVERSION= 0.22
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://pkgconfig.freedesktop.org/releases/
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= A utility to retrieve information about installed libraries
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_GNOME= gnometarget
MAN1= pkg-config.1
.include <bsd.port.pre.mk>
PC_PATH=${PREFIX}/libdata/pkgconfig
PC_PATH:=${PC_PATH}:${PREFIX}/lib/pkgconfig
.if ${LOCALBASE} != ${PREFIX}
PC_PATH:= ${PC_PATH}:${LOCALBASE}/libdata/pkgconfig
PC_PATH:= ${PC_PATH}:${LOCALBASE}/lib/pkgconfig
.endif
CONFIGURE_ARGS= --disable-threads \
--with-pc-path="${PC_PATH}"
.include <bsd.port.post.mk>
|