Subversion Repositories libdkim

Compare Revisions

Ignore whitespace Rev 22 → Rev 13

/trunk/debian/Makefile.pmk
File deleted
/trunk/debian/libdkim.pc
File deleted
/trunk/debian/pmkfile
File deleted
/trunk/debian/patches/00list
0,0 → 1,2
20_bad_test
20_strict_includes
/trunk/debian/changelog
1,26 → 1,12
libdkim (1:1.0.19-1) unstable; urgency=low
libdkim (1.0.17-1) unstable; urgency=low
 
* New upstream release.
- Drop remaining patches; issues fixed upstream.
* New maintainer email address.
 
-- Magnus Holmgren <holmgren@debian.org> Sat, 16 Feb 2008 21:01:25 +0100
 
libdkim (1:1.0.17-1) unstable; urgency=low
 
* New upstream release.
* Drop 20_winmacros.dpatch; fixed upstream.
* Bump soname to libdkim1 because of incompatible struct changes.
* 20_strict_includes.dpatch (new): Add "#include <string.h>" as necessary
* 20_strict_includes.dpatch (new): Add "#include <string.h>" as needed
to fix FTBFS with GCC 4.3 (Closes: #455145).
* Add an epoch to reclaim binary packages "stolen" by dkim-milter.
* Dump the linker version script - changing the soname when necessary is
going to be hard enough.
* Move homepage URL from description to control field.
* Increase Standards-Version to 3.7.3 without changes.
* Don't ignore distclean errors.
 
-- Magnus Holmgren <magnus@kibibyte.se> Fri, 15 Feb 2008 23:04:42 +0100
-- Magnus Holmgren <magnus@kibibyte.se> Sat, 19 Jan 2008 23:45:52 +0100
 
libdkim (1.0.14-1) unstable; urgency=low
 
/trunk/debian/Makefile.in
32,9 → 32,10
libdkimtest_OBJS = libdkimtest.$(OBJEXT)
 
SHLIBFORLINK = libdkim.so
SHLIBVERSCRIPT = debian/libdkim.ver
SHLIBSONAME = $(SHLIBFORLINK).$(SHLIBMAJOR)
SHLIBTARGET = $(SHLIBFORLINK)
SHLIBLINK = $(CXX) $(LDFLAGS) -shared -Wl,-soname=$(SHLIBSONAME)
SHLIBLINK = $(CXX) $(LDFLAGS) -shared -Wl,-soname=$(SHLIBSONAME) -Wl,-version-script=$(SHLIBVERSCRIPT)
SHLIBMAJOR = 1
SHLIBMINOR = 0
SHLIBFILE = $(SHLIBSONAME).$(SHLIBMINOR)
50,7 → 51,7
-rm -f $@
$(AR) $(ARFLAGS) $@ $(libdkim_OBJS)
 
$(SHLIBFORLINK): $(libdkim_PURE_OBJS)
$(SHLIBFORLINK): $(libdkim_PURE_OBJS) $(SHLIBVERSCRIPT)
$(SHLIBLINK) -o $@ $(LIBS) $(libdkim_PURE_OBJS)
-mkdir .lib 2>/dev/null
[ -z "$(SHLIBSONAME)" ] || (cd .lib \
/trunk/debian/control
1,10 → 1,9
Source: libdkim
Priority: optional
Maintainer: Magnus Holmgren <holmgren@debian.org>
Maintainer: Magnus Holmgren <magnus@kibibyte.se>
Build-Depends: debhelper (>= 5), autoconf, libssl-dev, pkg-config, dpatch
Standards-Version: 3.7.3
Standards-Version: 3.7.2
Section: libs
Homepage: http://libdkim.sourceforge.net
 
Package: libdkim1
Section: libs
21,6 → 20,8
incorporating DKIM into an existing MTA or other application. It
provides full support for signing, verifying, and SSP. See the
changelogs for information on compliance with specifications.
.
Homepage: http://libdkim.sourceforge.net
 
Package: libdkim-dev
Section: libdevel
38,5 → 39,7
provides full support for signing, verifying, and SSP. See the
changelogs for information on compliance with specifications.
.
Homepage: http://libdkim.sourceforge.net
.
This package contains the development files needed to compile and link
programs with libdkim.
/trunk/debian/rules
19,17 → 19,18
CXXFLAGS += -O2
endif
 
configure: Makefile
Makefile: $(DPATCH_STAMPFN) debian/pmkfile
configure: config.status
config.status: $(DPATCH_STAMPFN) debian/configure.ac
dh_testdir
ln -sf $(CURDIR)/debian/libdkim.pc.in src/libdkim.pc.pmk
pmk -f debian/pmkfile
ln -sf $(CURDIR)/debian/*.in src/
cd debian && autoconf
debian/configure --srcdir=src/ --prefix=/usr
 
build: build-stamp
build-stamp: configure
build-stamp: config.status
dh_testdir
 
(cd src && $(MAKE) -f ../Makefile)
$(MAKE)
 
touch $@
 
39,7 → 40,7
dh_testroot
rm -f build-stamp configure-stamp
 
[ ! -f Makefile ] || (cd src && $(MAKE) -f ../Makefile distclean)
-$(MAKE) distclean
 
rm -f src/*.in debian/configure
rm -rf debian/autom4te.cache
51,7 → 52,7
dh_clean -k
dh_installdirs
 
(cd src && $(MAKE) -f ../Makefile install DESTDIR=$(CURDIR)/debian/tmp)
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
#
 
 
/trunk/debian/libdkim.pc.in
0,0 → 1,12
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
 
Name: @PACKAGE_NAME@
Description: DomainKeys Identified Mail library from Alt-N Inc.
Version: @PACKAGE_VERSION@
Requires.private: libcrypto
Libs: -L${libdir} -ldkim
Libs.private: @LIBS@
Cflags: -I${includedir}
/trunk/debian/configure.ac
2,7 → 2,7
# Process this file with autoconf to produce a configure script.
 
AC_PREREQ(2.61)
AC_INIT(libdkim, 1.0.19)
AC_INIT(libdkim, 1.0.13)
AC_CONFIG_SRCDIR([dkim.cpp])
##AC_CONFIG_HEADER([config.h])