mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
2165b3644a
- Add GMP option: libgmp.so is linked if present - Sort CONFIGURE_ARGS - Remove duplicate WRKSRC - Sort USES - Use pre-install: instead of pre-su-install: - Convert to new options helper - Convert to new options target helper - Change options helper: (copied from ruby22) - Use CAPIDOCS_CONFIGURE_ENABLE instead of CAPIDOCS_CONFIGURE_OFF - Use RDOC_CONFIGURE_ENABLE instead of RDOC_CONFIGURE_OFF - Add regression-test: - Fix typo - Cosmetic change - Pet portlint: fix diff header of patch files - Bump PORTREVISION for dependency and package change
13 lines
485 B
Ruby
13 lines
485 B
Ruby
--- tool/mkconfig.rb.orig 2013-05-27 03:20:04 UTC
|
|
+++ tool/mkconfig.rb
|
|
@@ -173,7 +173,8 @@
|
|
end
|
|
vars["prefix"] = ""
|
|
vars["exec_prefix"] = ""
|
|
-prefix = vars.expand(vars["rubyarchdir"])
|
|
+major, minor, *rest = RUBY_VERSION.split('.')
|
|
+prefix = "/lib/ruby/#{major}.#{minor}/#{arch}"
|
|
print " TOPDIR = File.dirname(__FILE__).chomp!(#{prefix.dump})\n"
|
|
print " DESTDIR = ", (drive ? "TOPDIR && TOPDIR[/\\A[a-z]:/i] || " : ""), "'' unless defined? DESTDIR\n"
|
|
print <<'ARCH' if universal
|