diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-02 07:37:31 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-05-02 07:37:31 +0000 |
commit | b792cc5809657214baafaf9e6c91c0f2c60ae2d3 (patch) | |
tree | 2819644bae64c8f4c44733d6d7dcbf578855d2d2 /mail/ricochet/files/patch-install | |
parent | New Features: (diff) |
remove unmaintained expired ports from mail
2011-05-01 mail/biabam: Upstream disapear and distfile is no more available
2011-05-01 mail/crashecho: Upstream disapear and distfile is no more available
2011-05-01 mail/drbl: Upstream disapear and distfile is no more available
2011-05-01 mail/glbiff: Upstream disapear and distfile is no more available
2011-05-01 mail/libsrs: Upstream disapear and distfile is no more available
2011-05-01 mail/majorcool: Upstream disapear and distfile is no more available
2011-05-01 mail/messagewall: Upstream disapear and distfile is no more available
2011-05-01 mail/pgen: Upstream disapear and distfile is no more available
2011-05-01 mail/regm: Upstream disapear and distfile is no more available
2011-05-01 mail/ricochet: Upstream disapear and distfile is no more available
2011-05-01 mail/smtpclient: Upstream disapear and distfile is no more available
2011-05-01 mail/smtpproxy: Upstream disapear and distfile is no more available
2011-05-01 mail/solidpop3d: Upstream disapear and distfile is no more available
2011-05-01 mail/spruce: Upstream disapear and distfile is no more available
2011-05-01 mail/teapop-devel: Upstream disapear and distfile is no more available
2011-05-01 mail/wmmail: Upstream disapear and distfile is no more available
2011-05-01 mail/wmmultipop3: Upstream disapear and distfile is no more available
2011-05-01 mail/wmymail: Upstream disapear and distfile is no more available
2011-05-01 mail/xpbiff: Upstream disapear and distfile is no more available
Notes
Notes:
svn path=/head/; revision=273455
Diffstat (limited to 'mail/ricochet/files/patch-install')
-rw-r--r-- | mail/ricochet/files/patch-install | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/mail/ricochet/files/patch-install b/mail/ricochet/files/patch-install deleted file mode 100644 index 88080974bf35..000000000000 --- a/mail/ricochet/files/patch-install +++ /dev/null @@ -1,59 +0,0 @@ ---- install.orig Sat Oct 23 07:22:23 1999 -+++ install Fri Sep 7 09:05:47 2001 -@@ -11,13 +11,13 @@ - - $APP = 'Ricochet'; - $VERSION = '0.92'; --$DIR = "$ENV{HOME}/.ricochet"; -+$DIR = "%%PREFIX%%/share/ricochet"; - @PACKAGE = qw/TODO CHANGES README ARTISTIC complaint-template ricochet abuse-contacts/; - - @REQUIRED = qw /Mail::Internet Net::DNS Text::Template Net::XWhois LWP::UserAgent/; - --$BINDIR = '/usr/local/bin'; -+$BINDIR = '%%PREFIX%%/bin'; --$EMAIL = defined $ENV{EMAIL} ? $ENV{EMAIL} : "$ENV{USERNAME}\@$ENV{HOSTNAME}"; -+$EMAIL = defined $ENV{EMAIL} ? $ENV{EMAIL} : "$ENV{USER}\@$ENV{HOST}"; - - ## Print an intro message. - print "\n---== $APP $VERSION Install ==---\n\n"; -@@ -89,25 +89,25 @@ - } - - ## Take config params: --&take_input ("Where should I place the Ricochet executable [Default: $BINDIR]?", \$BINDIR); --&take_input ("Return email address for complaint mails [Default: $EMAIL]?", \$EMAIL); -+#&take_input ("Where should I place the Ricochet executable [Default: $BINDIR]?", \$BINDIR); -+#&take_input ("Return email address for complaint mails [Default: $EMAIL]?", \$EMAIL); - - ## Make $HOME/.ricochet - unless (-e $DIR) { - print "\nMaking $DIR...\n"; -- mkdir $DIR, 0700; -+ mkdir $DIR, 0755; - } - print "\n"; - - unless (-e "$DIR/whois") { - print "\nMaking $DIR/whois ...\n"; -- mkdir "$DIR/whois", 0700; -+ mkdir "$DIR/whois", 0755; - } - print "\n"; - - unless (-e "$DIR/backup") { - print "\nMaking $DIR/backup ...\n"; -- mkdir "$DIR/backup", 0700; -+ mkdir "$DIR/backup", 0755; - } - print "\n"; - -@@ -119,7 +119,7 @@ - system "mv $DIR/$_ $DIR/backup/$_"; - } - print "Copying $_ to $DIR ...\n"; -- system "cp $_ $DIR"; -+ system "%%INSTALL_DATA%% $_ $DIR"; - print "\n"; - } @PACKAGE; - |