summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2005-11-15 05:43:22 +0000
committerAlin Năstac <mrness@gentoo.org>2005-11-15 05:43:22 +0000
commit15fd7b1d20a3f89320eb47cb68d6c805cb382d2b (patch)
treecc8f4ef34afb9d3d3898a725f68bc119ad42a884 /app-mobilephone/gnokii/files
parentrepoman: Trim trailing whitespace (diff)
downloadhistorical-15fd7b1d20a3f89320eb47cb68d6c805cb382d2b.tar.gz
historical-15fd7b1d20a3f89320eb47cb68d6c805cb382d2b.tar.bz2
historical-15fd7b1d20a3f89320eb47cb68d6c805cb382d2b.zip
Remove obsolete versions. Mark version 0.6.8 stable on x86. Version bump (#112566).
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'app-mobilephone/gnokii/files')
-rw-r--r--app-mobilephone/gnokii/files/digest-gnokii-0.6.101
-rw-r--r--app-mobilephone/gnokii/files/digest-gnokii-0.6.31
-rw-r--r--app-mobilephone/gnokii/files/digest-gnokii-0.6.41
-rw-r--r--app-mobilephone/gnokii/files/digest-gnokii-0.6.61
-rw-r--r--app-mobilephone/gnokii/files/gnokii-0.6.3-nounix98pty.patch83
-rw-r--r--app-mobilephone/gnokii/files/gnokii-0.6.4-nounix98pty.patch83
-rw-r--r--app-mobilephone/gnokii/files/gnokii-0.6.6-nounix98pty.patch47
7 files changed, 1 insertions, 216 deletions
diff --git a/app-mobilephone/gnokii/files/digest-gnokii-0.6.10 b/app-mobilephone/gnokii/files/digest-gnokii-0.6.10
new file mode 100644
index 000000000000..9d802afca5c6
--- /dev/null
+++ b/app-mobilephone/gnokii/files/digest-gnokii-0.6.10
@@ -0,0 +1 @@
+MD5 031007358ff9b6e6e2994d408a4fa88a gnokii-0.6.10.tar.bz2 1916536
diff --git a/app-mobilephone/gnokii/files/digest-gnokii-0.6.3 b/app-mobilephone/gnokii/files/digest-gnokii-0.6.3
deleted file mode 100644
index 60d24e87d72b..000000000000
--- a/app-mobilephone/gnokii/files/digest-gnokii-0.6.3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7e932688aeaa2ca8be2f2e3b3bf1b90e gnokii-0.6.3.tar.bz2 1824992
diff --git a/app-mobilephone/gnokii/files/digest-gnokii-0.6.4 b/app-mobilephone/gnokii/files/digest-gnokii-0.6.4
deleted file mode 100644
index 3848e52c4210..000000000000
--- a/app-mobilephone/gnokii/files/digest-gnokii-0.6.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e48e72b4038481509f32e2a7596dc2d5 gnokii-0.6.4.tar.bz2 2006834
diff --git a/app-mobilephone/gnokii/files/digest-gnokii-0.6.6 b/app-mobilephone/gnokii/files/digest-gnokii-0.6.6
deleted file mode 100644
index 07dfa9224beb..000000000000
--- a/app-mobilephone/gnokii/files/digest-gnokii-0.6.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ae5548678a3be240c0133e57e78171c3 gnokii-0.6.6.tar.bz2 1935428
diff --git a/app-mobilephone/gnokii/files/gnokii-0.6.3-nounix98pty.patch b/app-mobilephone/gnokii/files/gnokii-0.6.3-nounix98pty.patch
deleted file mode 100644
index 6566c768a957..000000000000
--- a/app-mobilephone/gnokii/files/gnokii-0.6.3-nounix98pty.patch
+++ /dev/null
@@ -1,83 +0,0 @@
---- configure 2004-04-13 23:28:02.000000000 +0200
-+++ configure.new 2004-05-15 01:31:01.364191640 +0200
-@@ -28863,80 +28863,6 @@
- rm -f conftest.err conftest.$ac_objext \
- conftest$ac_exeext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_func_grantpt" >&5
--echo "${ECHO_T}$ac_cv_func_grantpt" >&6
--if test $ac_cv_func_grantpt = yes; then
-- if test "$cross_compiling" = yes; then
-- { echo "$as_me:$LINENO: WARNING: \"Ensure to disable unix98ptys when crosscompiling\"" >&5
--echo "$as_me: WARNING: \"Ensure to disable unix98ptys when crosscompiling\"" >&2;}
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#define _XOPEN_SOURCE 500
--
--#include <stdlib.h>
--#include <sys/types.h>
--#include <sys/stat.h>
--#include <fcntl.h>
--#include <unistd.h>
--
--int main()
--{
-- char *name = NULL;
-- int master, err;
--
-- master = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_NONBLOCK);
-- if (master >= 0) {
-- err = grantpt(master);
-- err = err || unlockpt(master);
-- if (!err) {
-- name = ptsname(master);
-- } else {
-- exit(-1);
-- }
-- } else {
-- exit(-1);
-- }
-- close(master);
-- exit(0);
--}
--
--_ACEOF
--rm -f conftest$ac_exeext
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-- (eval $ac_link) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- cat >>confdefs.h <<\_ACEOF
--#define USE_UNIX98PTYS 1
--_ACEOF
--
--else
-- echo "$as_me: program exited with status $ac_status" >&5
--echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--( exit $ac_status )
--{ echo "$as_me:$LINENO: WARNING: \"No unix98ptys\"" >&5
--echo "$as_me: WARNING: \"No unix98ptys\"" >&2;}
--fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--
--fi
--
-
- cat >conftest.$ac_ext <<_ACEOF
- /* confdefs.h. */
diff --git a/app-mobilephone/gnokii/files/gnokii-0.6.4-nounix98pty.patch b/app-mobilephone/gnokii/files/gnokii-0.6.4-nounix98pty.patch
deleted file mode 100644
index 5b4e55f9da49..000000000000
--- a/app-mobilephone/gnokii/files/gnokii-0.6.4-nounix98pty.patch
+++ /dev/null
@@ -1,83 +0,0 @@
---- configure.orig 2004-10-17 22:44:38.000000000 +0300
-+++ configure 2004-11-18 00:24:20.496016136 +0200
-@@ -29417,80 +29417,6 @@
- rm -f conftest.err conftest.$ac_objext \
- conftest$ac_exeext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_func_grantpt" >&5
--echo "${ECHO_T}$ac_cv_func_grantpt" >&6
--if test $ac_cv_func_grantpt = yes; then
-- if test "$cross_compiling" = yes; then
-- { echo "$as_me:$LINENO: WARNING: \"Ensure to disable unix98ptys when crosscompiling\"" >&5
--echo "$as_me: WARNING: \"Ensure to disable unix98ptys when crosscompiling\"" >&2;}
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#define _XOPEN_SOURCE 500
--
--#include <stdlib.h>
--#include <sys/types.h>
--#include <sys/stat.h>
--#include <fcntl.h>
--#include <unistd.h>
--
--int main()
--{
-- char *name = NULL;
-- int master, err;
--
-- master = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_NONBLOCK);
-- if (master >= 0) {
-- err = grantpt(master);
-- err = err || unlockpt(master);
-- if (!err) {
-- name = ptsname(master);
-- } else {
-- exit(-1);
-- }
-- } else {
-- exit(-1);
-- }
-- close(master);
-- exit(0);
--}
--
--_ACEOF
--rm -f conftest$ac_exeext
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-- (eval $ac_link) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- cat >>confdefs.h <<\_ACEOF
--#define USE_UNIX98PTYS 1
--_ACEOF
--
--else
-- echo "$as_me: program exited with status $ac_status" >&5
--echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--( exit $ac_status )
--{ echo "$as_me:$LINENO: WARNING: \"No unix98ptys\"" >&5
--echo "$as_me: WARNING: \"No unix98ptys\"" >&2;}
--fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--
--fi
--
-
- cat >conftest.$ac_ext <<_ACEOF
- /* confdefs.h. */
diff --git a/app-mobilephone/gnokii/files/gnokii-0.6.6-nounix98pty.patch b/app-mobilephone/gnokii/files/gnokii-0.6.6-nounix98pty.patch
deleted file mode 100644
index 386677f5ee80..000000000000
--- a/app-mobilephone/gnokii/files/gnokii-0.6.6-nounix98pty.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-diff -Nru gnokii-0.6.6.orig/configure.in gnokii-0.6.6/configure.in
---- gnokii-0.6.6.orig/configure.in 2005-05-12 06:12:04.000000000 +0300
-+++ gnokii-0.6.6/configure.in 2005-05-15 09:24:36.910737760 +0300
-@@ -463,43 +463,6 @@
- [ win32="no"]
- )
-
--AC_CHECK_FUNC(grantpt,
-- [ AC_TRY_RUN([
--#define _XOPEN_SOURCE 500
--
--#include <stdlib.h>
--#include <sys/types.h>
--#include <sys/stat.h>
--#include <fcntl.h>
--#include <unistd.h>
--
--int main()
--{
-- char *name = NULL;
-- int master, err;
--
-- master = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_NONBLOCK);
-- if (master >= 0) {
-- err = grantpt(master);
-- err = err || unlockpt(master);
-- if (!err) {
-- name = ptsname(master);
-- } else {
-- exit(-1);
-- }
-- } else {
-- exit(-1);
-- }
-- close(master);
-- exit(0);
--}
-- ],
-- AC_DEFINE(USE_UNIX98PTYS),
-- AC_MSG_WARN("No unix98ptys"),
-- AC_DEFINE(USE_UNIX98PTYS))
-- ]
--)
--
- AC_TRY_COMPILE( [#define _XOPEN_SOURCE 500
- #include <sys/types.h>
- #include <sys/socket.h>],