poptop: add 1.3.0, courtesy Stelios Koroneos
authorKoen Kooi <koen@openembedded.org>
Mon, 24 Apr 2006 13:35:16 +0000 (13:35 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Mon, 24 Apr 2006 13:35:16 +0000 (13:35 +0000)
packages/poptop/.mtn2git_empty [new file with mode: 0644]
packages/poptop/poptop_1.3.0.bb [new file with mode: 0644]

diff --git a/packages/poptop/.mtn2git_empty b/packages/poptop/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/poptop/poptop_1.3.0.bb b/packages/poptop/poptop_1.3.0.bb
new file mode 100644 (file)
index 0000000..2d8c59a
--- /dev/null
@@ -0,0 +1,36 @@
+DESCRIPTION = "Poptop is the PPTP server solution for Linux \
+Using Poptop, Linux servers can now function seamlessly in a PPTP VPN environment. \
+This enables administrators to leverage the considerable benefits of both Microsoft and Linux operating systems \
+The current release version supports Windows 95/98/Me/NT/2000/XP PPTP clients and Linux PPTP clients \
+For more info visit http://www.poptop.org/"
+
+MAINTAINER  = "Stelios Koroneos <skoroneos@digital-opsis.com> "
+HOMEPAGE    = "http://www.poptop.org/" 
+LICENSE     = "GPL"
+SECTION     = "network"
+PRIORITY    = "optional"
+DEPENDS     = "ppp"
+RDEPENDS    = "ppp"    
+
+PR = "r0"
+
+inherit autotools
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/poptop/pptpd-${PV}.tar.gz"
+S = "${WORKDIR}/pptpd-${PV}"
+
+
+
+do_install() { 
+       install -d ${D}${sbindir}
+       install -d ${D}/${sysconfdir}
+       install -d ${D}/${sysconfdir}/ppp/
+
+       install -m 0755  pptpd         ${D}${sbindir}/
+       install -m 0755  pptpctrl      ${D}${sbindir}/
+       install -m 0644 samples/options.pptpd ${D}/${sysconfdir}/ppp/
+       install -m 0644 samples/pptpd.conf    ${D}/${sysconfdir}/
+
+
+}
+