diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2003-06-03 20:23:42 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2003-06-03 20:23:42 +0000 |
commit | eb83fd870144b777313a3d3e3417e4e3ba90b48c (patch) | |
tree | 3cdeaa6817ce4dda6a453e8efa0122c8408bb903 /devel/devhelp/Makefile | |
parent | Do not grumble about WITHOUT_X86_ASM knob when building on non-i386 platform. (diff) |
Fix things mucked up from the original port I committed:
* Change maintainer to submitter of ports/52446,
Rui Lopes <rui@ruilopes.com> (I missed this when
I committed this port)
* Add libgtkhtml/remove gtk20 from USE_GNOME
* Remove the REINPLACEs
<debugger> adamw_: we also don't need that first REINPLACE in post-patch.
<debugger> adamw_: and I don't known why you have placed the second
REINPLACE there :/
* Remove the lib/devhelp dir in the pkg-plist
* Add a patch to search for devhelp books in the
standard FreeBSD places
* Alphabetize the pkg-plist
* PORTREVISION bump
Submitted by: Rui Lopes <rui@ruilopes.com> (over IRC)
Notes
Notes:
svn path=/head/; revision=82212
Diffstat (limited to 'devel/devhelp/Makefile')
-rw-r--r-- | devel/devhelp/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/devel/devhelp/Makefile b/devel/devhelp/Makefile index 717d3e1297ab..d0790bff784c 100644 --- a/devel/devhelp/Makefile +++ b/devel/devhelp/Makefile @@ -7,28 +7,22 @@ PORTNAME= devhelp PORTVERSION= 0.6.0 +PORTREVISION= 1 CATEGORIES?= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.6 DIST_SUBDIR= gnome2 -MAINTAINER?= adamw@FreeBSD.org +MAINTAINER= rui@ruilopes.com COMMENT= Developer help browser for GNOME 2 USE_BZIP2= yes USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gtk20 gnomehack gnomeprefix -USE_REINPLACE= yes +USE_GNOME= gnomehack gnomeprefix libgtkhtml USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|@LIBS@|@LIBS@ ${PTHREAD_LIBS}|' \ - ${WRKSRC}/src/Makefile.in - .include <bsd.port.mk> |