diff options
author | ahze <ahze@FreeBSD.org> | 2006-03-30 02:29:45 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2006-03-30 02:29:45 +0800 |
commit | e3230aad7b972a494936bed6afa3267abae3a2e5 (patch) | |
tree | 036f238051894f439ed31ce56b887fb56d9f0561 /www/flock | |
parent | 896966217b4c0f84c936ffac863f08ba06b3a86d (diff) | |
download | freebsd-ports-gnome-e3230aad7b972a494936bed6afa3267abae3a2e5.tar.gz freebsd-ports-gnome-e3230aad7b972a494936bed6afa3267abae3a2e5.tar.zst freebsd-ports-gnome-e3230aad7b972a494936bed6afa3267abae3a2e5.zip |
- 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]
Diffstat (limited to 'www/flock')
-rw-r--r-- | www/flock/Makefile | 2 | ||||
-rw-r--r-- | www/flock/pkg-deinstall.in | 20 |
2 files changed, 1 insertions, 21 deletions
diff --git a/www/flock/Makefile b/www/flock/Makefile index 27ae5726bcb7..954d16f29cd3 100644 --- a/www/flock/Makefile +++ b/www/flock/Makefile @@ -8,7 +8,7 @@ PORTNAME= firefox DISTVERSION= 1.5.0.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} diff --git a/www/flock/pkg-deinstall.in b/www/flock/pkg-deinstall.in deleted file mode 100644 index 0abb7e7c0458..000000000000 --- a/www/flock/pkg-deinstall.in +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# 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 |