Magellan Linux

Annotation of /branches/R11-unstable/core/rp-pppoe/rp-pppoe-3.12-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27098 - (hide annotations) (download)
Fri Nov 13 12:38:13 2015 UTC (8 years, 6 months ago) by niro
Original Path: trunk/core/rp-pppoe/rp-pppoe-3.12-r1.smage2
File size: 1273 byte(s)
auto added: ver bump to 3.12-r1
1 niro 27098 # $Id$
2    
3     PNAME="rp-pppoe"
4     PVER="3.12"
5     PBUILD="r1"
6    
7     PCAT="net-dialup"
8    
9     DESCRIPTION="PPPoE (Point-to-Point Protocol over Ethernet) server and client for linux."
10     HOMEPAGE="http://www.roaringpenguin.com/products/pppoe"
11    
12     DEPEND=">= sys-apps/net-tools-1.60
13     >= net-dialup/ppp-2.4"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}/src"
17    
18     RCVER=1.2
19    
20     sminclude mbuild mtools
21     msetfeature "!check"
22    
23     SRC_URI=(
24     http://www.roaringpenguin.com/files/download/${SRCFILE}
25     mirror://${PNAME}/${SRCFILE}
26     mirror://${PNAME}/pppoe.rc-${RCVER}
27     mirror://${PNAME}/dsl-provider
28     )
29    
30     UP2DATE="updatecmd ${HOMEPAGE} | lasttarball gz"
31    
32     src_install()
33     {
34     cd ${SRCDIR}
35     mmake DESTDIR=${BINDIR} install || die
36    
37     # compress docs
38     gzip -9 ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/* || die
39    
40     # initscripts (we may remove this and use ppp only!)
41     minstallrc pppoe.rc-${RCVER} pppoe || die
42    
43     # ppp helpers
44     minstalldir /etc/ppp/peers || die
45     minstallfile -s dsl-provider /etc/ppp/peers/dsl-provider || die
46     }
47    
48     postinstall()
49     {
50     echo
51     echo "To setup your ADSL internet-connection run 'pppoe-setup',"
52     echo "or use '/etc/ppp/peers/dsl-provider' via pppd. Do not forget"
53     echo "to symlink dsl-provider to /etc/ppp/peers/provider,"
54     echo "or edit '/etc/conf.d/ppp to use 'dsl-provider'."
55     echo
56     }