Magellan Linux

Contents of /branches/magellan-next/core/mailwrapper/mailwrapper-0.2.1-r9.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6207 - (show annotations) (download)
Thu Aug 19 20:29:53 2010 UTC (13 years, 8 months ago) by niro
File size: 812 byte(s)
auto added: ver bump to 0.2.1-r9
1 # $Id: mailwrapper-0.2.1-r8.smage2 3156 2009-10-13 22:44:53Z niro $
2
3 PNAME="mailwrapper"
4 PVER="0.2.1"
5 PBUILD="r9"
6
7 PCATEGORIE="net-mail"
8 STATE="unstable"
9
10 DESCRIPTION="Program to invoke an appropriate MTA based on a config file."
11 HOMEPAGE="http://www.gentoo.org/"
12
13 DEPEND=""
14
15 SRCFILE="${PNAME}-${PVER}.tbz2"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild mtools
19
20 SRC_URI=(
21 mirror://${PNAME}/${SRCFILE}
22 mirror://${PNAME}/mailer.conf
23 )
24
25 src_compile()
26 {
27 cd ${SRCDIR}
28 gcc ${CFLAGS} -o mailwrapper mailwrapper.c fparseln.c fgetln.c || die
29 }
30
31 src_install()
32 {
33 cd ${SRCDIR}
34
35 # needed directories
36 minstalldir /usr/sbin || die
37
38 # bins
39 minstallexec mailwrapper /usr/sbin/sendmail || die
40
41 # etc
42 minstalletc mailer.conf || die
43
44 # man
45 minstallman mailer.conf.5 || die
46 minstallman mailwrapper.8 || die
47 }