mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
55705f0b58
work well under the GNOME Desktop. Buoh has a number of features, including: - Select your favorites comic through a list of more than 130 comics - Easy, simple an eye-candy view of an online comic - Browsing over the comic strip archives - Saving a comic to disk - Integration with GNOME (respecting the lockdowns and HIG compliance) WWW: http://buoh.steve-o.org/ -- NOTE: Dump core at exit is a known issue, I will collect the backtraces and report to the developer(s). If anyone want to fix, feel free to send me a patch.
42 lines
992 B
Makefile
42 lines
992 B
Makefile
# New ports collection makefile for: buoh
|
|
# Date created: 10 November 2005
|
|
# Whom: Mezz <mezz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= buoh
|
|
PORTVERSION= 0.8.1
|
|
CATEGORIES= deskutils www gnome
|
|
MASTER_SITES= http://buoh.steve-o.org/downloads/
|
|
|
|
MAINTAINER= mezz@FreeBSD.org
|
|
COMMENT= A reader for online strips comics
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack gnomeprefix intlhack libgnomeui
|
|
USE_X_PREFIX= yes
|
|
USE_REINPLACE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
DOCS= AUTHORS COPYING ChangeLog NEWS README TODO
|
|
GCONF_SCHEMAS= buoh.schemas
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|[$$][(]datadir[)]/applications|${X11BASE}/share/applications|g' \
|
|
${WRKSRC}/data/Makefile.in
|
|
|
|
post-install:
|
|
.ifndef (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${DOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${LN} -sf ${DATADIR}/pixmaps/buoh64x64.png \
|
|
${X11BASE}/share/pixmaps/buoh64x64.png
|
|
|
|
.include <bsd.port.mk>
|