diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-05 17:39:58 +0100 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-05 17:39:58 +0100 | 
| commit | 4c0388134ff88b72e343bd07013554480c2a4ef7 (patch) | |
| tree | 593a886ccadb0a685a74b862df7936207dcd3c18 /debian/rules | |
| parent | 095a5f046c36c4cff689305fef81533a9e9603fc (diff) | |
Remaining fixes: All looks good now, apt and dpkg seem to do the right
thing with the -common transition, etc.
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 12 | 
1 files changed, 8 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index bbb368f9..8ccb181b 100755 --- a/debian/rules +++ b/debian/rules @@ -10,9 +10,7 @@  BITLBEE_CONFIGURE_FLAGS ?=  DEBUG ?= 0 -ifdef BITLBEE_VERSION -BITLBEE_FORCE_VERSION=1 -else +ifndef BITLBEE_VERSION  # Want to use the full package version number instead of just the release.  BITLBEE_CONFIGURE_VERSION ?= BITLBEE_VERSION=\"$(shell dpkg-parsechangelog | grep ^Version: | awk '{print $$2}')\"  endif @@ -67,14 +65,20 @@ binary-common:  	dh_installexamples  	dh_installdebconf  	dh_installinit +ifeq ($(DH_OPTIONS),-a) +	cp -a debian/bitlbee/etc debian/bitlbee-libpurple +endif  	dh_installman  	dh_strip  	dh_link  	dh_compress  	dh_fixperms  	dh_installdeb +ifeq ($(DH_OPTIONS),-a) +	cp -a debian/bitlbee/DEBIAN/{post,pre}* debian/bitlbee-libpurple/DEBIAN +endif  	dh_shlibdeps -ifdef BITLBEE_FORCE_VERSION +ifdef BITLBEE_VERSION  	dh_gencontrol -- -v1:$(BITLBEE_VERSION)-0  else  	dh_gencontrol  | 
