mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# New ports collection makefile for: games/gturing
|
|
# Date created: 08 Jul 2002
|
|
# Whom: Juan Salaverria <rael@vectorstar.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gturing
|
|
PORTVERSION= 0.1.1
|
|
PORTREVISION= 14
|
|
CATEGORIES= games gnome
|
|
MASTER_SITES= ftp://ftp.gnome.org/pub/gnome/sources/gturing/0.1/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A simple turing machine simulator for GNOME 2
|
|
|
|
USE_GNOME= gnomeprefix gnomehack libgnomeui
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
INSTALLS_OMF= yes
|
|
|
|
DOCS= AUTHORS COPYING NEWS ChangeLog TODO README INSTALL
|
|
|
|
EXAMPLEDIR= ${PREFIX}/share/examples/gturing
|
|
|
|
EXAMPLES= 3ones2zeroes.tur add.tur bb3.tur dashnumbers.tur addbin.tur \
|
|
bb5.tur dec2bin.tur dec2bin_shift.tur bb2.tur bin2dec.tur \
|
|
bin2dec_shift.tur sort.tur subst.tur
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${INSTALL} -d -o root -g wheel -m 0755 ${EXAMPLEDIR}
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/tapes/${f} ${EXAMPLEDIR}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|