64b2118179
- Adjust MASTERDIRs - Remove PKGNAMEPREFIX since it is implicit - Add ports to Category Makefile PR: 53797 Submitted by: Aleksander Fafula <alex@fafula.com> Approved by: portmgr (marcus) Repocopied by: joe
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# Ports collection makefile for: gnugadu
|
|
# Date created: 23 dec 2001
|
|
# Whom: doc@lublin.t1.pl
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnugadu
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= polish net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ggadu
|
|
DISTNAME= gg-${PORTVERSION}
|
|
|
|
MAINTAINER= dotz@irc.pl
|
|
COMMENT= A GaduGadu client for X11/GTK
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk12
|
|
USE_REINPLACE= yes
|
|
USE_SUBMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
|
|
IS_INTERACTIVE= yes
|
|
.endif
|
|
|
|
SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \
|
|
TOUCH="${TOUCH}" \
|
|
MKDIR="${MKDIR}" \
|
|
CAT="${CAT}" \
|
|
GNUGADU_OPTIONS="${GNUGADU_OPTIONS}" \
|
|
REALCURDIR="${.CURDIR}"
|
|
|
|
pre-fetch:
|
|
@${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.gg
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,GTK_ CFLAGS,GTK_CFLAGS,' \
|
|
-e 's,CFLAGS =, CFLAGS += @GTK_CFLAGS@ ${PTHREAD_CFLAGS},' \
|
|
-e 's,@GTK_LIBS@,@GTK_LIBS@ ${PTHREAD_LIBS},'\
|
|
${WRKSRC}/Makefile.in \
|
|
${WRKSRC}/src/Makefile.in
|
|
@${REINPLACE_CMD} -e 's,-O2,,' -e 's,gtk-config,${GTK_CONFIG},' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${PREFIX}/bin/gg
|
|
|
|
post-clean:
|
|
@${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc
|
|
|
|
.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc)
|
|
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|