On Thu, Jul 12, 2007 at 11:30:28AM +0200, Landry Breuil wrote:
> Hello,
>
> working on various ports, i've seen that make plist puts ${BASE_PKGPATH} in
> my PLIST / PFRAG.shared where normally there should be the package name "in
> clear".
> Where can this come from ? Is it normal ?
yes, because you are running make update-plist at the wrong dir.
> I've just updated usr.sbin/pkg_add and ports/infrastructure, doesn't seem to
> change this.
>
> For a port installing python files in
> lib/python${MODPY_VERSION}/site-packages, i suppose i need
> MODULES=lang/python ? Does it imply RUN/BUILD_DEPENDS on python24 ?
>
> Thanks for any hint,
> Landry
>
> Ps: just for clarification, here's the rough makefile of the port i'm
> working on :
>
> # $OpenBSD$
>
> COMMENT= "high performance CORBA ORB for C++ and Python"
>
> DISTNAME= omniORB-4.1.0
> SHARED_LIBS= COS4 1.0 \
> COSDynamic4 1.0 \
> omniCodeSets4 1.0 \
> omniConnectionMgmt4 1.0 \
> omniDynamic4 1.0 \
> omniORB4 1.0 \
> omnithread 3.3
>
> CATEGORIES= devel
>
> HOMEPAGE= http://omniorb.sourceforge.net/
> MAINTAINER= Landry Breuil <[EMAIL PROTECTED]>
>
> # LGPL, GPL
> PERMIT_PACKAGE_CDROM= Yes
> PERMIT_PACKAGE_FTP= Yes
> PERMIT_DISTFILES_CDROM= Yes
> PERMIT_DISTFILES_FTP= Yes
>
> MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=omniorb/}
>
> MODULES= lang/python
> CONFIGURE_STYLE= gnu
> USE_GMAKE= Yes
> MAKE_FILE= GNUmakefile
>
> .include <bsd.port.mk>