generic-poky/meta/packages/ppp-dialin/ppp-dialin_0.1.bb
Marcin Juszkiewicz 997e77603b ppp-dialin: make it machine independent (from OE)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3544 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-01-18 15:23:37 +00:00

36 lines
698 B
BlitzBasic

SECTION = "console/network"
DESCRIPTION = "Enables PPP dial-in through a serial connection"
DEPENDS = "ppp"
RDEPENDS = "ppp"
PR = "r5"
LICENSE = "MIT"
SRC_URI = "file://host-peer \
file://ppp-dialin"
do_install() {
install -d ${D}${sysconfdir}/ppp/peers
install -m 0644 ${WORKDIR}/host-peer ${D}${sysconfdir}/ppp/peers/host
install -d ${D}${sbindir}
install -m 0755 ${WORKDIR}/ppp-dialin ${D}${sbindir}
}
PACKAGE_ARCH = "all"
pkg_postinst() {
if test "x$D" != "x"; then
exit 1
else
adduser --system --home /dev/null --no-create-home --empty-password --ingroup nogroup -s ${sbindir}/ppp-dialin ppp
fi
}
pkg_postrm() {
if test "x$D" != "x"; then
exit 1
else
deluser ppp
fi
}