diff options
Diffstat (limited to 'exlibs/wafsamba.exlib')
-rw-r--r-- | exlibs/wafsamba.exlib | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/exlibs/wafsamba.exlib b/exlibs/wafsamba.exlib deleted file mode 100644 index 802d6ac..0000000 --- a/exlibs/wafsamba.exlib +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 2011 Pierre Lejeune <superheron@gmail.com> -# Distributed under the terms of the GNU General Public License v2 - -myexparam wafdir='./'buildtools/bin - -require waf [ waf_executable="python2 $(exparam wafdir)/waf" ] -require python [ blacklist='3' multibuild=false ] - -export_exlib_phases src_prepare src_configure - -DEPENDENCIES=" - build: - app-text/docbook-xml-dtd:4.2 - app-text/docbook-xsl-stylesheets - dev-libs/libxslt -" - -EWAF_ENVIRONMENT=( - PATH="$(exparam wafdir)${PATH+:}${PATH}" - LD_LIBRARY_PATH="bin/default${LD_LIBRARY_PATH+:}${LD_LIBRARY_PATH}" -) - -# You should add items to -# WAF_SRC_CONFIGURE_PARAMS using += -WAF_SRC_CONFIGURE_PARAMS=( - --bundled-libraries=NONE - --mandir=/usr/share/man - --infodir=/usr/share/info - --docdir=/usr/share/doc/${PNVR} - --localstatedir=/var - --sysconfdir=/etc - --disable-dependency-tracking - --disable-rpath - --disable-rpath-install -) - -wafsamba_src_prepare() { - default - - if test -f buildtools/wafadmin/Tools/config_c.py; then - # use prefixed pkg-config - edo sed -i \ - -e "s:pkg-config:$(exhost --tool-prefix)&:" \ - buildtools/wafadmin/Tools/config_c.py - fi -} - -wafsamba_src_configure() { - PYTHONARCHDIR="$(python_get_sitedir)" \ - waf_src_configure -} |