diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-12-15 02:26:07 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-12-15 02:26:07 +0000 |
commit | fe7835730a7338c330aa586aecd8f312beb6af11 (patch) | |
tree | 5ea3c2542654947e4abf97911801645aeb58440a /net-im | |
parent | Library simplifying embedding perl interpreters into C programs. (diff) |
- Fix build on 4.x using USE_GCC=3.4+.
- Replace INSTALL_DATA by INSTALL_PROGRAM so that the shared library is striped.
Noticed by: pointyhat via kris
Requested by: vs
Notes
Notes:
svn path=/head/; revision=151212
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim-assistant/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-im/gaim-assistant/Makefile b/net-im/gaim-assistant/Makefile index 9f1edbdf970f..27091dc9e88a 100644 --- a/net-im/gaim-assistant/Makefile +++ b/net-im/gaim-assistant/Makefile @@ -6,6 +6,7 @@ PORTNAME= gaim-assistant PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -19,6 +20,7 @@ RUN_DEPENDS= gaim:${PORTSDIR}/net-im/gaim USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOME= gtk20 +USE_GCC= 3.4+ GNU_CONFIGURE= yes @@ -27,7 +29,7 @@ PLIST_FILES= lib/gaim/gaim-assistant.so WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} do-install: - ${INSTALL_DATA} ${WRKSRC}/gaim-assistant.so ${PREFIX}/lib/gaim + ${INSTALL_PROGRAM} ${WRKSRC}/gaim-assistant.so ${PREFIX}/lib/gaim .include <bsd.port.pre.mk> |