diff options
author | Rusmir Dusko <nemysis@FreeBSD.org> | 2013-10-30 00:46:05 +0000 |
---|---|---|
committer | Rusmir Dusko <nemysis@FreeBSD.org> | 2013-10-30 00:46:05 +0000 |
commit | d763d65d69fab8e836a33685938cb70e460f8023 (patch) | |
tree | 066a90d1ca27edb8d2fa33a0922583e23149c78a /graphics/py-pyglet/files | |
parent | devel/py-dogpile.cache: add missing run dependency (diff) |
- Bump PORTREVISION
- Add license (BSD)
- Use the new format for LIB_DEPENDS
- Add dependency for multimedia/avbin
- Change DOCS and add DEMOS, add DOCS and EXAMPLES Options
- Add DEMOS to default Options
- Support STAGEDIR and add OPTIONS_SUB
- Remove IGNORE for not i386
- Add demos Astraea and Noisy, add Icons, Desktop entry files
- Add pkg-message to display demos usage
- Change pkg-plist, add demos
PR: ports/182517
Submitted by: nemysis (self)
Approved by: pawel / wg (mentors, implicit), maintainer timeout
Notes
Notes:
svn path=/head/; revision=332027
Diffstat (limited to 'graphics/py-pyglet/files')
-rw-r--r-- | graphics/py-pyglet/files/pkg-message.in | 26 | ||||
-rw-r--r-- | graphics/py-pyglet/files/pyglet-astraea.in | 7 | ||||
-rw-r--r-- | graphics/py-pyglet/files/pyglet-noisy.in | 7 |
3 files changed, 40 insertions, 0 deletions
diff --git a/graphics/py-pyglet/files/pkg-message.in b/graphics/py-pyglet/files/pkg-message.in new file mode 100644 index 000000000000..fff608d1ba33 --- /dev/null +++ b/graphics/py-pyglet/files/pkg-message.in @@ -0,0 +1,26 @@ +=============================================================================== + +pyglet has been installed. + +pyglet have more Demos (Games) + +Astraea, Noisy + + +You can use executable + + %%LOCALBASE%%/bin/pyglet-astraea + + %%LOCALBASE%%/bin/pyglet-noisy + + +Or can use desktop files + + %%LOCALBASE%%/share/applications/pyglet-astraea.desktop + + %%LOCALBASE%%/share/applications/pyglet-noisy.desktop + + +Have fun! + +=============================================================================== diff --git a/graphics/py-pyglet/files/pyglet-astraea.in b/graphics/py-pyglet/files/pyglet-astraea.in new file mode 100644 index 000000000000..627024ab0ed3 --- /dev/null +++ b/graphics/py-pyglet/files/pyglet-astraea.in @@ -0,0 +1,7 @@ +#!/bin/sh +# +# # $FreeBSD$ +# + +cd "%%EXAMPLESDIR%%/astraea" +exec /usr/bin/env python ./astraea.py "${@}" diff --git a/graphics/py-pyglet/files/pyglet-noisy.in b/graphics/py-pyglet/files/pyglet-noisy.in new file mode 100644 index 000000000000..6412cadbb26b --- /dev/null +++ b/graphics/py-pyglet/files/pyglet-noisy.in @@ -0,0 +1,7 @@ +#!/bin/sh +# +# # $FreeBSD$ +# + +cd "%%EXAMPLESDIR%%/noisy" +exec /usr/bin/env python ./noisy.py "${@}" |