From 715aba3b172a22bc7e13afa01c7050dbb699a844 Mon Sep 17 00:00:00 2001 From: mezz Date: Thu, 11 Oct 2007 04:48:24 +0000 Subject: Fix the plist. Reported by: pointyhat-exp git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9779 df743ca5-7f9a-e211-a948-0013205c9059 --- net/mugshot/Makefile | 61 +++++++++++++++++++++++++++++++ net/mugshot/distinfo | 3 ++ net/mugshot/files/patch-firefox-update.sh | 30 +++++++++++++++ net/mugshot/pkg-descr | 9 +++++ net/mugshot/pkg-install | 13 +++++++ net/mugshot/pkg-plist | 54 +++++++++++++++++++++++++++ 6 files changed, 170 insertions(+) create mode 100644 net/mugshot/Makefile create mode 100644 net/mugshot/distinfo create mode 100644 net/mugshot/files/patch-firefox-update.sh create mode 100644 net/mugshot/pkg-descr create mode 100644 net/mugshot/pkg-install create mode 100644 net/mugshot/pkg-plist diff --git a/net/mugshot/Makefile b/net/mugshot/Makefile new file mode 100644 index 000000000..e56a087b7 --- /dev/null +++ b/net/mugshot/Makefile @@ -0,0 +1,61 @@ +# New ports collection makefile for: mugshot +# Date Created: 24 December 2006 +# Whom: wahjava +# +# $FreeBSD$ +# + +PORTNAME= mugshot +PORTVERSION= 1.1.45 +PORTREVISION= 1 +CATEGORIES= net +MASTER_SITES= http://download.mugshot.org/client/sources/linux/ + +MAINTAINER= wahjava@gmail.com +COMMENT= The official client for Mugshot network + +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg:install \ + Xss.1:${PORTSDIR}/x11/xorg-libraries:install +BUILD_DEPENDS= ${PKGCONFIG_LOCAL_BASE}/dbus-1.pc:${PORTSDIR}/devel/dbus:install \ + ${PKGCONFIG_LOCAL_BASE}/dbus-glib-1.pc:${PORTSDIR}/devel/dbus-glib:install \ + ${PKGCONFIG_LOCAL_BASE}/loudmouth-1.0.pc:${PORTSDIR}/net-im/loudmouth:install \ + ${PKGCONFIG_LOCAL_BASE}/cairo.pc:${PORTSDIR}/graphics/cairo:install \ + ${PKGCONFIG_LOCAL_BASE}/libcurl.pc:${PORTSDIR}/ftp/curl:install \ + ${LOCALBASE}/include/firefox/caps/nsIScriptSecurityManager.h:${PORTSDIR}/www/firefox:install \ + ${LOCALBASE}/lib/libpcre.a:${PORTSDIR}/devel/pcre:install \ + ${LOCALBASE}/lib/firefox/xpidl:${PORTSDIR}/www/firefox:install \ + ${X11BASE}/include/X11/extensions/scrnsaver.h:${PORTSDIR}/x11/xorg-libraries:install \ + dbus>=1.0.2:${PORTSDIR}/devel/dbus:install + +USE_GNOME= gnomehack gconf2 glib20 gtk20 pango gnomevfs2 gnomedesktop +GNU_CONFIGURE= yes +USE_GMAKE= yes + +GCONF_SCHEMAS= mugshot-uri-handler.schemas +INSTALLS_ICONS= yes + +USE_LDCONFIG= yes +LDCONFIG_DIRS= %%PREFIX%%/lib/mugshot/firefox/components + +PKGCONFIG_LOCAL_BASE= ${LOCALBASE}/libdata/pkgconfig +PKGCONFIG_X11_BASE= ${X11BASE}/libdata/pkgconfig + +mugshot_INSTALL_cmd= install + +.include + +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= "--with-gecko-idl=${FIREFOX_IDL_PATH}" \ + "--with-gecko-headers=${LOCALBASE}/include/firefox" \ + "--with-xpidl=${LOCALBASE}/lib/firefox/xpidl" \ + "--x-includes=${X11BASE}/include" \ + "--x-libraries=${X11BASE}/lib" + +FIREFOX_IDL_PATH!=${SH} -c 'for i in ${LOCALBASE}/share/idl/firefox-*; do [ -f $$i/nsIURI.idl ] && ${ECHO} $$i && break; done; exit 0;' +BUILD_DEPENDS+=${FIREFOX_IDL_PATH}/nsIURI.idl:${PORTSDIR}/www/firefox:install + +post-install: + @${SED} -i "" -e "s|%%PREFIX%%|${PREFIX}|" ${PREFIX}/share/mugshot/firefox-update.sh + @${PREFIX}/share/mugshot/firefox-update.sh ${mugshot_INSTALL_cmd} + +.include diff --git a/net/mugshot/distinfo b/net/mugshot/distinfo new file mode 100644 index 000000000..9bb0e9edf --- /dev/null +++ b/net/mugshot/distinfo @@ -0,0 +1,3 @@ +MD5 (mugshot-1.1.45.tar.gz) = 2bb9f3f9ba0c34a6869749223d921ea9 +SHA256 (mugshot-1.1.45.tar.gz) = 2320feab6311689942209a1721d25ba9d18fbd218af7171d61fcea522e39d708 +SIZE (mugshot-1.1.45.tar.gz) = 897559 diff --git a/net/mugshot/files/patch-firefox-update.sh b/net/mugshot/files/patch-firefox-update.sh new file mode 100644 index 000000000..d3ac07964 --- /dev/null +++ b/net/mugshot/files/patch-firefox-update.sh @@ -0,0 +1,30 @@ +--- firefox-update.sh.orig Sun Dec 24 22:31:37 2006 ++++ firefox-update.sh Sun Dec 24 22:34:38 2006 +@@ -6,7 +6,7 @@ + # Firefox is installed into versioned directories in /usr/lib[64]/firefox + # + if [ "$1" = "install" ] ; then +- for libdir in /usr/lib /usr/lib64 ; do ++ libdir=%%PREFIX%%/lib + # Add symlinks to any firefox directory that looks like it is part of a + # currently installed package + for d in $libdir/firefox* ; do +@@ -19,9 +19,8 @@ + ln -s $target $link + fi + done +- done + elif [ "$1" = "remove" ] ; then +- for libdir in /usr/lib /usr/lib64 ; do ++ libdir=%%PREFIX%%/lib + # Remove any symlinks we've created into any firefox directory + for d in $libdir/firefox* ; do + if [ d = "$libdir/firefox*" ] ; then +@@ -32,7 +31,6 @@ + rm $link + fi + done +- done + else + echo "Usage firefox-update.sh [install/remove]" + fi diff --git a/net/mugshot/pkg-descr b/net/mugshot/pkg-descr new file mode 100644 index 000000000..332807ac8 --- /dev/null +++ b/net/mugshot/pkg-descr @@ -0,0 +1,9 @@ +This is the port of mugshot, an official client for +Mugshot network. Mugshot makes it easy to show off +what you're doing online and keep track of what +your friends are up to. + +WWW: http://www.mugshot.org/ + +- Ashish Shukla +wahjava@gmail.com diff --git a/net/mugshot/pkg-install b/net/mugshot/pkg-install new file mode 100644 index 000000000..5233c87bf --- /dev/null +++ b/net/mugshot/pkg-install @@ -0,0 +1,13 @@ +#!/bin/sh + +FFUPDATE=${PKG_PREFIX}/share/mugshot/firefox-update.sh + +case $2 in +POST-INSTALL) + ${FFUPDATE} install + ;; +PRE-DEINSTALL) + killall mugshot + ${FFUPDATE} remove + ;; +esac diff --git a/net/mugshot/pkg-plist b/net/mugshot/pkg-plist new file mode 100644 index 000000000..2d673237d --- /dev/null +++ b/net/mugshot/pkg-plist @@ -0,0 +1,54 @@ +@unexec killall mugshot 2>/dev/null >/dev/null || exit 0 +bin/mugshot +bin/mugshot-uri-handler +lib/mugshot/firefox/chrome.manifest +lib/mugshot/firefox/chrome/content/chatWindow.js +lib/mugshot/firefox/chrome/content/chatWindow.xul +lib/mugshot/firefox/chrome/content/hippo.js +lib/mugshot/firefox/chrome/content/overlay.js +lib/mugshot/firefox/chrome/content/overlay.xul +lib/mugshot/firefox/chrome/content/tabcontext.js +lib/mugshot/firefox/chrome/content/windowcontext.js +lib/mugshot/firefox/chrome/icons/default/mugshot.xpm +lib/mugshot/firefox/chrome/locale/en-US/overlay.dtd +lib/mugshot/firefox/chrome/skin/chatWindow.css +lib/mugshot/firefox/chrome/skin/linkswarm16x16.png +lib/mugshot/firefox/chrome/skin/linkswarm24x24.png +lib/mugshot/firefox/chrome/skin/mugshot32x32.png +lib/mugshot/firefox/chrome/skin/toolbar.css +lib/mugshot/firefox/components/hippoIControl.xpt +lib/mugshot/firefox/components/hippoIControlListener.xpt +lib/mugshot/firefox/components/hippoIExtension.xpt +lib/mugshot/firefox/components/libhippofirefox.la +lib/mugshot/firefox/components/libhippofirefox.so +lib/mugshot/firefox/defaults/preferences/prefs.js +lib/mugshot/firefox/install.rdf +share/applications/mugshot.desktop +share/gnome/autostart/mugshot.desktop +@unexec %%PREFIX%%/share/mugshot/firefox-update.sh remove +%%DATADIR%%/firefox-update.sh +%%DATADIR%%/version +share/dbus-1/services/org.mugshot.Mugshot.service +share/icons/hicolor/128x128/apps/mugshot.png +share/icons/hicolor/16x16/apps/mugshot.png +share/icons/hicolor/16x16/apps/mugshot_note_off.png +share/icons/hicolor/16x16/apps/mugshot_note_on.png +share/icons/hicolor/22x22/apps/mugshot_notification.png +share/icons/hicolor/22x22/apps/mugshot_notification_disabled.png +share/icons/hicolor/24x24/apps/mugshot.png +share/icons/hicolor/32x32/apps/mugshot.png +share/icons/hicolor/48x48/apps/mugshot.png +@dirrm %%DATADIR%% +@dirrmtry share/applications +@dirrm lib/mugshot/firefox/defaults/preferences +@dirrm lib/mugshot/firefox/defaults +@dirrm lib/mugshot/firefox/components +@dirrm lib/mugshot/firefox/chrome/skin +@dirrm lib/mugshot/firefox/chrome/locale/en-US +@dirrm lib/mugshot/firefox/chrome/locale +@dirrm lib/mugshot/firefox/chrome/icons/default +@dirrm lib/mugshot/firefox/chrome/icons +@dirrm lib/mugshot/firefox/chrome/content +@dirrm lib/mugshot/firefox/chrome +@dirrm lib/mugshot/firefox +@dirrm lib/mugshot -- cgit v1.2.3