Author: frankie Date: 2008-01-03 12:54:16 +0000 (Thu, 03 Jan 2008) New Revision: 1318
Removed: packages/avce00/debian/patches/ Modified: packages/avce00/debian/avce00.install packages/avce00/debian/changelog packages/avce00/debian/compat packages/avce00/debian/control packages/avce00/debian/copyright packages/avce00/debian/docs packages/avce00/debian/rules Log: Committing missing tree Modified: packages/avce00/debian/avce00.install =================================================================== --- packages/avce00/debian/avce00.install 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/avce00.install 2008-01-03 12:54:16 UTC (rev 1318) @@ -2,3 +2,4 @@ avcexport /usr/bin avcimport /usr/bin avctest /usr/bin + Modified: packages/avce00/debian/changelog =================================================================== --- packages/avce00/debian/changelog 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/changelog 2008-01-03 12:54:16 UTC (rev 1318) @@ -1,12 +1,19 @@ -avce00 (1.3.0-3) UNRELEASED; urgency=low +avce00 (2.0.0-2) UNRELEASED; urgency=low - * Switch to dpatch, clean up debian/rules, add to DebianGis CVS - * Pass the correct options to make through OPTFLAGS - * Add homepage and watch file, tidy copyright file - * Suggest e00compr (Closes: #339284) and enhance grass + * Added Home page field in debian/control. + * Added Vcs-* fields in debian/control. + * Policy bumped to 3.7.3 - -- Paul Wise <[EMAIL PROTECTED]> Fri, 31 Mar 2006 20:16:43 +0800 + -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Wed, 04 Jul 2007 13:28:56 +0200 +avce00 (2.0.0-1) unstable; urgency=low + + * New upstream release. + * Policy bumped to 3.7.2 without changes. + * Debhelper level moved to 5. + + -- Francesco Paolo Lovergine <[EMAIL PROTECTED]> Wed, 04 Jul 2007 13:21:28 +0200 + avce00 (1.3.0-2) unstable; urgency=low * Patched to manage endianess automagically. Modified: packages/avce00/debian/compat =================================================================== --- packages/avce00/debian/compat 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/compat 2008-01-03 12:54:16 UTC (rev 1318) @@ -1 +1 @@ -4 +5 Modified: packages/avce00/debian/control =================================================================== --- packages/avce00/debian/control 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/control 2008-01-03 12:54:16 UTC (rev 1318) @@ -3,16 +3,16 @@ Priority: extra Maintainer: Debian GIS Project <[email protected]> Uploaders: Jean-Denis Giguere <[EMAIL PROTECTED]>, Francesco Paolo Lovergine <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0) -Standards-Version: 3.6.2 +Build-Depends: debhelper (>= 5.0.0) +Standards-Version: 3.7.3 +Homepage: http://avce00.maptools.org/avce00/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-grass/packages/avce00/trunk +Vcs-Svn: svn://svn.debian.org/svn/pkg-grass/packages/avce00/trunk + Package: avce00 Architecture: any Depends: ${shlibs:Depends} -Suggests: e00compr -Enhances: grass Description: Tools for conversion of ESRI Arcinfo (binary) Vector Coverage in E00 format. AVCE00 is a C library and group of tools that makes Arcinfo (binary) Vector Coverages appear as E00. It allows you to read and write binary coverages just as if they were E00 files. - . - Homepage: http://avce00.maptools.org/avce00/ Modified: packages/avce00/debian/copyright =================================================================== --- packages/avce00/debian/copyright 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/copyright 2008-01-03 12:54:16 UTC (rev 1318) @@ -3,14 +3,14 @@ It was downloaded from http://avce00.maptools.org/avce00/avce00-1.3.0.tar.gz +Copyright: MIT license + Upstream Author: Daniel Morissette, [EMAIL PROTECTED] -Copyright: +License: Copyright (c) 1999, 2000, Daniel Morissette -License: - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without Modified: packages/avce00/debian/docs =================================================================== --- packages/avce00/debian/docs 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/docs 2008-01-03 12:54:16 UTC (rev 1318) @@ -1,4 +1,4 @@ -avce00.txt +avce00.html HISTORY.TXT README.TXT TODO.TXT Modified: packages/avce00/debian/rules =================================================================== --- packages/avce00/debian/rules 2008-01-03 12:52:34 UTC (rev 1317) +++ packages/avce00/debian/rules 2008-01-03 12:54:16 UTC (rev 1318) @@ -1,28 +1,51 @@ #!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. -include /usr/share/dpatch/dpatch.make - # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -OPTFLAGS = -Wall -g +CFLAGS = -Wall -g + ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - OPTFLAGS += -O0 + CFLAGS += -O0 else - OPTFLAGS += -O2 + CFLAGS += -O2 endif +configure: configure-stamp +configure-stamp: + dh_testdir + + # Add here commands to configure the package. + + touch configure-stamp + + build: build-stamp -build-stamp: patch + +build-stamp: configure-stamp dh_testdir - $(MAKE) OPTFLAGS="$(OPTFLAGS)" + + # Add here commands to compile the package. + + $(MAKE) + touch build-stamp -clean: unpatch +clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + dh_clean install: build @@ -31,7 +54,13 @@ dh_clean -k dh_installdirs + # Add here commands to install the package into debian/avce00, nothing to do by default. + +# Build architecture-independent files here. binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot @@ -51,4 +80,4 @@ dh_builddeb binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +.PHONY: build clean binary-indep binary-arch binary install configure _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel

