diff options
author | Clement Laforet <clement@FreeBSD.org> | 2004-01-14 01:52:06 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2004-01-14 01:52:06 +0000 |
commit | 863ef174dba31c312121d9705ee747814615b427 (patch) | |
tree | ea81051a2bd16df93387624c4604a5d9d25587bd /graphics/kalbum | |
parent | 06a3b5912c4252dbcd1f4f8c84b098c4f970ff6a (diff) |
- respect PTHREAD_LIBS and CFLAGS
- fix typo
PR: 61344
Submitted by: Markus Brueffer <brueffer@phoenix-systems.de> (maintainer)
Approved by: erwin (mentor) (implicitly)
Notes
Notes:
svn path=/head/; revision=98128
Diffstat (limited to 'graphics/kalbum')
-rw-r--r-- | graphics/kalbum/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/graphics/kalbum/Makefile b/graphics/kalbum/Makefile index 2ce9fc9f1b76..0563840e0492 100644 --- a/graphics/kalbum/Makefile +++ b/graphics/kalbum/Makefile @@ -1,4 +1,4 @@ -# New ports collection makefile for: platero +# New ports collection makefile for: kalbum # Date created: Tue Jul 1 18:03:44 CEST 2003 # Whom: Markus Brueffer <brueffer@phoenix-systems.de> # @@ -16,7 +16,11 @@ USE_KDELIBS_VER= 3 USE_BZIP2= yes USE_GMAKE= yes GNU_CONFIGURE= yes +USE_REINPLACE= yes -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} +post-patch: + @${REINPLACE_CMD} -e 's/-O2//g' ${WRKSRC}/${CONFIGURE_SCRIPT} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/x11/kde3/Makefile.kde" +.include <bsd.port.post.mk> |