-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2665 from mariux64/revert-2395-remove-tcp-wrappers
Revert "tcp-wrappers: remove"
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION tcp-wrappers-7.6-1 | ||
|
||
# more info: https://foo.bar.com | ||
|
||
SRCURL[0]="https://ftp.osuosl.org/pub/blfs/conglomeration/tcp_wrappers/tcp_wrappers_${PKGVERSION}.tar.bz2" | ||
|
||
PATCHURL[0]="https://ftp.osuosl.org/pub/blfs/conglomeration/tcp_wrappers/tcp_wrappers-${PKGVERSION}-shared_lib_plus_plus-1.patch" | ||
|
||
# PATCHURL+=() | ||
|
||
# build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
mee_patch() { | ||
bee_patch | ||
sed -i -e "s,^extern char \*malloc();,/* & */," scaffold.c | ||
} | ||
|
||
mee_configure() { | ||
/bin/true | ||
} | ||
|
||
mee_build() { | ||
make REAL_DAEMON_DIR=/usr/sbin STYLE=-DPROCESS_OPTIONS linux | ||
} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
mee_install() { | ||
mkdir -pv ${D}{${LIBDIR},${SBINDIR},${MANDIR}/man{3,5,8},${INCLUDEDIR}} | ||
bee_install | ||
} | ||
|
||
#mee_install_post() { | ||
# exit | ||
#} |