Skip to content
Commits on Source (2)
boxshade (3.3.1-13) unstable; urgency=medium
[ Nguyen Hoang Tung ]
* Build for correct architecture
Closes: #931150
[ Andreas Tille ]
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Thu, 27 Jun 2019 13:54:24 +0200
boxshade (3.3.1-12) unstable; urgency=medium
[ Steffen Moeller ]
......
......@@ -6,7 +6,7 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.2.1
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/boxshade
Vcs-Git: https://salsa.debian.org/med-team/boxshade.git
Homepage: http://www.ch.embnet.org/software/BOX_form.html
......
Author: Nguyen Hoang Tung <tung.nguyenhoang@toshiba-tsdv.com>
Date: Thu, 27 Jun 2019 15:10:33 +0700
Bug-Debian: https://bugs.debian.org/931150
Description: build for correct architecture
diff -Nru orig/boxshade-3.3.1/makefile.djp boxshade-3.3.1/makefile.djp
--- orig/boxshade-3.3.1/makefile.djp 1997-06-06 17:48:13.000000000 +0000
+++ boxshade-3.3.1/makefile.djp 2019-05-20 10:24:41.494373080 +0000
@@ -23,8 +23,8 @@
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
depend:
- gcc -MM $(CSRCbx) >depend
- gcc -MM $(CSRCdv) >>depend
+ $(CC) -MM $(CSRCbx) >depend
+ $(CC) -MM $(CSRCdv) >>depend
box$(OBJ): box.c bx_types.h bx_read.h dv_all.h version.h
bx_read$(OBJ): bx_read.c bx_types.h bx_read.h
diff -Nru orig/boxshade-3.3.1/makefile.unx boxshade-3.3.1/makefile.unx
--- orig/boxshade-3.3.1/makefile.unx 1997-06-06 17:48:33.000000000 +0000
+++ boxshade-3.3.1/makefile.unx 2019-05-20 10:25:03.658373080 +0000
@@ -23,8 +23,8 @@
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
depend:
- gcc -MM $(CSRCbx) >depend
- gcc -MM $(CSRCdv) >>depend
+ $(CC) -MM $(CSRCbx) >depend
+ $(CC) -MM $(CSRCdv) >>depend
box$(OBJ): box.c bx_types.h bx_read.h dv_all.h version.h
bx_read$(OBJ): bx_read.c bx_types.h bx_read.h
kickOutGets.patch
remove-newlines.patch
spelling.patch
change_fixed_compiler.patch
#!/usr/bin/make -f
include /usr/share/dpkg/buildtools.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DH_VERBOSE=1
......@@ -8,7 +10,7 @@ export DH_VERBOSE=1
dh $@
override_dh_auto_build:
$(MAKE) -f makefile.unx CFLAGS="$(shell dpkg-buildflags --get CFLAGS)" CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)" LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS)"
$(MAKE) CC="$(CC)" -f makefile.unx CFLAGS="$(shell dpkg-buildflags --get CFLAGS)" CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)" LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS)"
override_dh_clean:
rm -f boxshade *.o
......