diff options
author | David Seifert <soap@gentoo.org> | 2021-04-05 16:14:35 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-04-05 16:14:35 +0200 |
commit | 2cb7d9aa5e80e00466947ae42c87844d2aea4fba (patch) | |
tree | e07062e4598f996d9659ad0db5e9d01c0d5be01b /sci-biology/sibsim4/files | |
parent | sci-biology/repeatmasker-libraries: Port to EAPI 7 (diff) | |
download | gentoo-2cb7d9aa5e80e00466947ae42c87844d2aea4fba.tar.gz gentoo-2cb7d9aa5e80e00466947ae42c87844d2aea4fba.tar.bz2 gentoo-2cb7d9aa5e80e00466947ae42c87844d2aea4fba.zip |
sci-biology/sibsim4: Port to EAPI 7
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/sibsim4/files')
-rw-r--r-- | sci-biology/sibsim4/files/sibsim4-0.20-makefile.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sci-biology/sibsim4/files/sibsim4-0.20-makefile.patch b/sci-biology/sibsim4/files/sibsim4-0.20-makefile.patch new file mode 100644 index 000000000000..6436747e3dd9 --- /dev/null +++ b/sci-biology/sibsim4/files/sibsim4-0.20-makefile.patch @@ -0,0 +1,26 @@ +--- a/Makefile ++++ b/Makefile +@@ -21,13 +21,12 @@ + # to change it to this: + # CFLAGS = -Xc + +-CFLAGS = -std=gnu99 -W -Wall -Wconversion -pedantic $(DEBUG) $(OPT) ++CFLAGS += -std=gnu99 -Wall -Wconversion -pedantic + + + # The default is GCC. On Solaris, you might put: + # CC = /opt/SUNWspro/bin/cc + +-CC = gcc + + + # Depending on the compile flags you use, you might need to explicitly use the +@@ -42,7 +41,7 @@ + OBJS = sim4b1.o align.o misc.o sim4.init.o + + sim4: $(OBJS) +- $(CC) -o SIBsim4 $(CFLAGS) $(OBJS) $(LIBS) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o SIBsim4 $(OBJS) $(LIBS) + + clean: + rm -f SIBsim4 *.o |