diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2019-11-06 20:46:07 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-11-07 21:39:31 -0500 |
commit | efc2405057980c81f8af183f8d052e56ce8b1617 (patch) | |
tree | b1ebd1ed255f73f74eea28acbfa866fd93f3c610 /sys-apps/lcdutils/files | |
parent | app-text/calibre: Bump to version 4.3.0 (diff) | |
download | gentoo-efc2405057980c81f8af183f8d052e56ce8b1617.tar.gz gentoo-efc2405057980c81f8af183f8d052e56ce8b1617.tar.bz2 gentoo-efc2405057980c81f8af183f8d052e56ce8b1617.zip |
sys-apps/lcdutils: bump to EAPI=7
Also taking ownership by myself.
Closes: https://bugs.gentoo.org/697208
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'sys-apps/lcdutils/files')
-rw-r--r-- | sys-apps/lcdutils/files/lcdutils-0.2-makefile.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys-apps/lcdutils/files/lcdutils-0.2-makefile.patch b/sys-apps/lcdutils/files/lcdutils-0.2-makefile.patch new file mode 100644 index 000000000000..a67db0c2e297 --- /dev/null +++ b/sys-apps/lcdutils/files/lcdutils-0.2-makefile.patch @@ -0,0 +1,20 @@ +--- a/Makefile 2002-07-08 15:31:37.000000000 +0200 ++++ b/Makefile 2019-11-06 20:38:11.499806312 +0100 +@@ -1,13 +1,14 @@ + #CC=mips-uclibc-gcc + #LDFLAGS=-static + +-CFLAGS=-O2 -Wall ++CFLAGS?=-O2 -Wall + + all: putlcd buttond + + install: all +- install putlcd /usr/local/sbin +- install buttond /usr/local/sbin ++ install -d ${DESTDIR}/usr/bin ++ install putlcd ${DESTDIR}/usr/bin ++ install buttond ${DESTDIR}/usr/bin + + clean: + rm -f putlcd buttond *.o |