Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jan 2014 15:08:43 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r338891 - in head/devel/pecl-inotify: . files
Message-ID:  <201401061508.s06F8h9c099889@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Jan  6 15:08:43 2014
New Revision: 338891
URL: http://svnweb.freebsd.org/changeset/ports/338891

Log:
  - Correct variable name to fix shared library links
  - Bump PORTREVISION for package change
  - While I'm here, convert to new LIB_DEPENDS format and support STAGEDIR
  
  PR:		ports/181637
  Submitted by:	Gasol Wu <gasol.wu@gmail.com> (maintainer)

Modified:
  head/devel/pecl-inotify/Makefile
  head/devel/pecl-inotify/files/patch-config.m4   (contents, props changed)

Modified: head/devel/pecl-inotify/Makefile
==============================================================================
--- head/devel/pecl-inotify/Makefile	Mon Jan  6 15:08:38 2014	(r338890)
+++ head/devel/pecl-inotify/Makefile	Mon Jan  6 15:08:43 2014	(r338891)
@@ -3,6 +3,7 @@
 
 PORTNAME=	inotify
 PORTVERSION=	0.1.6
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://pecl.php.net/get/
 PKGNAMEPREFIX=	pecl-
@@ -14,7 +15,7 @@ COMMENT=	This extension allows to use in
 
 LICENSE=	PHP301
 
-LIB_DEPENDS=	inotify:${PORTSDIR}/devel/libinotify
+LIB_DEPENDS=	libinotify.so:${PORTSDIR}/devel/libinotify
 
 USE_PHP=	yes
 USE_PHP_BUILD=	yes
@@ -22,5 +23,4 @@ USE_PHPIZE=	yes
 USE_PHPEXT=	yes
 IGNORE_WITH_PHP=4
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/devel/pecl-inotify/files/patch-config.m4
==============================================================================
--- head/devel/pecl-inotify/files/patch-config.m4	Mon Jan  6 15:08:38 2014	(r338890)
+++ head/devel/pecl-inotify/files/patch-config.m4	Mon Jan  6 15:08:43 2014	(r338891)
@@ -1,6 +1,6 @@
 --- ./config.m4.orig	2012-05-04 17:51:20.000000000 +0800
-+++ ./config.m4	2012-06-27 12:05:19.620198000 +0800
-@@ -1,22 +1,52 @@
++++ ./config.m4	2013-08-29 12:49:00.000000000 +0800
+@@ -1,22 +1,51 @@
  dnl $Id: config.m4 262896 2008-07-17 19:11:16Z lbarnaud $
  dnl config.m4 for extension inotify
  
@@ -44,8 +44,6 @@
 +    AC_MSG_ERROR([Cannot find libevent headers])
 +  fi
 +
-+  PHP_ADD_INCLUDE($LIBINOTIFY_DIR/include)
-+
 +  LIBNAME=inotify
 +  LIBSYMBOL=inotify_init
 +
@@ -55,13 +53,14 @@
 +
 +  PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
 +  [
-+    PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $LIBINOTIFY_DIR/$PHP_LIBDIR, LIBINOTIFY_SHARED_LIBADD)
++    PHP_ADD_INCLUDE($LIBINOTIFY_DIR/include)
++    PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $LIBINOTIFY_DIR/$PHP_LIBDIR, INOTIFY_SHARED_LIBADD)
 +  ],[
 +    AC_MSG_ERROR([Your system does not support inotify])
 +  ],[
-+    -L$LIBINOTIFY_DIR/$PHP_LIBDIR 
++    -L$LIBINOTIFY_DIR/$PHP_LIBDIR
    ])
  
-+  PHP_SUBST(LIBINOTIFY_SHARED_LIBADD)
++  PHP_SUBST(INOTIFY_SHARED_LIBADD)
    PHP_NEW_EXTENSION(inotify, inotify.c, $ext_shared)
  fi



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401061508.s06F8h9c099889>