diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2012-06-15 09:57:55 +0000 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2012-06-15 09:57:55 +0000 |
commit | 4bab0482f00b8582cd04478ac5aa5bbae55a9b7c (patch) | |
tree | 1c030d896c81f83eb509240ebc1b49f2e3900d55 | |
parent | e934bb942b4755e171622c3e942d622c1f20b53d (diff) |
Notes
-rw-r--r-- | games/cosmosmash/Makefile | 8 | ||||
-rw-r--r-- | net/ldapscripts/Makefile | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/games/cosmosmash/Makefile b/games/cosmosmash/Makefile index 0db91162440b..03ee6d1dca87 100644 --- a/games/cosmosmash/Makefile +++ b/games/cosmosmash/Makefile @@ -15,13 +15,13 @@ MASTER_SITES= http://perso.b2b2c.ca/sarrazip/dev/ \ MAINTAINER= martymac@FreeBSD.org COMMENT= A clone of the Intellivision(TM) game Astrosmash(TM) +LICENSE= GPLv2 + LIB_DEPENDS= flatzebra:${PORTSDIR}/devel/flatzebra \ aa:${PORTSDIR}/graphics/aalib \ mikmod:${PORTSDIR}/audio/libmikmod \ audiofile:${PORTSDIR}/audio/libaudiofile -LICENSE= GPLv2 - USE_SDL= sdl image mixer USE_XORG= x11 xau xdmcp USE_ICONV= yes @@ -32,12 +32,14 @@ LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} `${SDL_CONFIG} --libs` MAN6= cosmosmash.6 +.include <bsd.port.options.mk> + post-patch: @${REINPLACE_CMD} 's|^pkgsounddir = .*|pkgsounddir = ${DATADIR}/sounds|' \ ${WRKSRC}/src/Makefile.in @${REINPLACE_CMD} 's|^docdir = .*|docdir = ${DOCSDIR}|' \ ${WRKSRC}/Makefile.in -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} 's|^install-data-am: .*|install-data-am: install-man|' \ ${WRKSRC}/Makefile.in .endif diff --git a/net/ldapscripts/Makefile b/net/ldapscripts/Makefile index a487eb652572..37d2d6a7b0eb 100644 --- a/net/ldapscripts/Makefile +++ b/net/ldapscripts/Makefile @@ -15,6 +15,8 @@ EXTRACT_SUFX= .tgz MAINTAINER= martymac@FreeBSD.org COMMENT= Scripts to manage posix accounts in an OpenLDAP directory +LICENSE= GPLv2 + RUN_DEPENDS= ldapadd:${PORTSDIR}/net/openldap${OPENLDAP_VER}-client \ ldapsearch:${PORTSDIR}/net/openldap${OPENLDAP_VER}-client \ ldapdelete:${PORTSDIR}/net/openldap${OPENLDAP_VER}-client \ @@ -22,8 +24,6 @@ RUN_DEPENDS= ldapadd:${PORTSDIR}/net/openldap${OPENLDAP_VER}-client \ ldapmodrdn:${PORTSDIR}/net/openldap${OPENLDAP_VER}-client \ ldappasswd:${PORTSDIR}/net/openldap${OPENLDAP_VER}-client -LICENSE= GPLv2 - USE_OPENLDAP= yes USE_ICONV= yes LIBDIR= ${PREFIX}/lib/${PORTNAME} @@ -41,6 +41,8 @@ MAN5= ldapscripts.5 PORTDOCS= README CHANGELOG VERSION TODO +.include <bsd.port.options.mk> + # Unset 'all' target set by default to 'help' # and set paths to OpenLDAP binaries post-patch: @@ -58,7 +60,7 @@ post-patch: # Install remaining stuff post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for doc in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} |