1753802bd5
modification : - no depend on system header files (like /usr/include/stdio.h) - add a new Makefile for rh7 (none of our business) PR: 37896 Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
33 lines
782 B
Makefile
33 lines
782 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: gSculpt
|
|
# Date created: Oct 10, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gsculpt
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://gsculpt.sourceforge.net/downloads/
|
|
DISTNAME= gSculpt-${PORTVERSION}-src
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
WRKSRC= ${WRKDIR}/gSculpt-${PORTVERSION}
|
|
USE_GTK= yes
|
|
USE_GMAKE= yes
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s,-O3 -Wall -Werror,${CXXFLAGS},g ; \
|
|
s,gtk-config,${GTK_CONFIG},g ; \
|
|
s,/usr/include/glib.h,${LOCALBASE}/include/glib12/glib.h,g ; \
|
|
s,/usr/include/gtk/,${X11BASE}/include/gtk12/gtk/,g ; \
|
|
s,/usr/include/gdk/,${X11BASE}/include/gtk12/gdk/,g" ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/gsculpt ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|