diff options
author | Jory Pratt <anarchy@gentoo.org> | 2006-06-09 18:33:37 +0000 |
---|---|---|
committer | Jory Pratt <anarchy@gentoo.org> | 2006-06-09 18:33:37 +0000 |
commit | 085ded6b25730a7fe51352cc10ea6c10cef998cd (patch) | |
tree | f2aeb32f83b3011b751eb283d82f8d65f8f85d1c /dev-libs/nss/files | |
parent | Don't alias the fortran compilers. (diff) | |
download | historical-085ded6b25730a7fe51352cc10ea6c10cef998cd.tar.gz historical-085ded6b25730a7fe51352cc10ea6c10cef998cd.tar.bz2 historical-085ded6b25730a7fe51352cc10ea6c10cef998cd.zip |
perl -e cleanup, small clean up to tree
Package-Manager: portage-2.1
Diffstat (limited to 'dev-libs/nss/files')
-rw-r--r-- | dev-libs/nss/files/digest-nss-3.11.1-r1 | 3 | ||||
-rw-r--r-- | dev-libs/nss/files/nss-3.11.1-perl.patch | 45 |
2 files changed, 48 insertions, 0 deletions
diff --git a/dev-libs/nss/files/digest-nss-3.11.1-r1 b/dev-libs/nss/files/digest-nss-3.11.1-r1 new file mode 100644 index 000000000000..ae13c9b2bb79 --- /dev/null +++ b/dev-libs/nss/files/digest-nss-3.11.1-r1 @@ -0,0 +1,3 @@ +MD5 5cb32527df232a62a7aed61336c8c373 nss-3.11.1.tar.gz 3650552 +RMD160 e6569ab941b08a59d2a459014389fd4581460aac nss-3.11.1.tar.gz 3650552 +SHA256 3f29d1f77f8f4fb9dc59d3a2fd13587e9be373a1cc8528e39c5d17f30807dc50 nss-3.11.1.tar.gz 3650552 diff --git a/dev-libs/nss/files/nss-3.11.1-perl.patch b/dev-libs/nss/files/nss-3.11.1-perl.patch new file mode 100644 index 000000000000..194525095194 --- /dev/null +++ b/dev-libs/nss/files/nss-3.11.1-perl.patch @@ -0,0 +1,45 @@ +--- .pc/make-perl-problem-in-coreconf.diff/security/coreconf/rules.mk 2006-01-31 00:06:21.000000000 +0100 ++++ security/coreconf/rules.mk 2006-01-31 00:31:37.000000000 +0100 +@@ -865,18 +865,18 @@ endif + + + ################################################################################ + + -include $(DEPENDENCIES) + + ifneq (,$(filter-out OpenVMS OS2 WIN%,$(OS_TARGET))) + # Can't use sed because of its 4000-char line length limit, so resort to perl +-.DEFAULT: +- @perl -e ' \ ++ ++PERL_DEPENDENCIES_PROGRAM=\ + open(MD, "< $(DEPENDENCIES)"); \ + while (<MD>) { \ + if (m@ \.*/*$< @) { \ + $$found = 1; \ + last; \ + } \ + } \ + if ($$found) { \ +@@ -893,17 +893,20 @@ ifneq (,$(filter-out OpenVMS OS2 WIN%,$( + } \ + close(TMD); \ + if (!rename($$tmpname, "$(DEPENDENCIES)")) { \ + unlink(($$tmpname)); \ + } \ + } elsif ("$<" ne "$(DEPENDENCIES)") { \ + print "$(MAKE): *** No rule to make target $<. Stop.\n"; \ + exit(1); \ +- }' ++ } ++ ++.DEFAULT: ++ @perl -e '$(PERL_DEPENDENCIES_PROGRAM)' + endif + + ############################################################################# + # X dependency system + ############################################################################# + + ifdef MKDEPENDENCIES + |