diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2013-03-28 21:50:53 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2013-03-28 21:50:53 +0000 |
commit | 07730f7cd11891206d437a6204fff08ff31f088a (patch) | |
tree | c8ae0105b92c7922ae7451074268d1a82ce82d96 /graphics/libgphoto2 | |
parent | 46b7c67171451db4631159ff96c48c5716016eab (diff) | |
download | ports-07730f7cd11891206d437a6204fff08ff31f088a.tar.gz ports-07730f7cd11891206d437a6204fff08ff31f088a.zip |
Revert previous boneheaded change - libgphoto2 is dependency for
couple of KDE4 ports. Instead of depending on HAL make sure not to
link to it.
Reported by: danfe
Notes
Notes:
svn path=/head/; revision=315503
Diffstat (limited to 'graphics/libgphoto2')
-rw-r--r-- | graphics/libgphoto2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/libgphoto2/Makefile b/graphics/libgphoto2/Makefile index 341a91631c9f..785cb0fc9cfb 100644 --- a/graphics/libgphoto2/Makefile +++ b/graphics/libgphoto2/Makefile @@ -3,7 +3,7 @@ PORTNAME= libgphoto2 PORTVERSION= 2.4.14 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/gphoto/libgphoto/${PORTVERSION} @@ -11,8 +11,7 @@ MAINTAINER= pav@FreeBSD.org COMMENT= A universal digital camera picture control tool LIB_DEPENDS= exif.12:${PORTSDIR}/graphics/libexif \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ - hal:${PORTSDIR}/sysutils/hal + jpeg.11:${PORTSDIR}/graphics/jpeg USE_BZIP2= yes USE_GNOME= pkgconfig ltverhack @@ -62,5 +61,6 @@ post-patch: .if ${OSVERSION} >= 800064 @${REINPLACE_CMD} -e '/Requires/d' ${WRKSRC}/libgphoto2_port/libgphoto2_port.pc.in .endif + @${REINPLACE_CMD} 's|with_hal=yes|with_hal=no|' ${WRKSRC}/libgphoto2_port/configure .include <bsd.port.post.mk> |