|
|
|
@ -20,19 +20,25 @@ DEFAULT_PROJECT_NAME=${PROJECT_PATH##*/} |
|
|
|
|
configure=0 |
|
|
|
|
build=0 |
|
|
|
|
docker=0 |
|
|
|
|
buildtarget="distcheck" |
|
|
|
|
buildtarget="" |
|
|
|
|
overwrite=0 |
|
|
|
|
rebuild=0 |
|
|
|
|
novcs=0 |
|
|
|
|
excludevcs=() |
|
|
|
|
rebuildfiles=() |
|
|
|
|
while test $# -gt 0; do |
|
|
|
|
case "$1" in |
|
|
|
|
(--configure|-c) configure=1;; |
|
|
|
|
(--docker|-d) docker=1;; |
|
|
|
|
(--build|-b) configure=1; build=1;; |
|
|
|
|
(--target|-t) shift; configure=1; build=1; buildtarget="$1";; |
|
|
|
|
(--build|-b) configure=1; build=1; buildtarget+=" distcheck";; |
|
|
|
|
(--all|-a) shift; configure=1; build=1; buildtarget+=" all";; |
|
|
|
|
(--clean) shift; configure=1; build=1; buildtarget+=" maintainer-clean";; |
|
|
|
|
(--target|-t) shift; configure=1; build=1; buildtarget+=" $1";; |
|
|
|
|
(--overwrite|-o) overwrite=1;; |
|
|
|
|
(--rebuild|-r) rebuild=1;; |
|
|
|
|
(--rebuild-file|-f) shift; rebuildfiles+=("$1");; |
|
|
|
|
(--no-vcs|-n) novcs=1;; |
|
|
|
|
(--exclude-vcs|-x) shift; excludevcs+=("$1");; |
|
|
|
|
(--version|-v) |
|
|
|
|
echo "$Id$"; |
|
|
|
|
exit;; |
|
|
|
@ -46,10 +52,14 @@ OPTIONS |
|
|
|
|
--configure, -c call ./configure after initialization |
|
|
|
|
--docker, -d build and run tests in a docker instance |
|
|
|
|
--build, -b build, also call ./configure && make distcheck |
|
|
|
|
--all, -a same as -b, but make target all |
|
|
|
|
--clean same as -b, but make target maintainer-clean |
|
|
|
|
--target, -t <target> same as -b, but specify target instead of distcheck |
|
|
|
|
--overwrite, -o overwrite all basic files (bootstrap.sh, m4-macros) |
|
|
|
|
--rebuild, -r force rebuild of generated files, even if modified |
|
|
|
|
--rebuild-file, -f <file> rebild specific file (can be added multiple times) |
|
|
|
|
--no-vcs, -n do not automatically add files to version control |
|
|
|
|
--exclude-vcs, -x <file> exclude specific file from version control |
|
|
|
|
--help, -h show this help |
|
|
|
|
--version, -v show version and date of this file |
|
|
|
|
|
|
|
|
@ -60,7 +70,7 @@ DESCRIPTION |
|
|
|
|
configure.ac. Automatically copies or creates all required template |
|
|
|
|
files. |
|
|
|
|
|
|
|
|
|
From your new and empty project's subversion path, call $0 to |
|
|
|
|
From your new and empty project's subversion or git path, call $0 to |
|
|
|
|
initialize your build environment. |
|
|
|
|
|
|
|
|
|
Before you call ${MY_NAME} the very first time, edit ${0#/*}/AUTHORS |
|
|
|
@ -79,16 +89,27 @@ DESCRIPTION |
|
|
|
|
https://dev.marc.waeckerlin.org/, and the path from where you call |
|
|
|
|
${MY_NAME} (which is actually ${PROJECT_PATH}) should be the path to |
|
|
|
|
your newly created project. Please note that your project must be a |
|
|
|
|
checked out subversion repository, since this build environment |
|
|
|
|
relies on subversion. |
|
|
|
|
checked out subversion or git repository, since this build |
|
|
|
|
environment relies on subversion or git. |
|
|
|
|
|
|
|
|
|
Example for an initial run, where your new projet is stored in |
|
|
|
|
subversion on svn:/path/to/your/new-project: |
|
|
|
|
subversion on https:/path/to/your/new-project: |
|
|
|
|
|
|
|
|
|
cd ~/svn |
|
|
|
|
svn co https://dev.marc.waeckerlin.org/svn/bootstrap-build-environment/trunk \\ |
|
|
|
|
bootstrap-build-environment |
|
|
|
|
svn co svn:/path/to/your/new-project/trunk new-project |
|
|
|
|
svn co https:/path/to/your/new-project/trunk new-project |
|
|
|
|
cd new-project |
|
|
|
|
../bootstrap-build-environment/bootstrap.sh |
|
|
|
|
|
|
|
|
|
Example for an initial run, where your new projet is stored in |
|
|
|
|
git on https:/path/to/your/new-project: |
|
|
|
|
|
|
|
|
|
cd ~/svn |
|
|
|
|
svn co https://dev.marc.waeckerlin.org/svn/bootstrap-build-environment/trunk \\ |
|
|
|
|
bootstrap-build-environment |
|
|
|
|
cd ~/git |
|
|
|
|
git clone https:/path/to/your/new-project |
|
|
|
|
cd new-project |
|
|
|
|
../bootstrap-build-environment/bootstrap.sh |
|
|
|
|
|
|
|
|
@ -97,25 +118,31 @@ RUNNING |
|
|
|
|
If you run ${MY_NAME}, it first generates the necessary files (see |
|
|
|
|
below), then first runs make distclean if a makefile exists. After |
|
|
|
|
this it calles aclocal, libtoolize, automake, autoconf and |
|
|
|
|
optionally ./configure. |
|
|
|
|
optionally ./configure. If necessary, files are added to version |
|
|
|
|
control. |
|
|
|
|
|
|
|
|
|
GENERATED FILES |
|
|
|
|
|
|
|
|
|
This script copies the following files into your project environment: |
|
|
|
|
* ${MY_NAME} |
|
|
|
|
* autogen.sh - just the basics to initialize auto tools and create configure |
|
|
|
|
* ax_init_standard_project.m4 - auxiliary macro definition file |
|
|
|
|
* ax_cxx_compile_stdcxx_11.m4 - auxiliary macro definition file |
|
|
|
|
* ax_check_qt.m4 - auxiliary macro definition file |
|
|
|
|
* resolve-debbuilddeps.sh - script to install debian package dependencies |
|
|
|
|
* resolve-rpmbuilddeps.sh - script to install RPM package dependencies |
|
|
|
|
* build-in-docker.sh - script to build the project encapsulated in a docker container |
|
|
|
|
* build-in-docker.conf - additional configuration for build-in-docker.sh |
|
|
|
|
* build-resource-file.sh - build resource.qrc file from a resource directory |
|
|
|
|
* sql-to-dot.sed - script to convert SQL schema files to graphviz dot in doxygen |
|
|
|
|
* mac-create-app-bundle.sh - script to create apple mac os-x app-bundle |
|
|
|
|
* test/runtests.sh - template file to run test scripts, i.e. docker based |
|
|
|
|
* AUTHORS - replace your name in AUTHORS before first run |
|
|
|
|
* NEWS - empty file add your project's news |
|
|
|
|
* README - add project description (first line is header, followed by an empty line) |
|
|
|
|
* configure.ac - global configuration file template |
|
|
|
|
* makefile.am - global makefile template |
|
|
|
|
* ${DEFAULT_PROJECT_NAME}.desktop.in - linux desktop file |
|
|
|
|
* src/makefile.am - if you enabled AX_USE_CXX |
|
|
|
|
* src/version.hxx - if you enabled AX_USE_CXX |
|
|
|
|
* src/version.cxx - if you enabled AX_USE_CXX |
|
|
|
@ -197,13 +224,14 @@ FILES |
|
|
|
|
${DEFAULT_PROJECT_NAME}::description(). |
|
|
|
|
* ChangeLog: Your changelog is automatically maintained from |
|
|
|
|
subversion history, using svn2cl. You don't need to |
|
|
|
|
care about. |
|
|
|
|
care about. It uses git2cl on git repositories. |
|
|
|
|
* configure.ac: This file becomes very short and simple. You provide |
|
|
|
|
the project name, the major and minor version. The |
|
|
|
|
least version number is automatically taken from |
|
|
|
|
subversion's revision, so every checkin |
|
|
|
|
automatically increments the least version |
|
|
|
|
number. The following macros are supported: |
|
|
|
|
number. In git, git rev-list --all --count is used. |
|
|
|
|
The following macros are supported in configure.ac: |
|
|
|
|
* Enable C++: AX_USE_CXX |
|
|
|
|
* Enable LibTool library creation: AX_USE_LIBTOOL |
|
|
|
|
* Enable Scripts: AX_USE_SCRIPTS |
|
|
|
@ -243,6 +271,20 @@ EOF |
|
|
|
|
shift; |
|
|
|
|
done |
|
|
|
|
|
|
|
|
|
echo -en "\e[1m-> checking:\e[0m for version control system ..." |
|
|
|
|
VCS="" |
|
|
|
|
VCSDEPENDS="" |
|
|
|
|
if test -d .svn; then |
|
|
|
|
VCS="svn" |
|
|
|
|
VCSDEPENDS="subversion," |
|
|
|
|
echo -e " \e[32msuccess\e[0m detected ${VCS}" |
|
|
|
|
elif test -d .git; then |
|
|
|
|
VCS="git" |
|
|
|
|
VCSDEPENDS="git," |
|
|
|
|
echo -e " \e[32msuccess\e[0m detected ${VCS}" |
|
|
|
|
else |
|
|
|
|
echo -e " \e[33mignored\e[0m" |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
HEADER='## @id '"\$Id\$"' |
|
|
|
|
## |
|
|
|
@ -266,6 +308,7 @@ CHEADER='/** @id '"\$Id\$"' |
|
|
|
|
// 1 2 3 4 5 6 7 8 |
|
|
|
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
' |
|
|
|
|
|
|
|
|
|
notice() { |
|
|
|
@ -314,26 +357,32 @@ contains() { |
|
|
|
|
checkdir() { |
|
|
|
|
if ! test -d "$1"; then # create path |
|
|
|
|
run mkdir -p "$1" |
|
|
|
|
run svn add "$1" |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "$1" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add "$1" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
checkfile() { |
|
|
|
|
exists=0 |
|
|
|
|
if test -f "$1"; then |
|
|
|
|
if test -f "$1" -o -f "$1".in; then |
|
|
|
|
exists=1 |
|
|
|
|
fi |
|
|
|
|
test $exists -eq 1 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
to() { |
|
|
|
|
mode="u=rw,g=rw,o=r" |
|
|
|
|
while test $# -gt 0; do |
|
|
|
|
mode="u=rw,g=rw,o=r" |
|
|
|
|
case "$1" in |
|
|
|
|
(--condition) shift # test for a tag, abort if not set |
|
|
|
|
if ! testtag "$1"; then |
|
|
|
|
return 0 |
|
|
|
|
fi;; |
|
|
|
|
(--unless) shift # test for a tag, abort if set |
|
|
|
|
if testtag "$1"; then |
|
|
|
|
return 0 |
|
|
|
|
fi;; |
|
|
|
|
(--mode) shift # test for a tag, abort if not set |
|
|
|
|
mode="$1";; |
|
|
|
|
(*) break;; |
|
|
|
@ -359,10 +408,14 @@ to() { |
|
|
|
|
else |
|
|
|
|
echo -e " \e[32msuccess\e[0m" |
|
|
|
|
fi |
|
|
|
|
chmod $mode $1 |
|
|
|
|
run chmod $mode $1 |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
run svn add "$1" |
|
|
|
|
run svn propset svn:keywords "Id" "$1" |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "$1" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add "$1" |
|
|
|
|
if test "${VCS}" = "svn"; then |
|
|
|
|
run svn propset svn:keywords "Id" "$1" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
return 0 |
|
|
|
|
} |
|
|
|
@ -382,8 +435,12 @@ copy() { |
|
|
|
|
fi |
|
|
|
|
run cp "${source}" "$1" |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
run svn add "$1" |
|
|
|
|
run svn propset svn:keywords "Id" "$1" |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "$1" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add "$1" |
|
|
|
|
if test "${VCS}" = "svn"; then |
|
|
|
|
run svn propset svn:keywords "Id" "$1" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -409,10 +466,33 @@ doxyadd() { |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
vcs2cl() { |
|
|
|
|
exists=0 |
|
|
|
|
if test -f "ChangeLog"; then |
|
|
|
|
exists=1 |
|
|
|
|
else |
|
|
|
|
touch "ChangeLog" |
|
|
|
|
fi |
|
|
|
|
if test -x $(which ${VCS}2cl); then |
|
|
|
|
if test "${VCS}" = "git"; then |
|
|
|
|
${VCS}2cl > ChangeLog |
|
|
|
|
elif test -n "${VCS}"; then |
|
|
|
|
${VCS}2cl |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "ChangeLog" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add ChangeLog |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
# Check if we are in subversion root, if so, create trunk, branches, tags: |
|
|
|
|
if test "$(LANG= svn info | sed -n 's,Relative URL: *,,p')" = "^/"; then |
|
|
|
|
svn mkdir trunk branches tags |
|
|
|
|
cd trunk |
|
|
|
|
if test "${VCS}" = "svn" -a $novcs -eq 0; then |
|
|
|
|
if test "$(LANG= svn info | sed -n 's,Relative URL: *,,p')" = "^/"; then |
|
|
|
|
svn mkdir trunk branches tags |
|
|
|
|
cd trunk |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
# Initialize the environment: |
|
|
|
@ -424,6 +504,7 @@ copy resolve-debbuilddeps.sh |
|
|
|
|
copy resolve-rpmbuilddeps.sh |
|
|
|
|
copy build-in-docker.sh |
|
|
|
|
copy build-resource-file.sh |
|
|
|
|
copy sql-to-dot.sed |
|
|
|
|
copy mac-create-app-bundle.sh |
|
|
|
|
AUTHOR=$(gpg -K | sed -n 's,uid *,,p' | sort | head -1) |
|
|
|
|
if test -z "${AUTHOR}"; then |
|
|
|
@ -703,10 +784,10 @@ namespace NAMESPACE { |
|
|
|
|
return README; |
|
|
|
|
} |
|
|
|
|
std::string logo() { |
|
|
|
|
return PROJECT_LOGO; |
|
|
|
|
return PACKAGE_LOGO; |
|
|
|
|
} |
|
|
|
|
std::string icon() { |
|
|
|
|
return PROJECT_ICON; |
|
|
|
|
return PACKAGE_ICON; |
|
|
|
|
} |
|
|
|
|
const std::string WHAT("#(@) " PACKAGE_STRING); |
|
|
|
|
const std::string IDENT("\$Id: " PACKAGE_STRING); |
|
|
|
@ -718,6 +799,9 @@ ${HEADER}dist_bin_SCRIPTS = |
|
|
|
|
MAINTAINERCLEANFILES = makefile.in |
|
|
|
|
EOF |
|
|
|
|
echo "${HEADER}MAINTAINERCLEANFILES = makefile.in" | to --condition AX_USE_DOXYGEN doc/makefile.am |
|
|
|
|
if testtag AX_BUILD_TEST; then |
|
|
|
|
to test/runtests.sh < ${0%/*}/test/runtests.sh |
|
|
|
|
fi |
|
|
|
|
to --condition 'AX_BUILD_TEST|AX_USE_CPPUNIT' test/makefile.am <<EOF |
|
|
|
|
${HEADER}$(if testtag AX_USE_CXX; then |
|
|
|
|
cat <<EOF2 |
|
|
|
@ -755,13 +839,17 @@ if testtag AX_USE_DOXYGEN; then |
|
|
|
|
contains doc/doxyfile.in "${rebuildfiles[@]}"; then |
|
|
|
|
run doxygen -g doc/doxyfile.in |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
run svn add doc/doxyfile.in |
|
|
|
|
run svn propset svn:keywords "Id" doc/doxyfile.in |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "doc/doxyfile" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add doc/doxyfile.in |
|
|
|
|
if test "${VCS}" = "svn"; then |
|
|
|
|
run svn propset svn:keywords "Id" doc/doxyfile.in |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
doxyreplace PROJECT_NAME "@PACKAGE_NAME@" |
|
|
|
|
doxyreplace PROJECT_NUMBER "@PACKAGE_VERSION@" |
|
|
|
|
doxyreplace PROJECT_BRIEF "@DESCRIPTION@" |
|
|
|
|
doxyreplace PROJECT_LOGO "@PROJECT_LOGO@" |
|
|
|
|
doxyreplace PROJECT_LOGO "@top_srcdir@/@PACKAGE_LOGO@" |
|
|
|
|
doxyreplace INLINE_INHERITED_MEMB YES |
|
|
|
|
doxyreplace MULTILINE_CPP_IS_BRIEF YES |
|
|
|
|
doxyreplace TAB_SIZE 2 |
|
|
|
@ -771,6 +859,7 @@ if testtag AX_USE_DOXYGEN; then |
|
|
|
|
doxyadd ALIASES '"classmutex=\\par Reentrant:\\nAccess is locked with class static mutex @c "' |
|
|
|
|
doxyadd ALIASES '"instancemutex=\\par Reentrant:\\nAccess is locked with per instance mutex @c "' |
|
|
|
|
doxyadd ALIASES '"mutex=\\par Reentrant:\\nAccess is locked with mutex @c "' |
|
|
|
|
doxyadd ALIASES '"api=\\xrefitem api \\"API Call\\" \\"\\""' |
|
|
|
|
doxyreplace ENABLE_PREPROCESSING YES |
|
|
|
|
doxyreplace MACRO_EXPANSION YES |
|
|
|
|
doxyadd PREDEFINED '"NAMESPACE=@PACKAGE_NAME@"' |
|
|
|
@ -797,14 +886,14 @@ if testtag AX_USE_DOXYGEN; then |
|
|
|
|
if testtag AX_BUILD_TEST AX_USE_CPPUNIT; then |
|
|
|
|
doxyadd INPUT "@top_srcdir@/test" |
|
|
|
|
fi |
|
|
|
|
doxyreplace FILE_PATTERNS '*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.idl *.ddl *.odl *.h *.hh *.hxx *.hpp *.h++ *.cs *.d *.php *.php4 *.php5 *.phtml *.inc *.m *.markdown *.md *.mm *.dox *.py *.f90 *.f *.for *.tcl *.vhd *.vhdl *.ucf *.qsf *.as *.js *.wt' |
|
|
|
|
doxyreplace FILE_PATTERNS '*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.idl *.ddl *.odl *.h *.hh *.hxx *.hpp *.h++ *.cs *.d *.php *.php4 *.php5 *.phtml *.inc *.m *.markdown *.md *.mm *.dox *.py *.f90 *.f *.for *.tcl *.vhd *.vhdl *.ucf *.qsf *.as *.js *.wt *.sql' |
|
|
|
|
doxyreplace RECURSIVE YES |
|
|
|
|
doxyreplace EXCLUDE_PATTERNS "moc_* uic_* qrc_*" |
|
|
|
|
if testtag AX_BUILD_EXAMPLES; then |
|
|
|
|
doxyreplace EXAMPLE_PATH @top_srcdir@/examples |
|
|
|
|
fi |
|
|
|
|
doxyreplace EXAMPLE_RECURSIVE YES |
|
|
|
|
doxyreplace FILTER_PATTERNS '*.wt=doxygen-webtester.sed' |
|
|
|
|
doxyreplace FILTER_PATTERNS '*.wt=doxygen-webtester.sed *.sql=@top_srcdir@/sql-to-dot.sed' |
|
|
|
|
doxyreplace SOURCE_BROWSER YES |
|
|
|
|
doxyreplace INLINE_SOURCES YES |
|
|
|
|
doxyreplace GENERATE_TESTLIST YES |
|
|
|
@ -822,7 +911,7 @@ if testtag AX_USE_DOXYGEN; then |
|
|
|
|
doxyreplace CLASS_GRAPH YES |
|
|
|
|
doxyreplace TEMPLATE_RELATIONS YES |
|
|
|
|
doxyreplace DOT_IMAGE_FORMAT svg |
|
|
|
|
doxyreplace INTERACTIVE_SVG YES |
|
|
|
|
doxyreplace INTERACTIVE_SVG NO |
|
|
|
|
doxyreplace DOT_TRANSPARENT YES |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
@ -835,7 +924,7 @@ if testtag AX_USE_DEBIAN_PACKAGING; then |
|
|
|
|
|
|
|
|
|
-- @AUTHOR@ @BUILD_DATE@ |
|
|
|
|
EOF |
|
|
|
|
BUILD_DEPENDS="debhelper, subversion, pkg-config, automake, libtool, autotools-dev, lsb-release $(if testtag AX_USE_DOXYGEN; then echo -n ", doxygen, graphviz, mscgen"; fi; if testtag AX_USE_CPPUNIT; then echo -n ", libcppunit-dev"; fi; if testtag AX_CXX_QT || testtag AX_CHECK_QT AX_REQUIRE_QT; then echo -n ", qt5-default | libqt4-core | qt5-qmake | qt4-qmake, qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools"; fi)" |
|
|
|
|
BUILD_DEPENDS="debhelper, ${VCSDEPENDS} pkg-config, automake, libtool, autotools-dev, lsb-release $(if testtag AX_USE_DOXYGEN; then echo -n ", doxygen, graphviz, mscgen"; fi; if testtag AX_USE_CPPUNIT; then echo -n ", libcppunit-dev"; fi; if testtag AX_CXX_QT || testtag AX_CHECK_QT AX_REQUIRE_QT; then echo -n ", qt5-default | libqt4-core | libqtcore4, qt5-qmake | qt4-qmake, qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools"; fi)" |
|
|
|
|
to debian/control.in <<EOF |
|
|
|
|
Source: @PACKAGE_NAME@ |
|
|
|
|
Priority: extra |
|
|
|
@ -882,6 +971,17 @@ ${HEADER}%: |
|
|
|
|
EOF |
|
|
|
|
echo 7 | to debian/compat |
|
|
|
|
fi |
|
|
|
|
to ${PACKAGE_NAME}.desktop.in <<EOF |
|
|
|
|
[Desktop Entry] |
|
|
|
|
Type=Application |
|
|
|
|
Name=${PACKAGE_NAME} |
|
|
|
|
GenericName=${PACKAGE_NAME} |
|
|
|
|
Comment=@DESCRIPTION@ |
|
|
|
|
Icon=@prefix@/share/@PACKAGE_NAME@/@PACKAGE_ICON@ |
|
|
|
|
Exec=${PACKAGE_NAME} %u |
|
|
|
|
Terminal=false |
|
|
|
|
Categories=Qt;Utility; |
|
|
|
|
EOF |
|
|
|
|
to --condition AX_USE_RPM_PACKAGING ${PACKAGE_NAME}.spec.in <<EOF |
|
|
|
|
Summary: @DESCRIPTION@ |
|
|
|
|
Name: @PACKAGE_NAME@ |
|
|
|
@ -895,7 +995,7 @@ else |
|
|
|
|
fi) |
|
|
|
|
Source0: %{name}-%{version}.tar.gz |
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
|
|
|
|
BuildRequires: gnupg, subversion, automake, autoconf$( |
|
|
|
|
BuildRequires: gnupg, ${VCSDEPENDS} make, automake, autoconf, rpm-build$( |
|
|
|
|
if testtag AX_USE_DOXYGEN; then |
|
|
|
|
echo -n ", doxygen"; |
|
|
|
|
fi) |
|
|
|
@ -955,6 +1055,7 @@ $(if testtag AX_USE_LIBTOOL; then |
|
|
|
|
echo '/usr/%_lib/@PACKAGE_NAME@.so.*' |
|
|
|
|
else |
|
|
|
|
echo '/usr/bin/*' |
|
|
|
|
echo '/usr/share/applications/*' |
|
|
|
|
fi) |
|
|
|
|
%doc |
|
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
|
@ -1022,10 +1123,32 @@ for d in src test scripts doc examples html; do |
|
|
|
|
SUBDIRS="${SUBDIRS} $d" |
|
|
|
|
fi |
|
|
|
|
done |
|
|
|
|
to --mode "u=rwx,g=rwx,o=rx" autogen.sh <<EOF |
|
|
|
|
#!/bin/bash -e |
|
|
|
|
if test -n "$VCS" -a -d .$VCS -a -e -x $(which ${VCS}2cl); then |
|
|
|
|
$(case "$VCS" in |
|
|
|
|
(svn) echo " ${VCS}2cl";; |
|
|
|
|
(git) echo " ${VCS}2cl > ChangeLog";; |
|
|
|
|
esac) |
|
|
|
|
fi |
|
|
|
|
aclocal |
|
|
|
|
$(if testtag AX_USE_LIBTOOL; then echo libtoolize --force; fi) |
|
|
|
|
automake -a |
|
|
|
|
autoconf |
|
|
|
|
EOF |
|
|
|
|
to makefile.am<<EOF |
|
|
|
|
${HEADER}SUBDIRS =${SUBDIRS} |
|
|
|
|
|
|
|
|
|
doc_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog |
|
|
|
|
desktopdir = \${datadir}/applications |
|
|
|
|
desktop_DATA = @PACKAGE_DESKTOP@ |
|
|
|
|
dist_pkgdata_DATA = @PACKAGE_ICON@ ax_check_qt.m4 bootstrap.sh \\ |
|
|
|
|
resolve-rpmbuilddeps.sh autogen.sh \\ |
|
|
|
|
ax_cxx_compile_stdcxx_11.m4 build-in-docker.sh \\ |
|
|
|
|
build-resource-file.sh \\ |
|
|
|
|
ax_init_standard_project.m4 \\ |
|
|
|
|
mac-create-app-bundle.sh resolve-debbuilddeps.sh \\ |
|
|
|
|
sql-to-dot.sed |
|
|
|
|
dist_doc_DATA = AUTHORS NEWS README COPYING INSTALL ChangeLog |
|
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = makefile.in |
|
|
|
|
EOF |
|
|
|
@ -1043,6 +1166,12 @@ Libs: -L\${libdir} -l${PACKAGE_NAME#lib} @LDFLAGS@ |
|
|
|
|
Cflags: -I\${includedir} @CPPFLAGS@ |
|
|
|
|
Requires: @PKG_REQUIREMENTS@ |
|
|
|
|
EOF |
|
|
|
|
to build-in-docker.conf <<EOF |
|
|
|
|
repos+=("Debian|Ubuntu-precise::::::universe") |
|
|
|
|
repos+=("Ubuntu-precise:::'deb http://archive.ubuntu.com/ubuntu precise universe'") |
|
|
|
|
envs+=("-e 'HOME=\${HOME}'") |
|
|
|
|
dirs+=("-v \${HOME}/.gnupg:\${HOME}/.gnupg:ro") |
|
|
|
|
EOF |
|
|
|
|
|
|
|
|
|
#### Cleanup If Makefile Exists #### |
|
|
|
|
if test -f makefile; then |
|
|
|
@ -1050,7 +1179,7 @@ if test -f makefile; then |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
#### Bootstrap Before Configure #### |
|
|
|
|
run --no-check svn2cl |
|
|
|
|
run --no-check vcs2cl |
|
|
|
|
run aclocal |
|
|
|
|
if testtag AX_USE_LIBTOOL; then run libtoolize --force; fi |
|
|
|
|
run automake -a |
|
|
|
@ -1058,15 +1187,15 @@ run autoconf |
|
|
|
|
|
|
|
|
|
#### Run Configure If User Requires #### |
|
|
|
|
if test "$configure" -eq 1; then |
|
|
|
|
./configure $* |
|
|
|
|
./configure $* || exit 1 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
#### Run Make If User Requires #### |
|
|
|
|
if test "$build" -eq 1; then |
|
|
|
|
make $buildtarget |
|
|
|
|
make $buildtarget || exit 1 |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
#### Build In Docker If User Requires #### |
|
|
|
|
if test "$docker" -eq 1; then |
|
|
|
|
./build-in-docker.sh |
|
|
|
|
./build-in-docker.sh || exit 1 |
|
|
|
|
fi |
|
|
|
|