diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-04 09:02:44 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-04 09:02:44 +0800 |
commit | 7faae5576ef7a7d0b1ce78e75c07ea81bb83f9d7 (patch) | |
tree | 4a12b2cc5f942c5cbd90e6095a46749e9487c31e /games/ceferino | |
parent | 9eca9d9c3be542fb7d2775295de32351162caa11 (diff) | |
download | freebsd-ports-gnome-7faae5576ef7a7d0b1ce78e75c07ea81bb83f9d7.tar.gz freebsd-ports-gnome-7faae5576ef7a7d0b1ce78e75c07ea81bb83f9d7.tar.zst freebsd-ports-gnome-7faae5576ef7a7d0b1ce78e75c07ea81bb83f9d7.zip |
Remove always-false/true conditions based on OSVERSION 500000
Diffstat (limited to 'games/ceferino')
-rw-r--r-- | games/ceferino/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/games/ceferino/Makefile b/games/ceferino/Makefile index 1098f068feb7..da1088840b10 100644 --- a/games/ceferino/Makefile +++ b/games/ceferino/Makefile @@ -38,10 +38,6 @@ PLIST_SUB+= NLS="" FLAG_NLS= true .endif -.if ${OSVERSION} < 500000 -BROKEN= Does not compile -.endif - post-extract: @${REINPLACE_CMD} -e 's/-lSDL /`sdl-config --libs`/g' ${WRKSRC}/configure @@ -55,9 +51,9 @@ do-install: ${FIND} ${CEFEDIRS} -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \ ${FIND} -E ${CEFEDIRS} -type f -iregex ".*\.(png|jpg|xm|map|wav)" -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \; .if defined(FLAG_NLS) -.for FILE in es ca fr - ${MKDIR} ${PREFIX}/share/locale/${FILE}/LC_MESSAGES && \ - ${INSTALL_DATA} ${WRKSRC}/po/${FILE}.gmo ${PREFIX}/share/locale/${FILE}/LC_MESSAGES/${PORTNAME}.mo +.for f in es ca fr + ${MKDIR} ${PREFIX}/share/locale/${f}/LC_MESSAGES && \ + ${INSTALL_DATA} ${WRKSRC}/po/${f}.gmo ${PREFIX}/share/locale/${f}/LC_MESSAGES/${PORTNAME}.mo .endfor .endif |