1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/devel/pkg-config/Makefile
Jeremy Messenger 7e42d7a7c4 devel/pkgconfig -> devel/pkg-config
Rename this ports to use the real vendor package name. The advantage of this
is to allow our users' keyword search works and easier for users to file the
Bugzilla report when they use our name of ports. Debian, Gentoo, NetBSD and
other OSs have the correct package name, but not in our ports tree.

My team, FreeBSD GNOME Team, have agreed with it.

As for other ports, chase the rename.

PR:		ports/97985
Repocopy by:	marcus
2006-05-28 05:25:50 +00:00

42 lines
1.0 KiB
Makefile

# New ports collection makefile for: pkgconfig
# Date created: 30 April 2001
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/devel/pkgconfig/Makefile,v 1.6 2005/10/14 20:39:57 adamw Exp $
#
PORTNAME= pkg-config
PORTVERSION= 0.20
PORTREVISION= 2
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
.if ${X11BASE} != ${PREFIX}
PC_PATH:= ${PC_PATH}:${X11BASE}/libdata/pkgconfig
PC_PATH:= ${PC_PATH}:${X11BASE}/lib/pkgconfig
.endif
CONFIGURE_ARGS= --disable-threads \
--with-pc-path="${PC_PATH}"
.include <bsd.port.post.mk>