Bug 91671 - new port net/tapidbus
Summary: new port net/tapidbus
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Emanuel Haupt
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-11 14:30 UTC by babak
Modified: 2006-01-12 19:53 UTC (History)
0 users

See Also:


Attachments
tapidbus.shar (2.57 KB, text/plain)
2006-01-11 14:30 UTC, babak
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description babak 2006-01-11 14:30:12 UTC

Abstraction layer for interprocess communication
Comment 1 Emanuel Haupt freebsd_committer freebsd_triage 2006-01-11 14:32:47 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ehaupt

Take.
Comment 2 Emanuel Haupt freebsd_committer freebsd_triage 2006-01-11 18:30:57 UTC
State Changed
From-To: open->feedback

There are a few issues: 

- port seems to look for dbus (devel/dbus) libraries 
- port requires gtk20 
- "USE_AUTOTOOLS=  libtool:15" implies GNU_CONFIGURE 
- if you use gmake you need to pass ${CC} to MAKE_ENV in order to 
respect CC 
- please remove optimization flags (-O in this case)
Comment 3 babak 2006-01-12 14:16:05 UTC
new shar file with fixed errors:

--- tapidbus.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	tapidbus
#	tapidbus/Makefile
#	tapidbus/distinfo
#	tapidbus/pkg-descr
#	tapidbus/pkg-plist
#	tapidbus/files
#	tapidbus/files/patch-configure
#	tapidbus/files/patch-Makefile.am
#
echo c - tapidbus
mkdir -p tapidbus > /dev/null 2>&1
echo x - tapidbus/Makefile
sed 's/^X//' >tapidbus/Makefile << 'END-of-tapidbus/Makefile'
X# New ports collection makefile for:    tapidbus
X# Date created:		2006-01-11
X# Whom:			Babak Farrokhi
X#
X# $FreeBSD$
X#
X
XPORTNAME=	tapidbus
XPORTVERSION=	0.2.1
XCATEGORIES=	net
XMASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
XMASTER_SITE_SUBDIR=	tapioca-voip
X
XMAINTAINER=	babak@farrokhi.net
XCOMMENT=	Abstraction layer for interprocess communication
X
XLIB_DEPENDS=	dbus-1.2:${PORTSDIR}/devel/dbus
X
XWRKSRC=		${WRKDIR}/${PORTNAME}
XUSE_AUTOTOOLS=	libtool:15
XUSE_GMAKE=	yes
XUSE_GNOME=	pkgconfig glib20 gnomehack
XCONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
XMAKE_ENV=	CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
XINSTALLS_SHLIB=	yes
X
X.include <bsd.port.mk>
END-of-tapidbus/Makefile
echo x - tapidbus/distinfo
sed 's/^X//' >tapidbus/distinfo << 'END-of-tapidbus/distinfo'
XMD5 (tapidbus-0.2.1.tar.gz) = d704c2df28d2d1eea6c31b50cc07b057
XSHA256 (tapidbus-0.2.1.tar.gz) = 7144c94faa370c7792164db707a02b8508ec2507c0c84ba64f0b3f0ebac23949
XSIZE (tapidbus-0.2.1.tar.gz) = 327946
END-of-tapidbus/distinfo
echo x - tapidbus/pkg-descr
sed 's/^X//' >tapidbus/pkg-descr << 'END-of-tapidbus/pkg-descr'
XAn abstraction layer for interprocess communication. 
XActually it uses dbus.
X
XWWW: http://tapioca-voip.sourceforge.net/
END-of-tapidbus/pkg-descr
echo x - tapidbus/pkg-plist
sed 's/^X//' >tapidbus/pkg-plist << 'END-of-tapidbus/pkg-plist'
Xinclude/tapidbus-0.2/tapidbus/tapidbus.h
Xlib/libtapidbus-0.2.a
Xlib/libtapidbus-0.2.so
Xlib/libtapidbus-0.2.so.0
Xlibdata/pkgconfig/tapidbus-0.2.pc
X@dirrm include/tapidbus-0.2/tapidbus
X@dirrm include/tapidbus-0.2
END-of-tapidbus/pkg-plist
echo c - tapidbus/files
mkdir -p tapidbus/files > /dev/null 2>&1
echo x - tapidbus/files/patch-configure
sed 's/^X//' >tapidbus/files/patch-configure << 'END-of-tapidbus/files/patch-configure'
X--- configure.orig	Wed Jan 11 17:28:18 2006
X+++ configure	Wed Jan 11 17:28:48 2006
X@@ -19213,7 +19213,8 @@
X 
X # This can be used to rebuild libtool when needed
X LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
X-
X+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
X+ 
X # Always use our own libtool.
X LIBTOOL='$(SHELL) $(top_builddir)/libtool'
X 
END-of-tapidbus/files/patch-configure
echo x - tapidbus/files/patch-Makefile.am
sed 's/^X//' >tapidbus/files/patch-Makefile.am << 'END-of-tapidbus/files/patch-Makefile.am'
X--- Makefile.am.orig	Thu Jan 12 17:32:26 2006
X+++ Makefile.am	Thu Jan 12 17:33:19 2006
X@@ -9,7 +9,7 @@
X %-@TAPIDBUS_MAJORMINOR@.pc: %.pc
X 	cp $< $@
X 
X-pkgconfigdir = $(libdir)/pkgconfig
X+pkgconfigdir = $(prefix)/libdata/pkgconfig
X pkgconfig_DATA = $(pcfiles)
X 
X include aminclude.am
END-of-tapidbus/files/patch-Makefile.am
exit
--- tapidbus.shar ends here ---
Comment 4 Emanuel Haupt freebsd_committer freebsd_triage 2006-01-12 16:50:55 UTC
State Changed
From-To: feedback->open

Feedback received.
Comment 5 Emanuel Haupt freebsd_committer freebsd_triage 2006-01-12 19:52:33 UTC
State Changed
From-To: open->closed

New port added with minor modifications, thanks!