diff options
author | Pierre-Olivier Mercier <nemunaire@nemunai.re> | 2017-08-02 00:40:34 +0200 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2017-12-20 17:46:17 -0500 |
commit | 1e4e32e6ad7047ec180ffcb6b92fe79d8338259c (patch) | |
tree | 34139c4962ce6b1c17e1a8a0f99fd85ec1fd6dc7 /net-nntp/slrn/files | |
parent | net-nntp/slrn: add myself in metadata.xml (diff) | |
download | gentoo-1e4e32e6ad7047ec180ffcb6b92fe79d8338259c.tar.gz gentoo-1e4e32e6ad7047ec180ffcb6b92fe79d8338259c.tar.bz2 gentoo-1e4e32e6ad7047ec180ffcb6b92fe79d8338259c.zip |
net-nntp/slrn: version bump, EAPI 6, add support for libressl
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'net-nntp/slrn/files')
-rw-r--r-- | net-nntp/slrn/files/slrn-1.0.3-make.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-nntp/slrn/files/slrn-1.0.3-make.patch b/net-nntp/slrn/files/slrn-1.0.3-make.patch new file mode 100644 index 000000000000..e03fbb472c36 --- /dev/null +++ b/net-nntp/slrn/files/slrn-1.0.3-make.patch @@ -0,0 +1,36 @@ +--- slrn-1.0.2/src/Makefile.in ++++ slrn-1.0.2/src/Makefile.in +@@ -153,7 +153,7 @@ + $(MKINSDIR) $(DEST_SLRN_LIB_DIR) + $(MKINSDIR) $(DEST_SLRN_SLANG_DIR) + # $(MKINSDIR) $(DEST_CONFDIR) +-installdocs: ++installdocs: installdirs + @for i in $(MAN_FILES); \ + do \ + echo $(INSTALL_DATA) $$i $(DEST_MANDIR)/man1/; \ +@@ -186,7 +186,7 @@ + exit 1; \ + fi; \ + done +-installslang: ++installslang: installdirs + @files=$(CONF_FILES); \ + for i in $$files; \ + do \ +@@ -204,11 +204,11 @@ + exit 1; \ + fi; \ + done +-installlocales: ++installlocales: installdirs + -cd ../po; $(MAKE) DESTDIR=$(DESTDIR) LOCALEDIR=$(LOCALEDIR) install +-installbin: +- $(INSTALL) -m 755 -s $(OBJDIR)/slrn $(DEST_BINDIR) +- -$(INSTALL) -m 755 -s $(OBJDIR)/slrnpull $(DEST_BINDIR) ++installbin: installdirs ++ $(INSTALL) -m 755 $(OBJDIR)/slrn $(DEST_BINDIR) ++ -$(INSTALL) -m 755 $(OBJDIR)/slrnpull $(DEST_BINDIR) + install: all installdirs installbin installdocs installslang installlocales + + # The symlinks target is for my own private use. It simply creates the object |