Author: luisibanez-guest Date: 2012-03-25 01:13:25 +0000 (Sun, 25 Mar 2012) New Revision: 10085
Modified: trunk/packages/fis-gtm/fis-gtm/trunk/debian/changelog trunk/packages/fis-gtm/fis-gtm/trunk/debian/control trunk/packages/fis-gtm/fis-gtm/trunk/debian/rules Log: Fixed rules to use cmake in configuration step, and also added cmake to the list of build dependencies. Modified: trunk/packages/fis-gtm/fis-gtm/trunk/debian/changelog =================================================================== --- trunk/packages/fis-gtm/fis-gtm/trunk/debian/changelog 2012-03-24 23:29:02 UTC (rev 10084) +++ trunk/packages/fis-gtm/fis-gtm/trunk/debian/changelog 2012-03-25 01:13:25 UTC (rev 10085) @@ -4,6 +4,12 @@ * Initial release, helps to close #541239 * New upstream version 5.5 * Adding cmake configuration to facilitate builds in multiple platforms. + * debian/rules: + Remove override for auto build + Modify override for auto configure in order to now copy the extra + files and then invoke cmake. + * debian/control: + Added cmake as a build dependency. -- Luis Ibanez <[email protected]> Sat, 24 Mar 2012 18:34:02 -0500 Modified: trunk/packages/fis-gtm/fis-gtm/trunk/debian/control =================================================================== --- trunk/packages/fis-gtm/fis-gtm/trunk/debian/control 2012-03-24 23:29:02 UTC (rev 10084) +++ trunk/packages/fis-gtm/fis-gtm/trunk/debian/control 2012-03-25 01:13:25 UTC (rev 10085) @@ -3,7 +3,7 @@ Priority: extra Build-Depends: debhelper (>= 8), adduser, ucf, po-debconf, libicu-dev, tcsh, gnupg, zlib1g-dev, libncurses-dev, libgcrypt11-dev, libgpgme11-dev, - linux-libc-dev, gcc-multilib + linux-libc-dev, gcc-multilib, cmake Standards-Version: 3.9.2 Maintainer: Debian Med Packaging Team <[email protected]> DM-Upload-Allowed: yes Modified: trunk/packages/fis-gtm/fis-gtm/trunk/debian/rules =================================================================== --- trunk/packages/fis-gtm/fis-gtm/trunk/debian/rules 2012-03-24 23:29:02 UTC (rev 10084) +++ trunk/packages/fis-gtm/fis-gtm/trunk/debian/rules 2012-03-25 01:13:25 UTC (rev 10085) @@ -14,14 +14,9 @@ override_dh_auto_configure: cp -a ./$(SRC_EXTRAS_DIR)/* . + cmake . dh_auto_configure -override_dh_auto_build: - mkdir build - cd build - cmake .. - make - override_dh_auto_install: ./pro/gtminstall --utf8 default --installdir $(CURDIR)/debian/tmp _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
