1Summary: PPP Over Ethernet (xDSL support)
2Name: rp-pppoe
3Version: 2.3
4Release: 1
5Copyright: GPL
6Group: System Environment/Daemons
7Source: http://www.roaringpenguin.com/pppoe/rp-pppoe-2.3.tar.gz
8Url: http://www.roaringpenguin.com/pppoe/
9Packager: David F. Skoll <dfs@roaringpenguin.com>
10BuildRoot: /tmp/pppoe-build
11Vendor: Roaring Penguin Software Inc.
12Requires: ppp >= 2.3.7
13
14%description
15PPPoE (Point-to-Point Protocol over Ethernet) is a protocol used by
16many ADSL Internet Service Providers. Roaring Penguin has a free
17client for Linux systems to connect to PPPoE service providers.
18
19The client is a user-mode program and does not require any kernel
20modifications. It is fully compliant with RFC 2516, the official PPPoE
21specification.
22
23%prep
24%setup
25./configure
26
27%build
28make
29
30%install
31rm -rf $RPM_BUILD_ROOT
32mkdir -p $RPM_BUILD_ROOT
33make install RPM_INSTALL_ROOT=$RPM_BUILD_ROOT
34
35%clean
36rm -rf $RPM_BUILD_ROOT
37
38%files
39%defattr(-,root,root)
40%doc CHANGES HOW-TO-CONNECT LICENSE README adsl-state.pl firewall
41%config /etc/ppp/pppoe.conf
42%config /etc/ppp/pppoe-server-options
43%config /etc/ppp/firewall-masq
44%config /etc/ppp/firewall-standalone
45/usr/sbin/pppoe
46/usr/sbin/pppoe-server
47/usr/sbin/pppoe-sniff
48/usr/sbin/adsl-connect
49/usr/sbin/adsl-start
50/usr/sbin/adsl-stop
51/usr/sbin/adsl-setup
52/usr/sbin/adsl-status
53/usr/man/man5/pppoe.conf.5.gz
54/usr/man/man8/pppoe.8.gz
55/usr/man/man8/pppoe-server.8.gz
56/usr/man/man8/pppoe-sniff.8.gz
57/usr/man/man8/adsl-connect.8.gz
58/usr/man/man8/adsl-start.8.gz
59/usr/man/man8/adsl-stop.8.gz
60/usr/man/man8/adsl-status.8.gz
61/usr/man/man8/adsl-setup.8.gz
62/etc/rc.d/init.d/adsl
63
64