|
|
@ -103,8 +103,11 @@ GENERATED FILES |
|
|
|
* ax_init_standard_project.m4 - auxiliary macro definition file |
|
|
|
* ax_init_standard_project.m4 - auxiliary macro definition file |
|
|
|
* ax_cxx_compile_stdcxx_11.m4 - auxiliary macro definition file |
|
|
|
* ax_cxx_compile_stdcxx_11.m4 - auxiliary macro definition file |
|
|
|
* ax_check_qt.m4 - auxiliary macro definition file |
|
|
|
* ax_check_qt.m4 - auxiliary macro definition file |
|
|
|
|
|
|
|
* resolve-debbuilddeps.sh - script to install debian package dependencies |
|
|
|
* mac-create-app-bundle.sh - script to create apple mac os-x app-bundle |
|
|
|
* mac-create-app-bundle.sh - script to create apple mac os-x app-bundle |
|
|
|
* AUTHORS - replace your name in AUTHORS before first run |
|
|
|
* 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 |
|
|
|
* configure.ac - global configuration file template |
|
|
|
* makefile.am - global makefile template |
|
|
|
* makefile.am - global makefile template |
|
|
|
* src/makefile.am - if you enabled AX_USE_CXX |
|
|
|
* src/makefile.am - if you enabled AX_USE_CXX |
|
|
@ -149,6 +152,7 @@ FILES TO EDIT |
|
|
|
|
|
|
|
|
|
|
|
The following files normally require editing: |
|
|
|
The following files normally require editing: |
|
|
|
* AUTHORS |
|
|
|
* AUTHORS |
|
|
|
|
|
|
|
* NEWS |
|
|
|
* README |
|
|
|
* README |
|
|
|
* configure.ac |
|
|
|
* configure.ac |
|
|
|
* src/makefile.am |
|
|
|
* src/makefile.am |
|
|
@ -178,6 +182,7 @@ FILES |
|
|
|
* AUTHORS: First line is the main author and used in Debian and RPM |
|
|
|
* AUTHORS: First line is the main author and used in Debian and RPM |
|
|
|
packaging, so there must be a GPG key that matches |
|
|
|
packaging, so there must be a GPG key that matches |
|
|
|
to this line. |
|
|
|
to this line. |
|
|
|
|
|
|
|
* NEWS: File to add project news. |
|
|
|
* README: First line is a short description of your project, then an |
|
|
|
* README: First line is a short description of your project, then an |
|
|
|
empty line must follow. All remaining lines are a |
|
|
|
empty line must follow. All remaining lines are a |
|
|
|
long description of your project. this information |
|
|
|
long description of your project. this information |
|
|
@ -380,6 +385,7 @@ copy ${MY_NAME} |
|
|
|
copy ax_init_standard_project.m4 |
|
|
|
copy ax_init_standard_project.m4 |
|
|
|
copy ax_cxx_compile_stdcxx_11.m4 |
|
|
|
copy ax_cxx_compile_stdcxx_11.m4 |
|
|
|
copy ax_check_qt.m4 |
|
|
|
copy ax_check_qt.m4 |
|
|
|
|
|
|
|
copy resolve-debbuilddeps.sh |
|
|
|
copy mac-create-app-bundle.sh |
|
|
|
copy mac-create-app-bundle.sh |
|
|
|
AUTHOR=$(gpg -K | sed -n 's,uid *,,p' | sort | head -1) |
|
|
|
AUTHOR=$(gpg -K | sed -n 's,uid *,,p' | sort | head -1) |
|
|
|
if test -z "${AUTHOR}"; then |
|
|
|
if test -z "${AUTHOR}"; then |
|
|
@ -388,6 +394,14 @@ fi |
|
|
|
to AUTHORS <<EOF && notice "please edit AUTHORS" |
|
|
|
to AUTHORS <<EOF && notice "please edit AUTHORS" |
|
|
|
$AUTHOR |
|
|
|
$AUTHOR |
|
|
|
EOF |
|
|
|
EOF |
|
|
|
|
|
|
|
to NEWS <<EOF && notice "please edit NEWS" |
|
|
|
|
|
|
|
$(date) created ${DEFAULT_PROJECT_NAME} |
|
|
|
|
|
|
|
EOF |
|
|
|
|
|
|
|
to README <<EOF && notice "please edit README" |
|
|
|
|
|
|
|
${DEFAULT_PROJECT_NAME} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add description for ${DEFAULT_PROJECT_NAME} |
|
|
|
|
|
|
|
EOF |
|
|
|
to configure.ac <<EOF && \ |
|
|
|
to configure.ac <<EOF && \ |
|
|
|
( notice "please edit configure.ac, then rerun $0"; exit 0 ) |
|
|
|
( notice "please edit configure.ac, then rerun $0"; exit 0 ) |
|
|
|
${HEADER}m4_define(x_package_name, ${DEFAULT_PROJECT_NAME}) # project's name |
|
|
|
${HEADER}m4_define(x_package_name, ${DEFAULT_PROJECT_NAME}) # project's name |
|
|
@ -682,7 +696,7 @@ EOF |
|
|
|
Source: @PACKAGE_NAME@ |
|
|
|
Source: @PACKAGE_NAME@ |
|
|
|
Priority: extra |
|
|
|
Priority: extra |
|
|
|
Maintainer: @AUTHOR@ |
|
|
|
Maintainer: @AUTHOR@ |
|
|
|
Build-Depends: debhelper, subversion, pkg-config, 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_CXX_CHECK_QT; then echo -n ", qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools"; fi) |
|
|
|
Build-Depends: debhelper, subversion, pkg-config, 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_CXX_CHECK_QT; then echo -n ", qtbase5-dev | libqt4-dev, qtbase5-dev-tools | qt4-dev-tools, qttools5-dev-tools | qt4-dev-tools,"; fi) |
|
|
|
|
|
|
|
|
|
|
|
Package: @PACKAGE_NAME@ |
|
|
|
Package: @PACKAGE_NAME@ |
|
|
|
Section: $(if testtag AX_USE_LIBTOOL; then echo "libs"; fi) |
|
|
|
Section: $(if testtag AX_USE_LIBTOOL; then echo "libs"; fi) |
|
|
@ -715,6 +729,7 @@ usr/lib/lib*.a |
|
|
|
usr/lib/lib*.so |
|
|
|
usr/lib/lib*.so |
|
|
|
usr/lib/pkgconfig/* |
|
|
|
usr/lib/pkgconfig/* |
|
|
|
usr/lib/*.la |
|
|
|
usr/lib/*.la |
|
|
|
|
|
|
|
usr/share/${PACKAGE_NAME} |
|
|
|
usr/share/doc/${PACKAGE_NAME}/html |
|
|
|
usr/share/doc/${PACKAGE_NAME}/html |
|
|
|
EOF |
|
|
|
EOF |
|
|
|
to --mode "u=rwx,g=rwx,o=rx" debian/rules <<EOF |
|
|
|
to --mode "u=rwx,g=rwx,o=rx" debian/rules <<EOF |
|
|
@ -794,7 +809,7 @@ rm -rf \$RPM_BUILD_ROOT |
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
|
echo '/usr/%_lib/@PACKAGE_NAME@.so.*' |
|
|
|
echo '/usr/%_lib/@PACKAGE_NAME@.so.*' |
|
|
|
else |
|
|
|
else |
|
|
|
echo /usr/bin/* |
|
|
|
echo '/usr/bin/*' |
|
|
|
fi) |
|
|
|
fi) |
|
|
|
%doc |
|
|
|
%doc |
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
@ -807,7 +822,7 @@ $(if testtag AX_USE_LIBTOOL; then |
|
|
|
/usr/share/doc/packages/@PACKAGE_NAME@/README |
|
|
|
/usr/share/doc/packages/@PACKAGE_NAME@/README |
|
|
|
EOF2 |
|
|
|
EOF2 |
|
|
|
else |
|
|
|
else |
|
|
|
echo /usr/share/* |
|
|
|
echo '/usr/share/*' |
|
|
|
fi) |
|
|
|
fi) |
|
|
|
|
|
|
|
|
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
|
$(if testtag AX_USE_LIBTOOL; then |
|
|
@ -830,6 +845,7 @@ This Package contains all files required for developement. |
|
|
|
/usr/%_lib/pkgconfig |
|
|
|
/usr/%_lib/pkgconfig |
|
|
|
/usr/include/* |
|
|
|
/usr/include/* |
|
|
|
%doc |
|
|
|
%doc |
|
|
|
|
|
|
|
/usr/share/@PACKAGE_NAME@ |
|
|
|
/usr/share/doc/packages/@PACKAGE_NAME@/html |
|
|
|
/usr/share/doc/packages/@PACKAGE_NAME@/html |
|
|
|
EOF2 |
|
|
|
EOF2 |
|
|
|
fi) |
|
|
|
fi) |
|
|
@ -853,6 +869,7 @@ ${HEADER}prefix=@prefix@ |
|
|
|
exec_prefix=@exec_prefix@ |
|
|
|
exec_prefix=@exec_prefix@ |
|
|
|
libdir=\${exec_prefix}/lib |
|
|
|
libdir=\${exec_prefix}/lib |
|
|
|
includedir=\${prefix}/include |
|
|
|
includedir=\${prefix}/include |
|
|
|
|
|
|
|
translationsdir=@datadir@/@PACKAGE_NAME@/translations |
|
|
|
|
|
|
|
|
|
|
|
Name: @PACKAGE_NAME@ |
|
|
|
Name: @PACKAGE_NAME@ |
|
|
|
Description: @DESCRIPTION@ |
|
|
|
Description: @DESCRIPTION@ |
|
|
|