summaryrefslogtreecommitdiff
path: root/mail/p5-Mail-Ezmlm
diff options
context:
space:
mode:
authorschmonz <schmonz>2005-12-28 06:08:12 +0000
committerschmonz <schmonz>2005-12-28 06:08:12 +0000
commit2a04a250621bf21d9e1d4e86a0b260e4f07af55f (patch)
treeb604667b8489a0280dfd3638e01ff1c07f967c6e /mail/p5-Mail-Ezmlm
parenta24a741787305787c42efffe262ecf5450dc3592 (diff)
downloadpkgsrc-2a04a250621bf21d9e1d4e86a0b260e4f07af55f.tar.gz
Initial import of p5-Mail-Ezmlm-0.05.1, a Perl5 module providing
object methods to manipulate ezmlm mailing lists.
Diffstat (limited to 'mail/p5-Mail-Ezmlm')
-rw-r--r--mail/p5-Mail-Ezmlm/DESCR1
-rw-r--r--mail/p5-Mail-Ezmlm/Makefile31
-rw-r--r--mail/p5-Mail-Ezmlm/PLIST1
-rw-r--r--mail/p5-Mail-Ezmlm/distinfo6
-rw-r--r--mail/p5-Mail-Ezmlm/patches/patch-aa17
5 files changed, 56 insertions, 0 deletions
diff --git a/mail/p5-Mail-Ezmlm/DESCR b/mail/p5-Mail-Ezmlm/DESCR
new file mode 100644
index 00000000000..0049d9df914
--- /dev/null
+++ b/mail/p5-Mail-Ezmlm/DESCR
@@ -0,0 +1 @@
+Perl5 object methods for ezmlm mailing lists.
diff --git a/mail/p5-Mail-Ezmlm/Makefile b/mail/p5-Mail-Ezmlm/Makefile
new file mode 100644
index 00000000000..290c23771cb
--- /dev/null
+++ b/mail/p5-Mail-Ezmlm/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/12/28 06:08:12 schmonz Exp $
+#
+
+DISTNAME= Ezmlm-0.05.1
+PKGNAME= p5-Mail-${DISTNAME}
+CATEGORIES= mail perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/}
+
+MAINTAINER= schmonz@NetBSD.org
+HOMEPAGE= http://guy.rucus.net/ezmlm/
+COMMENT= Perl5 module for managing ezmlm mailing lists
+
+DEPENDS+= qmail>=1.03:../../mail/qmail
+DEPENDS+= {ezmlm>=0.53,ezmlm-idx>=0.40}:../../mail/ezmlm
+
+WRKSRC= ${WRKDIR}/Ezmlm-0.05
+
+MAKE_ENV+= BSD_BATCH_INSTALL=1 # skip interactive config stage
+
+SUBST_CLASSES+= paths
+SUBST_STAGE.paths= do-configure
+SUBST_FILES.paths= Ezmlm.pm
+SUBST_SED.paths= -e 's|@LOCALBASE@|${LOCALBASE}|g'
+SUBST_SED.paths+= -e 's|@QMAILDIR@|${QMAILDIR}|g'
+SUBST_SED.paths+= -e 's|@MYSQLBASE@|${LOCALBASE}/bin|g'
+SUBST_MESSAGE.paths= "Configuring paths."
+
+PERL5_PACKLIST= auto/Mail/Ezmlm/.packlist
+
+.include "../../lang/perl5/module.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/mail/p5-Mail-Ezmlm/PLIST b/mail/p5-Mail-Ezmlm/PLIST
new file mode 100644
index 00000000000..24ce3d4e3ad
--- /dev/null
+++ b/mail/p5-Mail-Ezmlm/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/12/28 06:08:12 schmonz Exp $
diff --git a/mail/p5-Mail-Ezmlm/distinfo b/mail/p5-Mail-Ezmlm/distinfo
new file mode 100644
index 00000000000..9091f1975af
--- /dev/null
+++ b/mail/p5-Mail-Ezmlm/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/12/28 06:08:12 schmonz Exp $
+
+SHA1 (Ezmlm-0.05.1.tar.gz) = bd28a8e992b177caf7ae41ed471d9ac2704db53f
+RMD160 (Ezmlm-0.05.1.tar.gz) = b7f365a5c8d42b396877765c060410c819fd36ae
+Size (Ezmlm-0.05.1.tar.gz) = 11619 bytes
+SHA1 (patch-aa) = 8a16b2164aeab5aa4bd2a2c3ab4f52eef638b183
diff --git a/mail/p5-Mail-Ezmlm/patches/patch-aa b/mail/p5-Mail-Ezmlm/patches/patch-aa
new file mode 100644
index 00000000000..bc776030d6a
--- /dev/null
+++ b/mail/p5-Mail-Ezmlm/patches/patch-aa
@@ -0,0 +1,17 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/12/28 06:08:12 schmonz Exp $
+
+--- Ezmlm.pm.orig 2005-03-08 08:10:46.000000000 -0500
++++ Ezmlm.pm
+@@ -56,9 +56,9 @@ $VERSION = '0.05';
+ require 5.005;
+
+ # == Begin site dependant variables ==
+-$EZMLM_BASE = '/usr/local/bin'; #Autoinserted by Makefile.PL
+-$QMAIL_BASE = '/var/qmail'; #Autoinserted by Makefile.PL
+-$MYSQL_BASE = ''; #Autoinserted by Makefile.PL
++$EZMLM_BASE = '@LOCALBASE@/bin';
++$QMAIL_BASE = '@QMAILDIR@';
++$MYSQL_BASE = '@MYSQLBASE@';
+ # == End site dependant variables ==
+
+ use Carp;