diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-07-11 19:21:19 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-07-11 19:21:19 +0300 |
commit | 5e351f4ee85102acc1fca033f6ba86ff7fe3705a (patch) | |
tree | 173aea419b3c754421c3ae7c00a3dd3f08bfc3de /exlibs | |
parent | bb21f1eb84acdf92d5eb628db9fc80f25e2cc4fe (diff) |
moved edited exherbo packages to separate repo "git://sss.chaoslab.ru/exherbo-edits-repo.git"
added latest codelite stable tag release as git-master failing to build
Diffstat (limited to 'exlibs')
-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 -} |