Author: goneri Date: 2009-02-28 23:17:28 +0000 (Sat, 28 Feb 2009) New Revision: 8986
Added: packages/trunk/glfw/debian/README.source packages/trunk/glfw/debian/patches/pkg-config.diff Modified: packages/trunk/glfw/debian/changelog packages/trunk/glfw/debian/compat packages/trunk/glfw/debian/control packages/trunk/glfw/debian/libglfw-dev.links packages/trunk/glfw/debian/libglfw2.links packages/trunk/glfw/debian/patches/series packages/trunk/glfw/debian/rules Log: * Fix /usr/lib/libglfw.so symlink (Closes: #516988) * add pkg-config.diff (Closes: #516989) * Calls dh_makeshlibs before dh_shlibdeps * Standard Version bumped to 3.8.0 - add a README.source * clean the .pc directory * use dh_clean to delete the build stamps * Debhelper compat 7 Added: packages/trunk/glfw/debian/README.source =================================================================== --- packages/trunk/glfw/debian/README.source (rev 0) +++ packages/trunk/glfw/debian/README.source 2009-02-28 23:17:28 UTC (rev 8986) @@ -0,0 +1,7 @@ +Task: apply debian patches +Tools: quilt +Command: quilt push -a +Description: Please read /usr/share/doc/quilt/README.source how to use + quilt for managing Debian patches. + . + This is currently not needed as there are no patches. Modified: packages/trunk/glfw/debian/changelog =================================================================== --- packages/trunk/glfw/debian/changelog 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/changelog 2009-02-28 23:17:28 UTC (rev 8986) @@ -1,3 +1,16 @@ +glfw (2.6-2) unstable; urgency=low + + * Fix /usr/lib/libglfw.so symlink (Closes: #516988) + * add pkg-config.diff (Closes: #516989) + * Calls dh_makeshlibs before dh_shlibdeps + * Standard Version bumped to 3.8.0 + - add a README.source + * clean the .pc directory + * use dh_clean to delete the build stamps + * Debhelper compat 7 + + -- Gonéri Le Bouder <[email protected]> Sat, 28 Feb 2009 23:30:16 +0100 + glfw (2.6-1) unstable; urgency=low * Initial Release. Closes: #476391 Modified: packages/trunk/glfw/debian/compat =================================================================== --- packages/trunk/glfw/debian/compat 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/compat 2009-02-28 23:17:28 UTC (rev 8986) @@ -1 +1 @@ -5 +7 Modified: packages/trunk/glfw/debian/control =================================================================== --- packages/trunk/glfw/debian/control 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/control 2009-02-28 23:17:28 UTC (rev 8986) @@ -3,10 +3,10 @@ Priority: optional Maintainer: Debian Games Team <[email protected]> Uploaders: Gonéri Le Bouder <[email protected]>, -Build-Depends: debhelper (>> 5.0.0), quilt, +Build-Depends: debhelper (>> 7.0.0), quilt, libglu1-mesa-dev | libglu-dev, libgl1-mesa-dev | libgl-dev, libxrandr-dev -Standards-Version: 3.7.3 +Standards-Version: 3.8.0 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/glfw/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/glfw/?op=log Homepage: http://glfw.sourceforge.net Modified: packages/trunk/glfw/debian/libglfw-dev.links =================================================================== --- packages/trunk/glfw/debian/libglfw-dev.links 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/libglfw-dev.links 2009-02-28 23:17:28 UTC (rev 8986) @@ -1 +1 @@ -usr/lib/libglfw.so.2.6.0 usr/lib/libglfw.so +usr/lib/libglfw.so.2.6 usr/lib/libglfw.so Modified: packages/trunk/glfw/debian/libglfw2.links =================================================================== --- packages/trunk/glfw/debian/libglfw2.links 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/libglfw2.links 2009-02-28 23:17:28 UTC (rev 8986) @@ -1,2 +1 @@ usr/lib/libglfw.so.2.6 usr/lib/libglfw.so.2 -usr/lib/libglfw.so.2.6 usr/lib/libglfw.so.2.6 Added: packages/trunk/glfw/debian/patches/pkg-config.diff =================================================================== --- packages/trunk/glfw/debian/patches/pkg-config.diff (rev 0) +++ packages/trunk/glfw/debian/patches/pkg-config.diff 2009-02-28 23:17:28 UTC (rev 8986) @@ -0,0 +1,17 @@ +--- glfw-2.6.orig/compile.sh ++++ glfw-2.6/compile.sh +@@ -592,10 +592,10 @@ + echo " " 1>&6 + echo "$config_script: Creating ""$MKNAME""..." >&5 + cat > "$MKNAME" <<EOF +-pref...@prefix@ +-exec_pref...@prefix@ +-libd...@prefix@/lib +-included...@prefix@/include ++prefix=/usr ++exec_prefix=/usr ++libdir=/usr/lib ++includedir=/usr/include + + Name: GLFW + Description: A portable framework for OpenGL development Modified: packages/trunk/glfw/debian/patches/series =================================================================== --- packages/trunk/glfw/debian/patches/series 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/patches/series 2009-02-28 23:17:28 UTC (rev 8986) @@ -1 +1,2 @@ fix-soname.diff +pkg-config.diff Modified: packages/trunk/glfw/debian/rules =================================================================== --- packages/trunk/glfw/debian/rules 2009-02-28 22:18:21 UTC (rev 8985) +++ packages/trunk/glfw/debian/rules 2009-02-28 23:17:28 UTC (rev 8986) @@ -4,7 +4,7 @@ configure-stamp: dh_testdir QUILT_PATCHES=debian/patches quilt push || test $$? = 2 - sh compile.sh + PREFIX=/usr sh compile.sh touch configure-stamp @@ -20,17 +20,17 @@ clean: dh_testdir dh_testroot - rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) x11-clean QUILT_PATCHES=debian/patches quilt pop -R || test $$? = 2 - dh_clean + rm -rf .pc + dh_clean build-stamp configure-stamp install: build dh_testdir dh_testroot - dh_clean -k + dh_prep dh_installdirs make x11-install PREFIX=$(CURDIR)/debian/tmp/usr cp lib/x11/libglfw.so debian/tmp/usr/lib/libglfw.so.2.6 @@ -51,8 +51,8 @@ dh_strip dh_compress dh_fixperms + dh_makeshlibs dh_shlibdeps - dh_makeshlibs dh_installdeb dh_gencontrol dh_md5sums _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

