From: "Yuta SATOH" <nigoro.gentoo@0x100.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gentoo-bsd:master commit in: sys-freebsd/freebsd-pam-modules/
Date: Fri, 30 Aug 2013 18:30:19 +0000 (UTC) [thread overview]
Message-ID: <1377875492.c2e852e4c4660927c9cffb7a3b80a9c7523ae743.yuta_satoh@gentoo> (raw)
commit: c2e852e4c4660927c9cffb7a3b80a9c7523ae743
Author: Yuta SATOH <nigoro <AT> gentoo <DOT> gr <DOT> jp>
AuthorDate: Fri Aug 30 15:11:32 2013 +0000
Commit: Yuta SATOH <nigoro.gentoo <AT> 0x100 <DOT> com>
CommitDate: Fri Aug 30 15:11:32 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-bsd.git;a=commit;h=c2e852e4
freebsd-pam-modules-9999_p255023: fix Consider setting COMPILER_TYPE, and change NO_* to WITHOUT_*.
---
sys-freebsd/freebsd-pam-modules/Manifest | 2 +-
.../freebsd-pam-modules/freebsd-pam-modules-9999_p255023.ebuild | 9 ++++++---
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/sys-freebsd/freebsd-pam-modules/Manifest b/sys-freebsd/freebsd-pam-modules/Manifest
index fa20c1a..c38c28b 100644
--- a/sys-freebsd/freebsd-pam-modules/Manifest
+++ b/sys-freebsd/freebsd-pam-modules/Manifest
@@ -1,4 +1,4 @@
AUX README.pamd 2965 SHA256 2d3cea2b59ddee2ca6639ca7d14068e1499acee4194181c255bdfea81964d5ac SHA512 e278fd0a5056ae8c1de2f6104bfb4766adc89c7c357a4b965cb08ee555a071b326462c937fd63cd8fc7bd7e2a880f939cecdf2997a3d2c33c1b962afee12d38e WHIRLPOOL 8ee79582595a2b79f3936863bd5fdb144930380a4073a74ec81967b3a11d61a40ca0becaf36dfa760c0c6110efa2041a4acd6041615e0d006f032e1d9c819aff
AUX freebsd-pam-modules-9.0-gentoo.patch 622 SHA256 b397d5d646712c4a63606d94c45d25551344872d77d7b6b5f646403a2b09f7fb SHA512 752b593a8bea623110683a181deefd7126eaded7bf94973bcd994b2415db5739cd69a125ee9bd0c960fd5a3e30e3a2eaf8c711893f94966a9cc5a9b0c3191af0 WHIRLPOOL 168b0ba47e9a326ff1db9cfe46724c83a45d744df0fa737599894ef1574b0e199c46e7626b16f5cc83cd4886fd79320c5f92e4c2b37801ef3604ffd4ec1b2de7
EBUILD freebsd-pam-modules-9.9999.ebuild 1121 SHA256 342ee8740aeff932961270c4ac571da1cc80c687ad894907b828cbd16317df97 SHA512 d73437cb20e20ad658cadfc371d28305160371243e190b053fe0732964e504991e78b77c88e3a9f98332034cb4e8d0b18ad64b9f0a9a28bc7f7d20e9ee1360ad WHIRLPOOL 66a06e999cab8874398753262d0fee0d4afc01fe010d8655a1e96bf7949c889452ef73dab46c605532d16f95165158f74a93a8be840284bdd7df1076752d9432
-EBUILD freebsd-pam-modules-9999_p255023.ebuild 1121 SHA256 342ee8740aeff932961270c4ac571da1cc80c687ad894907b828cbd16317df97 SHA512 d73437cb20e20ad658cadfc371d28305160371243e190b053fe0732964e504991e78b77c88e3a9f98332034cb4e8d0b18ad64b9f0a9a28bc7f7d20e9ee1360ad WHIRLPOOL 66a06e999cab8874398753262d0fee0d4afc01fe010d8655a1e96bf7949c889452ef73dab46c605532d16f95165158f74a93a8be840284bdd7df1076752d9432
+EBUILD freebsd-pam-modules-9999_p255023.ebuild 1228 SHA256 24227edcf5ce003da52bff6056a88c609b1c87af052310d1a7dd1bc05279af61 SHA512 d54b23b75ddb87405531b52096493b62ec3c82bd9c0262b8fe2dd2efe137bd5538257b4cdd26ab9d905795af140d76f678f138d13bbda65b90b479ade9e042ab WHIRLPOOL 2b7a98db12ba997587b9c520a67ab104dc6227176a81d21ceb93d14977b746f2a79ce6856fc2298f40afdb761668d6975fcf7580b630c6cc9fff839c9592f3a4
diff --git a/sys-freebsd/freebsd-pam-modules/freebsd-pam-modules-9999_p255023.ebuild b/sys-freebsd/freebsd-pam-modules/freebsd-pam-modules-9999_p255023.ebuild
index 2b75d68..284fd52 100644
--- a/sys-freebsd/freebsd-pam-modules/freebsd-pam-modules-9999_p255023.ebuild
+++ b/sys-freebsd/freebsd-pam-modules/freebsd-pam-modules-9999_p255023.ebuild
@@ -27,9 +27,9 @@ PATCHES=( "${FILESDIR}"/${PN}-9.0-gentoo.patch )
pkg_setup() {
# Avoid installing pam_ssh as that has its own ebuild.
- mymakeopts="${mymakeopts} NO_OPENSSH= "
- use kerberos || mymakeopts="${mymakeopts} NO_KERBEROS= "
- use nis || mymakeopts="${mymakeopts} NO_NIS= "
+ mymakeopts="${mymakeopts} WITHOUT_OPENSSH= "
+ use kerberos || mymakeopts="${mymakeopts} WITHOUT_KERBEROS= "
+ use nis || mymakeopts="${mymakeopts} WITHOUT_NIS= "
}
src_unpack() {
@@ -38,6 +38,9 @@ src_unpack() {
for module in pam_deny pam_passwdqc pam_permit pam_krb5; do
sed -i -e "s:${module}::" "${S}"/modules.inc
done
+
+ # fix Consider setting COMPILER_TYPE.
+ [[ ${PV} == *9999* ]] && rm -rf "${WORKDIR}"/share
}
src_install() {
next reply other threads:[~2013-08-30 18:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-30 18:30 Yuta SATOH [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-06-28 10:55 [gentoo-commits] proj/gentoo-bsd:master commit in: sys-freebsd/freebsd-pam-modules/ Yuta SATOH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1377875492.c2e852e4c4660927c9cffb7a3b80a9c7523ae743.yuta_satoh@gentoo \
--to=nigoro.gentoo@0x100.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox