summaryrefslogtreecommitdiff
path: root/astro/sattrack/files/patch-ab
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-08-01 04:16:36 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-08-01 04:16:36 +0000
commita9b270272208e547b68d58c91c57682977be8a1a (patch)
tree3abb46a0477ac2dc65fb4427c14a89168d694811 /astro/sattrack/files/patch-ab
parentRemove mpegaudio dependency as it has expired (diff)
Bye bye abandonwares
2011-08-01 archivers/zipios++: No more public distfiles 2011-08-01 astro/sattrack: No more public distfiles 2011-08-01 audio/bladeenc: Looks like an abandonware 2011-08-01 audio/cdplayer.app: Looks like an abandonware, no more public distfile 2011-08-01 audio/id3ed: No more public distfiles, looks like an abandonware 2011-08-01 audio/linux-vsound: Abandonware 2011-08-01 audio/mpegaudio: No more public distfiles 2011-08-01 audio/mpmf20: Abandonware 2011-08-01 audio/mutemix: abandonware, no more public distfiles 2011-08-01 audio/phatbeat: abandonware, no more public distfiles 2011-08-01 audio/pimp3: No more public distfiles 2011-08-01 audio/rbscrobbler: Looks like abandonware, no more public distfile 2011-08-01 audio/ripenc: Looks like and abandonware, No more distfile 2011-08-01 audio/wmcdplay: Looks like an abandonware, no more public distfile 2011-08-01 audio/wmfmixer: Looks like an abandonware, no more public distfiles 2011-08-01 audio/wmmixer: Looks like an abandonware, no more public distfile 2011-08-01 audio/wmmp3: Looks like an abandonware, no more public distfile 2011-08-01 audio/wmusic: Looks like an abandonware, no more distfiles 2011-08-01 audio/xmms-kj: Looks like an abandonware, no more public distfiles 2011-08-01 audio/xmms-pipe: Looks like an abandonware, no more public distfile 2011-08-01 audio/xmms-speex: Looks like an abandonware, no more public distfile 2011-08-01 audio/xsidplay: Looks like an abandonware, no more public distfile 2011-08-01 audio/xtuner: Looks like an abandonware, no more public distfile
Notes
Notes: svn path=/head/; revision=278677
Diffstat (limited to 'astro/sattrack/files/patch-ab')
-rw-r--r--astro/sattrack/files/patch-ab25
1 files changed, 0 insertions, 25 deletions
diff --git a/astro/sattrack/files/patch-ab b/astro/sattrack/files/patch-ab
deleted file mode 100644
index 8ebeca310c62..000000000000
--- a/astro/sattrack/files/patch-ab
+++ /dev/null
@@ -1,25 +0,0 @@
---- sattrack/sattime.c~ Thu Jul 27 15:38:07 2000
-+++ sattrack/sattime.c Thu Jul 27 15:46:23 2000
-@@ -99,19 +99,18 @@
- int *day, *month, *year, *yday, *hour, *min, *sec;
-
- {
-- char timeString[80];
-+ char timeString[26];
-
- time_t timeofday;
- struct tm *tm;
-
- time(&timeofday);
- tm = gmtime(&timeofday);
-- strncpy(timeString,asctime(tm),16);
-- timeString[16] = '\0';
-+ strncpy(timeString,asctime(tm),26);
-
- *day = tm->tm_mday;
- *month = tm->tm_mon + 1;
-- *year = tm->tm_year;
-+ *year = tm->tm_year + 1900;
- *yday = tm->tm_yday + 1;
- *hour = tm->tm_hour;
- *min = tm->tm_min;