084d20edf9
Changelog: *src/menu.c: adding a menu option for redrawing the screen. We need a real name for this. Ug, I'm tired. Stupid raid hurry up and copy!! *src/toolbar.c: Creating the pixmap in the toolbar. *src/crescendo.c: takeing the pixmap out of the status thing. *src/world.c: Stupid. One type of LP *src/world.c: Removed none as a posible world type, and added tiny.mush and tiny.muck *src/about.c: Made david an archived developer. *sniff* we will always love you dave. *src/world.c: I gave the world saving routine the ability to add each world to the tinyfugue world list. I think this will prove to be very yummy. *src/crescendo.c: Dummy, 10 chars, not 11. *src/world.c: Fixed the ordering of hbox's in the gnome_dialog vbox * src/crescendo.c: I added a severely ugly hack to the main() that basically shoves a /visual off to tinyfugue. This is so disgustingly ugly. * src/world.c: I added a port field to the dialog * configure.in: Bumped the version number * crescendo.spec: bumped the version number * src/wrapper.c, src/world.c: Changed "Unknown" password/username to empty string. * src/about.c: fixed the URL pointing to the correct home page. Added my email address to the array. * src/world.c: Made the password field not shown by. * src/world.c, src/wrapper.[ch]: Added auto-log-in support,
43 lines
1018 B
Makefile
43 lines
1018 B
Makefile
# New ports collection makefile for: crescendo
|
|
# Date created: 27.Apr 2000
|
|
# Whom: dirk.meyer@dinoex.sub.org
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= crescendo
|
|
PORTVERSION= 1.1.7
|
|
CATEGORIES= net gnome
|
|
MASTER_SITES= http://crescendo.lyrical.net/files/
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
|
|
RUN_DEPENDS= tf:${PORTSDIR}/net/tinyfugue
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= yes
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ARGS+= --enable-compile-warnings=yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
CFLAGS+= -g
|
|
PLIST_SUB= DOCDIR=${DOCDIR}
|
|
|
|
DOCDIR= share/doc/${PORTNAME}
|
|
|
|
pre-patch:
|
|
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
|
's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
|
|
s|\$\(prefix\)/share/|\$\(datadir\)/|g'
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/${DOCDIR}
|
|
.for file in AUTHORS COPYING ChangeLog HACKING INSTALL NEWS \
|
|
README README.BINARY TODO
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/${DOCDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|