From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9DAEE1384B2 for ; Thu, 30 Jul 2015 15:23:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68E761401A; Thu, 30 Jul 2015 15:23:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0E5F21401A for ; Thu, 30 Jul 2015 15:23:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6DB5340768 for ; Thu, 30 Jul 2015 15:23:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C96DEBF for ; Thu, 30 Jul 2015 15:23:07 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1438269782.278d5a0015c08e40e6f761a9886efa00cae9bcf9.aballier@gentoo> Subject: [gentoo-commits] dev/aballier:master commit in: scripts/texlive/tlpsrc/ X-VCS-Repository: dev/aballier X-VCS-Files: scripts/texlive/tlpsrc/Makefile X-VCS-Directories: scripts/texlive/tlpsrc/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 278d5a0015c08e40e6f761a9886efa00cae9bcf9 X-VCS-Branch: master Date: Thu, 30 Jul 2015 15:23:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ee1bfcf7-81f1-4d71-b069-2a63434cbc9a X-Archives-Hash: 44532b05f13c468011073e3f06846c88 commit: 278d5a0015c08e40e6f761a9886efa00cae9bcf9 Author: Alexis Ballier gentoo org> AuthorDate: Thu Jul 30 15:23:02 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Thu Jul 30 15:23:02 2015 +0000 URL: https://gitweb.gentoo.org/dev/aballier.git/commit/?id=278d5a00 Make extrardepend mandatory to use make dependencies scripts/texlive/tlpsrc/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/texlive/tlpsrc/Makefile b/scripts/texlive/tlpsrc/Makefile index db06331..80b335a 100644 --- a/scripts/texlive/tlpsrc/Makefile +++ b/scripts/texlive/tlpsrc/Makefile @@ -107,7 +107,10 @@ clean: %-post.ebuild: touch $@ -%.ebuild: %.desc %.deps %.list %.doclist %.srclist %.gentoolicense %-post.ebuild +%.extrardepend: + touch $@ + +%.ebuild: %.desc %.deps %.list %.doclist %.srclist %.gentoolicense %-post.ebuild %.extrardepend cat $(PORTDIR)/header.txt > $@ printf "EAPI=\"5\"\n\n" >> $@ echo -n "TEXLIVE_MODULE_CONTENTS=\"" >> $@ @@ -132,7 +135,7 @@ clean: cat $(@:%.ebuild=%.deps) >> $@ echo "\"" >> $@ echo -n 'RDEPEND="$${DEPEND} ' >> $@ - -cat $(@:%.ebuild=%.extrardepend) >> $@ + cat $(@:%.ebuild=%.extrardepend) >> $@ echo '"' >> $@ cat $(@:%.ebuild=%-post.ebuild) >> $@