Version 2.5.2-1

* Marc DequÚnes (Duck):
      - New upstream release
      - Corrected patch 'fix_link' to apply on new sources, as it is still
      needed.
      - Deactivated all other patches, they *should* not be useful anymore.

  * Jose Carlos:
      - Converted to cdbs.
      - debian/:
        + Moved .files to .install
      - debian/control.in: 
        + Removed automake and autoconf Build-Dependencies.
        + libgtop2-dev package should depend only on libglib2.0-dev instead
          of libgtk+2.0-dev
This commit is contained in:
Jose Carlos Garcia Sogo
2004-03-28 15:22:05 +00:00
parent ec1f5a9101
commit c2c229f61d
15 changed files with 48 additions and 149 deletions

95
debian/rules vendored
View File

@@ -1,96 +1,9 @@
#!/usr/bin/make -f
# Include dpatch stuff.
include /usr/share/dpatch/dpatch.make
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/cdbs/1/class/gnome.mk
include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
configure: configure-stamp
configure-stamp:
dh_testdir
DEB_CONFIGURE_EXTRA_FLAGS := --without-xauth --with-x
# need to run libtoolize before configure because
# config.guess is out of date
#libtoolize --force
# Add here commands to configure the package.
./configure --prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--without-xauth \
--with-x
touch configure-stamp
build: patch configure-stamp build-stamp
build-stamp:
dh_testdir
# Add here commands to compile the package.
$(MAKE)
perl -i -pe 's,-lglib-2.0,-lglib-2.0 $(CURDIR)/lib/libgtop-2.0.la,' sysdeps/common/Makefile
rm sysdeps/common/*.lo
$(MAKE) -C sysdeps/common
perl -i -pe 's,-lglib-2.0,-lglib-2.0 $(CURDIR)/lib/libgtop-2.0.la,' sysdeps/linux/Makefile
rm sysdeps/linux/*.lo
$(MAKE) -C sysdeps/linux
touch build-stamp
clean:: unpatch
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process.
-$(MAKE) distclean
dh_clean
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/tmp.
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp/
dh_movefiles
# Build architecture-independent files here.
binary-indep: build install
#nothing
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir -a
dh_testroot -a
dh_installdocs -a
dh_installexamples -a
# dh_installmenu -a
# dh_installinit -a
# dh_installcron -a
dh_installman -a
dh_installinfo -a
# dh_undocumented libgtop_daemon.1
dh_installchangelogs -a
dh_strip -a
dh_link -a
dh_compress -a
dh_fixperms -a
dh_makeshlibs -a
dh_installdeb -a
# dh_perl -a
dh_shlibdeps -a
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure