diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2006-03-29 18:29:45 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2006-03-29 18:29:45 +0000 |
commit | c28115ab281a48c80fa7e359990c672bab14b892 (patch) | |
tree | 1096ce466c35e46abbe386dc21f2a6e35abaa10d /www/seamonkey | |
parent | b3dd7536fa958e669b7b77cc58ef1840d49a15f8 (diff) |
- Convert all gecko pkg-[de]install scripts into a generic
pkg-[de]install script
- Always use pkg-install to create missing dir's [1]
Requested by: marcus [1]
Notes
Notes:
svn path=/head/; revision=158394
Diffstat (limited to 'www/seamonkey')
-rw-r--r-- | www/seamonkey/Makefile | 1 | ||||
-rw-r--r-- | www/seamonkey/pkg-deinstall.in | 23 |
2 files changed, 1 insertions, 23 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index ee0cf109beea..6adf9664771f 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -8,6 +8,7 @@ PORTNAME= seamonkey DISTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES?= www MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= seamonkey/releases/${DISTVERSION} diff --git a/www/seamonkey/pkg-deinstall.in b/www/seamonkey/pkg-deinstall.in deleted file mode 100644 index 2aa8d7e4847a..000000000000 --- a/www/seamonkey/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# $MCom: ports-stable/www/seamonkey/pkg-deinstall.in,v 1.1 2006/03/09 21:26:46 ahze Exp $ -# -# Date created: Mon Nov 29, 2003 -# Whom: Thierry Thomas (<thierry@pompo.net>) -# Fix the chrome registry. - -umask 022 -PATH=/bin:/usr/bin - -[ "x$1" = "x" ] && exit 1 -[ "x$2" != "xDEINSTALL" ] && exit 0 - -MOZDIR=%%MOZDIR%% - -rm -rf ${MOZDIR}/chrome/overlayinfo -rm -f ${MOZDIR}/chrome/*.rdf -rm -f ${MOZDIR}/component.reg -rm -f ${MOZDIR}/components/*.dat - -exit 0 |