From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EAA371581E7 for ; Mon, 22 Apr 2024 20:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 502EDE29F0; Mon, 22 Apr 2024 20:03:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 11641E29F0 for ; Mon, 22 Apr 2024 20:03:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B99934320B for ; Mon, 22 Apr 2024 20:03:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2A6A1694 for ; Mon, 22 Apr 2024 20:03:16 +0000 (UTC) From: "Horodniceanu Andrei" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horodniceanu Andrei" Message-ID: <1713641607.c1bdf245f2a8f82cd24512f18f72eee1f5052b61.a.horodniceanu@gentoo> Subject: [gentoo-commits] repo/user/dlang:master commit in: eclass/ X-VCS-Repository: repo/user/dlang X-VCS-Files: eclass/dmd-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: a.horodniceanu X-VCS-Committer-Name: Horodniceanu Andrei X-VCS-Revision: c1bdf245f2a8f82cd24512f18f72eee1f5052b61 X-VCS-Branch: master Date: Mon, 22 Apr 2024 20:03:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 524f047b-d424-4456-92d8-02fd1078bb6c X-Archives-Hash: c9ad070b4b5a82d7d8aa00d57b1b35cc commit: c1bdf245f2a8f82cd24512f18f72eee1f5052b61 Author: Andrei Horodniceanu proton me> AuthorDate: Sat Apr 20 19:33:27 2024 +0000 Commit: Horodniceanu Andrei proton me> CommitDate: Sat Apr 20 19:33:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=c1bdf245 dmd-r1.eclass: Fix paths in pkg_postinst elog messages Signed-off-by: Andrei Horodniceanu proton.me> eclass/dmd-r1.eclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eclass/dmd-r1.eclass b/eclass/dmd-r1.eclass index 802e820..90459c2 100644 --- a/eclass/dmd-r1.eclass +++ b/eclass/dmd-r1.eclass @@ -331,8 +331,9 @@ dmd-r1_src_install() { dmd-r1_pkg_postinst() { "${EROOT}"/usr/bin/eselect dlang update dmd - use examples && elog "Examples can be found in: ${dmd_prefix}/samples" - use doc && elog "HTML documentation is in: /usr/share/doc/${PF}/html" + use examples && + elog "Examples can be found in: ${EPREFIX}/usr/lib/${PN}/${SLOT}/samples" + use doc && elog "HTML documentation is in: ${EPREFIX}/usr/share/doc/${PF}/html" optfeature "additional D development tools" "dev-util/dlang-tools" }