18+ results for 'mythes source:FedoraProject' (0 ms)
Not the results you expected?
mythes-1.2.0-vanilla-th-gen-idx.patch (git://pkgs.fedoraproject.org/libreoffice) Patch · 98 lines
makefile.mk (git://pkgs.fedoraproject.org/libreoffice) Makefile · 121 lines
28 PRJ=.
30 PRJNAME=mythes
31 TARGET=mythes
37 # --- Files --------------------------------------------------------
39 TARFILE_NAME=mythes-1.2.2
40 TARFILE_MD5=e1e255dc43dbcbb34cb19e8a0eba90ae
44 PATCH_FILES=\
45 mythes-1.2.0-vanilla-th-gen-idx.patch \
46 mythes-1.2.0-makefile-mk.diff \
47 mythes-1.2.0-android.patch
49 .IF "$(COM)"=="GCC"
makefile.mk (git://pkgs.fedoraproject.org/mythes) Makefile · 63 lines
FindMyThesLIB.cmake (git://pkgs.fedoraproject.org/lyx) CMake · 29 lines
6 set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
8 if (MYTHESLIB_INCLUDE_DIR)
9 # Already in cache, be silent
10 set(MYTHESLIB_FIND_QUIETLY TRUE)
11 endif()
13 set(MYTHES_H mythes.hxx)
14 find_path(MYTHESLIB_INCLUDE_DIR ${MYTHES_H}
16 /usr/local/include)
18 set(POTENTIAL_MYTHES_LIBS mythes)
20 find_library(MYTHESLIB_LIBRARY NAMES ${POTENTIAL_MYTHES_LIBS}
24 # all listed variables are TRUE
25 include(FindPackageHandleStandardArgs)
26 find_package_handle_standard_args(MYTHESLIB DEFAULT_MSG MYTHESLIB_LIBRARY MYTHESLIB_INCLUDE_DIR)
28 mark_as_advanced(MYTHESLIB_LIBRARY MYTHESLIB_INCLUDE_DIR)
example.cxx (git://pkgs.fedoraproject.org/mythes) C++ · 120 lines
Library_lnth.mk (git://pkgs.fedoraproject.org/libreoffice) Makefile · 73 lines
Makefile.am (git://pkgs.fedoraproject.org/lyx) Makefile · 174 lines
makefile.mk (git://pkgs.fedoraproject.org/libreoffice) Makefile · 117 lines
mythes.hxx (git://pkgs.fedoraproject.org/mythes) C++ Header · 77 lines
mythes-1.2.0-android.patch (git://pkgs.fedoraproject.org/libreoffice) Patch · 21 lines
configure.ac (git://pkgs.fedoraproject.org/mythes) m4 · 32 lines
6 AC_PREREQ(2.59)
7 AC_INIT([mythes],[1.2.3],[nemeth@openoffice.org])
9 AC_CANONICAL_SYSTEM
10 AC_SUBST(XFAILED)
12 AM_INIT_AUTOMAKE(mythes, 1.2.3)
13 MYTHES_VERSION_MAJOR=`echo $VERSION | cut -d"." -f1`
14 MYTHES_VERSION_MINOR=`echo $VERSION | cut -d"." -f2`
15 AC_SUBST(MYTHES_VERSION_MAJOR)
16 AC_SUBST(MYTHES_VERSION_MINOR)
18 AC_CONFIG_SRCDIR([config.h.in])
CMakeLists.txt (git://pkgs.fedoraproject.org/lyx) CMake · 85 lines
16 file(GLOB support_headers ${TOP_SRC_DIR}/src/support/${LYX_HPP_FILES})
18 file(GLOB support_mythes_sources ${TOP_SRC_DIR}/src/support/mythes/*.cxx)
19 file(GLOB support_mythes_headers ${TOP_SRC_DIR}/src/support/mythes/*.hxx)
47 include_directories(${TOP_SRC_DIR}/src/support
48 ${CMAKE_BINARY_DIR}/src/support
49 ${TOP_SRC_DIR}/src/support/mythes
50 ${QT_INCLUDES}
51 ${ICONV_INCLUDE_DIR}
55 if(NOT LYX_MERGE_FILES)
56 set(support_sources ${support_sources} ${support_mythes_sources} ${support_linkback_sources})
57 set(support_headers ${support_headers} ${support_mythes_headers} ${support_linkback_headers})
68 PROPERTIES OBJECT_DEPENDS "${depends_moc}")
69 add_library(support ${library_type} ${_allinone_files} ${support_separate}
70 ${support_mythes_sources} ${support_linkback_sources} ${support_headers} ${dont_merge})
71 endif()