diff options
author | mat <mat@FreeBSD.org> | 2018-02-15 20:34:49 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-02-15 20:34:49 +0800 |
commit | ef3c2f92f74f30886114eab9201e86f48dcb026d (patch) | |
tree | bf19f32ea6808c09829f1a5d7bde66757b0d8790 /audio | |
parent | 644aeb581e7615d27d404a74f183abbe17284967 (diff) | |
download | freebsd-ports-gnome-ef3c2f92f74f30886114eab9201e86f48dcb026d.tar.gz freebsd-ports-gnome-ef3c2f92f74f30886114eab9201e86f48dcb026d.tar.zst freebsd-ports-gnome-ef3c2f92f74f30886114eab9201e86f48dcb026d.zip |
devel/boost-python-libs got forgotten in the python flavorization, fix
this oversight.
Reviewed by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D14368
Diffstat (limited to 'audio')
-rw-r--r-- | audio/py-tagpy/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/py-tagpy/Makefile b/audio/py-tagpy/Makefile index fdc92ee22e83..66ea6b1992bb 100644 --- a/audio/py-tagpy/Makefile +++ b/audio/py-tagpy/Makefile @@ -13,7 +13,7 @@ COMMENT= Python bindings for Scott Wheeler's TagLib LICENSE= MIT -LIB_DEPENDS= libboost_python.so:devel/boost-python-libs \ +LIB_DEPENDS= ${PY_BOOST} \ libtag.so:audio/taglib USES= compiler:c++11-lang python shebangfix @@ -23,7 +23,7 @@ CONFIGURE_ARGS= --taglib-inc-dir="${LOCALBASE}/include/taglib" \ --taglib-lib-dir="${LOCALBASE}/lib" \ --boost-inc-dir="${PYTHON_INCLUDEDIR},${LOCALBASE}/include" \ --boost-lib-dir="${PYTHON_LIBDIR},${LOCALBASE}/lib" \ - --boost-python-libname="boost_python" + --boost-python-libname="${PY_BOOST_LIB}" SHEBANG_FILES= configure.py USE_PYTHON= distutils autoplist |