mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
25 lines
632 B
Makefile
25 lines
632 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
PORTNAME= pkgconf
|
|
PORTVERSION= 0.9.12
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://rabbit.dereferenced.org/~nenolod/distfiles/ \
|
|
http://files.etoilebsd.net/pkgconf/
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Utility to help to configure compiler and linker flags
|
|
|
|
USES= tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-pkg-config-dir=${PREFIX}/lib/pkgconfig:/usr/libdata/pkgconfig
|
|
CONFIGURE_ARGS+= --with-system-libdir=/usr/lib
|
|
CONFIGURE_ARGS+= --with-system-includedir=/usr/include
|
|
MAKE_ARGS= MANDIR="${MAN1PREFIX}/man/man1"
|
|
|
|
post-install:
|
|
${LN} -sf pkgconf ${STAGEDIR}${PREFIX}/bin/pkg-config
|
|
|
|
.include <bsd.port.mk>
|
|
#EOF
|