diff options
author | makc <makc@FreeBSD.org> | 2013-03-18 23:02:19 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2013-03-18 23:02:19 +0800 |
commit | 57a79faa67538dd38d9a2b8b4d7147841d509a10 (patch) | |
tree | c7cad76b9f9269f88178bd9f40776529b055ff41 /deskutils | |
parent | 351ea86620734d0542c3eaf00f54003f589f0d93 (diff) | |
download | freebsd-ports-gnome-57a79faa67538dd38d9a2b8b4d7147841d509a10.tar.gz freebsd-ports-gnome-57a79faa67538dd38d9a2b8b4d7147841d509a10.tar.zst freebsd-ports-gnome-57a79faa67538dd38d9a2b8b4d7147841d509a10.zip |
- No need to set CMAKE_INSTALL_PREFIX, it's already done in bsd.cmake.mk
- Trim header and remove stale stuff while I'm here
Approved by: Troels Kofoed Jacobsen (maintainer)
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/libgcal/Makefile | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/deskutils/libgcal/Makefile b/deskutils/libgcal/Makefile index b2d963036895..d4827b07b537 100644 --- a/deskutils/libgcal/Makefile +++ b/deskutils/libgcal/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: libgcal -# Date created: 2009-08-16 -# Whom: Troels Kofoed Jacobsen <tkjacobsen@gmail.com> -# +# Created by: Troels Kofoed Jacobsen <tkjacobsen@gmail.com> # $FreeBSD$ -# PORTNAME= libgcal PORTVERSION= 0.9.6 @@ -22,8 +18,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_BZIP2= yes USE_CMAKE= yes -CMAKE_ARGS= -DCMAKE_INSTALL_PREFIX="${PREFIX}" \ - -DLIB_INSTALL_DIR="${LOCALBASE}/lib" \ +CMAKE_ARGS= -DLIB_INSTALL_DIR="${LOCALBASE}/lib" \ -DENABLE_TESTS=OFF USE_LDCONFIG= yes USE_GCC= 4.2+ @@ -34,8 +29,4 @@ USE_GCC= 4.2+ BROKEN= does not link .endif -post-patch: - @${REINPLACE_CMD} -e 's,(libdir)/pkgconfig,(prefix)/libdata/pkgconfig,' \ - ${WRKSRC}/Makefile.am - .include <bsd.port.post.mk> |