net-misc/geomyidae: drop 0.34-r1, 0.69

Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk
2024-10-30 15:24:42 +01:00
parent e32e0b5b52
commit c17dabfbda
3 changed files with 0 additions and 110 deletions

View File

@@ -1,3 +1 @@
DIST geomyidae-v0.34.tgz 22242 BLAKE2B bc25f50c49c10e5a04b83a12cdcd7546b33f6a7d93eab504122bcfb2fdacfbcb82205890d5fd999d1b8b681c65dc0ef0dc5f95ea2d56a795fa371031c4af43b8 SHA512 55b7845c8b9fbee70b2e2bd71d2e3bb8e34c3029a1ea410cb39750763c81d5c31af8c703f7b673aa28fbfd61dd7915300ed4ff22f94c8430ac754681bc30ce41
DIST geomyidae-v0.69.tar.gz 34631 BLAKE2B a1d7e33d403df5d6bb4d5fdc0999fdcfa94da058dd5dc1c0f22c49b9cc1b06cf45fafdb839eb91dec78be0aa778e3a74bf26d8ffa5054d45e5c6e86918480ad4 SHA512 c66f751472c35107c2c91f1675ab40bf68da1d3d5742ec94125c8ecba54b2832e82c8106a3627da53216cf3802ae7900ef8457c383160614ecce2a07b318662a
DIST geomyidae-v0.96.tar.gz 38373 BLAKE2B 30bc409e8a124a6375ef113919f6b78fcb59103243237e57951ee0cc2907adf9a45168e7ceed55cb29af09d83e96a2e8f6123ba4586e4f216dc1eb4eb8f031c9 SHA512 3c73baca4ae3a58dfc2b064c448ec7c1d34b110f8b88c301a4287d0565ad22ee1676a5cf18707771bb26352291f04586276d5dec74c10b66d3a1c340805afc91

View File

@@ -1,57 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A daemon to serve the gopher protocol"
HOMEPAGE="http://r-36.net/scm/geomyidae/"
SRC_URI="ftp://bitreich.org/releases/geomyidae/${PN}-v${PV}.tgz"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="
acct-group/gopherd
acct-user/gopherd
"
DEPEND="${RDEPEND}"
src_prepare() {
# enable verbose build
# respect CFLAGS
# remove /usr/lib from LDFLAGS, bug #731672
sed -i \
-e 's/@${CC}/${CC}/g' \
-e '/CFLAGS/s/=/?=/' \
-e '/GEOM_LDFLAGS/s:-L/usr/lib ::' \
Makefile || die 'sed on Makefile failed'
# fix path for pid file
sed -i \
-e 's:/var/run:/run:g' \
rc.d/Gentoo.init.d || die
eapply_user
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dosbin ${PN}
newinitd rc.d/Gentoo.init.d ${PN}
newconfd rc.d/Gentoo.conf.d ${PN}
insinto /var/gopher
doins index.gph
fowners -R root.gopherd /var/gopher
fperms -R g=rX,o=rX /var/gopher
doman ${PN}.8
dodoc CGI README
}

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="A daemon to serve the gopher protocol"
HOMEPAGE="http://r-36.net/scm/geomyidae/"
SRC_URI="ftp://bitreich.org/releases/geomyidae/${PN}-v${PV}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="
acct-group/gopherd
acct-user/gopherd
dev-libs/libretls:0=
"
DEPEND="${RDEPEND}"
src_prepare() {
# remove /usr/lib from LDFLAGS, bug #731672
sed -i \
-e '/GEOM_LDFLAGS/s:-L/usr/lib ::' \
Makefile || die 'sed on Makefile failed'
eapply_user
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dosbin ${PN}
newinitd rc.d/Gentoo.init.d ${PN}
newconfd rc.d/Gentoo.conf.d ${PN}
insinto /var/gopher
doins index.gph
fowners -R root:gopherd /var/gopher
fperms -R g=rX,o=rX /var/gopher
doman ${PN}.8
dodoc CGI.md README
}