diff options
author | madpilot <madpilot@FreeBSD.org> | 2013-09-29 18:45:44 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2013-09-29 18:45:44 +0800 |
commit | 79005a4d1999485151f9907878f79bc1405d7caf (patch) | |
tree | 3265ea56ebfb486a278d57f10ec2d64af1ed0ba6 /comms | |
parent | 9c1f6904aa0426d80acdcdc504463139c8997a43 (diff) | |
download | freebsd-ports-gnome-79005a4d1999485151f9907878f79bc1405d7caf.tar.gz freebsd-ports-gnome-79005a4d1999485151f9907878f79bc1405d7caf.tar.zst freebsd-ports-gnome-79005a4d1999485151f9907878f79bc1405d7caf.zip |
- Support staging
- Convert to new LIB_DEPENDS format
Diffstat (limited to 'comms')
-rw-r--r-- | comms/obexapp/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/comms/obexapp/Makefile b/comms/obexapp/Makefile index 46b9e5bda734..04603aa73ae7 100644 --- a/comms/obexapp/Makefile +++ b/comms/obexapp/Makefile @@ -9,8 +9,8 @@ MASTER_SITES= http://people.freebsd.org/~emax/obexapp/ MAINTAINER= madpilot@FreeBSD.org COMMENT= Obex application to transfer objects to mobile equipment -LIB_DEPENDS= openobex:${PORTSDIR}/comms/openobex \ - expat:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libopenobex.so:${PORTSDIR}/comms/openobex \ + libexpat.so:${PORTSDIR}/textproc/expat2 WRKSRC= ${WRKDIR}/${PORTNAME} @@ -18,15 +18,13 @@ USES= iconv PLIST_FILES= bin/obexapp .if !defined(NO_INSTALL_MANPAGES) -MAN1= obexapp.1 -MANCOMPRESSED= yes +PLIST_FILES+= man/man1/obexapp.1.gz .else MAKE_ENV+= NO_MAN=yes .endif MAKE_ENV+= NO_WERROR=yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/Makefile |