Author: malat-guest Date: 2008-12-15 18:22:00 +0000 (Mon, 15 Dec 2008) New Revision: 2793
Modified: trunk/packages/pvrg/trunk/debian/ trunk/packages/pvrg/trunk/debian/changelog trunk/packages/pvrg/trunk/debian/rules Log: ENH: fix install path Property changes on: trunk/packages/pvrg/trunk/debian ___________________________________________________________________ Name: mergeWithUpstream + 1 Modified: trunk/packages/pvrg/trunk/debian/changelog =================================================================== --- trunk/packages/pvrg/trunk/debian/changelog 2008-12-15 18:16:54 UTC (rev 2792) +++ trunk/packages/pvrg/trunk/debian/changelog 2008-12-15 18:22:00 UTC (rev 2793) @@ -1,5 +1,6 @@ pvrg (1.2.1) experimental; urgency=low * Initial release. + * Properly install in /usr (instead of /usr/local) -- Mathieu Malaterre <[email protected]> Fri, 15 Dec 2008 18:28:01 +0100 Modified: trunk/packages/pvrg/trunk/debian/rules =================================================================== --- trunk/packages/pvrg/trunk/debian/rules 2008-12-15 18:16:54 UTC (rev 2792) +++ trunk/packages/pvrg/trunk/debian/rules 2008-12-15 18:22:00 UTC (rev 2793) @@ -32,7 +32,11 @@ # Add here commands to configure the package. [ -d debian/build ] || mkdir debian/build [ ! -e CMakeCache.txt ] || rm CMakeCache.txt - cd debian/build; cmake ../.. + cd debian/build; cmake ../.. -DCMAKE_INSTALL_PREFIX="/usr" \ + -DCMAKE_SKIP_RPATH=ON \ + -DCMAKE_VERBOSE_MAKEFILE=$(DH_VERBOSE) \ + -DCMAKE_BUILD_TYPE:STRING=Release \ + -DBUILD_SHARED_LIBS=ON touch configure-stamp _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
