Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 275112

Summary: new ebuilds: net-libs/libpdel-0.5.3 and net-dialup/mpd-4.4.1
Product: Gentoo Linux Reporter: Aleksey Chernov <valexlin>
Component: New packagesAssignee: Default Assignee for New Packages <maintainer-wanted>
Status: CONFIRMED ---    
Severity: enhancement CC: 4glitch, net-dialup
Priority: High    
Version: unspecified   
Hardware: All   
OS: FreeBSD   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: ebuild script and patches.
net-libs/libpdel-0.5.3 for fbsd-8.0
libpdel-0.5.3-fbsd.patch for fbsd-8.0 got from FreeBSD port
net-dialup/mpd-4.4.1 for fbsd-8.0
mpd-4.4.1-fbsd patch for fbsd-8.0 got from FreeBSD port
mpd-5.5.ebuild
mpd-5.5-gentoo.patch
mpd5.init.d

Description Aleksey Chernov 2009-06-22 21:06:24 UTC
libpdel - the Packet Design Embedded Library. Exist in freebsd ports in devel category. Need for packages mpd4x and mpd5x (in freebsd ports in category net).
Mpd is a netgraph(4) based implementation of the multi-link PPP protocol for FreeBSD. May be usefull with some internet providers that uses vpn.

In attachment archive with ebuilds and patches.
Comment 1 Aleksey Chernov 2009-06-22 21:09:03 UTC
Created attachment 195516 [details]
ebuild script and patches.
Comment 2 Dmitri Bogomolov 2011-03-14 12:53:55 UTC
Created attachment 265809 [details]
net-libs/libpdel-0.5.3 for fbsd-8.0
Comment 3 Dmitri Bogomolov 2011-03-14 12:55:13 UTC
Created attachment 265811 [details, diff]
libpdel-0.5.3-fbsd.patch for fbsd-8.0 got from FreeBSD port
Comment 4 Dmitri Bogomolov 2011-03-14 12:56:11 UTC
Created attachment 265813 [details]
net-dialup/mpd-4.4.1 for fbsd-8.0
Comment 5 Dmitri Bogomolov 2011-03-14 12:57:14 UTC
Created attachment 265815 [details, diff]
mpd-4.4.1-fbsd patch for fbsd-8.0 got from FreeBSD port
Comment 6 Dmitri Bogomolov 2011-03-14 12:59:25 UTC
Yesterday I had success on installing and using mpd4 on g/fbsd-8.0 :)
Comment 7 Dmitri Bogomolov 2011-04-03 21:30:58 UTC
Created attachment 268421 [details]
mpd-5.5.ebuild
Comment 8 Dmitri Bogomolov 2011-04-03 21:31:48 UTC
Created attachment 268423 [details, diff]
mpd-5.5-gentoo.patch
Comment 9 Dmitri Bogomolov 2011-04-03 21:32:24 UTC
Created attachment 268425 [details]
mpd5.init.d
Comment 10 Dmitri Bogomolov 2011-04-03 21:32:59 UTC
Comment on attachment 268423 [details, diff]
mpd-5.5-gentoo.patch

>--- conf/Makefile.orig	2008-04-07 17:22:24 +0400
>+++ conf/Makefile	2009-06-21 05:10:20 +0400
>@@ -1,7 +1,7 @@
> # $Id: Makefile.conf,v 1.6 2007/07/29 11:20:20 amotin Exp $
> 
> PREFIX?=	/usr/local
>-BINDIR?=	/etc/mpd5
>+MPD_CONF_DIR?=	${PREFIX}/etc/mpd5
> 
> MPD_SAMPLES+=	mpd.conf.sample
> MPD_SAMPLES+=	mpd.links.sample
>@@ -13,8 +13,8 @@
> all clean cleandir depend:
> 
> afterinstall:
>-	[ -d ${DESTDIR}${PREFIX}${BINDIR} ] || mkdir ${DESTDIR}${PREFIX}${BINDIR}
>+	[ -d ${DESTDIR}${MPD_CONF_DIR} ] || ${INSTALL} -d ${DESTDIR}${MPD_CONF_DIR}
> 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} ${MPD_SAMPLES} \
>-		${DESTDIR}${PREFIX}${BINDIR}
>+		${DESTDIR}${MPD_CONF_DIR}
> 
> .include <bsd.prog.mk>
>diff -urBb mpd-4.4.1-orig/doc/Makefile mpd-4.4.1/doc/Makefile
>--- doc/Makefile.orig	2008-04-07 17:22:24 +0400
>+++ doc/Makefile	2009-06-21 05:13:50 +0400
>@@ -19,12 +19,13 @@
> 
> mpd4.8:          mpd4.8.in
> 	sed -e "s,@PREFIX@,${PREFIX},g" < ${.ALLSRC} > ${.TARGET}
>+	gzip -c mpd5.8 > mpd5.8.gz
> 
> .if !defined(NOPORTDOCS)
> afterinstall:
>-	[ -d ${DOCDIR} ] || mkdir ${DOCDIR}
>+	[ -d ${DESTDIR}${DOCDIR} ] || ${INSTALL} -d ${DESTDIR}${DOCDIR}
> 	${INSTALL} -c -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \
>-	    ${MPD_DOC_FILES} ${DOCDIR}
>+	    ${MPD_DOC_FILES} ${DESTDIR}${DOCDIR}
> .endif
> 
> .include <bsd.prog.mk>