diff options
author | Timo Aaltonen <[email protected]> | 2008-07-03 15:53:19 +0300 |
---|---|---|
committer | Timo Aaltonen <[email protected]> | 2008-07-03 15:53:19 +0300 |
commit | 6dedd60350f717bfa1cc101267c36f340eb1de9f (patch) | |
tree | 5884ad9a1133a0eaac71e81962244b883f60c82f /debian | |
parent | 063a487fe12f186d7aab52ca788697572e42390f (diff) |
Further autoconf changes:
add automake & autoconf to build-deps
add some cleanup rules
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/control | 6 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 9b53749f807..de2236bd3fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,8 +16,9 @@ mesa (7.1~rc1-1) UNRELEASED; urgency=low * Run autoreconf before building the various flavours.. * 01_fix-libdir.patch: libdir handling is broken in configure.ac, fix it. + * Add automake & autoconf to build-deps. - -- Timo Aaltonen <[email protected]> Thu, 03 Jul 2008 09:30:30 +0300 + -- Timo Aaltonen <[email protected]> Thu, 03 Jul 2008 15:51:00 +0300 mesa (7.0.3-4) unstable; urgency=low diff --git a/debian/control b/debian/control index daa88abdd80..80f7198c9ae 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,11 @@ Priority: optional Maintainer: Debian X Strike Force <[email protected]> Uploaders: Thierry Reding <[email protected]>, Julien Cristau <[email protected]>, David Nusinow <[email protected]>, Brice Goglin <[email protected]> Standards-Version: 3.7.3 -Build-Depends: debhelper (>= 5), quilt (>= 0.40), pkg-config, libdrm-dev (>= 2.3.1) [!hurd-i386], libx11-dev, xutils-dev, x11proto-gl-dev (>= 1.4.8), x11proto-dri2-dev, libxxf86vm-dev, libexpat1-dev, lesstif2-dev, dpkg-dev (>= 1.13.19), libxfixes-dev, libxdamage-dev, libxext-dev +Build-Depends: debhelper (>= 5), quilt (>= 0.40), pkg-config, + libdrm-dev (>= 2.3.1) [!hurd-i386], libx11-dev, xutils-dev, + x11proto-gl-dev (>= 1.4.8), x11proto-dri2-dev, libxxf86vm-dev, + libexpat1-dev, lesstif2-dev, dpkg-dev (>= 1.13.19), libxfixes-dev, + libxdamage-dev, libxext-dev, autoconf, automake Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/mesa Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/mesa.git Homepage: http://mesa3d.sourceforge.net/ diff --git a/debian/rules b/debian/rules index 56bb67f6316..e59ed63027a 100755 --- a/debian/rules +++ b/debian/rules @@ -156,6 +156,9 @@ clean: unpatch rm -f conftest* */conftest* rm -rf autom4te.cache */autom4te.cache rm -rf obj-* + rm -rf configure config.guess config.sub config.h.in + rm -rf $$(find -name Makefile.in) + rm -rf aclocal.m4 missing depcomp install-sh ltmain.sh rm -rf $(STAMP_DIR) # needed for git snapshots chmod +x configure |