aboutsummaryrefslogtreecommitdiffstats
path: root/packages/poptop
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2006-04-24 13:35:16 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-04-24 13:35:16 +0000
commit98f50fe673c23d88705da13b8021fbcaba8303ba (patch)
tree820c95693f945afd2bc031e0bf0af93f7f0b6736 /packages/poptop
parente459c12feac09ca0259101dda3ec31f97ae759d8 (diff)
downloadopenembedded-98f50fe673c23d88705da13b8021fbcaba8303ba.tar.gz
poptop: add 1.3.0, courtesy Stelios Koroneos
Diffstat (limited to 'packages/poptop')
-rw-r--r--packages/poptop/.mtn2git_empty0
-rw-r--r--packages/poptop/poptop_1.3.0.bb36
2 files changed, 36 insertions, 0 deletions
diff --git a/packages/poptop/.mtn2git_empty b/packages/poptop/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/poptop/.mtn2git_empty
diff --git a/packages/poptop/poptop_1.3.0.bb b/packages/poptop/poptop_1.3.0.bb
new file mode 100644
index 0000000000..2d8c59a2f1
--- /dev/null
+++ b/packages/poptop/poptop_1.3.0.bb
@@ -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}/
+
+
+}
+