Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 3 → Rev 2

/trunk/debian/patches/10_cleanup.dpatch
File deleted
/trunk/debian/patches/00list
File deleted
/trunk/debian/patches/20_link_with_gmp.dpatch
File deleted
/trunk/debian/patches/99_autotools_files.dpatch
File deleted
/trunk/debian/control
2,7 → 2,7
Section: libs
Priority: optional
Maintainer: Magnus Holmgren <magnus@kibibyte.se>
Build-Depends: debhelper (>= 4.0.0), libgmp3-dev, m4, autotools-dev, dpatch
Build-Depends: debhelper (>= 4.0.0), libgmp3-dev, m4, autotools-dev
Standards-Version: 3.7.2
 
Package: libnettle2
27,7 → 27,7
Package: libnettle-dev
Section: libdevel
Architecture: any
Depends: libnettle2 (= ${binary:Version}), libgmp3-dev
Depends: libnettle2 (= ${Source-Version}), libgmp3-dev
Description: low level cryptographic library (development files)
Nettle is a cryptographic library that is designed to fit easily in more or
less any context: In crypto toolkits for object-oriented languages (C++,
/trunk/debian/changelog
1,11 → 1,3
nettle (1.15-2) unstable; urgency=high
 
* Fix serious regression: The -lgmp added in 1.8-1 fell off in 1.15-1.
* Use dpatch to handle patches.
* Make package binNMUable.
 
-- Magnus Holmgren <magnus@kibibyte.se> Tue, 15 May 2007 12:35:41 +0200
 
nettle (1.15-1) unstable; urgency=low
 
* New maintainer (Closes: #411677).
/trunk/debian/rules
5,8 → 5,8
 
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpatch/dpatch.make
 
 
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
33,8 → 33,14
#major=`ls src/.libs/lib*.so.* | \
# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
 
config.status: patch configure
config.status: configure
dh_testdir
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
endif
# Add here commands to configure the package.
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
54,8 → 60,7
 
touch build-stamp
 
clean: clean-patched unpatch
clean-patched:
clean:
dh_testdir
dh_testroot
rm -f build-stamp
62,6 → 67,14
 
# Add here commands to clean up after the build process.
-$(MAKE) distclean
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
rm -f config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
rm -f config.guess
endif
-rm machine.m4
-rm -r .lib
 
dh_clean