diff options
author | EWouters <6179932+EWouters@users.noreply.github.com> | 2022-04-01 03:15:54 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-04-11 19:43:56 -0700 |
commit | cf0798158a255a2af6a0c42982dd3df67655ad85 (patch) | |
tree | 694535c8c3eb30944c382b01c28d6c1cc46f6672 /Ports/klong/patches | |
parent | d59694b864b0c72fe391fe085bd0e6f2daec6f58 (diff) | |
download | serenity-cf0798158a255a2af6a0c42982dd3df67655ad85.zip |
Ports/klong: Update klong to version 20220315
Upgrade patch to git style, add ReadMe.md and remove from the list of
ports missing descriptions.
Diffstat (limited to 'Ports/klong/patches')
-rw-r--r-- | Ports/klong/patches/0001-Patch-Makefile.patch | 44 | ||||
-rw-r--r-- | Ports/klong/patches/ReadMe.md | 10 | ||||
-rw-r--r-- | Ports/klong/patches/klong.patch | 26 |
3 files changed, 54 insertions, 26 deletions
diff --git a/Ports/klong/patches/0001-Patch-Makefile.patch b/Ports/klong/patches/0001-Patch-Makefile.patch new file mode 100644 index 0000000000..a28461deab --- /dev/null +++ b/Ports/klong/patches/0001-Patch-Makefile.patch @@ -0,0 +1,44 @@ +From 63f3b49119e29d905a66c64895625c702b4827d5 Mon Sep 17 00:00:00 2001 +From: EWouters <6179932+EWouters@users.noreply.github.com> +Date: Tue, 5 Apr 2022 14:33:34 +0200 +Subject: [PATCH] Patch Makefile + +- Make `CC` configurable from `env` +- Remove `klong.image` target from all +- Add install target +--- + Makefile | 9 +++++++-- + 1 file changed, 7 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index f692ff7..470adcd 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,5 +1,5 @@ + CFLAGS= -g -Wall -pedantic -O3 +-CC= cc $(CFLAGS) ++CC:= $(CC) $(CFLAGS) + V= 20211014 + R= 20220315 + +@@ -12,7 +12,7 @@ OPTIONS= -DEDIT + # Modules to load into image file + MODULES=-l nstat -l nplot -l time + +-all: kg klong.image ++all: kg + + klong.image: kg + ./kg -n $(MODULES) -o klong.image +@@ -54,3 +54,8 @@ csums: + + mksums: clean + find . -type f | grep -v _csums | grep -v klong2015 | csum >_csums ++ ++install: ++ install kg ${DESTDIR}/usr/local/bin ++ mkdir -p ${DESTDIR}/usr/local/lib/klong ++ install -m 644 lib/* ${DESTDIR}/usr/local/lib/klong +-- +2.32.0 (Apple Git-132) + diff --git a/Ports/klong/patches/ReadMe.md b/Ports/klong/patches/ReadMe.md new file mode 100644 index 0000000000..88010a04f1 --- /dev/null +++ b/Ports/klong/patches/ReadMe.md @@ -0,0 +1,10 @@ +# Patches for klong on SerenityOS + +## `0001-Patch-Makefile.patch` + +Patch Makefile + +- Make `CC` configurable from `env` +- Remove `klong.image` target from all +- Add install target + diff --git a/Ports/klong/patches/klong.patch b/Ports/klong/patches/klong.patch deleted file mode 100644 index 3008222f09..0000000000 --- a/Ports/klong/patches/klong.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- klong/Makefile.orig 2019-10-01 13:06:39.000000000 +0200 -+++ klong/Makefile 2020-02-01 21:08:13.020202542 +0100 -@@ -1,12 +1,12 @@ - CFLAGS= -g -Wall -pedantic -O3 --CC= cc $(CFLAGS) -+CC:= $(CC) $(CFLAGS) - V= 20190330 - R= 20190926 - - # Modules to load into image file - OPTIONS=-l nstat -l nplot -l time - --all: kg klong.image -+all: kg - - klong.image: kg - ./kg -n $(OPTIONS) -o klong.image -@@ -48,3 +48,8 @@ - - mksums: clean - find . -type f | grep -v _csums | grep -v klong2015 | csum >_csums -+ -+install: -+ install kg ${DESTDIR}/usr/local/bin -+ mkdir -p ${DESTDIR}/usr/local/lib/klong -+ install -m 644 lib/* ${DESTDIR}/usr/local/lib/klong |