This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CFLAGS="-march=nocona -O2 -mssse3 -pipe" | |
CXXFLAGS=$CFLAGS | |
ACCEPT_KEYWORDS="${ACCEPT_KEYWORDS} ~x86-macos" | |
MAKEOPTS="-j4" | |
FEATURES="candy ccache" | |
EMERGE_DEFAULT_OPTS="--keep-going" | |
PORTAGE_NICENESS="5" | |
USE="cjk ipv6 lzma nls threads unicode vim-syntax zsh-completion" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export EPREFIX="$HOME/Library/Gentoo" | |
export PATH="$EPREFIX/usr/bin:$EPREFIX/bin:$EPREFIX/tmp/usr/bin:$EPREFIX/tmp/bin:$PATH" | |
export CHOST="x86_64-apple-darwin10" | |
curl -o bootstrap-prefix.sh http://overlays.gentoo.org/proj/alt/browser/trunk/prefix-overlay/scripts/bootstrap-prefix.sh?format=txt | |
chmod 755 bootstrap-prefix.sh | |
chmod 755 bootstrap-prefix.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require "rubygems" | |
require "net/http" | |
require "uri" | |
require "cgi" | |
require "json" # gem install json | |
require 'pathname' | |
class SPARQL |