diff options
author | Pierre-Olivier Mercier <nemunaire@nemunai.re> | 2019-09-17 22:14:47 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-17 23:01:45 +0200 |
commit | d0965b5725756ecd65c8203888b4cbe4c0aa7f7a (patch) | |
tree | 4565b859719522e0bfe83e8f8edc505a739f4d88 /net-nntp/slrn | |
parent | sys-libs/llvm-libunwind: Use BDEPEND semi-properly (diff) | |
download | gentoo-d0965b5725756ecd65c8203888b4cbe4c0aa7f7a.tar.gz gentoo-d0965b5725756ecd65c8203888b4cbe4c0aa7f7a.tar.bz2 gentoo-d0965b5725756ecd65c8203888b4cbe4c0aa7f7a.zip |
net-nntp/slrn: fix QA issue
Closes: https://bugs.gentoo.org/694660
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Pierre-Olivier Mercier <nemunaire@nemunai.re>
Closes: https://github.com/gentoo/gentoo/pull/12958
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-nntp/slrn')
-rw-r--r-- | net-nntp/slrn/files/slrn-1.0.3-make.patch | 36 | ||||
-rw-r--r-- | net-nntp/slrn/slrn-1.0.3.ebuild | 4 |
2 files changed, 2 insertions, 38 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 deleted file mode 100644 index e03fbb472c36..000000000000 --- a/net-nntp/slrn/files/slrn-1.0.3-make.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- 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 diff --git a/net-nntp/slrn/slrn-1.0.3.ebuild b/net-nntp/slrn/slrn-1.0.3.ebuild index 2085d6e75440..07effe06c3a7 100644 --- a/net-nntp/slrn/slrn-1.0.3.ebuild +++ b/net-nntp/slrn/slrn-1.0.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -26,7 +26,7 @@ RDEPEND="app-arch/sharutils DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" -PATCHES=( "${FILESDIR}"/${P}-make.patch ) +PATCHES=( "${FILESDIR}"/${PN}-1.0.2-make.patch ) src_configure() { econf \ |