Codebase list libb64 / 373dbbe
Import Debian changes 1.2-5 libb64 (1.2-5) unstable; urgency=medium * debian/control: bump standard to 4.1.3 (no changes) * debian/control: add salsa VCS URLs * debian/control: use dh11 * Fix FTCBFS: (Closes: #894137) + Let dh_auto_build pass cross tools to make. + Let buildtools.mk supply $(CC). (thanks to Helmut Grohne for the patch) Thorsten Alteholz 6 years ago
4 changed file(s) with 21 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 libb64 (1.2-5) unstable; urgency=medium
1
2 * debian/control: bump standard to 4.1.3 (no changes)
3 * debian/control: add salsa VCS URLs
4 * debian/control: use dh11
5 * Fix FTCBFS: (Closes: #894137)
6 + Let dh_auto_build pass cross tools to make.
7 + Let buildtools.mk supply $(CC).
8 (thanks to Helmut Grohne for the patch)
9
10 -- Thorsten Alteholz <debian@alteholz.de> Sun, 01 Apr 2018 18:16:02 +0100
11
012 libb64 (1.2-4) unstable; urgency=medium
113
214 * new maintainer (Closes: #706894)
11 Section: libs
22 Priority: optional
33 Maintainer: Thorsten Alteholz <debian@alteholz.de>
4 Build-Depends: debhelper (>= 10),
4 Build-Depends: debhelper (>= 11),
55 dpkg-dev (>= 1.16.0~),
66 xutils-dev,
7 Standards-Version: 4.1.0
7 Standards-Version: 4.1.3
88 Homepage: http://libb64.sourceforge.net/
9 Vcs-Browser: https://salsa.debian.org/alteholz/libb64.git
10 Vcs-Git: https://salsa.debian.org/alteholz/libb64.git
911
1012 Package: libb64-0d
1113 Architecture: any
00 #!/usr/bin/make -f
1
2 -include /usr/share/dpkg/buildtools.mk
13
24 static_lib = libb64.a
35 shared_lib = libb64.so
1921 rm -rf src-shlib/
2022 cp -a src src-shlib/
2123 cd src-shlib/ && rm -f *.o *.a
22 CFLAGS="$(cflags)" LDFLAGS="$(ldflags)" $(MAKE)
23 CFLAGS="$(cflags) -fPIC" $(MAKE) -C src-shlib/
24 CFLAGS="$(cflags)" LDFLAGS="$(ldflags)" dh_auto_build
25 CFLAGS="$(cflags) -fPIC" dh_auto_build --sourcedirectory=src-shlib/
2426 cd src-shlib && $(CC) $(ldflags) -shared -Wl,-soname,$(soname) *.o -o $(soname)
2527 cd src-shlib && ln -sf $(soname) $(shared_lib)
2628 ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" ""