mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
8bad47274c
- Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/connectagram - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Break lines around 80 characters games/cretan-hubris - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/fbg2 - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/gottet - Transfer maintainership to games@ team games/gtkatlantic - Simplify master site - Use tar.gz instead of tar.bz2 - Transfer maintainership to games@ team - Don't silence warnings - Set PORTSCOUT, Upstream use GTK3 in newer Versions games/kye - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/madbomber - Transfer maintainership to games@ team games/megamario - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Add fixes_v1.7.txt to DOCS games/nelly - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Cosmetical changes games/oneisenough - Transfer maintainership to games@ team - USES shebangfix and SHEBANG_FILES instead of REINPLACE - Simplify installation handling games/patapizza-tetris - Transfer maintainership to games@ team games/puckman - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/pycadia - Transfer maintainership to games@ team games/pyspacewar - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Remove TODO.txt from DOCS games/simsu - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Use tar:bzip2 instead of USE_BZIP2=yes games/smashbattle - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/syobon - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team games/tanglet - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team - Use tar:bzip2 instead of USE_BZIP2=yes games/thegrind - Change Makefile header, use my name and @FreeBSD.org email - Transfer maintainership to games@ team
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gtkatlantic
|
|
PORTVERSION= 0.4.4
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://download.tuxfamily.org/gtkatlantic/downloads/v${PORTVERSION:R}/ \
|
|
SF/nemysisfreebsdp/${CATEGORIES}/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}_icons${EXTRACT_SUFX}:icons
|
|
|
|
MAINTAINER= games@FreeBSD.org
|
|
COMMENT= Game like Monopoly(tm)
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= pkgconfig
|
|
USE_GNOME= gtk20
|
|
GNU_CONFIGURE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
INSTALLS_ICONS= yes
|
|
ICON_SIZES= 32x32 48x48 64x64 72x72 96x96 128x128
|
|
|
|
DESKTOP_ENTRIES="GtkAtlantic" "" "${PORTNAME}" \
|
|
"${PORTNAME}" "Game;BoardGame;" ""
|
|
|
|
# Wrong versioning upstream, Upstream use GTK3 in newer Versions
|
|
PORTSCOUT= ignore:1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/CFLAGS=/s|-ggdb|$$CFLAGS|' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|mkdir |$$(mkdir_p) |g' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
.for s in ${ICON_SIZES}
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}_${s}.png \
|
|
${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
|
|
.endfor
|
|
${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|