Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

games-action/minetest-game: Set PaX flags for all versions #73

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# $Id$

EAPI=5
inherit eutils cmake-utils gnome2-utils vcs-snapshot user
inherit eutils cmake-utils gnome2-utils pax-utils vcs-snapshot user

DESCRIPTION="An InfiniMiner/Minecraft inspired game"
HOMEPAGE="http://minetest.net/"
Expand Down Expand Up @@ -113,10 +113,15 @@ src_install() {
cmake-utils_src_install

if use server || use dedicated ; then
pax-mark m "${D}"usr/bin/minetestserver
newinitd "${FILESDIR}"/minetestserver.initd minetest-server
newconfd "${T}"/minetestserver.confd minetest-server
fi

if ! use dedicated ; then
pax-mark m "${D}"usr/bin/minetest
fi

if use doc ; then
cd "${CMAKE_BUILD_DIR}"/doc || die
dodoc -r html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# $Id$

EAPI=5
inherit cmake-utils gnome2-utils vcs-snapshot user
inherit cmake-utils gnome2-utils pax-utils vcs-snapshot user

DESCRIPTION="An InfiniMiner/Minecraft inspired game"
HOMEPAGE="http://minetest.net/"
Expand Down Expand Up @@ -113,10 +113,15 @@ src_install() {
cmake-utils_src_install

if use server || use dedicated ; then
pax-mark m "${D}"usr/bin/minetestserver
newinitd "${FILESDIR}"/minetestserver.initd minetest-server
newconfd "${T}"/minetestserver.confd minetest-server
fi

if ! use dedicated ; then
pax-mark m "${D}"usr/bin/minetest
fi

if use doc ; then
cd "${CMAKE_BUILD_DIR}"/doc || die
dodoc -r html
Expand Down
7 changes: 6 additions & 1 deletion games-action/minetest/minetest-0.5.0_rc.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# $Id$

EAPI=5
inherit cmake-utils gnome2-utils vcs-snapshot user
inherit cmake-utils gnome2-utils pax-utils vcs-snapshot user

DESCRIPTION="An InfiniMiner/Minecraft inspired game"
HOMEPAGE="http://minetest.net/"
Expand Down Expand Up @@ -110,10 +110,15 @@ src_install() {
cmake-utils_src_install

if use server || use dedicated ; then
pax-mark m "${D}"usr/bin/minetestserver
newinitd "${FILESDIR}"/minetestserver.initd minetest-server
newconfd "${T}"/minetestserver.confd minetest-server
fi

if ! use dedicated ; then
pax-mark m "${D}"usr/bin/minetest
fi

if use doc ; then
cd "${CMAKE_BUILD_DIR}"/doc || die
dodoc -r html
Expand Down
2 changes: 1 addition & 1 deletion games-action/minetest/minetest-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inherit cmake-utils git-r3 gnome2-utils pax-utils user

DESCRIPTION="An InfiniMiner/Minecraft inspired game"
HOMEPAGE="http://minetest.net/"
EGIT_REPO_URI="git://github.com/minetest/${PN}.git"
EGIT_REPO_URI="https://github.com/minetest/${PN}.git"

LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
SLOT="0"
Expand Down