# evolution/acinclude.m4 # shared configure.in hacks between Evolution and Connector # EVO_CHECK_LIB(dispname, pkgname, minvers[, maxvers]) # Checks if the package with human-readable name @dispname, known # to gnome-config as @pkgname exists and has an appropriate version. # The version must be >= @minvers. If @maxvers is equal to @minvers, # it must be exactly that version. Otherwise, if @maxvers is set, # the version must be LESS THAN @maxvers (not less than or equal). AC_DEFUN(EVO_CHECK_LIB, [ dispname="$1" pkgname="$2" minvers="$3" maxvers="$4" AC_MSG_CHECKING(for $dispname) if gnome-config --libs $pkgname > /dev/null 2>&1; then pkgvers=`gnome-config --modversion $pkgname | sed -e 's/^[[^0-9]]*//'` else pkgvers=not fi AC_MSG_RESULT($pkgvers found) pkgvers=`echo $pkgvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` cmpminvers=`echo $minvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` cmpmaxvers=`echo $maxvers | awk -F. '{ print $[]1 * 1000000 + $[]2 * 10000 + $[]3 * 100 + $[]4;}'` ok=yes if test "$pkgvers" -lt $cmpminvers; then ok=no elif test -n "$maxvers"; then if test "$pkgvers" -gt $cmpmaxvers; then ok=no elif test "$maxvers" != "$minvers" -a "$cmpmaxvers" -eq "$pkgvers"; then ok=no fi fi if test $ok = no; then case $maxvers in "") dispvers="$minvers or higher" ;; $minvers) dispvers="$minvers (exactly)" ;; *) dispvers="$minvers or higher, but less than $maxvers," ;; esac AC_MSG_ERROR([ "" "You need $dispname $dispvers to build $PACKAGE" "If you think you already have this installed, consult the README."]) fi ]) # EVO_PURIFY_SUPPORT # Add --enable-purify. If the user turns it on, subst PURIFY and set # the automake conditional ENABLE_PURIFY AC_DEFUN(EVO_PURIFY_SUPPORT, [ AC_ARG_ENABLE(purify, [ --enable-purify=[no/yes] Enable support for building executables with Purify.],,enable_purify=no) AC_PATH_PROG(PURIFY, purify, impure) AC_ARG_WITH(purify-options, [ --with-purify-options=OPTIONS Options passed to the purify command line (defaults to PURIFYOPTIONS variable).]) if test "x$with_purify_options" = "xno"; then with_purify_options="-always-use-cache-dir=yes -cache-dir=/gnome/lib/purify" fi if test "x$PURIFYOPTIONS" = "x"; then PURIFYOPTIONS=$with_purify_options fi AC_SUBST(PURIFY) AM_CONDITIONAL(ENABLE_PURIFY, test "x$enable_purify" = "xyes" -a "x$PURIFY" != "ximpure") PURIFY="$PURIFY $PURIFYOPTIONS" ]) # EVO_LDAP_CHECK(default) # Add --with-openldap and --with-static-ldap options. --with-openldap # defaults to the given value if not specified. If LDAP support is # configured, HAVE_LDAP will be defined and the automake conditional # ENABLE_LDAP will be set. LDAP_CFLAGS and LDAP_LIBS will be set # appropriately. AC_DEFUN(EVO_LDAP_CHECK, [ default="$1" AC_ARG_WITH(openldap, [ --with-openldap=[no/yes/PREFIX] Enable LDAP support in evolution]) AC_ARG_WITH(static-ldap, [ --with-static-ldap=[no/yes] Link LDAP support statically into evolution ]) AC_CACHE_CHECK([for OpenLDAP], ac_cv_with_openldap, ac_cv_with_openldap="${with_openldap:=$default}") case $ac_cv_with_openldap in no|"") with_openldap=no ;; yes) with_openldap=/usr ;; *) with_openldap=$ac_cv_with_openldap LDAP_CFLAGS="-I$ac_cv_with_openldap/include" LDAP_LDFLAGS="-L$ac_cv_with_openldap/lib" ;; esac if test "$with_openldap" != no; then AC_DEFINE(HAVE_LDAP,1,[Define if you have LDAP support]) case $with_static_ldap in no|"") with_static_ldap=no ;; *) with_static_ldap=yes ;; esac AC_CACHE_CHECK(if OpenLDAP is version 2.x, ac_cv_openldap_version2, [ CPPFLAGS_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $LDAP_CFLAGS" AC_EGREP_CPP(yes, [ #include "ldap.h" #if LDAP_VENDOR_VERSION > 20000 yes #endif ], ac_cv_openldap_version2=yes, ac_cv_openldap_version2=no) CPPFLAGS="$CPPFLAGS_save" ]) if test "$ac_cv_openldap_version2" = no; then AC_MSG_ERROR(evolution requires OpenLDAP version >= 2) fi AC_CHECK_LIB(resolv, res_query, LDAP_LIBS="-lresolv") AC_CHECK_LIB(socket, bind, LDAP_LIBS="$LDAP_LIBS -lsocket") AC_CHECK_LIB(nsl, gethostbyaddr, LDAP_LIBS="$LDAP_LIBS -lnsl") AC_CHECK_LIB(lber, ber_get_tag, [ if test "$with_static_ldap" = "yes"; then LDAP_LIBS="$with_openldap/lib/liblber.a $LDAP_LIBS" # libldap might depend on OpenSSL... We need to pull # in the dependency libs explicitly here since we're # not using libtool for the configure test. if test -f $with_openldap/lib/libldap.la; then LDAP_LIBS="`. $with_openldap/lib/libldap.la; echo $dependency_libs` $LDAP_LIBS" fi else LDAP_LIBS="-llber $LDAP_LIBS" fi AC_CHECK_LIB(ldap, ldap_open, [ if test $with_static_ldap = "yes"; then LDAP_LIBS="$with_openldap/lib/libldap.a $LDAP_LIBS" else LDAP_LIBS="-lldap $LDAP_LIBS" fi], LDAP_LIBS="", $LDAP_LDFLAGS $LDAP_LIBS) LDAP_LIBS="$LDAP_LDFLAGS $LDAP_LIBS" ], LDAP_LIBS="", $LDAP_LDFLAGS $LDAP_LIBS) if test -z "$LDAP_LIBS"; then AC_MSG_ERROR(could not find OpenLDAP libraries) fi AC_SUBST(LDAP_CFLAGS) AC_SUBST(LDAP_LIBS) fi AM_CONDITIONAL(ENABLE_LDAP, test $with_openldap != no) ]) # EVO_PTHREAD_CHECK AC_DEFUN([EVO_PTHREAD_CHECK],[ PTHREAD_LIB="" AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread", [AC_CHECK_LIB(pthreads, pthread_create, PTHREAD_LIB="-lpthreads", [AC_CHECK_LIB(c_r, pthread_create, PTHREAD_LIB="-lc_r", [AC_CHECK_LIB(pthread, __pthread_attr_init_system, PTHREAD_LIB="-lpthread", [AC_CHECK_FUNC(pthread_create)] )] )] )] ) AC_SUBST(PTHREAD_LIB) AC_PROVIDE([EVO_PTHREAD_CHECK]) ]) href='/~lantw44/cgit/freebsd-ports-gnome/tree/deskutils/calibre?h=dependabot/npm_and_yarn/devel/electron4/files/lodash-4.17.19&id=12e154d9ab5894a362257c23ad1d07d62058398a'>treecommitdiffstats
path: root/deskutils/calibre
Commit message (Expand)AuthorAgeFilesLines
* graphics/py-pillow: Update to 7.0.0kai2020-02-241-2/+3
* Update calibre to 4.11.2madpilot2020-02-232-4/+4
* Update calibre to 4.11.1madpilot2020-02-223-5/+4
* Update calibre to 4.10.1madpilot2020-02-082-5/+4
* Bump revision of poppler dependenciestcberner2020-02-041-0/+1
* Update calibre to 4.9.1madpilot2020-01-243-5/+9
* graphics/poppler: update to 0.84.0tcberner2020-01-231-1/+1
* Fix calibre-server startup script by extending the PATH to includemadpilot2020-01-212-0/+3
* Update calibre to 4.8.0madpilot2020-01-043-4/+6
* Update calibre to 4.7.0madpilot2019-12-282-5/+4
* Add textproc/py-markdown dependency, required by polish book functionality.madpilot2019-12-181-0/+2
* Update calibre to 4.6.0madpilot2019-12-153-10/+24
* Upgrade calibre to 4.5.0.madpilot2019-11-302-4/+4
* Update calibre to 4.4.0madpilot2019-11-233-4/+6
* Update calibre to 4.3.0madpilot2019-11-093-5/+18
* Add USES=xorg USES=gl, ports categories dzeising2019-11-051-2/+3
* graphics/poppler: update to 0.82.0tcberner2019-11-021-0/+1
* Update calibre to 4.2.0madpilot2019-10-193-4/+7
* Update calibre to 4.1.0madpilot2019-10-093-15/+4
* - Update calibre to 4.0.0madpilot2019-10-054-211/+190
* devel/icu: update to 65.1jbeich2019-10-041-1/+1
* graphics/poppler: update to 0.81.0tcberner2019-09-291-0/+1
* Update calibre to 3.48.0madpilot2019-09-132-4/+4
* Update calibre to 3.47.1madpilot2019-09-032-5/+4
* graphics/poppler: update to 0.80.0tcberner2019-09-021-0/+1
* Update calibre to 3.47.0madpilot2019-09-012-5/+4
* Convert to UCL & cleanup pkg-message (categories d)mat2019-08-141-4/+6
* graphics/poppler: update to 0.79.0tcberner2019-08-011-0/+1
* Update calibre to 3.46.0madpilot2019-07-202-4/+4
* Update calibre to 3.45.2madpilot2019-07-134-36/+6
* deskutils/calibre: prepare for Qt 5.13tcberner2019-07-111-0/+30
* graphics/poppler: update to 0.78.0tcberner2019-06-291-1/+1
* graphics/poppler: update to 0.77.0tcberner2019-06-011-0/+1
* Update calibre to 3.44.0madpilot2019-05-312-4/+4
* Update calibre to 3.43.0madpilot2019-05-292-11/+6
* graphics/poppler: update to 0.76.1tcberner2019-05-141-0/+1
* Update calibre to 3.42.0madpilot2019-04-302-4/+4
* Update calibre to 3.41.3madpilot2019-04-223-24/+28
* devel/icu: update to 64.1jbeich2019-03-281-0/+1
* Update calibre to 3.40.1madpilot2019-03-103-34/+4
* Update calibre to 3.39.1madpilot2019-02-022-4/+4
* Update calibre to 3.39.0madpilot2019-02-023-4/+5
* Update calibre to 3.38.1madpilot2019-01-193-209/+259
* Fix Qt5 symbol version scripts to put the catch-all clause first. Whentijl2019-01-161-0/+1
* - Update calibre to 3.37.0madpilot2019-01-053-12/+11
* Update calibre to 3.36.0madpilot2018-12-222-4/+4
* Update calibre to 3.35.0.madpilot2018-12-082-5/+4
* pyqt: Change install directories for Python flavor supporttcberner2018-11-231-1/+3
* Update calibre to 3.34.0madpilot2018-11-082-5/+4
* devel/icu: update to 63.1jbeich2018-10-231-0/+1
* Update calibre to 3.33.1madpilot2018-10-202-4/+4
* Update calibre to 3.32.0madpilot2018-09-283-13/+17
* Change x11/xorgproto to become a build depzeising2018-09-121-0/+1
* Update calibre to 3.31.0madpilot2018-09-083-4/+5
* Update calibre to 3.30.0madpilot2018-08-242-4/+4
* Update calibre to 3.29.0madpilot2018-08-113-4/+5
* Fix build when using python 3 as default by propagating flavoredmadpilot2018-07-231-1/+2
* Update calibre to 3.28.0madpilot2018-07-213-4/+7
* Update calibre to 3.27.1madpilot2018-07-073-5/+5
* devel/icu: update to 62.1jbeich2018-06-291-0/+1
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mktcberner2018-06-291-2/+2
* Update calibre to 3.26.1madpilot2018-06-162-4/+4
* Update calibre to 3.25.0madpilot2018-06-022-4/+4
* Update calibre to 3.24.2madpilot2018-05-282-4/+4
* Update calibre to 3.24.1madpilot2018-05-262-4/+4
* Update calibre to 3.24.0madpilot2018-05-262-4/+4
* Update calibre to 3.23.0madpilot2018-05-053-5/+6
* Move devel/py-msgpack-python to devel/py-msgpacksunpoet2018-04-231-2/+3
* Update calibre to 3.22.1madpilot2018-04-213-6/+7
* Update calibre to 3.21.0madpilot2018-04-072-5/+4
* devel/icu: update to 61.1jbeich2018-04-061-0/+1
* Update calibre to 3.20.0madpilot2018-03-242-4/+4
* Update calibre to 3.19.0madpilot2018-03-103-4/+6
* Update calibre to 3.18.0madpilot2018-02-242-5/+4
* Reduce dependency on the python2 metaportantoine2018-02-191-1/+2
* Update calibre to 3.17.0madpilot2018-02-103-4/+6
* Update Calibre to 3.16.0madpilot2018-01-263-4/+5