diff options
author | bapt <bapt@FreeBSD.org> | 2013-04-23 22:28:52 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-04-23 22:28:52 +0800 |
commit | 10a17b99436a63f642d80e3639ae76d45184a306 (patch) | |
tree | ab5c56c54bfb491c42f7e43e651cffb55eba09c3 /Mk | |
parent | b3deb42ddb0eae41fcd2d6e0ff7077ce336004a0 (diff) | |
download | freebsd-ports-gnome-10a17b99436a63f642d80e3639ae76d45184a306.tar.gz freebsd-ports-gnome-10a17b99436a63f642d80e3639ae76d45184a306.tar.zst freebsd-ports-gnome-10a17b99436a63f642d80e3639ae76d45184a306.zip |
Remove now unused USE_PKGCONFIG code
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index e315b1e1231a..8833ae433823 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -529,10 +529,6 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # # USE_NCURSES - If set, this port relies on the ncurses package. # -# USE_PKGCONFIG - Implies that the port uses pkg-config in one way or another: -# 'build', 'run', 'both', implying build, -# runtime, and both build/run dependencies -# # Conflict checking. Use if your port cannot be installed at the same time as # another package. # @@ -1696,18 +1692,6 @@ EXTRACT_DEPENDS+= unmakeself:${PORTSDIR}/archivers/unmakeself BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake CONFIGURE_ENV+= MAKE=${GMAKE} .endif -.if defined(USE_PKGCONFIG) -.if ${USE_PKGCONFIG:L} == yes || ${USE_PKGCONFIG:L} == build -BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -CONFIGURE_ENV+= PKG_CONFIG=pkgconf -.elif ${USE_PKGCONFIG:L} == both -RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -CONFIGURE_ENV+= PKG_CONFIG=pkgconf -.elif ${USE_PKGCONFIG:L} == run -RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -.endif -.endif .if defined(USE_GCC) || defined(USE_FORTRAN) .include "${PORTSDIR}/Mk/bsd.gcc.mk" |