Codebase list debian-goodies / 75b0fda3-1d6d-44dd-bb60-4e6cbd49b341/main dhomepage
75b0fda3-1d6d-44dd-bb60-4e6cbd49b341/main

Tree @75b0fda3-1d6d-44dd-bb60-4e6cbd49b341/main (Download .tar.gz)

dhomepage @75b0fda3-1d6d-44dd-bb60-4e6cbd49b341/mainraw · history · blame

#!/bin/sh
#
#  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License along
#  with this program; if not, write to the Free Software Foundation, Inc.,
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#

VERSION="0.3"

version()
{
  echo "dhomepage version $VERSION"
  echo "dhomepage is licensed under the GNU General Public License"
  echo "version 2 or later"
}

usage()
{
  echo "dhomepage PACKAGE"
  echo ""
  echo "--version	Show version information"
  echo "--help		Show this help message"
  echo ""
}

PACKAGE="$1"

if [ -z "$PACKAGE" ]; then
  usage
  exit 0
fi

case "$1" in
	--help)
		usage
		exit 0
		;;
	--version)
		version
		exit 0
		;;
esac

RESULT=$(grep-aptavail -PX $PACKAGE -s Homepage,Description)
if [ -z "$RESULT" ]; then
    echo "Package $PACKAGE does not seem to exist."
    exit 2
fi

HOMEPAGE=$(echo "$RESULT" | grep '^Homepage: ' | sed 's,^Homepage: ,,' | sort -u)

if [ -z "$HOMEPAGE" ]; then
  HOMEPAGE=$(echo "$RESULT" | grep '^  Homepage: ' | \
    sed -n '{s,^  Homepage: ,,;p}' | sort -u)
fi

if [ -z "$HOMEPAGE" ]; then
  echo "$PACKAGE has no homepage"
  exit 1
fi

# Check for browsers
if [ -x "$(which sensible-browser)" ]; then
    DH_BROWSER=sensible-browser
elif [ -n "$BROWSER" -a -x "$(which "$BROWSER")" ]; then
    DH_BROWSER="$BROWSER"
elif [ -n "$DISPLAY" -a -x "$(which x-www-browser)" ]; then
    DH_BROWSER=x-www-browser
elif [ -x "$(which www-browser)" ]; then
    DH_BROWSER=www-browser
else
    echo "$0: Warning: No browser found. Just printing the homepage URL." 1>&2
    DH_BROWSER=echo
fi

for URL in $HOMEPAGE; do
    "$DH_BROWSER" "$URL"
done