diff options
author | mezz <mezz@FreeBSD.org> | 2005-09-24 04:42:37 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2005-09-24 04:42:37 +0800 |
commit | 59bd2f497e578ff67017e2655612f74d13e876f8 (patch) | |
tree | 28431341fa219131563147389d733d9710a3f932 /mail/thunderbird3 | |
parent | c496eb2d6c16ba611b580d53feb56728f9f4b54b (diff) | |
download | freebsd-ports-gnome-59bd2f497e578ff67017e2655612f74d13e876f8.tar.gz freebsd-ports-gnome-59bd2f497e578ff67017e2655612f74d13e876f8.tar.zst freebsd-ports-gnome-59bd2f497e578ff67017e2655612f74d13e876f8.zip |
- 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]
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 |