diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2005-09-23 20:42:37 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2005-09-23 20:42:37 +0000 |
commit | f0120ed0a281524bed82bb81de18bac5a89d19bc (patch) | |
tree | 031f8b49244c1f8a6c86b672f9e6e8dac4f85494 /mail/thunderbird3 | |
parent | 4c17727bf4b9847874a2167aa3d6abec6fa38fe5 (diff) |
- Fix the sed for libesd and kill the major version of library
(libesd.so.2 -> libesd.so). [1]
- Update Java plugins by remove old and correct Java 1.5 plugin path. [2]
- Bump the PORTREVISION.
PR: ports/86430 [1]
Submitted by: Mark Hobden <markhobden@gmail.com> [1]
glewis [2]
Notes
Notes:
svn path=/head/; revision=143467
Diffstat (limited to 'mail/thunderbird3')
-rw-r--r-- | mail/thunderbird3/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/thunderbird3/Makefile b/mail/thunderbird3/Makefile index 51d8111d15aa..82f9a3e9998a 100644 --- a/mail/thunderbird3/Makefile +++ b/mail/thunderbird3/Makefile @@ -8,7 +8,7 @@ PORTNAME= thunderbird PORTVERSION= 1.0.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTVERSION}/source @@ -28,7 +28,6 @@ CONFIGURE_ENV= LOCALBASE=${LOCALBASE} FAKEDIR= ${WRKDIR}/fake USE_REINPLACE= yes HAS_CONFIGURE= yes -ESD_LIB= libesd.so.2 PLIST= ${WRKDIR}/plist USE_BZIP2= yes USE_GMAKE= yes @@ -151,7 +150,7 @@ post-patch: ${WRKSRC}/security/coreconf/FreeBSD.mk \ ${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \ ${WRKSRC}/js/src/Makefile.in - @${REINPLACE_CMD} -e 's|libesd\.so\.\d+|${ESD_LIB}|g' \ + @${REINPLACE_CMD} -E -e 's|libesd\.so\.[0-9]+|libesd.so|g' \ ${WRKSRC}/widget/src/gtk2/nsSound.cpp @${REINPLACE_CMD} -E -e 's|libcups\.so\.[0-9]+|libcups.so|g' \ ${WRKSRC}/gfx/src/gtk/nsDeviceContextSpecG.cpp |