Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 66 → Rev 67

/trunk/debian/control
2,7 → 2,7
Section: libs
Priority: optional
Maintainer: Magnus Holmgren <holmgren@debian.org>
Build-Depends: debhelper (>= 5), libgmp10-dev, m4, autotools-dev (>= 20100122.1)
Build-Depends: debhelper (>= 7), libgmp10-dev, m4, autotools-dev (>= 20100122.1)
Standards-Version: 3.9.1
Vcs-Svn: svn://svn.kibibyte.se/nettle/trunk
Vcs-Browser: http://svn.kibibyte.se/nettle
/trunk/debian/compat
1,0 → 0,0
5
7
/trunk/debian/changelog
1,3 → 1,11
nettle (2.1-2) unstable; urgency=low
 
* Upload to unstable.
* Increase Debhelper compat level to 7.
* debian/rules: Add build-indep and build-arch targets.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 20 Mar 2011 01:15:50 +0100
 
nettle (2.1-1) experimental; urgency=low
 
* New upstream release (Closes: #594386). Thanks to Sedat Dilek for
/trunk/debian/rules
28,7 → 28,7
dh_autotools-dev_updateconfig
./configure $(buildflags) \
--prefix=/usr \
--libdir=/usr/lib \
--libdir=\$${prefix}/lib \
--enable-shared \
--disable-dependency-tracking \
CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS) -Wl,--as-needed"
59,7 → 59,7
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_prep
dh_installdirs
 
# Add here commands to install the package into debian/tmp
66,11 → 66,13
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 
# Build architecture-independent files here.
build-indep:
binary-indep:
# Nothing to do
 
# Build architecture-dependent files here.
binary-arch: build install
build-arch: build
binary-arch: build-arch install
dh_testdir
dh_testroot
dh_install -a --sourcedir=debian/tmp
91,4 → 93,4
dh_builddeb -a
 
binary: binary-arch
.PHONY: build clean clean-patched binary-indep binary-arch binary install
.PHONY: build build-indep build-arch clean clean-patched binary-indep binary-arch binary install